I have problem , I cant understand , why this basic is not working as c and visual basic.
In traditional programming one classic programmer if he wants to
save one array like levels(1,20,20,4) in one file.
Uses the classic way.
He makes 2 loops
Rem I have one array
dim levels(1,20,20,4)
rem I fill my array with empty squares
for vertical=1 to 10
for horizontal=1 to 10
levels(1,horizontal,vertical,1)="000."
levels(1,horizontal,vertical,2)="000."
levels(1,horizontal,vertical,3)="000."
levels(1,horizontal,vertical,4)="000_"
next horizontal
next vertical
rem I open my file
if file exist("level.txt") then delete file "level.txt"
open to write 1, "level.txt"
rem I read my array with 2 fors
for horizontal=1 to 20
for vertical=1 to 20
north_side=levels(1,horizontal,vertical,1)
south_side=levels(1,horizontal,vertical,1)
west_side=levels(1,horizontal,vertical,1)
east_side=levels(1,horizontal,vertical,1)
square=square+north_side+south_side+west_side+east_side
write file 1,square
next vertical
next horizontal
With this code I have this result
level1.txt
001.002.000.000_
001.002.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
001.002.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
I didn't write all file because is huge.
If I increase the horizontal variable for 10 to 20
for horizontal=1 to 20
The programm crashes.
I write this code in visual basic and it works well.
Open "c:module.txt" For Output As #1
Print #1, "[Level01]"
all_levels = 1
For vertical = 1 To 20
For horizontal = 1 To 20
'printing 000 in file
If levels(all_levels, horizontal, vertical, 1) = "000" Then Print #1, "000.";
If levels(all_levels, horizontal, vertical, 2) = "000" Then Print #1, "000.";
If levels(all_levels, horizontal, vertical, 3) = "000" Then Print #1, "000.";
If levels(all_levels, horizontal, vertical, 4) = "000" Then Print #1, "000_";
'printing 001 in file
If levels(all_levels, horizontal, vertical, 1) = "001" Then Print #1, "001.";
If levels(all_levels, horizontal, vertical, 2) = "001" Then Print #1, "001.";
If levels(all_levels, horizontal, vertical, 3) = "001" Then Print #1, "001.";
If levels(all_levels, horizontal, vertical, 4) = "001" Then Print #1, "001_";
'printing 002 in file
If levels(all_levels, horizontal, vertical, 1) = "002" Then Print #1, "002.";
If levels(all_levels, horizontal, vertical, 2) = "002" Then Print #1, "002.";
If levels(all_levels, horizontal, vertical, 3) = "002" Then Print #1, "002.";
If levels(all_levels, horizontal, vertical, 4) = "002" Then Print #1, "002_";
Next
Print #1, ""
Next
Close #1
Things are so simple and Darkbasic make them so complex why?
The visual basic code generete this text file:
module.txt The correct file
[Level01]
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
This is an empty level map with 50x50 empty squares.
One square has four 000. and finishes with "_"
000.000.000.000_000.000.000.000_000.000.000.000_000.000.000.000_
http://i-access.gr/future/Banner.jpg
You are an elite hacker and try to save the cyberspace.