initial commit

This commit is contained in:
antifallobst 2023-09-13 18:26:07 +02:00
commit fbcdc63d64
Signed by: antifallobst
GPG Key ID: 2B4F402172791BAF
31 changed files with 886 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# IDE stuff
.idea
# Rust stuff
*/target/

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# BundesWettbewerbINFormatik 42.1
## Ideas
### St. Egano
This is going to be so straight forward, that I've no clue how to come up with an idea for this lol.
### Zauberschule
The idea is to create a graph and just solve the thing with dijkstra.
In this graph, every field of the maps is represented as a node.
Every node is connected to the nodes next to it and the node with the same index on the other map.
For connections on the same map, the gravity is 1.
For connections to the other map, the gravity is 3.
And, voila, now we have a graph to run dijkstra on.
### Nandu
The blocks represent logic gates.
- __White__: NAND
- __Red__: NOT
- __Blue__: Just copies the signal
The idea is to _just simulate™_ these logic flows.

8
nandu/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "nandu"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,7 @@
4 6
X Q1 Q2 X
X W W X
r R R r
X B B X
X W W X
X L1 L2 X

View File

@ -0,0 +1,9 @@
6 8
X X Q1 Q2 X X
X X B B X X
X X W W X X
X r R R r X
r R W W R r
X W W B B X
X X B B X X
X X L1 L2 X X

View File

@ -0,0 +1,8 @@
8 7
X X Q1 Q2 X X Q3 X
X X B B X r R X
X r R R r W W X
X W W B B W W X
r R B B B B R r
X B B W W B B X
X L1 L2 X L3 L4 X X

View File

@ -0,0 +1,9 @@
8 8
X X Q1 Q2 Q3 Q4 X X
X r R B B R r X
X X W W W W X X
X r R B B R r X
r R W W B B R r
X W W W W W W X
X X B B X X X X
X X L1 L2 X X X X

17
nandu/examples/nandu5.txt Normal file
View File

@ -0,0 +1,17 @@
22 14
X X X X X Q1 Q2 X X Q3 Q4 X X Q5 Q6 X X X X X X X
X X X X X R r X X r R X X R r X X X X X X X
X X X X r R R r r R R r r R R r X X X X X X
X X X X W W B B W W B B W W B B X X X X X X
X X X r R B B B B B B B B B B R r X X X X X
X X r R B B X B B B B B B B B X R r X X X X
X r R B B R r B B B B B B B B r R R r X X X
X X B B W W B B X B B B B B B W W B B X X X
X r R W W W W R r W W W W W W W W W W X X X
X W W B B W W X B B W W B B W W B B R r X X
r R B B B B R r X B B B B B B B B B B R r X
X B B B B B B R r B B B B B B B B B B W W X
r R B B B B B B B B B B B B B B B B B B R r
L1 X X X X L2 X X X X L3 X L4 X X X X X X X X L5

3
nandu/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

8
st-egano/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "st-egano"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

Binary file not shown.

After

Width:  |  Height:  |  Size: 574 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@ -0,0 +1,2 @@
Von thomashendele
https://pixabay.com/de/photos/bonn-nordrhein-westfalen-poppelsdorf-209505/

View File

@ -0,0 +1,2 @@
Von Alex_Schov
https://pixabay.com/de/photos/rhein-sonnenuntergang-bonn-5153594/

View File

@ -0,0 +1,2 @@
Von Didgeman
https://pixabay.com/de/photos/bonn-rhein-br%C3%BCcke-schiff-983316/#

View File

@ -0,0 +1,2 @@
Von Didgeman
https://pixabay.com/de/photos/bonn-skyline-hochh%C3%A4user-bonn-tower-983313/

3
st-egano/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

7
zauberschule/Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "zauberschule"
version = "0.1.0"

8
zauberschule/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "zauberschule"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,28 @@
13 13
#############
#.....#.....#
#.###.#.###.#
#...#.#...#.#
###.#.###.#.#
#...#.....#.#
#.#########.#
#.....#.....#
#####.#.###.#
#....A#B..#.#
#.#########.#
#...........#
#############
#############
#.......#...#
#...#.#.#...#
#...#.#.....#
#.###.#.#.###
#.....#.#...#
#####.###...#
#.....#.....#
#.#########.#
#...#.......#
#.#.#.#.###.#
#.#...#...#.#
#############

View File

@ -0,0 +1,25 @@
11 21
#####################
#...#.....#...#.....#
#.#.#.###.#.#.#.###.#
#.#.#...#.#.#...#...#
###.###.#.#.#####.###
#.#.#...#.#B....#...#
#.#.#.###.#.###.#####
#.#...#.#.#..A#.....#
#.#####.#.#########.#
#...................#
#####################
#####################
#.......#.....#.....#
#.###.#.#.###.#.###.#
#.....#.#.#.....#.#.#
#######.#.#######.#.#
#.....#.#.....#...#.#
#.###.#.#.###.###.#.#
#.#.#...#.#...#...#.#
#.#.#######.###.###.#
#...........#.......#
#####################

View File

@ -0,0 +1,33 @@
15 45
#############################################
#...#.....#...........#.#...........#.......#
#.#.#.###.#########.#.#.#.#######.#.#.#####.#
#.#.#...#.#.........#A..#.#.....#.#.#...#...#
###.###.#.#.#############.#.#.###.#.###.#.###
#.#.#...#.#................B#.#...#.#...#.#.#
#.#.#.###.###########.#########.###.#.###.#.#
#.#...#.#.#.........#.#.#.....#.#.....#.#.#.#
#.#####.#.#.#######.#.#.#.###.#.#######.#.#.#
#.....#...#...#.#...#...#.#.#.#.......#.#.#.#
#.#####.#####.#.#.#######.#.#.#######.#.#.#.#
#.....#.......#.#.#.....#.#.#.#...#...#...#.#
#.###.#########.#.###.#.#.#.#.#.#.#.###.###.#
#...#.................#...#.....#...#.......#
#############################################
#############################################
#...#.......#.....#.....#...#...#.....#.....#
#.#.#.#####.###.#.###.#.#.#.#.#.#.###.###.###
#.#.#.....#.#...#.....#...#.#.#...#.#...#...#
###.#.###.#.#.#############.#.#####.###.###.#
#.#.#...#.#.#.#.....#...#.#.#...#.#...#.#...#
#.#.#####.#.#.#.###.#.#.#.#.#.#.#.#.#.#.#.###
#.#...#...#.#.....#.#.#...#.#.#.#...#.#.#...#
#.###.#.###.#.#####.#.###.#.###.#####.#.###.#
#...#.#.#...#...#...#...#.#...#.#.....#.....#
#.###.#.#.#######.#####.#####.#.#.#.#######.#
#...#...#...#...#.....#.......#.#.#.#.....#.#
#.#.#######.#.#.#####.#.#######.#.###.###.#.#
#.#...........#.......#.........#.......#...#
#############################################

View File

@ -0,0 +1,65 @@
31 31
###############################
#...#.....#...........#.......#
#.#.#.###.#.###.#######.###.#.#
#.#.#...#.#.#.#.#.......#...#.#
###.###.#.#.#.#.#.#######.###.#
#.#.#...#.#...#.....#.....#.#.#
#.#.#.###.###########.#####.#.#
#.#...#.#.#.........#...#.....#
#.#####.#.#.#######.###.#.#####
#...#.#...#...#.#...#...#.#...#
#.#.#.#.#####.#.#.###.###.#.#.#
#.#.#.#.......#.#.#...#.#...#.#
#.#.#.#########.#.#.###.#####.#
#.#.......#.#.....#.#.#.....#.#
#.#######.#.#.#####.#.#.###.#.#
#.#.....#...#.#.#...#.#.#.#...#
#.#.###.#####.#.#.#.#.#.#.#####
#.#...#.....#.#.#.#.#...#.....#
#.###.#####.#.#.#.#.###.#####.#
#...#.#...#...#...#...#.......#
#.#.#.#.#############.#.#######
#.#.#.#...............#.#.....#
#.###.#.#######.#########.###.#
#...#.#.#...#...#.........#...#
###.#.###.#.#.###.#####.###.#.#
#...#.....#.#.....#..B#.#...#.#
#.#########.#######.#.###.###.#
#..A#.....#.#.......#...#.#.#.#
#.#.#.###.#.#.#########.#.#.#.#
#.#.....#.....#...........#...#
###############################
###############################
#.......#.....#...#...#.......#
#.###.#.#.#.#.#.###.#.#.#.#####
#.....#.#.#.#.#.....#.#.#.....#
#######.#.#.#.#.#####.#.#####.#
#.....#.#.#.#.#.#...#...#.....#
#.###.#.###.#.###.#.#.###.#####
#...#.#.#...#.....#.#.#.#.....#
#.#.###.#.#########.#.#.#####.#
#.#.....#.#.......#.#.....#...#
#.#######.#######.#.#.#####.#.#
#...#...#.....#...#.#.#...#.#.#
###.#.#.#.###.#.###.#.#.#.#.#.#
#.#.#.#...#...#.....#.#.#.#.#.#
#.#.#.#####.###.#######.#.#.#.#
#.#.#.....#.#.....#.....#.#.#.#
#.#.#######.#####.###.###.#.#.#
#.#.....#...#...#.....#.#...#.#
#.#####.#.###.#.#######.#####.#
#.#...#.#.#...#.......#.#.....#
#.#.#.#.#.#.#########.#.#.#####
#...#.#.#.#...#...#.#.#.#.....#
#####.#.#.###.#.#.#.#.#.#####.#
#.....#.#.......#.#.#.#...#...#
#.###.#.#########.#.#.#.#.#.###
#...#.#.....#.#.....#.#.#.#.#.#
#.#.#######.#.#.#####.#.#.#.#.#
#.#.......#.#...#.....#.#...#.#
#.###.#####.#####.#####.#####.#
#...#.............#...........#
###############################

View File

