forked from longturn/freeciv21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demoScenario.sav
6327 lines (6306 loc) · 312 KB
/
demoScenario.sav
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[scenario]
game_version=83835701
is_scenario=FALSE
[savefile]
options=" +version3"
version=50
reason="User request"
revision="3.1.808257.1-alpha"
rulesetdir="spacerace"
improvement_size=2
improvement_vector="Palace","Nothing"
technology_size=3
technology_vector="A_NONE","Alphabet","Writing"
activities_size=26
activities_vector="Idle","Pollution","Unused Road","Mine","Irrigate","Fortified","Fortress","Sentry","Unused Railroad","Pillage","Goto","Explore","Transform","Unused","Unused Airbase","Fortifying","Fallout","Unused Patrol","Base","Road","Convert","Cultivate","Plant","Transport","Sabotage (City)","Sabotage (Building)"
specialists_size=3
specialists_vector="elvis","scientist","taxman"
trait_size=4
trait_vector="Expansionist","Trader","Aggressive","Builder"
extras_size=48
extras_vector="Irrigation","Mine","Transport","Oil Well","Pollution","Hut","Farmland","Fallout","Fortress","Airbase","Buoy","Ruins","Road","Railroad","River","Gold","Iron","Game","Furs","Coal","Fish","Fruit","Gems","Buffalo","Wheat","Oasis","Peat","Pheasant","Resources","Ivory","Silk","Spice","Whales","Wine","Oil","building_u","building_y_u","building_y_b","building_y_f","building_b_u","building_b_b","building_b_f","building_g_u","building_g_b","building_g_f","building_p_u","building_p_b","building_p_f"
multipliers_size=0
diplstate_type_size=7
diplstate_type_vector="Armistice","War","Cease-fire","Peace","Alliance","Never met","Team"
city_options_size=3
city_options_vector="Disband","Sci_Specialists","Tax_Specialists"
action_size=92
action_vector="Establish Embassy","Establish Embassy Stay","Investigate City","Investigate City Spend Unit","Poison City","Poison City Escape","Steal Gold","Steal Gold Escape","Sabotage City","Sabotage City Escape","Targeted Sabotage City","Targeted Sabotage City Escape","Sabotage City Production","Sabotage City Production Escape","Steal Tech","Steal Tech Escape Expected","Targeted Steal Tech","Targeted Steal Tech Escape Expected","Incite City","Incite City Escape","Establish Trade Route","Enter Marketplace","Help Wonder","Bribe Unit","Sabotage Unit","Sabotage Unit Escape","Capture Units","Found City","Join City","Steal Maps","Steal Maps Escape","Bombard","Bombard 2","Bombard 3","Suitcase Nuke","Suitcase Nuke Escape","Explode Nuclear","Nuke City","Nuke Units","Destroy City","Expel Unit","Recycle Unit","Disband Unit","Home City","Upgrade Unit","Paradrop Unit","Airlift Unit","Attack","Suicide Attack","Surgical Strike Building","Surgical Strike Production","Conquer City","Conquer City 2","Heal Unit","Transform Terrain","Cultivate","Plant","Pillage","Fortify","Build Road","Convert Unit","Build Base","Build Mine","Build Irrigation","Clean Pollution","Clean Fallout","Transport Alight","Transport Unload","Transport Disembark","Transport Disembark 2","Transport Board","Transport Embark","Spread Plague","Spy Attack","User Action 1","User Action 2","User Action 3","Transport","Sabotage (City)","Investigate Gold City","Investigate Science City","Investigate Materials City","Steal Gold City","Steal Science City","Steal Materials City","Sabotage (Building)","Investigate Gold Building","Investigate Science Building","Investigate Materials Building","Steal Gold Building","Steal Science Building","Steal Materials Building"
action_decision_size=3
action_decision_vector="nothing","passive","active"
server_side_agent_size=3
server_side_agent_list="None","Autosettlers","Autoexplore"
terrident={"name","identifier"
"Inaccessible","i"
"Lake","+"
"Ocean"," "
"Deep Ocean",":"
"Glacier","a"
"Desert","d"
"Forest","f"
"Grassland","g"
"Hills","h"
"Jungle","j"
"Mountains","m"
"Plains","p"
"Swamp","s"
"Tundra","t"
}
[game]
server_state="S_S_RUNNING"
meta_patches=""
meta_server="https://meta.freeciv.org/metaserver.php"
id="LPOUJ_6F0ggGTkzAzWt9tbxfxAHvPxEP"
serverid=""
level="Easy"
phase_mode="Concurrent"
phase_mode_stored="Concurrent"
phase=0
scoreturn=19
timeoutint=0
timeoutintinc=0
timeoutinc=0
timeoutincmult=1
timeoutcounter=1
turn=1
year=-4000
year_0_hack=FALSE
globalwarming=0
heating=0
warminglevel=5
nuclearwinter=0
cooling=0
coolinglevel=5
global_advances="110"
last_turn_change_time=0
save_players=TRUE
ai_types="classic"
save_known=TRUE
[random]
saved=TRUE
state="3209031152 3672128614 2819663054 3728311598 1541514007 1958114511 925123919 3798609288 3908370836 512920454 2137654819 3933135977 1248031960 3522152450 2709030834 4047327842 3150697233 4165218514 59630956 116775497 756121899 3562428960 3787660169 2385680814 753801461 3775695335 422094035 3801955776 1477629554 2352516999 1409354535 4064657172 581976065 2624300370 71773656 2810559778 2532048370 3161490437 3147625158 3379876676 3975265109 244544045 730510515 4284341906 128815133 43396738 1779107573 1513276230 1801083764 3333969781 1375408810 2991928498 2719012557 3587812518 4018590521 1680964466 1424998756 3376300499 859461112 990761020 3432820751 3815034650 395392406 2037372989 344126749 3121284744 1354645553 2731870654 1334653110 660354666 2278477575 3059844520 2487650369 3326496903 4144264442 866983074 2892658301 2815495093 3507261735 2147820723 2646582752 3350883616 3663597468 1733277315 4251252418 2062798858 2457308324 3121781097 2569517259 4096070151 3798057196 2656410121 1537601639 1161767678 3000920168 4263378368 3457089507 3827265973 1802190152 1138744506 782272771 139709131 840490616 3954891867 1759004677 658986418 2640813332 1443907001 1572547504 1278446691 771561980 3361525335 459026252 2011476294 3682000397 3646186159 3678968346 3820956543 345617590 195653776 335097264 635583491 4289512616 2390835521 3566895792 2176609099 1335994336 680944790 129844962 3979097871 494773704 28124070 2491571162 2561018518 923426768 2771193372 3867114942 2903098629 2979586682 1803304240 3022091428 2143365303 496821646 3612323005 3221842682 2221014989 1180859586 2558629106 3893927630 4084974054 4182424002 721710615 3135989289 2182090883 2109929237 3338814537 3398093244 3447364645 1654983177 3711362564 4129960885 2023418209 287249312 2470688128 2416405809 3183789019 3585155602 3865905034 3972877927 2492092272 3899582636 1736428490 2192397147 2069699437 844447481 666258274 3074782963 354561496 131597102 4227782037 4015174913 3329238431 3607447787 1715907405 32384641 1901291689 4150770666 410052698 3592698353 2767719871 1349538049 3369546475 538951686 1529663774 1553248476 406811305 2757356265 1651759687 826985597 2181627884 1140728349 3154904825 275931213 2872167452 391744267 2271481331 3842622868 1226171387 4185353140 1274641482 545501912 2174564196 3312824459 1666899186 467587651 3008386505 2235628280 485977261 4090338984 2970727307 195119361 4081306917 2500206157 1935505405 3948892919 3706081389 2174416083 4218929009 3860395662 1623328591 1764663854 573040473 3924730445 707440880 1082963294 1370635334 934658156 3028137764 2571401126 2919894949 149209075 1741371476 3122229651 1453037170 4198243292 1124035944 3403561926 39613158 1702931037 1433748057 1113586541 2241974287 3944704887 815026541 887816426 3770961806 2824603971 947812797 1321077843 3110410787 2760453104 1119659718 2210581148 3838999694 1121200436 3860018215 2192424280 2462767391 217569521 3011858009 4167325925 3835692543 560018580 3898157979 3902538467 108612588 30007223 2405616096 464238977 721806071 3012862231 2167477128 867437139 621168876 3974603964 3510210880 470696429 3991869645 2749118943 3135027138 2433006036 168662163 109150200 1328773769 2727272069 2422717871 2291719691 1868809074 3317544686 2723975006 142589675 127938649 2943981517 2614862466 1516671086 3814524640 831260177 223931708 3636359578 1596096992 3450449199 1268346617 2029495502 2001229447 3688898781 1881515769 1797018936 3312763051 532543045 2670099414 218785936 1954820097 592416214 2414369607 3942788008 101502574 2430844358 1962655514 814161365 3273477093 32097981 307485341 3285014020 1912255070 2045578953 224276297 2122143495 2634337236 854277600 3399145203 4025284618 3032491613 1127486790 148742841 2324696 682697858 1490817002 1089102387 2201144207 1779278717 2760479145 135574167 1011088324 3380485094 985045717 529165174 2888967525 3971733294 3470223129 847931951 1595411176 1367614679 226407598 3439981374 1725861410 634879258 1058204180 449069607 4088444831 1942927539 300221753 3621516950 2068574929 348207331 488787120 1058479788 1377641249 1719764213 623112269 2462286271 766277588 2820560714 2950294243 1035241737 2993301374 3966357372 4167651437 3330867956 4110481597 277771598 2911450866 3943893014 2544239495 177305790 611079338 291362493 3787996580 1818469310 1841680180 183813564 4269059527 3354937427 2233069408 3765319413 1302743264 1363897922 1357729492 1700891299 2925466983 2787062578 2975850636 912541634 2032510558 1888116832 1412645720 1323496494 428707082 1900943831 1712359235 1024072449 1776815548 1415636458 2075456039 2965376983 4255253667 1421433446 752231291 2707952585 2290437381 378360325 2664966285 3322479894 1880535022 3983281004 3955772926 3709794983 646905554 2060760540 141308545 614395121 746196957 797753534 1432663847 2740390566 3066121507 2883985181 2982162884 586490682 689398475 2474141990 3149196534 573367487 4145646122 1717250232 3273014398 2596571703 3741858186 4016212950 3421320376 4244547530 559251551 593739433 3135166662 1890907815 3339497240 4076766722 1555996999 3301065359 1072329696 2850072683 3827023285 274258952 3165065581 2932492123 1386165223 2352604058 3894388163 530964193 3682685039 3771575930 324147671 2854684218 1766296585 1419240113 3592787522 449218777 214765068 1022729181 1131158275 106317333 3223962764 806633812 3235202226 3254328588 1337840558 4060899229 1778258343 2725722510 2299764565 2970695774 1243296000 417385029 3994650738 3259455552 3987407042 1538203548 3514531637 3259775552 1690527397 1181383821 483500318 1980233342 1414107323 3948982422 574387889 3213576873 390855992 2130534036 960425242 1004931704 1353026325 2210294095 1317402972 3046346719 2987929183 1621257137 3943264108 1257473984 145898705 2660017551 250724376 3302481076 361435646 2713925523 3316665218 2732132307 811463361 1247566653 1779995946 1992060595 2190139855 1598574225 1364416206 1113743775 2057466666 3412555395 1249302010 1128954514 2636089539 1109079834 975663380 641199211 2726560436 4006861552 2648300029 4171085965 728210774 539885027 921485830 3863566991 1670394224 2997792373 748594848 1315898711 1741647858 3294076519 3502633629 1938389920 4071936126 269311658 134273982 661598136 110432406 3798074735 3555964243 551153863 1771239842 3390636569 274906882 1331681552 286212469 1423156859 1314383769 430918766 605469898 1932700768 1191077084 2080854528 2297565713 3207037701 4216514924 2181965862 979212256 1974420276 3479837345 2899088098 2714664065 554412094 4072976497 1793399690 3293783808 566180414 2430933142 2040833124 4171669944 3118492915 2324425651 3525945449 3565573473 782892106 2193870580 2643811384 567887421 3532308432 1819931920 1622278563 4248434389 89443960 879281146 1199479294 2217623521 3721902711 2887925351 3433091871 624"
[script]
code=$$
vars=$$
[settings]
set={"name","value","gamestart"
"aifill",5,5
"alltemperate",TRUE,TRUE
"animals",20,20
"aqueductloss",0,0
"borders","ENABLED","ENABLED"
"caravan_bonus_style","CLASSIC","CLASSIC"
"citymindist",2,2
"citynames","PLAYER_UNIQUE","PLAYER_UNIQUE"
"compresstype","PLAIN","XZ"
"conquercost",0,0
"diplbulbcost",0,0
"diplgoldcost",0,0
"diplomacy","ALL","ALL"
"diplsciencecost",0,0
"dispersion",0,0
"flatpoles",100,100
"foggedborders",FALSE,FALSE
"fogofwar",TRUE,TRUE
"foodbox",100,100
"freecost",0,0
"fulltradesize",1,1
"gameseed",0,0
"generator","FRACTAL","FRACTAL"
"globalwarming",FALSE,FALSE
"globalwarming_percent",100,100
"gold",50,50
"happyborders","NATIONAL","NATIONAL"
"huts",15,15
"incite_gold_capt_chance",0,0
"incite_gold_loss_chance",0,0
"infrapoints",0,0
"killcitizen",TRUE,TRUE
"killstack",TRUE,TRUE
"killunhomed",0,0
"landmass",70,70
"mapseed",0,0
"mapsize","FULLSIZE","FULLSIZE"
"maxplayers",500,500
"minplayers",1,1
"multiresearch",FALSE,FALSE
"nationset","",""
"notradesize",0,0
"nuclearwinter",FALSE,FALSE
"nuclearwinter_percent",100,100
"occupychance",0,0
"plrcolormode","PLR_ORDER","PLR_ORDER"
"rapturedelay",1,1
"razechance",20,20
"revealmap","",""
"revolentype","RANDOM","RANDOM"
"saveturns",200,1
"sciencebox",100,100
"separatepoles",TRUE,TRUE
"shieldbox",100,100
"singlepole",FALSE,FALSE
"size",2,2
"specials",250,250
"startcity",FALSE,FALSE
"startpos","ALL","ALL"
"startunits","ccwwx","ccwwx"
"steepness",20,20
"team_pooled_research",TRUE,TRUE
"teamplacement","CLOSEST","CLOSEST"
"techleak",100,100
"techlevel",0,0
"techlossforgiveness",-1,-1
"techlossrestore",50,50
"techlost_donor",0,0
"techlost_recv",0,0
"techpenalty",100,100
"temperature",50,50
"tilesperplayer",358,358
"timeout",1,0
"tinyisles",FALSE,FALSE
"topology","ISO|HEX","ISO|HEX"
"trade_revenue_style","CLASSIC","CLASSIC"
"trademindist",9,9
"tradeworldrelpct",50,50
"trading_city",TRUE,TRUE
"trading_gold",TRUE,TRUE
"trading_science",TRUE,TRUE
"trading_tech",TRUE,TRUE
"traitdistribution","FIXED","FIXED"
"wetness",50,50
"xsize",32,32
"ysize",64,64
}
set_count=86
gamestart_valid=TRUE
[ruledata]
government={"name","changes"
"Anarchy",0
"Despotism",0
}
[map]
have_huts=TRUE
have_resources=TRUE
t0000="+hpgg+mphgppgpf+phmg+ghhffmphfgh"
t0001="ppgphfpdhhmffgppggmmfhpfhdhggfdd"
t0002="gppdhffhpdpffppggppphpppgfgmhhfd"
t0003="hdhdpfpgpdgffppppdppppgpffphhfdd"
t0004="mggggsgppfpghpghhgp ghgp ssgpfp"
t0005="pggggg sf+fghpmgp fg +ggghp"
t0006="hmgggg spfpfmhggs ssf gfggfg"
t0007="dfggg ssphgfmmgg : f gffpggp"
t0008="ghggg gsghggg :: f gggg gh"
t0009="pmggg ggmhhgg ::: gg gg"
t0010="pmggg psphhphg ::::: gg hg"
t0011="fpfggg gsshghmg :::::: gg mp"
t0012="mfgfgg fpgfphgg ::::: gg hg"
t0013="fgpggg pfppggpg p::::: ggg ph"
t0014="ffgpgg sfghpfpghh :::: ggg hh"
t0015="fhgpgg ghmgfpppmm :::: ggg dh"
t0016="fg p ggppsdphghhp ::: ggggg df"
t0017="hh gggpggghdmgm :::: pggggggdp"
t0018="gf ggggpsghgdhgg ::: ghhfggggf"
t0019="dp ggg gspphhhp :::: gfhfggggm"
t0020="mh ggg sshmhpf ::: ghhgggggp"
t0021="+p gggg fphhhpsp mhhfgggg+"
t0022="dgp phggg fghggfsg ghhmgg dp"
t0023="pg sggggffghgfgmfs gppgffp gh"
t0024="pd p gggggf h+gggfggspdhghpfpppp"
t0025="hhgdsggggpp g+ggggps dsgmhppsggp"
t0026="fdgdg+ggg ps+ggpgfspphhhpgsphh"
t0027="fppgpggg ffgggmpfdfphgggpp+ph"
t0028="dfphdmggg dfgghgddfhpgppgs+hp"
t0029="dh pphgg gggghgmhpfpgg ++pg"
t0030="dh gdhgg :: gggmhhhhpfgg s+pd"
t0031="+m pfhhg ::: gpgfhhfhfp ++h+"
t0032="gg pphdgh :: fgshhhpfhsg sp+pp"
t0033="mdpphhdgg::: gdphgmdhhsg pp+pm"
t0034="pd phhfg :: sdfhdhhfgs p hgggf"
t0035="gg gghp : ddpggggpgs p psgpg"
t0036="hg sgmg f ggdhhdghhf+ p ghfm"
t0037="gh ppfs sgphpmdgmggpp ffp"
t0038="gh gggffgg psfdmhmhmpfpg fff"
t0039="hp g pfpgg +shhfmfghhdhg hm"
t0040="gp gp gfpggfpgdhdffhhpmgggg ff"
t0041="gh gg ppppfgphhphhmmpsfggp fg"
t0042="ggggg phpmphphhpgmhppgfggg hs"
t0043="gggg pfspghmhmgfppgpffggfg ggg"
t0044="hgfgg gphhhghhggphffgggg fgm"
t0045="hggsp ghmphhpgfp++dhfgggg +pg"
t0046="pfhgg hhmhpgpg+spppggggggsgp"
t0047="fggp phmghfmhgpsp gggggggshg"
t0048="mpgg p hdm fg+s pgggggggmd"
t0049="fpgg sp pf pf+ ggggggdg"
t0050="ffggg gshhgdf : fp+gs spgghggh"
t0051="ppgfp spgphhf::hhf+pp : fgggggdh"
t0052="pfpffggghmpgf : ffhhs : gggggg+"
t0053="mppfgg+pphhmh::ffpf+ p: ggggg+fg"
t0054="hgdfggs+gghmm : f+++gh ggggggpf"
t0055="fhfpggp+dsphp : m++gp ggggggggh"
t0056="ffffgg++gfdgsh: g++pg gggggghgm"
t0057="ffgsfgp++dfss gh++gg gggggphdg"
t0058="fmpspfhpgffpgh gg+ghfp ggggsdgh"
t0059="mpppffgggdfdff hfpgppgpggggssdfg"
t0060="hhhppgpghdphffg ffgpfffdggpfpggf"
t0061="mgfmfppphpgffpfffmpgpfhmhpffhgdh"
t0062="gmmfgfdpdhdpdffgphhgggpppgghhmmd"
t0063="+gffphdpgg+hhffffpgg+hpphhfpgpdg"
label_26_10="Cross Station"
label_13_11="Highest Peak"
label_4_14="Narrow Station"
label_28_25="Lantern Station"
label_19_34="Central Station"
label_4_36="Bumpy Station"
label_30_39="Debug Station"
label_6_52="Manhunt Station"
label_26_54="Lukewarm Station"
label_9_60="Scorched Spot"
startpos_count=4
startpos={"x","y","exclude","nations"
27,6,FALSE,""
9,4,FALSE,""
30,38,FALSE,""
4,61,FALSE,""
}
e00_0000="00000000000000000000000000000000"
e00_0001="00000000000000000000000000000000"
e00_0002="00000000000000000000000000000000"
e00_0003="00000000000000000000000000000000"
e00_0004="00000000000000000000000000000000"
e00_0005="00000000000000000000000000000000"
e00_0006="00000000000000000000000000000000"
e00_0007="00000000000000000000000000000000"
e00_0008="00000000000000000000000000000000"
e00_0009="00000000000000000000000000000000"
e00_0010="00000000000000000000000000400000"
e00_0011="00000000000000000000000000000000"
e00_0012="00000000000000000000000000000000"
e00_0013="00000000000000000000000000000000"
e00_0014="00004000000000000000000000000000"
e00_0015="00000000000000000000000000000000"
e00_0016="00000000000000000000000000000000"
e00_0017="00000000000000000000000000000000"
e00_0018="00000000000000000000000000000000"
e00_0019="00000000000000000000000000000000"
e00_0020="00000000000000000000000000000000"
e00_0021="00000000000000000000000000000000"
e00_0022="00000000000000000000000000000000"
e00_0023="00000000000000000000000000000000"
e00_0024="00000000000000000000000000000000"
e00_0025="00000000000000000000000000004000"
e00_0026="00000000000000000000000000000000"
e00_0027="00000000000000000000000000000000"
e00_0028="00000000000000000000000000000000"
e00_0029="00000000000000000000000000000000"
e00_0030="00000000000000000000000000000000"
e00_0031="00000000000000000000000000000000"
e00_0032="00000000000000000000000000000000"
e00_0033="00000000000000000000000000000000"
e00_0034="00000000000000000004000000000000"
e00_0035="00000000000000000000000000000000"
e00_0036="00004000000000000000000000000000"
e00_0037="00000000000000000000000000000000"
e00_0038="00000000000000000000000000000000"
e00_0039="00000000000000000000000000000040"
e00_0040="00000000000000000000000000000000"
e00_0041="00000000000000000000000000000000"
e00_0042="00000000000000000000000000000000"
e00_0043="00000000000000000000000000000000"
e00_0044="00000000000000000000000000000000"
e00_0045="00000000000000000000000000000000"
e00_0046="00000000000000000000000000000000"
e00_0047="00000000000000000000000000000000"
e00_0048="00000000000000000000000000000000"
e00_0049="00000000000000000000000000000000"
e00_0050="00000000000000000000000000000000"
e00_0051="00000000000000000000000000000000"
e00_0052="00000040000000000000000000000000"
e00_0053="00000000000000000000000000000000"
e00_0054="00000000000000000000000000400000"
e00_0055="00000000000000000000000000000000"
e00_0056="00000000000000000000000000000000"
e00_0057="00000000000000000000000000000000"
e00_0058="00000000000000000000000000000000"
e00_0059="00000000000000000000000000000000"
e00_0060="00000000000000000000000000000000"
e00_0061="00000000000000000000000000000000"
e00_0062="00000000000000000000000000000000"
e00_0063="00000000000000000000000000000000"
e01_0000="00000000000000000000000000000000"
e01_0001="00000000000000000000000000000000"
e01_0002="00000000000000000000000000000000"
e01_0003="00000000000000000000000000000000"
e01_0004="00000000000000000000000000000000"
e01_0005="00000000000000000000000000000000"
e01_0006="00000000000000000000000000000000"
e01_0007="00000000000000000000000000000000"
e01_0008="00000000000000000000000000000000"
e01_0009="00000000000000000000000000000000"
e01_0010="00000000000000000000000000000000"
e01_0011="00000000000000000000000000000000"
e01_0012="00000000000000000000000000000000"
e01_0013="00000000000000000000000000000000"
e01_0014="00000000000000000000000000000000"
e01_0015="00000000000000000000000000000000"
e01_0016="00000000000000000000000000000000"
e01_0017="00000000000000000000000000000000"
e01_0018="00000000000000000000000000000000"
e01_0019="00000000000000000000000000000000"
e01_0020="00000000000000000000000000000000"
e01_0021="00000000000000000000000000000000"
e01_0022="00000000000000000000000000000000"
e01_0023="00000000000000000000000000000000"
e01_0024="00000000000000000000000000000000"
e01_0025="00000000000000000000000000000000"
e01_0026="00000000000000000000000000000000"
e01_0027="00000000000000000000000000000000"
e01_0028="00000000000000000000000000000000"
e01_0029="00000000000000000000000000000000"
e01_0030="00000000000000000000000000000000"
e01_0031="00000000000000000000000000000000"
e01_0032="00000000000000000000000000000000"
e01_0033="00000000000000000000000000000000"
e01_0034="00000000000000000000000000000000"
e01_0035="00000000000000000000000000000000"
e01_0036="00000000000000000000000000000000"
e01_0037="00000000000000000000000000000000"
e01_0038="00000000000000000000000000000000"
e01_0039="00000000000000000000000000000000"
e01_0040="00000000000000000000000000000000"
e01_0041="00000000000000000000000000000000"
e01_0042="00000000000000000000000000000000"
e01_0043="00000000000000000000000000000000"
e01_0044="00000000000000000000000000000000"
e01_0045="00000000000000000000000000000000"
e01_0046="00000000000000000000000000000000"
e01_0047="00000000000000000000000000000000"
e01_0048="00000000000000000000000000000000"
e01_0049="00000000000000000000000000000000"
e01_0050="00000000000000000000000000000000"
e01_0051="00000000000000000000000000000000"
e01_0052="00000000000000000000000000000000"
e01_0053="00000000000000000000000000000000"
e01_0054="00000000000000000000000000000000"
e01_0055="00000000000000000000000000000000"
e01_0056="00000000000000000000000000000000"
e01_0057="00000000000000000000000000000000"
e01_0058="00000000000000000000000000000000"
e01_0059="00000000000000000000000000000000"
e01_0060="00000000000000000000000000000000"
e01_0061="00000000000000000000000000000000"
e01_0062="00000000000000000000000000000000"
e01_0063="00000000000000000000000000000000"
e02_0000="00000000000000000000000000000000"
e02_0001="00000000000000000000000000000000"
e02_0002="00000000000000000000000000000000"
e02_0003="00000000000000000000000000000000"
e02_0004="00000000000000000000000000000000"
e02_0005="00000000000000000000000000000000"
e02_0006="00000000000000000000000000000000"
e02_0007="00000000000000000000000000000000"
e02_0008="00000000000000000000000000000000"
e02_0009="00000000000000000000000000000000"
e02_0010="00000000000000000000000000000000"
e02_0011="00000000000000000000000000000000"
e02_0012="00000000000000000000000000000000"
e02_0013="00000000000000000000000000000000"
e02_0014="00000000000000000000000000000000"
e02_0015="00000000000000000000000000000000"
e02_0016="00000000000000000000000000000000"
e02_0017="00000000000000000000000000000000"
e02_0018="00000000000000000000000000000000"
e02_0019="00000000000000000000000000000000"
e02_0020="00000000000000000000000000000000"
e02_0021="00000000000000000000000000000000"
e02_0022="00000000000000000000000000000000"
e02_0023="00000000000000000000000000000000"
e02_0024="00000000000000000000000000000000"
e02_0025="00000000000000000000000000000000"
e02_0026="00000000000000000000000000000000"
e02_0027="00000000000000000000000000000000"
e02_0028="00000000000000000000000000000000"
e02_0029="00000000000000000000000000000000"
e02_0030="00000000000000000000000000000000"
e02_0031="00000000000000000000000000000000"
e02_0032="00000000000000000000000000000000"
e02_0033="00000000000000000000000000000000"
e02_0034="00000000000000000000000000000000"
e02_0035="00000000000000000000000000000000"
e02_0036="00000000000000000000000000000000"
e02_0037="00000000000000000000000000000000"
e02_0038="00000000000000000000000000000000"
e02_0039="00000000000000000000000000000000"
e02_0040="00000000000000000000000000000000"
e02_0041="00000000000000000000000000000000"
e02_0042="00000000000000000000000000000000"
e02_0043="00000000000000000000000000000000"
e02_0044="00000000000000000000000000000000"
e02_0045="00000000000000000000000000000000"
e02_0046="00000000000000000000000000000000"
e02_0047="00000000000000000000000000000000"
e02_0048="00000000000000000000000000000000"
e02_0049="00000000000000000000000000000000"
e02_0050="00000000000000000000000000000000"
e02_0051="00000000000000000000000000000000"
e02_0052="00000000000000000000000000000000"
e02_0053="00000000000000000000000000000000"
e02_0054="00000000000000000000000000000000"
e02_0055="00000000000000000000000000000000"
e02_0056="00000000000000000000000000000000"
e02_0057="00000000000000000000000000000000"
e02_0058="00000000000000000000000000000000"
e02_0059="00000000000000000000000000000000"
e02_0060="00000000000000000000000000000000"
e02_0061="00000000000000000000000000000000"
e02_0062="00000000000000000000000000000000"
e02_0063="00000000000000000000000000000000"
e03_0000="00000080040040000080040000040004"
e03_0001="00000000000440400000400000040044"
e03_0002="00000000040000000000000000000040"
e03_0003="00000003000440400000000000040004"
e03_0004="00000000040400000000000400000040"
e03_0005="00000000400040400000000000000404"
e03_0006="00000000400000070000000400000000"
e03_0007="00000000000000000000000000030004"
e03_0008="00000000000000000000000000000000"
e03_0009="00000000008000000000000000000004"
e03_0010="00000000000000000000000000300000"
e03_0011="00000004000400000000000003000084"
e03_0012="00000000440000000000000003000000"
e03_0013="00000000400440000000000000000000"
e03_0014="00003000030444000000000003000000"
e03_0015="40003000330000000000000000000000"
e03_0016="44000300303404000000000003000044"
e03_0017="00000303047000000000000000000040"
e03_0018="04000033000304000000000403000000"
e03_0019="04000030044300000000000403000000"
e03_0020="00000000004030000000000000300000"
e03_0021="03000030000030000000000803300000"
e03_0022="00000000000003000000003003030000"
e03_0023="04000030000003000000000030030000"
e03_0024="00000000000000300000000030003000"
e03_0025="00000030000000300000000300003000"
e03_0026="00004000000000030000000300000000"
e03_0027="00000030000000030000003000000000"
e03_0028="00007000000000033000003000000000"
e03_0029="00000030000000003000030000000000"
e03_0030="00007000000000000300030000000000"
e03_0031="00000030000000000300300000000000"
e03_0032="00007030000000000030300000000000"
e03_0033="00000303000000004033000000000000"
e03_0034="00003300000000000003004000004000"
e03_0035="00003000000000004033004000000000"
e03_0036="00003800000000000030300000004000"
e03_0037="00003000000000304300300000000000"
e03_0038="00000300000000330300030000000034"
e03_0039="30000300000003037000030000000000"
e03_0040="00000030300003007000003000000044"
e03_0041="00000033300030000000403000000044"
e03_0042="00000003030030004800000300000000"
e03_0043="00000000030300040040404300000004"
e03_0044="00400000003300040000000030000000"
e03_0045="04000000003000000040003030000004"
e03_0046="00000000000000040000000003000000"
e03_0047="00000000043300400000000003000004"
e03_0048="00000004800000000000000000300000"
e03_0049="40000000007400000000000000000004"
e03_0050="44000004004440000000000000300000"
e03_0051="04400030403040000000000000000000"
e03_0052="00400037087000000000000000300000"
e03_0053="00000003430000040000000000000000"
e03_0054="00000000334800000000000000300000"
e03_0055="00000000700000000000000000000000"
e03_0056="00000000004000000000000000000000"
e03_0057="00000400000000000000000000003000"
e03_0058="00000000004000000404000000000000"
e03_0059="00000400040004004034000000000000"
e03_0060="00003440000000000000000400000000"
e03_0061="00000040040404004000000000000000"
e03_0062="00000404404400444000400440000000"
e03_0063="00000004400000440000000400000000"
e04_0000="00000000000000000000000000000000"
e04_0001="00000000000000000001000000000000"
e04_0002="00000000000000000000000000008000"
e04_0003="00000000000000000000000000000000"
e04_0004="10000000000000000000000000000000"
e04_0005="00000000000000000000000000000000"
e04_0006="00000000000000000000000000000000"
e04_0007="00000000000000000000000000000000"
e04_0008="00000000000080000000000000000008"
e04_0009="00000000000000000000000000000000"
e04_0010="00000000000000080000000000000000"
e04_0011="00000000000000000000000000000000"
e04_0012="00000000000000000000000000000000"
e04_0013="00000000000000000000000000000000"
e04_0014="00000000008000000000000000000000"
e04_0015="00000000000000000000000000000000"
e04_0016="00000000000000000000000000000000"
e04_0017="00000000000080000000000010000000"
e04_0018="00000000000000000000000000000000"
e04_0019="00000000000000000000000000000000"
e04_0020="00000000000000000000000000000000"
e04_0021="00000000000000000000000008000000"
e04_0022="00000000000000000000000000000000"
e04_0023="00000000000000000000000000000000"
e04_0024="00000000000000000000000000000000"
e04_0025="80000000000000000000000008000000"
e04_0026="00000000000000000000000000000000"
e04_0027="00000000000000000000000000000000"
e04_0028="00000000000000000000000000000000"
e04_0029="00000000000000000000000000000000"
e04_0030="00000800000000000000080000000000"
e04_0031="00000000000000000000000000000000"
e04_0032="00000000000000000000000000000000"
e04_0033="00000000000000000000000000000000"
e04_0034="00000000000000000000000000000000"
e04_0035="00000000000000000000000000000000"
e04_0036="00000000000000008000000000000000"
e04_0037="00000000000000000000000000000000"
e04_0038="00000000000000000000000000000000"
e04_0039="00000000000000000000000000000000"
e04_0040="00000000000000000008001000000000"
e04_0041="00000000000000000000000000000000"
e04_0042="00000000000800800000000000000000"
e04_0043="00000000000000000000000000000000"
e04_0044="00000000000080000000000000000000"
e04_0045="00000000000000000000000000000000"
e04_0046="00000000000800000000000000000000"
e04_0047="00000000000008000000000000000000"
e04_0048="00000000008000000000000000000010"
e04_0049="00800000000000000000000000000000"
e04_0050="00000000000000000000000000000000"
e04_0051="00000000000000000000000000000000"
e04_0052="00000000000000000000000000000000"
e04_0053="00000000000000000000000000000000"
e04_0054="00000000000000000000000000000000"
e04_0055="00000000000000001000000000000000"
e04_0056="00000000000000000000000000000000"
e04_0057="00000000000000000000000000000800"
e04_0058="00000000000000000000000000000000"
e04_0059="10000000000000000000000000000000"
e04_0060="00800000000000000000000000000000"
e04_0061="00000000000000000000000000000000"
e04_0062="00000000000000000000000000000000"
e04_0063="00000000000080000000000000000000"
e05_0000="00000000000000000000000000000000"
e05_0001="08000000000000000000000000000000"
e05_0002="00000000000000000000000000000000"
e05_0003="00000000000000000000000000000000"
e05_0004="00000000000000000000100000000000"
e05_0005="00000000000000800000000000000000"
e05_0006="00000100000000000000000000000000"
e05_0007="00000001000000000000000000000000"
e05_0008="00000000000000000100000000000000"
e05_0009="00000000000000000000000000000000"
e05_0010="00000000000000000000001000000000"
e05_0011="00000000000000008000000000000000"
e05_0012="00000000000000000000000000100000"
e05_0013="00000000000000000000000000000000"
e05_0014="00000000000800000000000000000000"
e05_0015="00000000000000000000000000000000"
e05_0016="00000000000000000000000000100000"
e05_0017="00010000000000000000000000000000"
e05_0018="00000000000000000000000000000000"
e05_0019="08000010000000000000000000000000"
e05_0020="00000000000000000000000000000000"
e05_0021="00000000000000000000000000000000"
e05_0022="00010000000000000000000000001000"
e05_0023="00000000000000000000008000000000"
e05_0024="00000000000000010000000000000000"
e05_0025="00000000000001000000000000000000"
e05_0026="00000000000000000000000000000000"
e05_0027="00000000000000000000000000000100"
e05_0028="00000000000000000000000000000000"
e05_0029="00000000000000000000000000000080"
e05_0030="00000000000000000000000000000000"
e05_0031="00000000000000000000000800000100"
e05_0032="00000000000000000000800000000000"
e05_0033="00000000000000008000000000000000"
e05_0034="00100000000000000000000000000000"
e05_0035="00000000000000000000000000000000"
e05_0036="00000000000000000000000000100000"
e05_0037="00000000000000000000000000000000"
e05_0038="00000000000000000000000800000000"
e05_0039="00000008000000000000000000000000"
e05_0040="00000000000000000000000000000000"
e05_0041="00001000000000000000000000000000"
e05_0042="08010000000000000000000000000000"
e05_0043="00000000000000000000000000000000"
e05_0044="00000000000000000000000000000000"
e05_0045="00000000000000000000000000000000"
e05_0046="00000100080000000000000000000000"
e05_0047="00000000000000000000000000000000"
e05_0048="00000000000000000000010000000000"
e05_0049="00000000000000000000000000000000"
e05_0050="00000000000000000010000000000000"
e05_0051="00000000000000000000000000000000"
e05_0052="00800000000000000000001010000000"
e05_0053="00000000000000000000000000000000"
e05_0054="00000000000000000011000000000000"
e05_0055="00000000000000000000000000000000"
e05_0056="00000000000000000000000001000000"
e05_0057="00000000000000000110000000000000"
e05_0058="00000000000000000000000000000000"
e05_0059="00000000000000000000000000000000"
e05_0060="00080000000000000000000000000000"
e05_0061="00000800000000000000800000000000"
e05_0062="00000000000000000000000800000000"
e05_0063="00000000001000000000000000000800"
e06_0000="00000000000000000000000000000000"
e06_0001="00000000000080000000001802000002"
e06_0002="00000000000800000000000000000000"
e06_0003="00020000000001000000000000000000"
e06_0004="00000000000000000000000000000000"
e06_0005="08000000080000000000000000000000"
e06_0006="00000000000100000000000400000000"
e06_0007="20000000000000000000000000000000"
e06_0008="00000000000000000000000000000000"
e06_0009="00000000000000000000000000000000"
e06_0010="00000000000000000000000000000000"
e06_0011="00800000400000000000000000000000"
e06_0012="00000000000010000000000000000000"
e06_0013="00000000000000000000000000000000"
e06_0014="00000000800001000000000000000000"
e06_0015="00000000000000100000000000000000"
e06_0016="00000000000000000000000000000000"
e06_0017="00000000000000000000000000000001"
e06_0018="00000000000000000000000000000000"
e06_0019="00000000000000000000000000000000"
e06_0020="00000000000000000000000000000000"
e06_0021="00000000000100000000000000800000"
e06_0022="00000000000000000000000000000000"
e06_0023="00000000000000000040000000000000"
e06_0024="00000000000000000000000000000010"
e06_0025="00000000000000000000000000000001"
e06_0026="00000000000000000000000000000000"
e06_0027="00000800000000000000000000011000"
e06_0028="00002000000000000000000001000000"
e06_0029="00000000000000000000000000000000"
e06_0030="20000000000000000000000000000000"
e06_0031="00000000000000000000000000000000"
e06_0032="00000000000000080000000000000000"
e06_0033="00000000000000000000000000000000"
e06_0034="00000000000000000000000000000000"
e06_0035="00000000000000000000000000000000"
e06_0036="00000000000000000000000001000000"
e06_0037="00000040000000000000000000000000"
e06_0038="00000000000004000000000000000000"
e06_0039="00000100000000000000000000000000"
e06_0040="00000000000000000000000000000000"
e06_0041="00000010000000000000000000000000"
e06_0042="00000000000000000000000008000000"
e06_0043="00000000000000000000000000000000"
e06_0044="00000000000000000000000000000000"
e06_0045="00800000000000000010000800000000"
e06_0046="00000000000000000000000000000000"
e06_0047="00000000000000000000000000000000"
e06_0048="00000000000000000000000000000002"
e06_0049="00000000000000000000000000008000"
e06_0050="80000000000000000000400000000000"
e06_0051="00080000000000000000000000000000"
e06_0052="00000000000000088000000000000000"
e06_0053="00000000000000000000000000000000"
e06_0054="00080000000000000000000000000000"
e06_0055="00000000000000000000000000000000"
e06_0056="00000000000000000000000000000000"
e06_0057="08000000000000000000000000000020"
e06_0058="00000000000000000000000000000000"
e06_0059="00000000000000000000000000000000"
e06_0060="00000000000008000001000000000000"
e06_0061="00000001000000800000000000000020"
e06_0062="00000000000000000000000000000000"
e06_0063="00000000000000000000000000000000"
e07_0000="00000000000000000000000000000000"
e07_0001="00100000000000001000000000000400"
e07_0002="00000000000000000000000000000000"
e07_0003="00000000000000000000000000000000"
e07_0004="00000000000000000000000000000000"
e07_0005="00000000800010000000000000000100"
e07_0006="00000000000000000000008000100000"
e07_0007="00000000000000000000000000000000"
e07_0008="00000000000001000000000000001000"
e07_0009="00000000000000000000000000000000"
e07_0010="00000000000000000000000000000000"
e07_0011="00000000000000000000000000000000"
e07_0012="00000000000000000000000000000000"
e07_0013="41000000000000000000000000000000"
e07_0014="00000000010000000000000008000000"
e07_0015="00000000000000000000000000000000"
e07_0016="00000000000000000000000000000000"
e07_0017="00000000000000000000000000000000"
e07_0018="00000000000000000000000100010000"
e07_0019="00000000000000000000000000000000"
e07_0020="00000000000000004000000000000000"
e07_0021="00000000000000000000000000000000"
e07_0022="00000000000000000000000000000000"
e07_0023="00000000000000000000000010000000"
e07_0024="00000000000000000000000000000000"
e07_0025="00000000000000000000000100000000"
e07_0026="00000000000000000000000000000000"
e07_0027="00000000000000000000000000000000"
e07_0028="00000000000000000010000010000000"
e07_0029="00000000000000000000004000000000"
e07_0030="00000000000000000000000000000000"
e07_0031="00000000000000000000000000000000"
e07_0032="00000000000000000000000000000000"
e07_0033="00000000100000000000000000000000"
e07_0034="00000001000000000000001000000004"
e07_0035="10000000000000000000100000000100"
e07_0036="00000000000000100000000000000000"
e07_0037="00000000000000000000000000000000"
e07_0038="10000000000000000000000000000400"
e07_0039="00000000000000000000000000000000"
e07_0040="00000000011000000000000000000040"
e07_0041="00000000000000000000000000000001"
e07_0042="00000000000000000000000000000000"
e07_0043="00000000000000000000004000000110"
e07_0044="00000000000000000000000000000000"
e07_0045="00000000000000001000000010000001"
e07_0046="00001018000000000000000000000000"
e07_0047="00000000000000000100000000000000"
e07_0048="00000000000000040000000000000000"
e07_0049="00000000000000000000000000000000"
e07_0050="00000000000000000000000000000000"
e07_0051="00000000000000000000000000000000"
e07_0052="00000000000000000000000000000000"
e07_0053="00000000000000000000000000001041"
e07_0054="00000000000000000000000000000000"
e07_0055="00000000000000100000000000000000"
e07_0056="00000000000000000000000000000000"
e07_0057="00080000000000000001000000000000"
e07_0058="00000000100000001000000000000000"
e07_0059="00000000000000000000000000000001"
e07_0060="00000000000000000010000000000100"
e07_0061="00004000000000000000000000000000"
e07_0062="00000000000000000000000000000000"
e07_0063="00400000010000040011000000001000"
e08_0000="00000000000000000000000000000000"
e08_0001="00000000000000000000000000000000"
e08_0002="00000000040000000000000000000000"
e08_0003="00000000000000000000000000000000"
e08_0004="00000000000000000000000000000000"
e08_0005="00000000000000000000000000011000"
e08_0006="00000000000000000010000000000000"
e08_0007="00000000000000000000000010000000"
e08_0008="00000000000000000000000000000000"
e08_0009="00000000000000000000000000000000"
e08_0010="00000000000000000000000000000000"
e08_0011="00001010000000000000000000000000"
e08_0012="00000000000000000000000000000000"
e08_0013="00000000000000020000000000000000"
e08_0014="00000000000000000000000100000002"
e08_0015="00000000000000000000000000000000"
e08_0016="00100100000000000000000000000000"
e08_0017="00000000000004000100000000000040"
e08_0018="00000000000000000000000000000000"
e08_0019="00000000100000000000000000000000"
e08_0020="00000000000000000010000000000000"
e08_0021="00001000000000000000000000000000"
e08_0022="00000000000000000000110000000000"
e08_0023="00000000000020000000000000000000"
e08_0024="00100000000000000000000000000000"
e08_0025="00000000000100001000040000000000"
e08_0026="00000000000000000000000000000000"
e08_0027="00000000000000000000000000000000"
e08_0028="00000000100000000000000000000000"
e08_0029="00000000000000001000000000000000"
e08_0030="00000020000001000000000000000000"
e08_0031="00100000000000000000000000100000"
e08_0032="00000000000000000000000000000000"
e08_0033="00000000000001000000000000000000"
e08_0034="00002000000000000000000000000000"
e08_0035="00000000000000000000000000000000"
e08_0036="00000000000010040000000000000800"
e08_0037="00000000010000000000000000000000"
e08_0038="02000000000000000000000000000000"
e08_0039="00000000000100000000000001100000"
e08_0040="00100000000000000000000000000000"
e08_0041="00000000000000000000000000000000"
e08_0042="00000000000000000000000010100000"
e08_0043="00000000000000000000000000000000"
e08_0044="00000000000002000000020000000000"
e08_0045="00000000000000200000000000000000"
e08_0046="00000000000000000000000000000000"
e08_0047="00000000000000000000000001000000"
e08_0048="00000000000000000000000000000000"
e08_0049="00000000000000000000000100110000"
e08_0050="00000000000000000000000000000000"
e08_0051="00000100000000000000000000000000"
e08_0052="00000000000000000000000000100000"
e08_0053="00000000000000000000100000000000"
e08_0054="20000000000000000000000000000000"
e08_0055="00000000000000000000000000000000"
e08_0056="00000000000000000000010000001000"
e08_0057="00000000000000000000000100000000"
e08_0058="00000000000000020000000000000000"
e08_0059="00000000000000000000000000000000"
e08_0060="00000000000000000000000000000000"
e08_0061="00000000200000000000000020000000"
e08_0062="00000000000000000000000000020000"
e08_0063="00000000000000000000000000000000"
e09_0000="00000000000000000000000000000080"
e09_0001="00000000000000000008000000000000"
e09_0002="00000000000000000000000000000000"
e09_0003="00000000000000000000000000000000"
e09_0004="00000000000000000000000000000000"
e09_0005="00000000000000000000000000000000"
e09_0006="00000000000000000000000000000000"
e09_0007="00000000000000000000000000000000"
e09_0008="00000000000000000000000000000000"
e09_0009="00000000000000000000000000000000"
e09_0010="00000000000000000000000000000000"
e09_0011="00000000000000000000000000000000"
e09_0012="00000000000000000000000000000000"
e09_0013="00000000000000000000000000000000"
e09_0014="00000000000000000000000000000000"
e09_0015="00000000000000000000000000000000"
e09_0016="00000000000000000000000000000000"
e09_0017="00000000000000000000000000000000"
e09_0018="00000000000000000000000000000000"
e09_0019="00000000000000000000000000000000"
e09_0020="00000000000000000000000000000000"
e09_0021="00000000000000000000000000000000"
e09_0022="00000000000000000000000000400080"
e09_0023="00000000000000000000000000000000"
e09_0024="00000000000000000000000000000000"
e09_0025="00000000000000000000000000000000"
e09_0026="00000000000000000000800000000000"
e09_0027="00000000000000000000000000000002"
e09_0028="00000000000000000000000000001000"
e09_0029="00000000000000000000001000000000"
e09_0030="00000000000000000000000000000000"
e09_0031="00000000000000000000000000000000"
e09_0032="00000000000000000000000000000000"
e09_0033="00000000000000000000000000000000"
e09_0034="00000000000000000000000000000000"
e09_0035="00000000000000000000000000000000"
e09_0036="00000000000000000000000000000000"
e09_0037="00000000000000000000000010000000"
e09_0038="00000000000000000000000000000000"
e09_0039="00000000000000000000000000000000"
e09_0040="00000000000000000000000000000000"
e09_0041="00000000000000000004000000000000"
e09_0042="00000000000000000000000000000000"
e09_0043="00000000000000000000000000000000"
e09_0044="00000000000000000000000020040000"
e09_0045="00000000000000000000000000000000"
e09_0046="00000000000000000000000000000000"
e09_0047="00000000000000000000000000000000"
e09_0048="00000000000000000000000000000002"
e09_0049="00000000000000000000000000000000"
e09_0050="00000000000000000000000000000000"
e09_0051="00000000000000000000000040000000"
e09_0052="00000000000000000000000000000000"
e09_0053="00000000000000000000000000000000"
e09_0054="00000000000000000000000000000000"
e09_0055="00000000000000000000000000000000"
e09_0056="00000000000000000000000000000000"
e09_0057="00000000000000000000000000000000"
e09_0058="00000000000000000000002000000000"
e09_0059="00000000000000000000000001000000"
e09_0060="00000000000000000000000000000000"
e09_0061="00000000000000000000000000000000"
e09_0062="00000000000000000000000000000000"
e09_0063="00000000000000000000000000000000"
e10_0000="00000004000000000000000000000000"
e10_0001="00000000000000000000000000000000"
e10_0002="00000000000000000000000000000000"
e10_0003="00000000000000020000000000010000"
e10_0004="00000000000000000000000000000000"
e10_0005="00000000000000000000000000000000"
e10_0006="00000000000000000000000000000000"
e10_0007="00000000008000000000000000000000"
e10_0008="80000000000000000000000000000000"
e10_0009="00000000000000000000000000000000"
e10_0010="00000000000000000000000000000000"
e10_0011="00000000000000000000000000000000"
e10_0012="00000000000000000000000000000000"
e10_0013="00000000000000002000000000000000"
e10_0014="00000000000000000000000000000000"
e10_0015="00000000000000000000000000000000"
e10_0016="00000000000000000000000000100000"
e10_0017="00000000000000000000000000000000"
e10_0018="00000000000000000000000000000000"
e10_0019="00000400000000000000000000000000"
e10_0020="00000000000000000000000100000000"
e10_0021="00000000000000000000000000000000"
e10_0022="00000000000000000000000000000000"
e10_0023="00000000000000000000000000000000"
e10_0024="00000000000000000000000000000000"
e10_0025="00000000008000000000000000000000"
e10_0026="00000000000000000000000000000000"
e10_0027="00000000000000000000000000000000"
e10_0028="00000000000000000000000000000000"
e10_0029="00000008000000000000000000000000"
e10_0030="00000000000000400020000001000000"
e10_0031="00000000000000000000000000000000"
e10_0032="00000000000000000000000000000000"
e10_0033="00000000000000000000000000000000"
e10_0034="00000000000000000000000000000000"
e10_0035="00000000000000000000000000000000"
e10_0036="00000000000000000000000000000000"
e10_0037="00000000000000000000000000000000"
e10_0038="00000000000000000000000000000000"
e10_0039="00000000000000000000000000000000"
e10_0040="00000000000000000000000000000000"
e10_0041="00000000000000000000000000000000"
e10_0042="00000000000000000000000000000000"
e10_0043="00000000000000000000000000000000"
e10_0044="00000000000000000000000000000000"
e10_0045="00000000000000000000000000000000"
e10_0046="00000000000000000000000000000000"
e10_0047="00000000000000000000000000000000"
e10_0048="00000000000000000000000000000000"
e10_0049="00000000000000000000000000000000"
e10_0050="00000000000000000000000000000000"
e10_0051="00000000000000000000000000000000"
e10_0052="00000000000000000000000000000000"
e10_0053="00000000000000000000000000000000"
e10_0054="00000000000000000000000000000000"
e10_0055="00000000000000000000000000000000"
e10_0056="00000000000000000000000000000000"
e10_0057="00000000000000000000000000000000"
e10_0058="00000000000000000000000000000000"
e10_0059="00000000000000000000000000000000"
e10_0060="00000000000000000000000000000000"
e10_0061="00000000000000000000000000000000"
e10_0062="00000000000000000000000000000000"
e10_0063="00000000000000000000000000000000"
e11_0000="00000000000010000000000000000000"
e11_0001="00000000000000000000000000000000"
e11_0002="00000000000000000000000000000000"
e11_0003="00000000000000000000000000000000"
e11_0004="00000000000000000000000000000000"
e11_0005="00000000000000000000000000000000"
e11_0006="00000000000000000000000000000000"
e11_0007="00000000000000000000000000000000"
e11_0008="00000000000000000000000000000000"
e11_0009="00000000000000000000000000000000"
e11_0010="00000000000000000000000000000000"
e11_0011="00000100000000000000000000000000"
e11_0012="00000000000000000000000000000000"
e11_0013="00000000000001000000000000000000"
e11_0014="00000000000000000000000000000000"
e11_0015="00000000000000000000000000000000"
e11_0016="00000000000000000000000000000000"
e11_0017="00000000000000000000000000000000"
e11_0018="00000000000000000000000000000000"
e11_0019="00000000000000000000000000000000"
e11_0020="00000000000001000000000000000000"
e11_0021="00000000000000000000000000000000"
e11_0022="00000000000000000000000000000000"
e11_0023="00000000000000000000000000000000"