@ -0,0 +1,205 @@
101 101
#####################################################################################################
#...#.....#.......#...#.....#.........#.....#...#.....#...#.........#...#.......#.....#...#.........#
#.#.#.###.###.###.#.#.#.###.#.#####.#.#.#.#.#.#.###.#.#.###.###.###.#.#.#.###.#.#.#.#.#.#.#####.###.#
#.#.#...#.#...#.....#.#.#.#.......#.#.#.#.#.#.#...#.#...#...#...#...#.#.#...#.#.#.#.#.#.#...#...#.#.#
###.###.#.#.###########.#.#########.#.###.#.#.###.#.#####.###.###.###.###.###.#.#.#.#.#.###.#.###.#.#
#.#.#...#.#.............#.#.....#...#...#.#...#.#.#.#.......#.#.#.#.......#...#.#.#.#...#.....#...#.#
#.#.#.###.###########.###.#.###.#.#####.#.#####.#.#.#.#######.#.#.#.#######.#####.#.###########.###.#
#.#...#.#.#.........#.#...#.#.#.#.#.....#.#.....#.#.....#.....#...#...#...#.......#.......#.......#.#
#.#####.#.#.#######.#.#.#.#.#.#.#.#.#####.###.#.#.#######.#####.#####.###.#####.#########.#######.#.#
#.#...#...#...#.#...#.#.#.#.#.....#.#.....#...#.#.....#...#...#.#...#.....#...#.#.......#.......#.#.#
#.#.#.#.#####.#.#.###.###.#.#######.###.###.###.#####.#.#####.#.#.#.#.#####.#.#.#.#######.#####.#.#.#
#...#.#.......#.#.#.......#...#...#.....#.#...#.....#.#.#...#.....#.#.#...#.#.#...#.....#...#...#.#.#
#####.#########.#.#.#########.#.#########.#.#.#######.#.#.#.#######.###.#.#.#.#.###.###.#####.###.#.#
#.........#.#.....#...#...#...#.....#.......#.......#.#...#.......#.....#.#.#.#.#...#...#.....#...#.#
#.#######.#.#.#####.###.#.#.###.#.###.#####.#######.#.#.#########.#######.#.#.###.#####.#.#####.#.#.#
#.#.....#...#.#.....#...#.#.#...#.....#...#...#...#.#.#.......#.#.#...#.#.#.#...#.....#...#...#.#...#
#.#.###.#####.#.#####.###.#.#####.#####.#.#.###.#.#.#.#######.#.#.#.#.#.#.#.###.#.###.#####.###.#####
#.#...#.....#.#.#...#.#.#.#.....#.#.....#.#.#...#.#.#.....#...#.#.#.#...#.#...#.#.#...#...#...#.#...#
#.###.#####.#.###.#.#.#.#.#.###.#.#.#####.###.###.#.#####.#.###.#.#.#####.###.#.#.#.###.###.#.#.###.#
#...#.#...#...#...#.#.#...#.#...#.#.....#.....#...#.....#.#.....#.#.......#...#.#.#.#...#...#.#.....#
#.###.#.#######.###.#.#.#####.###.#####.#########.#.###.#.#.#####.#.#######.###.###.###.#.###.#####.#
#...#.#.........#.....#.#...#.#.#.#...#.........#.#.#...#.#.#.....#.#.......#...#...#...#.#.#.....#.#
###.#.#.#####.#########.#.#.#.#.#.###.#########.#.###.#.#.###.#####.#.#.#######.#.###.###.#.#####.#.#
#...#.#.#...#.......#...#.#.#.#.#...#.......#...#.#...#.#.....#.....#.#.......#...#.....#.#...#...#.#
#.#.#.###.#.#######.#.###.#.#.#.###.###.#.###.###.#.###########.#############.#########.#.#.###.#.#.#
#.#.#.....#.#.......#.#...#.#.#...#.....#.#...#...#...#.....#...#.....#.....#...#.......#...#...#.#.#
#.#.#######.#.#######.#.#.#.#.###.#######.#.###.#####.#.###.#.###.###.#.###.###.###.###.###.#.#####.#
#.#.#.....#.#.#.....#.#.#.#...#.......#...#...#.......#.#...#.#...#.#.#.#.#.#...#...#.#.#.#.#.......#
#.###.###.#.#.#.#####.###.#####.#######.#####.#########.#.###.#.###.#.#.#.#.#.###.###.#.#.#.#########
#...#.#.#...#.#.....#...#.#...#.......#.#...#.........#.#.....#.#...#.#.#...#.#...#...#...#.#.......#
###.#.#.#####.#.###.###.#.#.###.#####.#.#.#.#########.#.#######.###.#.#.#.###.#.###.#####.#.#.###.#.#
#...#.#.....#.#...#...#...#...#.#...#...#.#.......#...#...#.#.....#.#.#.#.#...#.#.........#.#...#.#.#
#.#.#.#.#.#.#.#####.#########.#.#.###############.#.#.###.#.#.###.#.#.#.#.#.###.#.#########.#####.#.#
#.#.#.#.#.#.#.#.....#.........#.#.#.........#.....#.#.#.#.#...#...#.#.#.#...#...#.#.....#.#.....#.#.#
#.###.#.#.#.#.#.#.###.#.#######.#.#.###.###.#.#####.#.#.#.#####.###.#.#.#####.###.###.#.#.#####.#.#.#
#.....#.#.#.#.#.#.#...#.......#.#.....#.#.#.#.#.....#.#.#.#.....#.......#...#...#.....#.#.#.....#.#.#
#.#######.#.#.#.###.#########.#.#.#####.#.#.#.#.#####.#.#.#.#############.#.#.#.#######.#.#.#####.#.#
#...#.....#.#.#.#...#.....#.#...#...#...#.#.#.#...#.#.#.#.#...............#.#.#.......#...#...#...#.#
###.#.#####.#.#.#.###.###.#.#####.###.###.#.#.###.#.#.#.#.#########.#######.#.#######.#######.#.#####
#.#...#...#...#.#...#...#.#...#...#...#...#.#...#.#.....#...#.....#.#...#...#...#.....#.....#.#.....#
#.#####.#######.###.###.#.###.#.###.###.#.#.#.###.#########.#.###.###.#.#.#######.###.#.###.#.#.###.#
#.#...........#...#.#...#...#.#.#.#.#...#.#.#...#.........#.#.#.#.....#.#.....#...#.#.#.#.#.#.#.#...#
#.#.#######.#.###.#.#.#####.#.#.#.#.#####.#.###.#######.#.#.#.#.#######.#.###.#.###.#.#.#.#.#.###.#.#
#.....#...#.#.....#.#.#.#...#.....#.....#.....#...#.....#.#...#.....#...#.#...#.#.....#...#.#.#...#.#
#.#####.#.#.#######.#.#.#.#############.#####.#.###.#.#########.###.#.#####.###.###.###.###.#.#.###.#
#.#.....#...#.......#.#.#.#...#.........#...#...#...#.#.......#...#.#.#.....#.....#...#.#...#...#.#.#
#.#.#########.#######.#.#.#.#.#.#########.#.#####.###.#.###.#.#.#.###.###.###.###.#####.#.#######.#.#
#.#.#.......#...#.....#...#.#.#.........#.#...#...#...#.#...#.#.#.....#...#.....#.....#.#.......#...#
#.#.#.#####.###.#.#.###.###.#.#.#######.#.###.#.#######.#.###.#.#######.#########.###.#.###.#####.###
#.#.....#...#.#.#.#.#.......#.#...#...#.....#.#.........#.#...#.#.....#.........#.#...#.#.#.....#.#.#
#.#######.#.#.#.#.#.#########.###.###.#######.###########.#####.#.###.#.#####.#.###.###.#.#####.#.#.#
#...#.....#...#.#.#.......#.#...#.......#...#...........#.....#...#.#.#.#...#.#...#.....#...#.#.#...#
#.###.#.#######.#.#######.#.###.#######.#.#.###.#############.#####.#.###.#.#.###.#.#####.#.#.#.###.#
#.#...#.#.......#.#.......#...........#.#.#.....#...........#.......#.#...#.#...#.#.......#.#.#...#.#
#.#.###.#.#########.#.###############.###.#######.#######.#.###.###.#.#.###.#####.#########.#.#.###.#
#.#.#...#.#.........#.#.......#B....#...#.........#.......#...#.#...#.#.#...#.....#.......#.#.#.....#
#.#.#####.###.#########.#####.#.###.###.#####.#####.#####.#####.#####.#.###.#.#####.#######.#.#######
#.#.....#...#.#.........#...#.#...#...#.....#.....#.#.#...#.....#...#.#...#...#...............#.....#
#.#####.###.#.#.#########.#.#.###.###.#####.###.###.#.#.###.#####.#.#.###.#.#################.#.#####
#.#...#...#.#.#...#.....#.#...#...#.#.....#...#.#...#.....#.......#...#...#.#...............#.#.....#
#.#.###.#.#.#.#.###.###.#.#####.###.#.#######.#.#.#####################.#####.###########.#.#.#.###.#
#...#...#.#.#...#...#...#...#...#.....#.......#.#.........#.............#...#.#.....#...#.#.#.#.#...#
#####.###.#.#.###.###.#####.#.###.#####.#######.#########.#.#######.#####.#.#.#.#.###.#.#.#.#.###.#.#
#.....#.#.#.#.#...#.#.......#.#.#...#...#...#...#.......#...#.....#.......#.#...#.#...#.#.#.#.....#.#
#.#####.#.#.###.###.#########.#.###.#.#####.#.#########.#####.#############.#####.#.###.###.#######.#
#.....#...#.....#.......#.....#.....#...#...#.#...#...........#...#...#...#...#...#.#.......#.......#
#####.#.#############.#.###.###########.#.###.#.#.#.#.#########.#.#.#.#.#.###.#.###.#############.###
#.....#.#...........#.#.#...#.........#.#.....#.#.#.#.#...#.....#.#.#...#A..#...#.#.....#.......#...#
#.#####.#######.###.#.#.#.###.#####.###.#####.#.#.#.###.#.#.#####.#.#######.###.#.#####.#.#####.###.#
#...#...#.......#.....#...#...#...#.....#...#...#...#...#.#.....#.#.#.....#...#.#.....#.....#...#...#
###.#.###.#############.###.###.#.#######.#.#########.###.###.#.#.#.#.#######.#.###.#.#######.#######
#...#.#...........#.....#...#...#...#.....#...#.......#.#...#.#.#.#.#.......#.#.#...#...#...#.......#
#.###.###.#######.#.#####.###.#####.#.###.###.#.#######.###.###.#.#.#######.#.#.#.#######.#.#.#####.#
#.#.#...#.#...#...#.#...#.#...#.#...#.#...#.#.#.#...............#...#.......#.#.#.#.......#.#.#.#...#
#.#.###.###.#.#.###.#.#.#.#.###.#.#####.###.#.#.#####################.#######.#.#.#.#######.#.#.#.#.#
#.#.....#...#...#.....#.#.#.#...#.#.....#...#.#.............#.......#.....#...#...#.#.....#.#...#.#.#
#.###.###.#######.#######.#.#.###.#.#####.###.#.###########.#.#.#####.###.#.###.###.###.#.#.#####.#.#
#...#.....#.....#.#.......#.#...#.#.#...#...#.#.#...........#.#.........#.#.#...#...#...#.#.#.....#.#
#.#.#.#####.###.#.#.#######.#.#.#.#.#.#.###.#.###.#####################.#.#.#.###.###.#.###.#.#####.#
#.#.#.#...#...#...#.#.....#.#.#.#...#.#.....#...#...............#.....#.#...#.#...#...#.#...#.....#.#
#.#.###.#.#########.#.###.#.###.#####.#####.###.#.#####.#######.#.###.#.#####.#.###.###.#.###.###.###
#.#...#.#...........#...#...#...#.......#.....#.#.#...#.#...#...#...#.#.#.....#.#...#...#.#...#.#...#
#####.#.###############.#####.###.#####.#####.#.###.#.#.#.#.#.###.###.#.#.#####.#.###.###.#.###.###.#
#.....#.#.#.......#.....#.............#.....#.#.....#.#...#.#.....#...#.#...#...#.#.#.#.#.#.#.....#.#
#.###.#.#.#.#.#####.#.#.###################.#########.#####.#######.###.#####.###.#.#.#.#.#.#.#####.#
#.#.#.#.#.#.#.......#.#.#.................#...............#.....#...#.#...#...#...#.#...#.#...#.....#
#.#.#.#.#.#.#########.#.#.###############.###.###########.#######.###.###.#.###.###.###.#.#####.#####
#.#...#.#...#.#.....#.#.#.#...#.........#...#...#.....#...#.......#.....#...#...#.......#.#.....#...#
#.#.###.#.###.#.###.#.###.#.###.#######.###.#####.###.#.###.#######.###.#####.###########.#.#####.#.#
#.#...#.#.#...#.#...#...#.#...#.......#.....#.....#...#.#...#...#.....#.....#...........#.#.......#.#
#.#####.#.#.###.#.###.#.#.###.#######.#######.#####.###.#.###.###.#######.#.#.#########.#.#.#######.#
#...#...#...#...#...#.#.......#.....#.#.....#.#.#...#.#...#.#...#...#.....#.#.#.........#.#.#...#...#
###.#.#######.#####.#.#########.###.#.#.###.#.#.#.###.#####.#.#.#.###.#####.###.#########.#.#.#.#.#.#
#...#...#.....#...#.#...#.......#...#.....#.....#.#...#.....#.#...#...#...#.#...#.........#.#.#...#.#
#.#.###.#.#######.#.###.#.#######.###.###########.#.#.#.###.#.#####.###.#.#.#.###.###########.#####.#
#.#.#...#.#.......#.#...#.#...#...#.....#...#.....#.#.#.#...#...#...#...#.#...#...#.....#.....#.....#
#.###.###.#.#######.#.###.#.#.#.#########.#.#.#####.###.#.#####.#.###.#######.#.#####.#.###.###.#####
#...#...#.#.#.....#.#.#...#.#.#...#...#...#.#.#.....#...#.....#.#.#...........#.#...#.#.....#...#...#
#.#.###.#.#.#.###.#.###.###.#####.#.#.#.###.#.#.#####.#####.###.#.#############.#.#.#.#######.#####.#
#.#.......#.....#.......#...........#...#.....#...........#.....#.................#...#.............#
#####################################################################################################
#####################################################################################################
#...#...#.......#...............#.........#.......#.....#...#.....#...#.....#...........#.....#.....#
#.#.#.#.#.#####.#.#############.###.#######.###.#.#.###.#.#.###.#.#.#.#.###.#.#######.#.###.#.###.#.#
#.#...#.#.#...#...#...#.....#...#...#.......#...#...#.#...#.....#.#.#.#.#.#.#.#.....#.#.#...#.....#.#
#######.#.#.#########.#.###.#.###.###.#######.#######.###########.#.#.#.#.#.#.#####.#.#.#.#########.#
#.....#.#.#...........#.#.#.#.#...#.......#...#.....#...........#.#.#...#.#.#.#...#.#.#...#...#...#.#
#.###.#.#.#.###.#######.#.#.#.#.###.#######.###.#####.#########.#.#.#####.#.#.#.#.#.#.#####.#.#.#.#.#
#...#.#...#.#.#.........#.#...#.....#...#...#.......#.#.....#...#...#.....#.#...#...#...#...#.#.#...#
#.###.#####.#.###########.###########.#.#.#########.#.#.###.#.#.#####.#.###.###########.#.###.#.#####
#.#...#...#.#.....#.....#.............#.#.#.......#...#.#...#.#.#.....#.....#.......#...#.#...#.#...#
#.#.#.#.#.#.#.###.#.#####.#####.#######.#.#.#####.#####.#.###.#.#.###########.#####.#.#####.#.#.###.#
#.#.#.#.#.#...#...#...#.......#.#.....#...#.#...#.......#.#...#.#.#...#.......#...#.#.#.....#.#.#...#
#.#.#.#.#######.###.#.#.#######.#.#######.#.#.###########.#.#####.#.#.#.#########.#.#.#.#######.#.#.#
#.#.#.#...#...#.#...#...#.......#.........#...#...........#.....#...#.#...#...#...#.#.#.........#.#.#
###.#.#.#.#.#.#.#.#######.###################.#.###########.###.#####.###.#.#.#.###.#.#.#########.###
#...#.#.#.#.#...#.....#...#...................#.#.......#.....#.....#.#...#.#.#.......#.#.....#.....#
#.###.###.#.#####.#####.###.###################.#.#.###.#####.#####.#.#.###.#.#########.###.#.#.###.#
#.#.......#.#...#.#...#.........#.........#.....#.#.#...#...#.#...#.#.#.....#.......#...#...#.#.#...#
#.#########.#.#.###.#.#.#####.###.#######.#.#######.#.###.#.#.#.###.#.#####.#######.#.###.###.###.#.#
#.#.........#.#.....#.#.#...#.#...#.....#...#.......#.#...#.#...#...#.#...#.....#...#.....#.#...#.#.#
#.#.#########.#######.###.#.#.#.###.###########.#####.#.###.#####.#.#.#.#.#####.#.#########.###.#.#.#
#.#.#.........#.....#.#...#.#.#.#.....#.........#.....#.#.#.......#.#.#.#...#...#.......#.#.....#.#.#
#.#.#.#.#######.#####.#.###.###.#.###.#.#####.###.#####.#.###.#######.#.###.#.#########.#.#.#####.#.#
#.#.#.#...#...#.......#.#.#.....#.#.#...#.#...#.#.#.....#.....#.....#...#.#.#...#...#...#.#.#.....#.#
#.#.#.###.#.#.#.#######.#.#######.#.#####.#.###.#.#.###########.###.#####.#.#.###.#.#.###.#.#.#####.#
#.#.#...#.#.#.#.#.......#.......#.........#...#.#.#.#.........#.#.....#.....#.#...#.#.#...#.#.#.....#
#.#.#####.###.#.###.#####.#.#####.###########.#.#.#.#.#######.#.#.#####.#######.###.#.#.#.#.#.#.#####
#.#.#.....#...#.....#.....#.#.....#...#...#...#.#...#.#...#.#...#.....#.........#.#...#.#.#...#.#...#
#.#.#.#####.#.#######.#####.#.#####.#.#.#.#.###.###.#.#.#.#.#########.###########.#####.#######.###.#
#.#.#.#.....#...#.......#.#.#.#...#.#.#.#.#.#.#.....#...#.#.......#...#.........#...#...#.....#...#.#
#.#.#.#####.#####.#####.#.#.#.#.###.#.#.#.#.#.#.#########.#.#####.#.###.#####.#.#.#.#.#.#.###.###.#.#
#...#.....#.#.....#.....#...#.#...#.#...#...#.#.#.....#.#.#...#...#.....#...#.#...#...#.#...#...#.#.#
#.#######.#.#.#####.#########.#.#.#.#########.#.#.###.#.#.#####.###########.#.#############.#.#.#.#.#
#.#.......#.#...#.#.......#...#.#.#.....#.....#...#.#.#.#...#...#...........#.............#.#.#.#...#
#.###.#####.###.#.#######.#.#####.#####.#.#########.#.#.###.#.###.###.###########.#####.#.#.#.#####.#
#.#...#...#...#...#.#.....#.#.....#.#...#.#...........#...#.#.......#.......#...#...#...#.#.#.......#
#.#.###.#.#.#.###.#.#.#####.#.###.#.#.###.#.#############.#.#.#####.#######.#.#.#.###.#.###.#########
#...#...#.#.#.#.#.#.#.....#.#...#.#.#...#.#...#.........#.#.#.#...#...#.#...#.#.#.#...#.#...#.......#
#######.#.#.#.#.#.#.#####.#.###.#.#.###.#.###.#.#.#####.#.#.###.#.###.#.#.###.#.###.###.#.###.#.#####
#.......#...#.#.#.#...#...#.#...#.#...#.#.......#.#...#...#.#...#...#.#.#...#.#.....#...#.#...#.....#
#.###########.#.#.#.###.#.#.#.###.#.###.###########.#.#####.#.#####.#.#.###.#.###########.#########.#
#.#.......#.....#...#...#.#.#.#...#...#.....#.......#.......#.#...#.#.....#.#.....#.......#...#...#.#
#.#.#####.#.#######.#.#####.#.#.#####.#####.#.###############.#.#.#.#######.#####.#.#######.#.#.#.#.#
#.#.....#.#.#.....#.#.......#.#.......#...#.#.#...#...........#.#.#.#.........#...#.#...#...#.#.#...#
#.#.#####.#.#.#.###.#########.#######.###.#.#.#.###.#.###########.#.#.#####.###.#.#.#.#.###.#.#.#####
#...#...#.#.#.#.....#.......#.......#.#...#...#.....#...........#.#.#.....#.#...#.#...#.....#.#.....#
#.###.#.#.#.#.#######.###.###.#####.#.#.#######.###############.#.#.#.###.###.###############.#####.#
#...#.#...#.#.#.......#.#.......#...#.#.....#...#.....#...#...#.#...#...#.#...#.........#.....#.....#
#.###.#######.###.#####.#########.###.#.#.###.###.#.#.#.#.###.#.###.#####.#.###.###.#####.#####.#####
#.#...#.....#...#.#...........#...#.#.#.#...#.#...#.#...#.#...#...#.....#.#.....#.#.......#.#.......#
###.#.#.###.###.#.#########.###.###.#.#.###.#.#####.#####.#.#.###.#####.#.#######.#########.#.#####.#
#...#.#.#.#...#.#.........#.#...#...#.#...#.#.......#...#.#.#...#...#.#...#.....#.........#.....#...#
#.#####.#.#.#.#.#########.#.#.###.#.#.#.###.#########.#.#.#.#######.#.###.#####.#.#######.#.#####.#.#
#.....#...#.#.#.#...........#.#...#.#.#.#.....#.......#.#.#...#.....#...........#.#...#...#.#.#...#.#
#.###.#.###.#.#.#.###########.###.#.#.#.#.#####.#####.#.#.###.#.#################.#.#.#.###.#.#.###.#
#...#...#...#.#.#.#.....#...#.#...#.#.#.#.........#...#.#.....#...................#.#.#.......#.#.#.#
#########.###.#.###.###.#.#.#.#.#####.#.###########.###.#####.#####################.###########.#.#.#
#.........#...#.#...#.#...#.#.#.......#.#...#...#...#...#...#...#.....#...........#.......#...#.#...#
#.###########.#.#.###.#####.#.#.#######.#.#.#.#.#.###.###.#.###.#.###.###.#######.#.#####.#.#.#.#.###
#...........#.#.#.#.......#.#.#.#...#.....#...#.#.#.......#...#.#...#.#...#.......#...#...#.#...#...#
#.#########.#.#.#.#.###.###.#.#.#.#.#.#####.#####.#############.#.#.#.#.###.###########.#.#.#######.#
#.#.........#.#...#.#.#.....#.#...#.#.#...#.#...#.#...........#.#.#.#...#.#.#.........#.#.#.......#.#
###.#.#######.#####.#.#######.#####.###.#.###.#.#.#.#########.#.###.#####.#.#.#######.#.#####.###.#.#
#...#.#.....#.....#.....#.....#...#.#...#.....#...#...#.....#.#...#.....#.#.#...#...#...#...#.#...#.#
#.#####.###.#.#########.#.#.###.#.#.#.###########.#.###.###.#.###.#.###.#.#.###.#.#.#.###.#.###.###.#
#.......#...#.#.......#.#.#.#...#.#.#.#.........#.#.#...#.....#.#.#.#...#...#...#.#...#...#.....#...#
#.#######.###.#.#####.#.###.#.#.###.#.#.#######.###.#.#######.#.#.###.###.###.###.#####.#########.###
#.#...#...#...#.#.#...#.....#.#.....#...#...#...#...#.....#.#...#.#...#.......#.#...#...#.......#...#
#.#.###.###.###.#.#.#########.#######.###.###.#.#.#######.#.###.#.#.#.#########.#.###.###.#####.###.#
#...#...#.#.#.#.#.#.........#.#.....#.#.....#.#.#...#.....#.....#...#.#.....#.#...#...#.#.#.#.....#.#
#####.###.#.#.#.#.#########.#.#####.#.#####.#.#.###.#.#.#############.#.###.#.#.###.###.#.#.#.#####.#
#.....#...#.#.#.#...#.....#...#.....#.......#.#.#...#.#.#...#.........#.#...#...#...#.......#.....#.#
#.#.#####.#.#.#.#.#.#.#########.###.#.#######.#.#.###.###.#.#.#########.#.###.###.###.#####.#####.#.#
#.#.#...#.....#.#.#.#.............#.#.#.......#.#.#.#.....#.#.#.....#...#.#.....#.#...#...#.#...#.#.#
#.###.#.#######.#.#.#########.###.###.#.#######.#.#.#######.#.###.###.###.#######.#.###.#.###.#.#.#.#
#.#...#.......#...#.#.......#...#.....#.....#...#...#.#...#.#.#...#...#...........#...#.#.....#.#...#
#.#.#########.#####.#.#####.###.###########.#.#####.#.#.#.#.#.#.#.#.#.#################.#######.#####
#...#...#.#.......#...#...#...#...#.........#.#...#.#.#.#...#...#.#.#.#.........#.......#.....#.....#
#.###.#.#.#.###########.#####.#.###.#########.#.#.#.#.#.#####.#####.#.#.#######.#.#######.#.#######.#
#...#.#...#...........#.....#.#.#...#.#.........#.#...#.......#.....#.#.#...#...#.....#...#.....#...#
###.#.###############.#.###.#.###.###.#.#############.#########.#######.#.###.#######.#.#######.#.#.#
#.#.#.......#.........#.#.#...#...#.....#...#...........#.....#.......#.#.#...#.....#.#.....#...#.#.#
#.#.#####.###.#######.#.#.#####.#########.#.#.#########.###.#.#######.#.#.#.###.#.###.#######.###.#.#
#.........#...#.#.....#.#.....#...........#.#...#.#...#.....#.#.......#.#.#.....#.............#...#.#
#.#####.###.###.#.#####.#.#####.###########.###.#.#.#.#########.#.#####.#.#####################.###.#
#.#...#.#...#...#.#.....#.#.........#.....#...#...#.#.#.........#.#...#.#...........#.......#...#...#
#.#.#.###.###.#.#.#.#####.#.#######.#.###.#.###.###.#.#.#########.#.#.#.#.#.#########.#####.#.###.###
#.#.#.....#...#.#.#.#.......#.....#.#.#.#.#.....#...#.#.#.........#.#.#...#.#.........#...#...#.#.#.#
###.###.#######.#.#.#########.###.###.#.#.#######.###.#.###########.#.#####.#.###########.#####.#.#.#
#...#...#.....#...#...........#.#.#...#.#.........#.#.#.............#.#.....#.#...#.....#.......#...#
#.#######.###.#################.#.#.###.###########.#.#.#####.#######.#.#####.#.#.###.#.#.#.#######.#
#.......#.#.#.#.............#...#...#.........#.....#.#.#...#.#...#...#.#.#...#.#.....#...#.#.....#.#
#.#####.#.#.#.#.###.#######.#.#######.#########.###.#.#.#.#.###.#.#.###.#.#.###.#############.###.#.#
#.#...#...#.#...#.#.......#.#...#...............#...#.#.#.#.#...#.#.....#.#...#.............#...#...#
#.###.#####.#####.#######.#.###.#.###############.###.###.#.#.###.#.#####.###.###.#########.###.#####
#.#...#.#.............#...#.....#.#.#.......#...#...#.....#.#.#.#.#...#.....#...#.#.....#.....#.#...#
#.#.#.#.#.#########.###.###.#####.#.#.###.#.###.###.#######.#.#.#.###.#.###.###.#.#.#####.#.###.###.#
#.#.#.#...#.......#.#...#...#.....#...#...#.#...#.#.......#.#.#.#...#...#.....#.#.#...#...#.#...#...#
#.#.#.#####.#####.#.#.#######.#########.###.#.#.#.#####.###.#.#.###.###########.#.###.#.#####.###.#.#
#...#.......#.......#...................#.....#.......#.......#.................#.....#...........#.#
#####################################################################################################

View File

@ -0,0 +1,405 @@
201 81
#################################################################################
#...#.....#.......#...#.....#.........#.....#...#.......#...........#.........#.#
#.#.#.###.###.###.#.#.#.###.#.#####.#.#.#.#.#.#.###.###.#.#####.###.#.#####.#.#.#
#.#.#...#.#...#.....#.#.#.#.......#.#.#.#.#.#.#...#.#...#.#.#...#...#.#.#...#...#
###.###.#.#.###########.#.#########.#.###.#.#.###.#.#####.#.#.###.###.#.#.#######
#.#.#...#.#.............#.#.....#...#...#.#...#.#.#...#.....#.#.#.#.#.#.#.......#
#.#.#.###.###########.###.#.###.#.#####.#.#####.#.#.#.#.#####.#.#.#.#.#.#######.#
#.#...#.#.#.........#.#...#.#.#.#.#.....#.#.....#.#.#...#.....#...#...#.#.......#
#.#####.#.#.#######.#.#.#.#.#.#.#.#.#####.###.#.#.#######.#####.#####.#.#.#######
#.#...#...#...#.#...#.#.#.#.#.....#.#.....#...#.#.....#...#...#.#...#...#.......#
#.#.#.#.#####.#.#.###.###.#.#######.###.###.###.#####.#.#####.#.#.#.#.#########.#
#...#.#.......#.#.#.......#...#...#.....#.#...#.....#.#.#...#.....#.#.#...#...#.#
#####.#########.#.#.#########.#.#########.#.#.#######.#.#.#.#######.###.#.#.#.#.#
#.........#.#.....#...#...#...#.....#.......#.......#.#...#.......#.....#.#.#.#.#
#.#######.#.#.#####.###.#.#.###.#.###.#####.#######.#.#.#########.#######.#.#.#.#
#.#.....#...#.#.....#...#.#.#...#.....#...#...#...#.#.#.......#.#.#.....#.#.#...#
#.#.###.#####.#.#####.###.#.#####.#####.#.#.###.#.#.#.#######.#.#.###.#.#.#.#####
#.#...#.....#.#.#...#.#.#.#.....#.#.....#.#.#...#.#.#.....#...#.#.#...#.#.#.....#
#.###.#####.#.###.#.#.#.#.#.###.#.#.#####.###.###.#.#####.#.###.#.#.#####.#####.#
#...#.#...#...#...#.#.#...#.#...#.#.....#.....#...#.....#.#.....#.#.......#...#.#
#.###.#.#######.###.#.#.#####.###.#####.#########.#.###.#.#.#####.#.#######.#.#.#
#...#.#.........#.....#.#...#.#.#.#...#.........#.#.#...#.#.#.....#.#...#...#...#
#.#.#.#.#####.#########.#.#.#.#.#.###.#########.#.###.#.#.###.#####.#.#.#.#.#####
#.#.#.#.#...#.......#...#.#.#.#.#...#.......#...#.#...#.#.....#.....#.#.#.#.....#
#.#.#.###.#.#######.#.###.#.#.#.###.###.#.###.###.#.###########.#####.#.#######.#
#.#.#.....#.#.......#.#...#.#.#...#.....#.#...#...#...#.....#...#...#.#.........#
###.#######.#.#######.#.#.#.#.###.#######.#.###.#####.#.###.#.###.#.#.###########
#...#.....#.#.#.....#.#.#.#...#.......#...#...#.......#.#...#.#...#.#...........#
#.###.###.#.#.#.###.#.###.#####.#######.#####.#########.#.###.###.#.#.#########.#
#...#.#.#...#.#...#.#...#.#...#.......#.#...#.........#.#.....#...#.#.#.......#.#
#.#.#.#.#####.###.#.###.#.#.###.#####.#.#.###########.#.#######.###.#.#.#.#####.#
#.#.#.#.....#.#...#...#...#...#.#...#...#.......#.#...#...#...#...#.#...#.#...#.#
###.#.#.#.#.#.#.###.#########.#.###.#####.###.#.#.#.#.###.#.#.###.#.#######.#.#.#
#...#.#.#.#.#.#...#.#.........#.#.......#.#.#.#...#.#.#.#.#.#.....#.........#...#
#.###.#.#.#.#.###.###.#.#######.#.#######.#.#.#####.#.#.#.#.#######.#####.#######
#.....#.#.#.#.#...#...#.......#.#...#.......#.#.....#.#.#.#.....#...#...#.#.....#
#.#######.#.#.#.###.#########.#.###.#.#######.#.#####.#.#.#.###.#####.#.###.###.#
#...#.....#.#.#.#...#.....#.#...#...#.#...#...#...#.#.#.#.#...#.......#.....#...#
###.#.#####.#.#.#.###.###.#.#####.#.#.#.#.#.#.###.#.#.#.#.#########.#####.###.#.#
#.#...#...#...#.#...#...#.#.......#.#...#.#.#.#.#.#.....#...#.....#.#...#.#...#.#
#.#####.#######.###.###.#.###.#########.###.#.#.#.#########.#.###.###.#.#.#.###.#
#...#.........#...#.#...#...#...........#...#...#.........#.#.#.#.....#.#.#...#.#
#.###.#####.#.#.#.#.#.#####.#.###########.#####.#######.#.#.#.#.#######.#.###.###
#.#...#.....#...#.#.#.#.#...#.....#...#...#...#...#.....#.#...#.....#...#.#.#...#
#.#.###.###.#######.#.#.#.#######.#.###.###.###.###.#.#########.###.#.###.#.###.#
#...#.#.#...#.......#.#.#.#...#.#.#...#...#.....#...#.#.......#...#.#.#.....#...#
#.###.#.###.#.#######.#.#.#.#.#.#.###.###.#######.###.#.###.#.#.#.###.#.#####.#.#
#.#...#...#.#...#.....#...#.#.#.#.#.....#.....#...#...#.#...#.#.#.....#.#.....#.#
#.###.###.#.###.#.#.###.###.#.#.#.#.#########.#.#######.#.###.#.#########.#####.#
#.....#...#.#.#.#.#.#.......#.#...#.....#.....#.........#.#...#.#.....#...#...#.#
#.#####.###.#.#.#.#.#########.###.#####.#.#.#############.#####.#.###.#.###.#.#.#
#.#.....#.....#.#.#.......#.#...#.......#.#.#...........#.....#...#.#.#.#...#.#.#
###.###.#######.#.#######.#.###.#######.#.#.#.#######.#######.#####.#.#.#.#.###.#
#...#...#.......#.#.......#...........#.#.#.#.#...#.#.......#.......#.#.#.#.....#
#.###.###.#########.#.###############.###.###.#.#.#.#######.###.###.#.#.#########
#.#.....#.#.........#.#.......#.#...#...#.......#.#.....#.....#.#...#.#.........#
#.#######.###.#########.#####.#.#.#.###.#########.#.###.#.#####.#####.#########.#
#.......#...#.#.........#...#.#.#.#...#.....#...#.#...#.#.#.....#...#.#...#...#.#
#.#####.###.#.#.#########.#.#.#.#.###.#####.###.#.###.###.#.#####.#.#.#.#.#.#.#.#
#...#.#...#.#.#...#.....#.#...#...#.......#...#.#...#.#...#.......#...#.#.#.#.#.#
###.#.###.#.#.#.###.###.#.#########.#.#######.#.###.#.#.###############.#.#.#.#.#
#.#.#.#...#.#...#...#...#...#.....#.#.#.......#...#.#.#...........#.....#.#.#.#.#
#.#.#.#.#.#.#.###.###.#####.###.#.#.###.#######.#.#.#.###.#.#####.###.###.#.#.#.#
#.#...#.#.#.#.#...#.#.......#...#.#.#...#.......#.#...#...#.#...#.....#.#...#.#.#
#.#.###.#.#.###.###.#########.###.#.#.###.#.#######.###.###.#.#.#######.#####.#.#
#...#...#.#.....#...#.....#...#.....#...#.#.........#...#...#.#.....#.......#.#.#
#####.###.#######.#.#.#.#.#.###########.#.###########.###.###.#####.#.#.#####.#.#
#.....#...#...#...#.#.#.#...#.........#.#.....#...#...#.#...#.....#.#.#.....#...#
#.#####.###.#.#.###.###.#.###.#####.###.#.#####.#.#.###.###.###.###.#.#####.###.#
#.....#.#...#...#...#...#.#...#...#.....#.#.....#...#.#.......#.#...#.....#.....#
#####.#.#.#######.###.#####.#####.#########.#.#######.#.#######.#.###############
#.....#.#.#.....#...#...#...#...#...........#.#.....#...#.....#.#...............#
#.#####.#.###.#####.###.#.###.#.#.###########.#.###.#.###.###.#.###############.#
#.#...#...#...#...#.#...#.#...#...#.......#...#.#...#.#.#.#.#...#...#...........#
#.#.#######.###.#.#.#.#.#.#.#######.#####.#####.#.###.#.#.#.#####.#.#.###########
#.#.......#.....#.....#.#.#.......#.#...#.......#.#.....#.#.......#.#...........#
#.#####.###.#############.#######.#.#.###########.#.#####.#.#####.#.###########.#
#.....#.........#.#.......#.......#...#...........#.#.....#.#.#...#.#...#.......#
#.###.#########.#.#.#######.#########.#.###########.#.#####.#.#.###.#.###.#####.#
#...#.#...#.......#.#.................#.#.......#...#...#.....#.#.#.#...#...#...#
#####.#.#.#########.#.#################.#.#######.#####.#.#####.#.#.###.###.#.###
#.....#.#...........#...#.........#.....#.......#.#...#.#.#.....#.#.....#...#...#
#.###.#.#############.###.#######.#.#####.#####.#.###.#.###.#####.###.###.#######
#.#.#.#.#.......#...#.#...#.....#...#...#.#...#.#.#...#.#...#...#.#...#...#.....#
#.#.#.#.#.#.###.#.#.#.#.###.#.#######.#.#.#.#.#.#.#.#.#.#.###.#.#.#.###.#.#.###.#
#.#...#.#.#...#...#.#.#.#...#.....#...#.....#.#.#.#.#.#...#...#...#.#...#.#.#...#
#.#.###.#####.#####.###.#########.#.#########.#.#.#.#.#####.#.#####.#.#####.#.###
#.#...#.#.....#...#.....#.........#.#.#...#...#.#...#.#...#.#.......#.......#...#
#.###.#.#.#####.#########.#########.#.#.#.#####.#####.#.#.#.###################.#
#...#.#.#...#...........#.........#.#.#.#.....#.........#.#...#.....#.....#...#.#
###.###.#.#.#.#########.#.#######.#.#.#.#####.###############.#.###.#.#.###.#.#.#
#...#...#.#.#.#.#.....#...#...#...#...#.#...#.......#.......#.#...#...#.#...#.#.#
#.#.#.###.#.#.#.#.###.###.###.#.#####.#.#.#.#######.#.###.#.#.###.#######.###.#.#
#.#.#...#.#.#...#...#...#.....#.......#.#.#.......#...#...#.#.#...#.......#...#.#
#.#.###.###.###.###.###.#####.#########.#.#####.#######.#####.#.###.#######.###.#
#.#.#...#...#...#.#...#...#...#.#.......#.....#.....#...#.......#...#.#.....#...#
#.#.#.###.###.###.###.###.#.###.#.###########.###.###.###.#######.###.#.#####.###
#.#.#...#.#.#.......#.#.#.#.....#.#.#.......#...#...#.........#...#...#.#.......#
#.#####.#.#.#.#######.#.#.#####.#.#.#.#####.###.###.###########.###.###.#.#####.#
#...#...#.#.#.#.........#.....#.#.#...#.......#.#.#.......#.....#.....#.#.....#.#
###.#.###.#.#.#.#############.#.#.#.###.#######.#.#####.###.#####.###.#.###.###.#
#...#.#...#...#.#.....#.......#.#.#.#.#...........#.....#...#...#.#...#.#...#...#
#.###.#.#######.#.#####.#.#######.#.#.#############.#.###.###.###.#.#.#.#####.###
#.....#.#.....#.#.....#.#.#.....#.#...#...#.......#.#.#...#.#.....#.#.#.#...#...#
#.#####.#.###.#.#####.#.###.###.#.#.###.#.#.#####.#.#.#.###.#.#####.###.#.#.###.#
#...#.....#...#...#...#...#...#...#.#...#.#.#...#...#.#.#.....#...#.......#...#.#
###.#.#####.#####.#.#.###.###.#######.###.#.#.#######.#.#######.#.###########.#.#
#.#.#.#...#.......#.#.#.....#.#.....#.#.#.#.#.#.......#.........#.......#...#.#.#
#.#.#.###.#########.#.#.#####.#.###.#.#.#.#.#.#.#######################.#.#.#.#.#
#.#.#.....#.........#.#.....#.#...#.#.#.#...#.#.#...#...#...#.....#.....#.#.#.#.#
#.#.#####.#######.#.#.#####.#.###.#.#.#.#####.#.#.#.#.#.#.###.###.#.#####.###.#.#
#.#...#.#.......#.#.#...#.#...#...#...#.......#.#.#...#...#...#.#.#.....#...#.#.#
#.###.#.#######.###.###.#.#####.#########.###.#.#.###.#####.###.#.#.###.#.#.#.#.#
#.#...#.....#.#.....#...#.......#.......#.#.#.#.#.#...#.....#.#...#...#.#.#.#...#
#.#.#####.#.#.#######.###.#.#####.#####.#.#.#.#.#.#####.#####.#.###.###.###.###.#
#.#...#...#.#...#.....#...#.#.......#...#...#.....#.....#.....#.#...#...#...#...#
#.###.#.###.#.#.#.#######.###.#######.#############.#########.#.#####.###.#.#.###
#...#.#.#.....#.#...#...#.....#.....#...#.....#.....#.........#...#...#...#.#...#
###.#.#.###########.#.#.#.#####.###.###.#.###.#.#####.###########.#.###.#######.#
#...#.#.....#.....#...#.#.#...#...#.#...#.#.#...#...#.........#...#.#...........#
#.###.#.###.#.###.#####.###.#.###.#.#.#.#.#.#####.#.#.#######.#.###.#########.###
#...#.#.#...#...#.......#...#.#...#...#.#.#.......#.#.....#...#.#.#.........#...#
#.#.#.#.#.#####.#########.###.#.#########.#######.#.#.#####.###.#.#.#######.###.#
#.#...#.#.....#.#.........#.#.#.........#.....#...#.#.#.....#...#.....#.....#...#
#.#####.###.###.#######.###.#.#########.#####.#.###.###.#.###.###.#####.#########
#.#...#...#.........#...#...#...#.....#...#...#.#...#...#.#...#...#.#...#.......#
#.#.#.###.#########.#.#####.###.#.###.#.#.#.###.#.###.###.#.###.###.#.#.#.#####.#
#...#.#...#.....#.#.#...#.....#...#.#...#.#.#...#.#...#...#...#.#...#.#.#.#...#.#
#####.#####.###.#.#.###.#.#########.#####.#.###.#.#.###.#####.#.#.###.###.#.#.#.#
#...#.......#...#.#.....#.................#.#...#...#.......#.#.#.#...#...#.#.#.#
#.#.#########.###.#.#######.###############.#.#######.#######.#.#.#.###.###.#.#.#
#.#.#.....#...#.#...#.....#.#.......#.......#.#.......#.#...#.#.#.#.......#.#.#.#
#.###.###.#.###.#.###.###.#.#.#####.#.#######.#####.###.#.#.#.#.#.#########.#.#.#
#.......#.#...#.....#.#.#.#.#.#.....#.....#.......#.....#.#...#.....#.#.....#.#.#
#.#######.###.#.#####.#.#.#.###.#.#####.#.#.#####.#######.#########.#.#.#####.#.#
#.#.#.....#...#...#...#.#.#...#.#.#...#.#.#.#...#.......#.#.....#.#...#.#.......#
#.#.#.###.#.###.###.###.#.###.#.#.#.#.###.#.###.#######.#.#.###.#.###.#.#########
#.#.#...#.#.#...#...#...#.#.....#.#.#.#...#.#.....#...#...#...#.#.....#.....#...#
#.#.###.###.#.###.###.###.#########.#.#.###.#.###.###.#######.#.#.#########.#.#.#
#.#...#...#.#...#.#.....#...........#.#.#.#...#.#.#...#.......#.#.....#.....#.#.#
#.#.#.###.#.#####.#####.#.###########.#.#.#####.#.#.#.###.#####.#######.#####.#.#
#.#.#.#.#...#...#.....#...#.......#.#...#...#.#...#.#.#...#...#.......#.......#.#
#.#.#.#.#####.#.#####.#####.#####.#.#####.#.#.#.###.#.#.###.#########.###.#####.#
#...#.#...#...#.....#.......#...#.#.......#...#.#...#.#.#...........#...#.#.#...#
#####.#.#.###.#####.#.#####.#.#.#.#.#########.#.#.###.#.#######.#######.#.#.#.###
#...#...#...#.....#.#.#...#.#.#...#.#.......#.#.#...#.#.......#.......#.#...#...#
#.#.#######.#####.#.#.#.#.###.#####.#.#####.###.###.#.#.#####.#.###.#.#.#.#####.#
#.#.......#.......#.#.#.#...#...#...#.#...#...#.....#.#...#.#.#.#...#.#.#.#.....#
###.#.#############.###.###.###.###.#.###.###.#######.###.#.#.#.#.#####.###.###.#
#...#.#.......#...#.#...#.#.#...#...#.......#.......#.#.....#.#.#.......#...#...#
#.#####.#.###.#.#.#.#.###.#.#.###.###.###########.###.#.#####.#.#########.#######
#.......#.#...#.#...#.#...#.#.#.......#.........#.....#...#...#.....#...........#
#.#######.#.###.#####.#.#.#.#.#########.#######.#.#######.#.#######.#.#########.#
#.#...#...#.#.#.#.....#.#.#.#...........#.......#.#.....#.#.#.....#.#.#.....#...#
#.###.#.###.#.#.###.###.###.###.#########.#######.#.#.#.#.#.#.#.###.#.#.###.#.###
#.#...#...#...#...#.#.....#...#.........#.#.....#.#.#.#.#.#.#.#.....#.#B..#.#...#
#.#.#.###.#.#####.#.#####.###.#.#####.###.#.#.#.#.###.#.#.#.#######.#####.#.###.#
#...#.#.#.#.#.....#.....#...#.#.#...#.#...#.#.#.#.#...#.#.#.......#.......#.#...#
#####.#.#.###.#########.###.#.###.#.###.###.#.###.#.###.#.#######.#########.#.#.#
#.#.....#...#.#.#.......#...#.....#.#...#...#.....#.#...#.......#.......#.#...#.#
#.#.#######.#.#.#.#.#####.#.#######.#.#####.#######.#.###.#######.#####.#.#####.#
#.#.#...#...#.#.#.#.#.....#.#.....#.#.....#.#.......#.#...#.....#...#...#...#...#
#.#.#.#.#.#.#.#.#.#.###.###.#.#.###.###.#.#.###.#####.#####.###.#####.###.#.#.###
#...#.#.#.#.#.#.#.#...#...#.#.#...#...#.#.#.#...#...#.#.....#.#.#.....#...#.#.#.#
#####.#.#.#.#.#.#.###.#.#.#.#.###.###.###.#.#.#####.#.#.#####.#.#.#####.###.#.#.#
#.....#...#.#.#...#...#.#.#.#...#.....#...#.#.#.....#.#...#...#...#.....#.#.#.#.#
#.###########.#.###.###.#.#.###.#######.###.#.#.#.###.###.#.#########.###.#.#.#.#
#...#........A#.#...#...#.#.#.#.#...#...#.#.#.#.#.#...#...#.........#.#...#.#.#.#
###.#.#########.#.#######.#.#.#.#.#.#.###.#.#.#.#.#.###.#########.#.#.#.#.#.#.#.#
#...#.#.......#.#.#.......#...#...#.#...#.#.#.#.#...#...#.........#.#.#.#...#.#.#
#.#.#.#.###.#.#.#.#.###############.###.#.#.#.#####.###.#.#########.#.###.###.#.#
#.#.#.#...#.#.#.#.#.#.........#.....#...#.#.#.....#.....#.#.......#.#...#.#.#.#.#
#.###.#.###.#.###.#.#.#######.#.#####.###.#.#.###.#######.#.#.#####.###.#.#.#.#.#
#...#.#.#...#.#...#...#...#...#.#.....#.....#...#...#.....#.#.....#...#.#...#.#.#
###.#.###.###.#.###.###.###.###.#.#.#######.#######.#.#####.#####.###.#.#####.#.#
#...#.#...#.#.#.#...#.....#.....#.#.......#.#.....#.#...#.#.#.#...#...#.#.....#.#
#.###.#.###.#.#.#.#######.###############.#.#.###.#.###.#.#.#.#.###.###.#.#####.#
#...#...#...#.#.#.#.......#...............#...#.#.#...#.#.....#...#...#.#.#.....#
#.#.#####.#.#.#.#.#.#.#####.#####.#############.#.###.#.#########.###.#.#.#####.#
#.#.......#.#.#.#.#.#.....#.#...#.............#...#...#.#.......#...#...#.....#.#
#.#####.###.#.#.#.#######.#.#.###############.#.###.###.#.#####.#.#.###.#####.#.#
#...#...#...#...#.#.......#.#.#.........#.....#.....#.......#...#.#...#.#...#...#
#####.###########.#.#######.#.#.#####.#.#.###########.#######.#####.#.#.#.#.###.#
#...#...........#.#.......#.#...#...#.#.#.......#...#.....#...#.....#.#.#.#.....#
#.#.###########.#.#.#####.#.#.#####.#.#.#######.#.#.###.###.###.#######.#.#######
#.#...#...#...#.#.#.....#...#.#.....#.#...#...#.#.#...#.#...#.#.......#.#.#.....#
#.###.#.#.#.#.#.#.#####.#####.#.#####.###.#.###.#.#####.#.###.#.#####.#.#.#.###.#
#...#.#.#...#...#.....#.#...#.#.#.....#...#.#...#.......#...#.......#...#.#.#...#
#.#.#.#.#######.#####.#.#.#.#.#.#.#######.#.#.###.#########.#######.#####.###.#.#
#.#.#.#.#...#.#...#.#.#...#.#...#.......#.#.#.#.#.#.......#...#...#...#.#...#.#.#
###.#.#.#.#.#.###.#.#.#####.###########.#.#.#.#.#.#####.#.###.###.###.#.###.#.###
#...#.#.#.#.....#.#.#.#...#.............#...#.#.#.....#.#...#...#...#.#...#.#...#
#.###.#.#.#######.#.#.###.###.###########.###.#.#####.#.###.###.#.#.#.###.#.###.#
#...#...#.........#.#...#.....#...#...#...#...#...#.#.#.#.#.#.#.#.#...#...#.#...#
###.#.###########.#.###.###.###.#.#.#.#.###.###.#.#.#.#.#.#.#.#.#.#####.###.#.#.#
#...#.#.........#.....#...#.#...#.#.#.#...#.#...#...#...#.....#.#.#...#...#.#.#.#
#.#####.#######.#########.#.#.###.#.#.#####.#.###########.#####.#.#.#.###.#.#.###
#.#.....#.#.....#.........#.#.#...#.#.#...#.#.......#.....#.....#...#.....#.#...#
#.#.#####.#.#####.###########.#.###.#.#.#.#.#.#####.#.#####.###############.###.#
#.........#...................#.....#...#...#.....#.......#.....................#
#################################################################################
#################################################################################
#...........#.........#.......#.....#...#...#.....#.......#.........#.#.........#
#.###.#####.#.#####.#.#.#.###.#.###.#.#.#.#.#.#.###.#.###.#####.#.#.#.#.###.#####
#...#.#.....#.....#.#.#.#.#.....#...#.#.#.#...#...#.#...#.#...#.#.#.#.#.#.#.....#
###.#.#####.#######.#.###.#####.#####.#.#.#######.#.###.#.#.#.###.#.#.#.#.#####.#
#.#.#.#...#.......#.#...#.....#.#...#.#...#...#...#...#.#...#.#...#.#...#...#...#
#.#.#.#.#.#######.#.###.#####.###.#.#.#####.#.#.###.###.#####.#.###.#.###.#.#.###
#.#.#...#.....#...#...#.......#...#.......#.#.#.....#...#...#.#...#.#.#...#.#...#
#.#.#######.#.#.###.#.#########.###########.#.#.#####.###.###.###.#.#.#.###.###.#
#.#.......#.#.#...#.#.............#.........#.#.#.#...#.....#...#.#.#.#.#...#...#
#.#######.#.#.###.#####.###########.#########.#.#.#.###.###.###.#.#.#.#.#.###.#.#
#.#.....#.#.#...#.#...#.#...........#.......#.#...#.#...#...#.#...#.#.#.#.#...#.#
#.#.#.###.#####.#.#.#.#.#.###########.#####.#.###.#.#.###.#.#.#####.#.#.###.###.#
#...#...#.#.....#.#.#.#.#.........#.......#.#.#.#.#.#...#.#...#.#...#...#...#.#.#
#.#####.#.#.#####.#.#.#.#########.#####.#.#.#.#.#.#.#####.###.#.#.#######.###.#.#
#.....#...#.#...#...#.#.#.....#.#.....#.#.#.#.#...#.....#...#...#.#.......#...#.#
#####.#####.#.#######.#.###.#.#.#####.#.#.###.#####.###.#.#.#####.#.#.#######.#.#
#...#...#...#...#...#.#.#...#.#.#.....#.#...#.#...#.#...#.#.......#.#.#.......#.#
#.#.###.#.#####.#.#.#.#.#.###.#.#.#####.###.#.#.#.###.###.###########.#.#####.#.#
#.#...#...#.....#.#...#...#...#.#.....#.#.#.#.#.#.#...#.#.......#.....#...#...#.#
#.#########.#.###.#########.###.#####.#.#.#.#.#.#.#.###.#.#####.#.#####.#.#####.#
#.......#...#.....#.....#.......#...#.#...#.#...#.#.#.....#...#...#.....#.......#
#######.#.###########.#.#########.#.#.#####.#####.#.#######.#.###################
#.......#.#.......#...#.......#...#.#.#.......#...#.#.......#.............#.....#
#.#####.#.#.###.#.#.#########.#.###.#.#.#####.#.###.#.###############.###.#.###.#
#.#.....#.#.#...#.#.......#.#.#.#.....#.....#.#.#...#.#.........#...#...#...#.#.#
#.#.#####.###.###.#.#####.#.#.#.###########.#.#.#.#.#.#.###.#####.#.###.#####.#.#
#.#...#.#.#...#...#...#...#.#.#.....#.......#.#.#.#.#.#...#.#.....#.#.#.#.....#.#
#.###.#.#.#.###.#####.#.###.#.#.###.#.#########.#.###.#####.#.#####.#.#.###.###.#
#.#.#...#.#.#.#.#...#.#.#...#.#.#...#...#.......#...#...#...#.#...#.#.#.#...#...#
#.#.###.#.#.#.#.#.#.###.#.###.#.#.#####.#.#######.#.###.#.###.#.###.#.#.#.#.#.#.#
#.#.....#...#...#.#.#...#...#.#.#.#.....#...#.....#...#...#...#.....#.#...#.#.#.#
#.###.#######.###.#.#.###.#.#.###.#.#######.#.#####.#####.#.#####.###.#####.#.###
#...#.#...#.#.....#.#.#...#.......#.....#...#.#...#.......#.....#...#.#...#.#...#
###.#.#.#.#.#######.#.#################.#.###.###.#############.###.#.#.#.#.###.#
#...#...#...#...#...#.......#.........#.#...#...#.....#...#.....#.#.#...#.#.#...#
#.#########.#.#.#.#########.#.#######.#.###.###.#.#.#.###.#.#####.#.#.###.#.#.###
#.......#.#.#.#.#.#.........#.#.....#.#.....#...#.#.#.#...#...#...#.#.#.#...#...#
#######.#.#.###.#.#.#.#######.###.#.#.#####.#.#####.#.#.#.###.###.#.#.#.#######.#
#...#...#.#.#...#.#.#.............#.#.....#.#.#.....#.#.#...#.#...#.#.....#...#.#
#.#.#.###.#.#.#.#.#.###############.#####.#.#.#.#####.#.###.#.#.#.#.#.#####.#.#.#
#.#...#.......#.#.#.......#.....#.#...#...#.#.#.#.......#...#.#.#.#.#.#.....#.#.#
#.###############.#########.###.#.#.###.###.#.#.#####.#####.#.#.###.###.#####.#.#
#...#...........#.#.........#.#.#...#...#.#.#...#...#.#...#.#.#.........#...#...#
#.#.#.#########.#.#.#########.#.#####.###.#.###.#.#.#.#.#.#.#.###########.#.###.#
#.#...#.....#...#...#...#.....#.#.....#...#.#...#.#.#.#.#.#.#...#.....#...#.....#
#.#####.###.#.#######.#.#.#.###.#.#######.#.#####.#.###.#.#.###.#.###.#.#########
#.#.....#...#.....#...#.#.#.#...#.......#.#...#...#...#.#.#...#.#.#...#...#.....#
#.#######.#.###.#.#.###.#.###.###.#####.#.###.#.#####.#.#.#####.#.#.#######.###.#
#.#.......#.#.#.#...#.#.#...#.#.....#...#...#...#...#.#.#.......#.#.........#...#
#.#.#######.#.#.#####.#.###.#.#.#####.###.#######.###.#.#########.###########.#.#
#.#.......#...#.#...........#.#.#.....#...#.......#...#...........#.......#...#.#
#.#.#####.#####.#############.###.#####.###.###.#.#.###.###########.#######.#####
#.#.#...#.#.....#.....#.....#.#...#...#.....#...#.#.#.#.#.........#...#.....#...#
#.#.#.#.#.#.#####.###.#.###.#.#.###.###.#####.#####.#.#.#.###.###.###.#.#####.#.#
#.#.#.#...#.......#.#...#.#...#.#...#...#...#.......#.#.#.#...#.#...#.#.......#.#
#.#.#.###.#########.#####.#####.#.###.#####.#########.#.###.###.###.#.#########.#
#.#.#...#.#.....#.....#.........#...#...#...#.....#...#.#...#...#...#...#.#...#.#
#.#.###.#.#.###.###.#.#.###########.###.#.#.###.#.#.###.#.#####.#.###.#.#.#.#.#.#
#.#.#...#.#.#.#.....#.#.....#...#...#.#...#.#...#.#...#...#.....#.#...#...#.#.#.#
#.###.###.#.#.#######.#####.#.#.#.#.#.#####.#.###.###.#######.###.#.###.###.#.#.#
#.#...#.#...#.....#...#.....#.#...#.......#.#.#.#.#.....#.....#...#...#.#...#...#
#.#.###.#######.###.###.#####.#####.#######.#.#.#.#.###.###.#.#.#####.###.#.#####
#...#...#.......#...#...#.....#.....#.......#.#.....#.#.....#.#.#.....#...#.#...#
#####.#.#.###.#.#.###.#.#.#.###.#####.#######.#######.#######.#.#.###.#.#####.#.#
#.....#.#.#.#.#.#.#...#.#.#.#...#.....#.....#.....#.....#.....#...#.#.#.....#.#.#
###.###.#.#.#.###.#####.#.#.#####.#####.#####.###.#####.#.#########.#.#####.#.#.#
#...#...#...#...#.......#.#.....#.#.........#.#.#.....#.........#.........#...#.#
#.###.#####.###.#########.#####.#.#########.#.#.#####.#.#########.#####.#####.#.#
#.#...#...#.#.#.........#...#.#...#.........#.#.....#.#...#.......#...#.#...#.#.#
#.#.###.#.#.#.#########.###.#.#####.#########.###.#.#.#####.#######.#.###.#.###.#
#.#...#.#.#...#.....#...#...#...#.................#.#.............#.#.....#.#...#
#.###.###.###.#.#####.#.#.#####.#.#################################.#######.#.#.#
#...#.......#...#.....#.#.#...#...........#.........#.......#.......#.........#.#
#.#.###########.#.#####.#.#.#.#######.#####.#######.#.#####.#.###################
#.#...........#.#.....#.#...#.#...#...#.....#...#.#.#.#...#.#...................#
#.#########.###.#####.#######.#.#.###.#.#####.#.#.#.#.#.#.#.#.#################.#
#.#.......#.....#...#.....#.#...#...#.#.#.....#...#...#.#.#.#.#.....#.........#.#
#.#.#####.#######.#.###.#.#.#######.###.#.###.#########.#.#.#.#.#####.#######.#.#
#.#...#.#.....#...#.#...#.........#.#...#.#.#...........#.#.#...#...#.......#...#
#.###.#.###.#.#.###.#.###########.#.#.###.#.#####.#######.#.#####.#.#.#####.###.#
#.#.#...#...#.#...#...#.........#.#.#...#.....#.#.......#.#.#.....#.#.#.....#.#.#
#.#.###.#.#######.###.#.#######.#.#.#.#.#####.#.#######.#.#.#.#####.###.#####.#.#
#.#.#...#.......#.#...#.#...#...#.#.#.#...#.#.#...#...#.#.#...#.#...#...#...#...#
#.#.#.#######.###.#.###.#.#.#.#####.#.###.#.#.#.#.#.#.#.#.#####.#.###.###.#.#.###
#.#...#.......#...#.#...#.#.#.....#.#.#...#.....#...#.#.#.#.....#.#...#...#.#.#.#
#.#####.#######.#####.###.#######.#.###.###.#######.###.#.#####.#.#.#####.###.#.#
#...#...#.....#.......#.......#...#.#...#...#...#...#...#.#.....#...#.....#...#.#
###.#.###.###.#########.#####.#.###.#.###.###.#.#####.###.#.#########.#.###.###.#
#...#.....#...#.....#...#.....#...#.#.#...#...#.......#.#.#.......#...#...#...#.#
#.#########.#.#.#####.###.###.###.#.#.#####.###########.#.#.###.#.#.#####.###.#.#
#.#.....#...#.#.#.......#...#.#.#...#.....#.#.....#.....#.#.#...#.#.....#...#...#
#.###.#.#.###.#.#.#########.#.#.#######.#.#.#.###.#.#####.#.#.###.#######.#####.#
#.#...#.#.#.#.#.....#.......#...#.....#.#.#.....#.#.....#.#.#.#...........#.....#
#.#.###.#.#.#.#######.#########.#.###.###.#######.#####.#.###.#.#######.###.#####
#...#.#.#.#.........#.#.......#...#.#...#.......#.#.....#.....#.#.....#.#...#...#
#####.#.#.#########.#.#.#####.#####.###.#.#####.#.#.###########.#.###.#.#.###.###
#.....#.#.........#.#...#.....#...#.....#.#...#.#.#.............#.#...#.#.#.....#
#.#####.#.#######.#.#####.#######.#.#######.#.#.#.#############.#.#.###.#.#####.#
#...#...#...#.#...#.......#.......#...#.....#...#.............#.#.#.#...#.....#.#
#.#.#.#####.#.#.###########.#.#######.#.#.#######.###########.#.#.#.#########.#.#
#.#.#.#...#...#.....#.....#.#.......#.#.#.#.#...#.#.....#.#...#.#.#.........#...#
#.#.#.#.#.###.#####.#.###.#.#######.#.###.#.#.#.#.###.#.#.#.#####.#########.###.#
#.#.#.#.#.#...#...#...#...#.#.#.....#.#...#...#.#.#...#.#.#.......#...#.......#.#
###.#.###.#.###.#.#####.###.#.#.#####.#.#######.#.#.###.#.###########.#.#.#####.#
#...#.#...#...#.#...#...#.#.#.#.......#...#.....#...#...#.....#.......#.#.#.....#
#.###.#.#.###.#.#.###.###.#.#.###########.#.#########.###.###.#.#.#####.#.#.#####
#.....#.#...#.#.#.#...#...#.......#...#...#.#.......#.#.....#.#.#.....#.#.#...#.#
#.#####.#####.#.###.###.#########.#.#.#.###.#.#####.#.#####.###.#####.#.#####.#.#
#...#...#.......#...#...#.......#.#.#.#...#...#.....#.....#.......#...#.......#.#
###.#.###.#######.###.###.###.#.#.#.#.###.#####.#########.#.#######.#.#########.#
#.#.#.....#.......#.......#...#.#...#.....#...#.....#.....#...#.....#.#...#.....#
#.#.#.#####.#######.#######.#.#############.#.#####.#.#######.#.#####.#.#.#.#####
#...#.#...#.......#.....#...#.#.......#.....#.......#.....#.#.#.#...#...#.#.....#
#.###.#.#########.#####.#.###.#.#####.#.###.#######.#####.#.#.#.#.#.#####.#####.#
#.#.#.#.......#...#...#.#...#.#...#.#...#...#...#...#.....#...#...#...#.........#
#.#.#.#.#.#####.###.#.#####.#####.#.#####.#####.#.###.#########.#####.###########
#.#.#.#.#.....#.....#.#.....#...#.#.....#.#.....#.#.#.........#.#.....#.........#
#.#.#.#.#####.#######.#.#####.#.#.#.#####.#.#####.#.#########.#.#.###.#.#######.#
#.#.#.#.#.......#.....#.......#...#...#...#.......#.........#.#.#.#...#.#...#...#
#.#.#.###.#####.#.#######.###########.#.###.#######.#####.###.#.#.#####.#.#.#.#.#
#.#.......#.....#.#.....#.#...........#.#.#.#.......#...#.#...#.#.....#.#.#.#.#.#
#.#.#######.#####.#.#.#.#.#########.###.#.#.#.#######.#.###.###.#####.#.#.#.#.#.#
#.#...#...#...#...#.#.#.#.........#.#...#.....#.......#...#.#.......#.#...#.#.#.#
#.#####.#.###.#.###.#.#.#.#######.#.#.#########.#########.#.###.#####.#.#####.###
#.......#.#...#.#...#.#.#.#...#...#.#...........#...#...#.#...#.#...#...#...#...#
#########.#####.#####.#.#.#.#.#.###.#############.###.#.#.###.###.#.#####.#.###.#
#.......#.......#...#.#.#.#.#.#.#.#.............#...#.#.#...#.#...#.#.....#.#...#
###.###.#########.#.#.#.#.#.#.#.#.#.#####.#####.###.#.#.#.#.#.#.###.#.#####.#.#.#
#...#.......#.....#...#.#.#.#.#.#...#.....#.....#...#.#...#.#...#.#.#.#...#...#.#
#.#########.###.#######.###.#.#.#.###.#####.#####.#.#.#####.#####.#.#.#.#.#######
#.#.......#.....#.....#.....#.#.#.#...#...#...#...#.#...#...#.....#.#...#.#.....#
#.#.#####.#######.###.#######.#.###.###.#####.#.###.###.#####.###.#.#.###.#.###.#
#.#.#...#...#...#...#.......#.#.#...#.......#...#.....#.........#.#.#...#...#.#.#
#.#.#.#.###.#.#.###.#####.#.#.#.#.###.#####.#####.#######.#######.#.###.#####.#.#
#...#.#.....#.#...#...#...#.#.#...#.#.#...#...#...#.....#.#.......#.#.#.....#.#.#
#####.###########.###.#.###.#.#####.#.###.###.#.###.###.###.#######.#.#####.#.#.#
#.....#.........#.#...#...#.#...#.........#...#...#...#.....#.......#.........#.#
#.#####.#######.#.#.#####.#.###.###########.#####.###.###.###.#######.#####.###.#
#.......#...#...#.#.#...#.#.#...#...........#.......#.#...#...#...#.#.#...#.#...#
#.#########.#.###.#.###.#.###.###.###########.#######.#####.###.#.#.#.#.#.###.#.#
#.#.....#...#.#.#...#...#.....#.................#.....#...#.#...#.#...#.#.....#.#
#.#.###.#.###.#.#.###.#.#############.###########.#####.#.#.###.#.#.###.#######.#
#.#.#.#...#...#.......#.............#.#...#.#.....#.....#...#...#.#.#...#.....#.#
#.#.#.###.#.#######################.#.#.#.#.#.#####.#########.###.###.###.#.###.#
#.#.#...#.#.............#.........#.#...#...#.....#.#.....#...#.#.#...#.#.#.....#
#.#.###.#.#############.#.#######.#.#.###########.#.#.#####.#.#.#.#.###.#.#######
#...#...#...#.........#...#.....#.#.#.#.......#...#.#.....#.#.#.....#...#...#...#
#####.#.###.#.#######.#####.#.###.#.###.#####.#.#.#.#####.#.#.#######.#####.#.#.#
#.....#.#...#.#.....#.#.....#.#...#.....#...#.#.#.#.#.....#.#.......#.........#.#
#.###.#.#.###.#.#####.#.###.###.#########.###.#.###.#.#.###.#######.#.###########
#...#.#.#...#.#.......#.#...#...#.....#.........#...#.#.#.....#.....#...#.......#
#.###.#.###.#.#.#########.###.###.#####.#########.###.###.#####.#########.#####.#
#.#...#.#.#...#.#.....#...#...#...#.........#.....#.#.......#...#.....#...#.....#
###.###.#.#####.###.#.#.#.#.#####.#.#######.#.#####.#.#######.#.#.###.#.###.###.#
#...#.#.#.....#.#...#...#.#.....#.....#...#.#.#...#...#...#...#.#...#...#...#...#
#.###.#.#####.#.#.#######.#####.#######.#.#.#.###.#.#####.#.#######.#####.###.###
#...#.......#.#.#.#.....#.....#.......#.#.#.#.#...#...#...#...........#...#.#...#
#.#.#######.#.#.#.#####.#####.#######.#.#.###.#.#####.#.#.#######.#####.###.###.#
#.#.......#.#.#.#.#.........#...#...#...#.....#.....#.#.#.#.#...#...#...#.#.....#
#.#######.#.#.#.#.#.###########.#.#################.#.#.#.#.#.#.#.###.###.#.#####
#.....#...#.#.#.#.#.............#.........#.....#...#.#.#...#.#.#.#...#...#...#.#
#.#####.###.#.#.#.#.#############.###.###.#.###.#.###.#.#.###.#.###.###.#####.#.#
#.#.....#...#.#.#.#.#...#.......#.#.#...#.#.#.#...#...#.#.#...#.#...#.#.....#...#
#.#.#####.###.#.#.#.#.#.#.#######.#.###.#.#.#.###.#.###.#.#.###.#.###.#.###.###.#
#.#...#.#.#...#...#...#.#.#.....#.#...#.#...#.....#.#...#.#.#.#.#...#...#.....#.#
#.###.#.#.#.#.#########.#.#.###.#.###.#.###########.#.#####.#.#.###.#.###.#.###.#
#...#.#.#...#.#.......#.#...#...#...#.#...........#...#.....#.#.#...#.#...#.#...#
#.###.#.#####.###.#####.#.###.#####.#.###########.#.###.#####.#.#.#####.###.#.###
#.#...#.....#...#.....#.#...#.....#.#.......#.#...#.#...#.....#.#.#.....#...#...#
###.#####.#.###.#####.#.#####.#.###.#.#####.#.#.###.#.#####.#.#.#.#.#####.#####.#
#...#.....#...#.......#.....#.#.....#.#...#.#.#.....#.#.....#.#.#.#.#.........#.#
#.###.###########.#########.#.#######.#.#.#.#.#######.#.#.#####.#.#.###########.#
#.#...............#.......#.#.........#.#.#.#...#.....#.#.....#...#.............#
#.#################.#####.#.#.#########.#.#.#.###.#######.###.#####.#############
#.........#...#.......#...#.#.#...#.....#...#.#...#.....#.#.#...#...#.....#.....#
#.#######.#.#.#.#######.#.#.###.#.#.#########.#.###.###.#.#.###.#.###.###.#####.#
#.#...#...#.#...#...#...#.#.....#.#.#.........#.....#...#.....#.#...#.#.......#.#
#.###.#.#.#.#####.###.###.#######.#.#####.###########.#######.#.###.#.#######.#.#
#.#...#.#.#.#.....#...#...#.#.....#.#.....#...#.....#...#.....#.#...#.#.....#.#.#
#.#.#.#.#.#.###.###.###.###.#.#####.#.###.#.#.#.###.###.#.#####.#.###.#.###.#.#.#
#.#.#.#.#.#.#...#...#.......#...#.#.#...#.#.#.....#...#.#.#.#...#.#.....#...#.#.#
#.#.###.###.#.###.###.#####.###.#.#.###.###.#######.###.#.#.#.#.#.#######.###.#.#
#.#...#...#.#.#...#...#...#.#.#.#.....#.......#...#...#.#...#.#.#.........#.#...#
#.#.#.###.#.#.#.#######.#.#.#.#.#####.#####.###.#.#.#.#.###.#.#.###########.###.#
#.#.#.#...#...#.........#.#.#.#.....#.#...#.#...#.#.#.#.#...#.#.#...........#...#
#.###.#.#####.###########.#.#.#####.#.#.#.###.###.###.#.#.###.###.#######.###.###
#.....#.#...#...#.....#...#.......#.#.#.#...#...#.....#.#.#.#...........#.......#
###.###.#.#.###.#.#.###.###########.#.#.###.###.#######.#.#.#####################
#...#...#.#.......#.#...#.....#...#.#.#.#.#.....#.....#.#.......#...............#
#.###.###.###########.###.###.#.#.#.#.#.#.#####.#.###.#.#########.#############.#
#.#.#.#...#.#.........#...#.#...#.#.#.#.#.......#.#...#...........#.....#.....#.#
#.#.#.#.###.#.#########.###.#####.#.#.#.#.#######.#.###.###########.###.#.###.#.#
#...#.#...#.#...........#.....#...#.#.#.#.....#...#.#.#.#.....#.....#.#...#.#.#.#
###.#.###.#.###########.#.#####.###.#.#.#######.###.#.#.#.###.#.#####.#####.#.#.#
#...#...#...#.....#...#...#...#.#...#...#...#...#.#.#...#...#...#.....#...#...#.#
#.###.#.###.###.###.#.#####.#.#.#.#####.#.#.#.###.#.#.#####.#######.#.#.#.#.###.#
#.#...#...#...#.#...#.......#...#.#.....#.#.#.#...#.#...#...#.#.....#.#.#...#...#
#.#.#########.#.#.###############.#######.#.#.#.#.#.#####.###.#.#.#####.#######.#
#.#.............#.........................#...#.#.........#.....#...............#
#################################################################################

3
zauberschule/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}