-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsimple_tokamak_csg.xml
More file actions
1007 lines (1007 loc) · 86.6 KB
/
simple_tokamak_csg.xml
File metadata and controls
1007 lines (1007 loc) · 86.6 KB
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
<?xml version='1.0' encoding='utf-8'?>
<model>
<materials>
<material id="1">
<density value="2.2" units="g/cm3"/>
<nuclide name="H1" ao="0.10361"/>
<nuclide name="H2" ao="1.1917e-05"/>
<nuclide name="O16" ao="0.58374"/>
<nuclide name="Na23" ao="0.013982"/>
<nuclide name="Mg24" ao="0.0015657"/>
<nuclide name="Mg25" ao="0.00019822"/>
<nuclide name="Mg26" ao="0.00021824"/>
<nuclide name="Al27" ao="0.032719"/>
<nuclide name="Si28" ao="0.19449"/>
<nuclide name="Si29" ao="0.0098757"/>
<nuclide name="Si30" ao="0.0065101"/>
<nuclide name="S32" ao="0.00071363"/>
<nuclide name="S33" ao="5.6345e-06"/>
<nuclide name="S34" ao="3.1929e-05"/>
<nuclide name="S36" ao="7.5127e-08"/>
<nuclide name="K39" ao="0.0086268"/>
<nuclide name="K40" ao="1.0823e-06"/>
<nuclide name="K41" ao="0.00062257"/>
<nuclide name="Ca40" ao="0.037706"/>
<nuclide name="Ca42" ao="0.00025166"/>
<nuclide name="Ca43" ao="5.251e-05"/>
<nuclide name="Ca44" ao="0.00081138"/>
<nuclide name="Ca46" ao="1.5559e-06"/>
<nuclide name="Ca48" ao="7.2736e-05"/>
<nuclide name="Fe54" ao="0.00024385"/>
<nuclide name="Fe56" ao="0.003828"/>
<nuclide name="Fe57" ao="8.8404e-05"/>
<nuclide name="Fe58" ao="1.1765e-05"/>
</material>
<material id="2">
<density value="7.2316" units="g/cm3"/>
<nuclide name="C0" ao="0.0012232"/>
<nuclide name="Mn55" ao="0.016219"/>
<nuclide name="Ni58" ao="0.070336"/>
<nuclide name="Ni60" ao="0.027093"/>
<nuclide name="Ni61" ao="0.0011777"/>
<nuclide name="Ni62" ao="0.0037551"/>
<nuclide name="Ni64" ao="0.00095632"/>
<nuclide name="Cr50" ao="0.0072392"/>
<nuclide name="Cr52" ao="0.1396"/>
<nuclide name="Cr53" ao="0.01583"/>
<nuclide name="Cr54" ao="0.0039403"/>
<nuclide name="Mo92" ao="0.0019145"/>
<nuclide name="Mo94" ao="0.0011933"/>
<nuclide name="Mo95" ao="0.0020538"/>
<nuclide name="Mo96" ao="0.0021518"/>
<nuclide name="Mo97" ao="0.001232"/>
<nuclide name="Mo98" ao="0.003113"/>
<nuclide name="Mo100" ao="0.0012423"/>
<nuclide name="N14" ao="0.0024649"/>
<nuclide name="N15" ao="9.197e-06"/>
<nuclide name="P31" ao="0.00039956"/>
<nuclide name="S32" ao="0.00014665"/>
<nuclide name="S33" ao="1.1579e-06"/>
<nuclide name="S34" ao="6.5615e-06"/>
<nuclide name="S36" ao="1.5439e-08"/>
<nuclide name="Si28" ao="0.0081281"/>
<nuclide name="Si29" ao="0.00041272"/>
<nuclide name="Si30" ao="0.00027207"/>
<nuclide name="Cu63" ao="0.0016165"/>
<nuclide name="Cu65" ao="0.00072052"/>
<nuclide name="Ta181" ao="2.7358e-05"/>
<nuclide name="Ti46" ao="8.5321e-05"/>
<nuclide name="Ti47" ao="7.6944e-05"/>
<nuclide name="Ti48" ao="0.00076209"/>
<nuclide name="Ti49" ao="5.595e-05"/>
<nuclide name="Ti50" ao="5.3571e-05"/>
<nuclide name="B10" ao="1.8224e-05"/>
<nuclide name="B11" ao="7.3355e-05"/>
<nuclide name="Nb93" ao="0.00053283"/>
<nuclide name="Co59" ao="0.00042"/>
<nuclide name="Fe54" ao="0.03355"/>
<nuclide name="Fe56" ao="0.52667"/>
<nuclide name="Fe57" ao="0.012163"/>
<nuclide name="Fe58" ao="0.0016187"/>
<nuclide name="H1" ao="0.073012"/>
<nuclide name="H2" ao="8.3974e-06"/>
<nuclide name="O16" ao="0.036422"/>
</material>
<material id="3">
<density value="5.36" units="g/cm3"/>
<nuclide name="Cr50" ao="0.00016342"/>
<nuclide name="Cr52" ao="0.0031514"/>
<nuclide name="Cr53" ao="0.00035734"/>
<nuclide name="Cr54" ao="8.895e-05"/>
<nuclide name="Zr90" ao="0.00016288"/>
<nuclide name="Zr91" ao="3.552e-05"/>
<nuclide name="Zr92" ao="5.4294e-05"/>
<nuclide name="Zr94" ao="5.5022e-05"/>
<nuclide name="Zr96" ao="8.8643e-06"/>
<nuclide name="Co59" ao="0.00022155"/>
<nuclide name="Ta181" ao="1.4681e-05"/>
<nuclide name="B10" ao="4.991e-06"/>
<nuclide name="B11" ao="2.0089e-05"/>
<nuclide name="O16" ao="0.0017487"/>
<nuclide name="Mg24" ao="0.0004425"/>
<nuclide name="Mg25" ao="5.602e-05"/>
<nuclide name="Mg26" ao="6.1678e-05"/>
<nuclide name="Al27" ao="0.00014742"/>
<nuclide name="Si28" ao="0.00044712"/>
<nuclide name="Si29" ao="2.2703e-05"/>
<nuclide name="Si30" ao="1.4966e-05"/>
<nuclide name="P31" ao="0.00011782"/>
<nuclide name="S32" ao="3.2446e-05"/>
<nuclide name="S33" ao="2.5618e-07"/>
<nuclide name="S34" ao="1.4517e-06"/>
<nuclide name="S36" ao="3.4157e-09"/>
<nuclide name="Mn55" ao="1.0937e-05"/>
<nuclide name="Fe54" ao="9.9131e-06"/>
<nuclide name="Fe56" ao="0.00015561"/>
<nuclide name="Fe57" ao="3.5938e-06"/>
<nuclide name="Fe58" ao="4.7827e-07"/>
<nuclide name="Ni58" ao="9.7189e-05"/>
<nuclide name="Ni60" ao="3.7437e-05"/>
<nuclide name="Ni61" ao="1.6274e-06"/>
<nuclide name="Ni62" ao="5.1888e-06"/>
<nuclide name="Ni64" ao="1.3214e-06"/>
<nuclide name="Sn112" ao="2.1285e-07"/>
<nuclide name="Sn114" ao="1.4483e-07"/>
<nuclide name="Sn115" ao="7.4608e-08"/>
<nuclide name="Sn116" ao="3.1906e-06"/>
<nuclide name="Sn117" ao="1.6853e-06"/>
<nuclide name="Sn118" ao="5.3147e-06"/>
<nuclide name="Sn119" ao="1.8849e-06"/>
<nuclide name="Sn120" ao="7.1492e-06"/>
<nuclide name="Sn122" ao="1.016e-06"/>
<nuclide name="Sn124" ao="1.2705e-06"/>
<nuclide name="Pb206" ao="3.1536e-06"/>
<nuclide name="Pb207" ao="2.8918e-06"/>
<nuclide name="Pb208" ao="6.8566e-06"/>
<nuclide name="Bi209" ao="3.7394e-06"/>
<nuclide name="Cu63" ao="0.28035"/>
<nuclide name="Cu65" ao="0.12495"/>
<nuclide name="Be9" ao="0.5864"/>
<nuclide name="C0" ao="0.00043877"/>
<nuclide name="Ti46" ao="5.5087e-07"/>
<nuclide name="Ti47" ao="4.9678e-07"/>
<nuclide name="Ti48" ao="4.9203e-06"/>
<nuclide name="Ti49" ao="3.6123e-07"/>
<nuclide name="Ti50" ao="3.4588e-07"/>
<nuclide name="Ca40" ao="2.5771e-06"/>
<nuclide name="Ca42" ao="1.72e-08"/>
<nuclide name="Ca43" ao="3.5888e-09"/>
<nuclide name="Ca44" ao="5.5454e-08"/>
<nuclide name="Ca46" ao="1.0634e-10"/>
<nuclide name="Ca48" ao="4.9712e-09"/>
<nuclide name="W182" ao="7.6782e-07"/>
<nuclide name="W183" ao="4.1464e-07"/>
<nuclide name="W184" ao="8.8781e-07"/>
<nuclide name="W186" ao="8.2375e-07"/>
<nuclide name="Mo92" ao="1.6481e-07"/>
<nuclide name="Mo94" ao="1.0273e-07"/>
<nuclide name="Mo95" ao="1.768e-07"/>
<nuclide name="Mo96" ao="1.8524e-07"/>
<nuclide name="Mo97" ao="1.0606e-07"/>
<nuclide name="Mo98" ao="2.6798e-07"/>
<nuclide name="Mo100" ao="1.0695e-07"/>
<nuclide name="N14" ao="4.3196e-05"/>
<nuclide name="N15" ao="1.6117e-07"/>
<nuclide name="Li6" ao="1.7477e-07"/>
<nuclide name="Li7" ao="2.1279e-06"/>
<nuclide name="Na23" ao="3.4756e-06"/>
<nuclide name="F19" ao="1.4019e-06"/>
<nuclide name="Cl35" ao="1.1386e-06"/>
<nuclide name="Cl37" ao="3.6392e-07"/>
<nuclide name="Nb93" ao="6.8803e-09"/>
</material>
<material id="4">
<density value="6.947" units="g/cm3"/>
<nuclide name="C0" ao="0.031775"/>
<nuclide name="Mn55" ao="0.01097"/>
<nuclide name="Ni58" ao="0.041944"/>
<nuclide name="Ni60" ao="0.016157"/>
<nuclide name="Ni61" ao="0.00070233"/>
<nuclide name="Ni62" ao="0.0022393"/>
<nuclide name="Ni64" ao="0.00057029"/>
<nuclide name="Cr50" ao="0.0042808"/>
<nuclide name="Cr52" ao="0.082552"/>
<nuclide name="Cr53" ao="0.0093607"/>
<nuclide name="Cr54" ao="0.0023301"/>
<nuclide name="Mo92" ao="0.0011654"/>
<nuclide name="Mo94" ao="0.00072641"/>
<nuclide name="Mo95" ao="0.0012502"/>
<nuclide name="Mo96" ao="0.0013099"/>
<nuclide name="Mo97" ao="0.00074997"/>
<nuclide name="Mo98" ao="0.0018949"/>
<nuclide name="Mo100" ao="0.00075625"/>
<nuclide name="N14" ao="0.0063787"/>
<nuclide name="N15" ao="1.1084e-05"/>
<nuclide name="P31" ao="0.00043975"/>
<nuclide name="S32" ao="0.0010711"/>
<nuclide name="S33" ao="8.4569e-06"/>
<nuclide name="S34" ao="4.7922e-05"/>
<nuclide name="S36" ao="1.1276e-07"/>
<nuclide name="Si28" ao="0.019512"/>
<nuclide name="Si29" ao="0.00099523"/>
<nuclide name="Si30" ao="0.00065791"/>
<nuclide name="Nb93" ao="3.2435e-05"/>
<nuclide name="Ta181" ao="1.6653e-05"/>
<nuclide name="Ti46" ao="7.7882e-05"/>
<nuclide name="Ti47" ao="7.0235e-05"/>
<nuclide name="Ti48" ao="0.00069593"/>
<nuclide name="Ti49" ao="5.1072e-05"/>
<nuclide name="Ti50" ao="4.89e-05"/>
<nuclide name="Cu63" ao="0.22112"/>
<nuclide name="Cu65" ao="0.098555"/>
<nuclide name="Co59" ao="0.00025566"/>
<nuclide name="B10" ao="5.5468e-06"/>
<nuclide name="B11" ao="2.2327e-05"/>
<nuclide name="Al27" ao="0.0070023"/>
<nuclide name="O16" ao="0.044413"/>
<nuclide name="K39" ao="3.5935e-06"/>
<nuclide name="K40" ao="4.5083e-10"/>
<nuclide name="K41" ao="2.5933e-07"/>
<nuclide name="Bi209" ao="1.2499e-06"/>
<nuclide name="V50" ao="5.9152e-08"/>
<nuclide name="V51" ao="2.3601e-05"/>
<nuclide name="Zr90" ao="3.3987e-06"/>
<nuclide name="Zr91" ao="7.4118e-07"/>
<nuclide name="Zr92" ao="1.1329e-06"/>
<nuclide name="Zr94" ao="1.1481e-06"/>
<nuclide name="Zr96" ao="1.8497e-07"/>
<nuclide name="Sn112" ao="5.2536e-08"/>
<nuclide name="Sn114" ao="3.5746e-08"/>
<nuclide name="Sn115" ao="1.8415e-08"/>
<nuclide name="Sn116" ao="7.875e-07"/>
<nuclide name="Sn117" ao="4.1596e-07"/>
<nuclide name="Sn118" ao="1.3118e-06"/>
<nuclide name="Sn119" ao="4.6524e-07"/>
<nuclide name="Sn120" ao="1.7646e-06"/>
<nuclide name="Sn122" ao="2.5076e-07"/>
<nuclide name="Sn124" ao="3.1359e-07"/>
<nuclide name="W182" ao="4.3484e-07"/>
<nuclide name="W183" ao="2.349e-07"/>
<nuclide name="W184" ao="5.0285e-07"/>
<nuclide name="W186" ao="4.6648e-07"/>
<nuclide name="Pb206" ao="4.0135e-07"/>
<nuclide name="Pb207" ao="3.6804e-07"/>
<nuclide name="Pb208" ao="8.7265e-07"/>
<nuclide name="Fe54" ao="0.020476"/>
<nuclide name="Fe56" ao="0.32143"/>
<nuclide name="Fe57" ao="0.0074232"/>
<nuclide name="Fe58" ao="0.0009879"/>
<nuclide name="H1" ao="0.035466"/>
<nuclide name="Mg24" ao="0.0015412"/>
<nuclide name="Mg25" ao="0.00019512"/>
<nuclide name="Mg26" ao="0.00021483"/>
</material>
<material id="5">
<density value="7.93" units="g/cm3"/>
<nuclide name="C0" ao="0.0013736"/>
<nuclide name="Mn55" ao="0.018213"/>
<nuclide name="Ni58" ao="0.07898"/>
<nuclide name="Ni60" ao="0.030423"/>
<nuclide name="Ni61" ao="0.0013225"/>
<nuclide name="Ni62" ao="0.0042166"/>
<nuclide name="Ni64" ao="0.0010738"/>
<nuclide name="Cr50" ao="0.0081289"/>
<nuclide name="Cr52" ao="0.15676"/>
<nuclide name="Cr53" ao="0.017775"/>
<nuclide name="Cr54" ao="0.0044245"/>
<nuclide name="Mo92" ao="0.0021497"/>
<nuclide name="Mo94" ao="0.00134"/>
<nuclide name="Mo95" ao="0.0023062"/>
<nuclide name="Mo96" ao="0.0024163"/>
<nuclide name="Mo97" ao="0.0013834"/>
<nuclide name="Mo98" ao="0.0034955"/>
<nuclide name="Mo100" ao="0.001395"/>
<nuclide name="N14" ao="0.0027678"/>
<nuclide name="N15" ao="1.0327e-05"/>
<nuclide name="P31" ao="0.00044866"/>
<nuclide name="S32" ao="0.00016468"/>
<nuclide name="S33" ao="1.3002e-06"/>
<nuclide name="S34" ao="7.3678e-06"/>
<nuclide name="S36" ao="1.7336e-08"/>
<nuclide name="Si28" ao="0.009127"/>
<nuclide name="Si29" ao="0.00046344"/>
<nuclide name="Si30" ao="0.0003055"/>
<nuclide name="Cu63" ao="0.0018152"/>
<nuclide name="Cu65" ao="0.00080906"/>
<nuclide name="Ta181" ao="3.072e-05"/>
<nuclide name="Ti46" ao="9.5806e-05"/>
<nuclide name="Ti47" ao="8.64e-05"/>
<nuclide name="Ti48" ao="0.00085574"/>
<nuclide name="Ti49" ao="6.2826e-05"/>
<nuclide name="Ti50" ao="6.0155e-05"/>
<nuclide name="B10" ao="2.0464e-05"/>
<nuclide name="B11" ao="8.237e-05"/>
<nuclide name="Nb93" ao="0.00059831"/>
<nuclide name="Co59" ao="0.00047161"/>
<nuclide name="Fe54" ao="0.037673"/>
<nuclide name="Fe56" ao="0.59139"/>
<nuclide name="Fe57" ao="0.013658"/>
<nuclide name="Fe58" ao="0.0018176"/>
</material>
<material id="6">
<density value="2.5682" units="g/cm3"/>
<nuclide name="C0" ao="0.00079062"/>
<nuclide name="Mn55" ao="0.010483"/>
<nuclide name="Ni58" ao="0.04546"/>
<nuclide name="Ni60" ao="0.017511"/>
<nuclide name="Ni61" ao="0.0007612"/>
<nuclide name="Ni62" ao="0.002427"/>
<nuclide name="Ni64" ao="0.00061809"/>
<nuclide name="Cr50" ao="0.0046789"/>
<nuclide name="Cr52" ao="0.090228"/>
<nuclide name="Cr53" ao="0.010231"/>
<nuclide name="Cr54" ao="0.0025467"/>
<nuclide name="Mo92" ao="0.0012374"/>
<nuclide name="Mo94" ao="0.00077127"/>
<nuclide name="Mo95" ao="0.0013274"/>
<nuclide name="Mo96" ao="0.0013908"/>
<nuclide name="Mo97" ao="0.00079628"/>
<nuclide name="Mo98" ao="0.002012"/>
<nuclide name="Mo100" ao="0.00080296"/>
<nuclide name="N14" ao="0.0015931"/>
<nuclide name="N15" ao="5.9442e-06"/>
<nuclide name="P31" ao="0.00025824"/>
<nuclide name="S32" ao="9.4785e-05"/>
<nuclide name="S33" ao="7.4839e-07"/>
<nuclide name="S34" ao="4.2408e-06"/>
<nuclide name="S36" ao="9.9785e-09"/>
<nuclide name="Si28" ao="0.0052534"/>
<nuclide name="Si29" ao="0.00026675"/>
<nuclide name="Si30" ao="0.00017584"/>
<nuclide name="Cu63" ao="0.0010448"/>
<nuclide name="Cu65" ao="0.00046569"/>
<nuclide name="Ta181" ao="1.7682e-05"/>
<nuclide name="Ti46" ao="5.5145e-05"/>
<nuclide name="Ti47" ao="4.9731e-05"/>
<nuclide name="Ti48" ao="0.00049256"/>
<nuclide name="Ti49" ao="3.6162e-05"/>
<nuclide name="Ti50" ao="3.4624e-05"/>
<nuclide name="B10" ao="1.1779e-05"/>
<nuclide name="B11" ao="4.7411e-05"/>
<nuclide name="Nb93" ao="0.00034438"/>
<nuclide name="Co59" ao="0.00027145"/>
<nuclide name="Fe54" ao="0.021684"/>
<nuclide name="Fe56" ao="0.3404"/>
<nuclide name="Fe57" ao="0.0078613"/>
<nuclide name="Fe58" ao="0.0010462"/>
<nuclide name="H1" ao="0.28314"/>
<nuclide name="H2" ao="3.2565e-05"/>
<nuclide name="O16" ao="0.14124"/>
</material>
<material id="7">
<density value="5.1364" units="g/cm3"/>
<nuclide name="C0" ao="0.00079062"/>
<nuclide name="Mn55" ao="0.010483"/>
<nuclide name="Ni58" ao="0.04546"/>
<nuclide name="Ni60" ao="0.017511"/>
<nuclide name="Ni61" ao="0.0007612"/>
<nuclide name="Ni62" ao="0.002427"/>
<nuclide name="Ni64" ao="0.00061809"/>
<nuclide name="Cr50" ao="0.0046789"/>
<nuclide name="Cr52" ao="0.090228"/>
<nuclide name="Cr53" ao="0.010231"/>
<nuclide name="Cr54" ao="0.0025467"/>
<nuclide name="Mo92" ao="0.0012374"/>
<nuclide name="Mo94" ao="0.00077127"/>
<nuclide name="Mo95" ao="0.0013274"/>
<nuclide name="Mo96" ao="0.0013908"/>
<nuclide name="Mo97" ao="0.00079628"/>
<nuclide name="Mo98" ao="0.002012"/>
<nuclide name="Mo100" ao="0.00080296"/>
<nuclide name="N14" ao="0.0015931"/>
<nuclide name="N15" ao="5.9442e-06"/>
<nuclide name="P31" ao="0.00025824"/>
<nuclide name="S32" ao="9.4785e-05"/>
<nuclide name="S33" ao="7.4839e-07"/>
<nuclide name="S34" ao="4.2408e-06"/>
<nuclide name="S36" ao="9.9785e-09"/>
<nuclide name="Si28" ao="0.0052534"/>
<nuclide name="Si29" ao="0.00026675"/>
<nuclide name="Si30" ao="0.00017584"/>
<nuclide name="Cu63" ao="0.0010448"/>
<nuclide name="Cu65" ao="0.00046569"/>
<nuclide name="Ta181" ao="1.7682e-05"/>
<nuclide name="Ti46" ao="5.5145e-05"/>
<nuclide name="Ti47" ao="4.9731e-05"/>
<nuclide name="Ti48" ao="0.00049256"/>
<nuclide name="Ti49" ao="3.6162e-05"/>
<nuclide name="Ti50" ao="3.4624e-05"/>
<nuclide name="B10" ao="1.1779e-05"/>
<nuclide name="B11" ao="4.7411e-05"/>
<nuclide name="Nb93" ao="0.00034438"/>
<nuclide name="Co59" ao="0.00027145"/>
<nuclide name="Fe54" ao="0.021684"/>
<nuclide name="Fe56" ao="0.3404"/>
<nuclide name="Fe57" ao="0.0078613"/>
<nuclide name="Fe58" ao="0.0010462"/>
<nuclide name="H1" ao="0.28314"/>
<nuclide name="H2" ao="3.2565e-05"/>
<nuclide name="O16" ao="0.14124"/>
</material>
<material id="8">
<density value="19.0" units="g/cm3"/>
<nuclide name="Al27" ao="0.00010205"/>
<nuclide name="C0" ao="0.00045359"/>
<nuclide name="Ca40" ao="4.4402e-05"/>
<nuclide name="Ca42" ao="2.9635e-07"/>
<nuclide name="Ca43" ao="6.1834e-08"/>
<nuclide name="Ca44" ao="9.5545e-07"/>
<nuclide name="Ca46" ao="1.8321e-09"/>
<nuclide name="Ca48" ao="8.5652e-08"/>
<nuclide name="Co59" ao="3.1147e-05"/>
<nuclide name="Cr50" ao="1.5339e-06"/>
<nuclide name="Cr52" ao="2.958e-05"/>
<nuclide name="Cr53" ao="3.3541e-06"/>
<nuclide name="Cr54" ao="8.3491e-07"/>
<nuclide name="Cu63" ao="1.9981e-05"/>
<nuclide name="Cu65" ao="8.9057e-06"/>
<nuclide name="Fe54" ao="5.7637e-06"/>
<nuclide name="Fe56" ao="9.0478e-05"/>
<nuclide name="Fe57" ao="2.0895e-06"/>
<nuclide name="Fe58" ao="2.7808e-07"/>
<nuclide name="H1" ao="0.00091047"/>
<nuclide name="H2" ao="1.0472e-07"/>
<nuclide name="K39" ao="4.3779e-05"/>
<nuclide name="K40" ao="5.4925e-09"/>
<nuclide name="K41" ao="3.1595e-06"/>
<nuclide name="Mg24" ao="2.9828e-05"/>
<nuclide name="Mg25" ao="3.7762e-06"/>
<nuclide name="Mg26" ao="4.1576e-06"/>
<nuclide name="Mn55" ao="1.6706e-05"/>
<nuclide name="Mo92" ao="2.8396e-05"/>
<nuclide name="Mo94" ao="1.77e-05"/>
<nuclide name="Mo95" ao="3.0462e-05"/>
<nuclide name="Mo96" ao="3.1917e-05"/>
<nuclide name="Mo97" ao="1.8274e-05"/>
<nuclide name="Mo98" ao="4.6172e-05"/>
<nuclide name="Mo100" ao="1.8427e-05"/>
<nuclide name="N14" ao="0.00013057"/>
<nuclide name="N15" ao="4.8719e-07"/>
<nuclide name="Na23" ao="7.9845e-05"/>
<nuclide name="Nb93" ao="1.9758e-05"/>
<nuclide name="Ni58" ao="4.2581e-05"/>
<nuclide name="Ni60" ao="1.6402e-05"/>
<nuclide name="Ni61" ao="7.13e-07"/>
<nuclide name="Ni62" ao="2.2734e-06"/>
<nuclide name="Ni64" ao="5.7895e-07"/>
<nuclide name="O16" ao="0.00034335"/>
<nuclide name="P31" ao="0.00029631"/>
<nuclide name="Pb206" ao="2.1349e-06"/>
<nuclide name="Pb207" ao="1.9577e-06"/>
<nuclide name="Pb208" ao="4.6418e-06"/>
<nuclide name="S32" ao="2.719e-05"/>
<nuclide name="S33" ao="2.1468e-07"/>
<nuclide name="S34" ao="1.2165e-06"/>
<nuclide name="S36" ao="2.8624e-09"/>
<nuclide name="Si28" ao="0.00012056"/>
<nuclide name="Si29" ao="6.1216e-06"/>
<nuclide name="Si30" ao="4.0354e-06"/>
<nuclide name="Ta181" ao="1.0144e-05"/>
<nuclide name="Ti46" ao="3.1637e-06"/>
<nuclide name="Ti47" ao="2.8531e-06"/>
<nuclide name="Ti48" ao="2.8259e-05"/>
<nuclide name="Ti49" ao="2.0747e-06"/>
<nuclide name="Ti50" ao="1.9864e-06"/>
<nuclide name="Zr90" ao="1.0352e-05"/>
<nuclide name="Zr91" ao="2.2574e-06"/>
<nuclide name="Zr92" ao="3.4506e-06"/>
<nuclide name="Zr94" ao="3.4968e-06"/>
<nuclide name="Zr96" ao="5.6336e-07"/>
<nuclide name="W182" ao="0.26447"/>
<nuclide name="W183" ao="0.14282"/>
<nuclide name="W184" ao="0.3058"/>
<nuclide name="W186" ao="0.28374"/>
</material>
</materials>
<geometry>
<cell id="1" fill="1" region="-9000 7000 -11000 10000 -6000 (470 | -490 | -1780 | 11000 | 1690 | -10000)" universe="0"/>
<cell id="2" material="void" region="-1000 2000 -3000 4000 -5000 8000 (9000 | -7000 | 11000 | -10000 | 6000)" universe="0"/>
<cell id="5" material="1" region="(31 -189 -28 -290 222 269) | (31 257 -28 -189 -269 197) | (31 282 -197 -269 -61 200) | (31 -269 -61 271 -200 218) | (218 -200 -279 -61 282 31) | (-61 282 -269 31 222 -218) | (-197 31 222 257 -28 -282) | (31 -290 -28 257 227 -222)" universe="1"/>
<cell id="6" material="1" region="-28 91 -132 257 133 -290" universe="1"/>
<cell id="7" material="1" region="-28 91 -227 257 228 -290" universe="1"/>
<cell id="8" material="1" region="(31 121 -180 -60 -112 182) | (31 -112 189 -28 121 -182 92) | (121 -112 -28 -133 31 165 92) | (121 31 -112 167 -60 -165) | (-121 31 257 -28 -133 165) | (31 -165 -121 -60 182 123) | (31 182 -28 257 -165 -123) | (-28 257 189 31 -121 -182) | (-28 -290 -133 31 103 165) | (31 -165 -28 -290 182 101) | (31 182 103 -60 -165 -101) | (103 31 -290 189 -28 -182) | (31 112 -133 -28 -103 165 92) | (31 -103 167 -60 112 -165) | (-103 31 112 -180 -60 182) | (-103 112 189 31 -28 -182 92)" universe="1"/>
<cell id="9" material="7" region="-150 -54 257 -290 204 56" universe="1"/>
<cell id="10" material="7" region="(41 -160 -38 186 -290 102) | (41 -160 -38 166 -102 122 92) | (122 -102 -181 -38 186 41 92) | (-38 -160 41 186 257 -122)" universe="1"/>
<cell id="11" material="7" region="(48 ((11039 11040) | -11040) -186 -11041 11042 -290 106) | (48 -11041 11042 ((11039 11040) | -11040) -248 118 -106 92) | (-106 118 247 -186 -11041 11042 ((11039 11040) | -11040)) | (48 -186 -11041 11042 257 ((11039 11040) | -11040) -118)" universe="1"/>
<cell id="12" material="7" region="((11007 -11008) | 11008) 48 -11005 -11006 -290 160 257" universe="1"/>
<cell id="13" material="7" region="-48 257 209 -290 -204 56" universe="1"/>
<cell id="14" material="7" region="(-147 150 -48 87) | (-147 -48 150 -290 109 88 -87) | (-87 88 -48 -115 150 257 -147) | (257 -290 -147 56 150 -88)" universe="1"/>
<cell id="15" material="4" region="(291 -142 55 -11001 -11002 -290 145 241) | (291 -11045 11046 -290 -11001 -11002 -34 37 241) | (-290 -11045 11046 291 ((11043 11044) | -11044) 210 -37 241) | (-37 -145 291 -11001 -11002 ((11003 -11004) | 11004) -290 241) | (-290 -11045 11046 291 221 55 -210 241)" universe="1"/>
<cell id="16" material="4" region="(-256 -37 -11045 11046 ((11043 11044) | -11044) 257 210 243) | (-11045 11046 257 55 221 -256 -210 243) | (-256 -11001 -11002 -142 55 257 145 243) | (-11001 -11002 257 -256 ((11003 -11004) | 11004) -37 -145 243) | (-11001 -11002 257 -34 -11045 11046 -256 37 243)" universe="1"/>
<cell id="17" material="4" region="-57 257 -290 -145 210" universe="1"/>
<cell id="18" material="4" region="-55 -290 257 221 -210" universe="1"/>
<cell id="19" material="4" region="-55 257 -142 145 -290" universe="1"/>
<cell id="20" material="4" region="35 -33 257 -290 -196 205" universe="1"/>
<cell id="21" material="4" region="-33 -149 -290 257 35 154" universe="1"/>
<cell id="22" material="4" region="-214 -290 43 223 -40 257" universe="1"/>
<cell id="23" material="4" region="-141 -40 43 -290 257 143" universe="1"/>
<cell id="24" material="5" region="(36 257 -195 -32 -290 196) | (257 -32 -290 33 -196 205) | (205 -196 -35 -290 36 257) | (-32 257 36 -290 206 -205)" universe="1"/>
<cell id="25" material="5" region="(-32 -290 36 257 -148 149) | (-290 -32 257 33 154 -149) | (-149 154 -35 257 36 -290) | (36 -290 155 -32 257 -154)" universe="1"/>
<cell id="26" material="5" region="(-290 44 257 -39 -213 214) | (257 44 -290 -43 223 -214) | (-214 223 40 -290 -39 257) | (257 44 -290 -39 224 -223)" universe="1"/>
<cell id="27" material="5" region="(257 -39 -290 -140 44 141) | (257 -39 -290 40 -141 143) | (143 -141 44 -43 -290 257) | (257 44 -290 -39 144 -143)" universe="1"/>
<cell id="28" material="void" region="-47 49 178 -290 -169 257" universe="1"/>
<cell id="29" material="6" region="(83 -167 -80 174 -103 111) | (121 -80 -111 -167 83 259) | (-259 121 174 -80 -111 82) | (-259 121 83 174 -113 -82) | (174 84 -167 -103 -83 111) | (174 -83 84 -260 113 -111) | (-111 113 259 -167 -83 84) | (174 -167 -83 121 84 -113) | (84 121 -80 -113 -174 176) | (176 -174 -103 111 -80 84) | (84 -103 -80 121 180 -176)" universe="1"/>
<cell id="30" material="5" region="(38 -163 -80 184 -99 102 92) | (38 -163 -80 166 -102 122 92) | (122 -102 184 -181 -80 38 92) | (38 184 -80 -163 125 -122 92)" universe="1"/>
<cell id="31" material="5" region="(-31 -99 125 -163 80 164) | (125 -31 80 -124 -164 183) | (183 -164 100 -31 -99 80) | (125 80 -99 -31 184 -183)" universe="1"/>
<cell id="32" material="3" region="-286 ((11013 -11014) | 11014) ((11021 11022) | -11022) -11023 11024 263 -11011 -11012" universe="1"/>
<cell id="33" material="3" region="((11021 11022) | -11022) (-11011 -11012) -264 257 ((11013 -11014) | 11014) -11023 11024" universe="1"/>
<cell id="34" material="3" region="-11011 -11012 285 ((11013 -11014) | 11014) -11023 11024 ((11021 11022) | -11022) -290" universe="1"/>
<cell id="35" material="3" region="((11033 11034) | -11034) -286 -11035 11036 263 190 -186" universe="1"/>
<cell id="36" material="3" region="257 -264 -11035 11036 -186 190 ((11033 11034) | -11034)" universe="1"/>
<cell id="37" material="3" region="190 -11035 11036 -290 -186 285 ((11033 11034) | -11034)" universe="1"/>
<cell id="38" material="3" region="172 46 257 -264 -168 -45" universe="1"/>
<cell id="39" material="3" region="46 285 -168 -290 172 -45" universe="1"/>
<cell id="40" material="3" region="-45 46 -264 -173 257 179" universe="1"/>
<cell id="41" material="3" region="179 46 285 -290 -173 -45" universe="1"/>
<cell id="42" material="3" region="263 185 -45 -181 -286 46" universe="1"/>
<cell id="43" material="3" region="166 263 46 ((11025 11026) | -11026) -286 -45" universe="1"/>
<cell id="44" material="3" region="52 263 -51 -286 -171 177" universe="1"/>
<cell id="45" material="3" region="257 177 -171 -51 52 -264" universe="1"/>
<cell id="46" material="3" region="52 -171 -290 -51 177 285" universe="1"/>
<cell id="47" material="3" region="-11019 11020 263 ((11013 -11014) | 11014) -11011 -11012 -286 ((11031 11032) | -11032)" universe="1"/>
<cell id="48" material="3" region="153 -11029 11030 -264 -152 ((11015 -11016) | 11016) 257" universe="1"/>
<cell id="49" material="3" region="153 -290 285 -11029 11030 -152 ((11015 -11016) | 11016)" universe="1"/>
<cell id="50" material="3" region="257 -181 -264 46 185 -45" universe="1"/>
<cell id="51" material="3" region="185 46 285 -45 -290 -181" universe="1"/>
<cell id="52" material="3" region="((11025 11026) | -11026) 46 257 166 -264 -45" universe="1"/>
<cell id="53" material="3" region="((11025 11026) | -11026) -45 -290 166 46 285" universe="1"/>
<cell id="54" material="3" region="-264 ((11031 11032) | -11032) -11011 -11012 -11019 11020 ((11013 -11014) | 11014) 257" universe="1"/>
<cell id="55" material="3" region="((11013 -11014) | 11014) (-11019 11020) ((11031 11032) | -11032) -290 -11011 -11012 285" universe="1"/>
<cell id="56" material="3" region="-286 -11027 -11028 263 52 -51 185" universe="1"/>
<cell id="57" material="3" region="-51 52 257 185 -11027 -11028 -264" universe="1"/>
<cell id="58" material="3" region="52 -290 -51 -11027 -11028 285 185" universe="1"/>
<cell id="59" material="3" region="-162 52 -51 -286 170 263" universe="1"/>
<cell id="60" material="3" region="-157 161 -286 52 -51 263" universe="1"/>
<cell id="61" material="3" region="52 257 170 -162 -51 -264" universe="1"/>
<cell id="62" material="3" region="52 -290 -51 -162 285 170" universe="1"/>
<cell id="63" material="3" region="52 -264 -157 -51 161 257" universe="1"/>
<cell id="64" material="3" region="52 -51 285 -157 161 -290" universe="1"/>
<cell id="65" material="3" region="-51 52 190 -186 -286 263" universe="1"/>
<cell id="66" material="3" region="-11017 -11018 52 -51 263 156 -286" universe="1"/>
<cell id="67" material="3" region="-264 -186 -51 257 190 52" universe="1"/>
<cell id="68" material="3" region="-290 285 52 -51 190 -186" universe="1"/>
<cell id="69" material="3" region="257 -51 52 -264 156 -11017 -11018" universe="1"/>
<cell id="70" material="3" region="-290 285 156 52 -11017 -11018 -51" universe="1"/>
<cell id="71" material="1" region="(128 188 -71 -96 -158 72) | (128 -72 -96 -158 28 159 92) | (-96 28 -72 98 -159 187 92) | (187 -159 -126 28 128 -72 92) | (28 -96 -72 128 188 -187 92)" universe="1"/>
<cell id="72" material="2" region="263 -11023 11024 ((11011 -11012) | 11012) ((11021 11022) | -11022) -286 -11009 -11010" universe="1"/>
<cell id="73" material="2" region="-11023 11024 ((11011 -11012) | 11012) ((11021 11022) | -11022) -264 257 -11009 -11010" universe="1"/>
<cell id="74" material="2" region="((11021 11022) | -11022) ((11011 -11012) | 11012) -11009 -11010 -11023 11024 -290 285" universe="1"/>
<cell id="75" material="2" region="263 190 ((11035 11036) | -11036) -11037 11038 -186 -286" universe="1"/>
<cell id="76" material="2" region="((11035 11036) | -11036) 257 190 -11037 11038 -264 -186" universe="1"/>
<cell id="77" material="2" region="((11035 11036) | -11036) (-11037 11038) 190 285 -290 -186" universe="1"/>
<cell id="78" material="2" region="257 -168 172 45 -264 -42" universe="1"/>
<cell id="79" material="2" region="45 -290 -42 172 -168 285" universe="1"/>
<cell id="80" material="2" region="45 -173 -264 257 179 -42" universe="1"/>
<cell id="81" material="2" region="-173 -290 -42 285 45 179" universe="1"/>
<cell id="82" material="2" region="-42 263 -286 45 166 ((11025 11026) | -11026)" universe="1"/>
<cell id="83" material="2" region="-42 45 185 263 -286 -181" universe="1"/>
<cell id="84" material="2" region="-151 -264 152 ((11015 -11016) | 11016) 257 -11029 11030" universe="1"/>
<cell id="85" material="2" region="-11029 11030 152 285 -290 ((11015 -11016) | 11016) -151" universe="1"/>
<cell id="86" material="2" region="263 -11019 11020 ((11031 11032) | -11032) -11009 -11010 -286 ((11011 -11012) | 11012)" universe="1"/>
<cell id="87" material="2" region="-11009 -11010 -264 ((11011 -11012) | 11012) 257 -11019 11020 ((11031 11032) | -11032)" universe="1"/>
<cell id="88" material="2" region="-11019 11020 -290 285 ((11031 11032) | -11032) -11009 -11010 ((11011 -11012) | 11012)" universe="1"/>
<cell id="89" material="2" region="((11025 11026) | -11026) 166 257 -264 -42 45" universe="1"/>
<cell id="90" material="2" region="-290 -42 ((11025 11026) | -11026) 45 285 166" universe="1"/>
<cell id="91" material="2" region="185 -181 257 -42 45 -264" universe="1"/>
<cell id="92" material="2" region="-181 -42 285 -290 185 45" universe="1"/>
<cell id="93" material="2" region="-286 -171 -52 263 177 53" universe="1"/>
<cell id="94" material="2" region="-171 -264 -52 53 177 257" universe="1"/>
<cell id="95" material="2" region="-290 177 -52 53 -171 285" universe="1"/>
<cell id="96" material="2" region="53 185 -286 -11027 -11028 263 -52" universe="1"/>
<cell id="97" material="2" region="-264 -52 257 -11027 -11028 185 53" universe="1"/>
<cell id="98" material="2" region="-11027 -11028 285 -290 -52 185 53" universe="1"/>
<cell id="99" material="2" region="263 -11017 -11018 -286 53 156 -52" universe="1"/>
<cell id="100" material="2" region="53 -52 -264 257 -11017 -11018 156" universe="1"/>
<cell id="101" material="2" region="53 -290 -52 -11017 -11018 156 285" universe="1"/>
<cell id="102" material="2" region="-162 53 170 -286 263 -52" universe="1"/>
<cell id="103" material="2" region="-52 53 -264 257 -162 170" universe="1"/>
<cell id="104" material="2" region="53 170 285 -52 -162 -290" universe="1"/>
<cell id="105" material="2" region="-52 -286 161 -157 263 53" universe="1"/>
<cell id="106" material="2" region="-264 -157 257 53 -52 161" universe="1"/>
<cell id="107" material="2" region="53 -52 -157 -290 161 285" universe="1"/>
<cell id="108" material="2" region="-286 263 53 190 -186 -52" universe="1"/>
<cell id="109" material="2" region="53 190 -264 257 -186 -52" universe="1"/>
<cell id="110" material="2" region="190 285 -290 -186 53 -52" universe="1"/>
<cell id="111" material="2" region="263 ((11015 -11016) | 11016) -286 -151 -50" universe="1"/>
<cell id="112" material="8" region="237 -191 -262 304 261 -303" universe="1"/>
<cell id="113" material="8" region="236 306 -305 -288 287 -191" universe="1"/>
<cell id="114" material="8" region="257 -258 295 -191 -294 242" universe="1"/>
<cell id="115" material="8" region="-296 -191 -290 240 289 297" universe="1"/>
<cell id="116" material="8" region="-262 -298 203 261 -253" universe="1"/>
<cell id="117" material="8" region="287 -299 203 -288 -252" universe="1"/>
<cell id="118" material="8" region="261 -191 53 -239 -262 203" universe="1"/>
<cell id="119" material="8" region="287 203 -238 -191 -288 53" universe="1"/>
<cell id="120" material="8" region="53 265 -235 203 -266 -191" universe="1"/>
<cell id="121" material="8" region="-191 203 -234 53 283 -284" universe="1"/>
<cell id="122" material="8" region="-258 203 257 -191 -245 53" universe="1"/>
<cell id="123" material="8" region="-244 289 53 -290 -191 203" universe="1"/>
<cell id="124" material="8" region="-292 257 203 -258 -255" universe="1"/>
<cell id="125" material="8" region="-254 289 203 -290 -293" universe="1"/>
<cell id="126" material="8" region="-266 265 -301 -251 203" universe="1"/>
<cell id="127" material="8" region="-284 -302 -250 283 203" universe="1"/>
<cell id="128" material="8" region="-248 308 -266 233 -307 265" universe="1"/>
<cell id="129" material="8" region="-248 310 -284 232 -309 283" universe="1"/>
<cell id="130" material="5" region="(219 80 -112 -218 -31 279) | (279 -112 200 -199 80 -31) | (219 -31 -199 280 80 -279) | (-199 -80 -112 207 81 277) | (277 -112 -212 81 -80 219) | (-199 219 81 268 -80 -277) | (-199 -31 219 -271 80 272) | (-199 80 112 200 -31 -272) | (-272 112 -218 219 80 -31) | (219 -199 81 -267 -80 274) | (219 -80 112 -212 81 -274) | (-274 112 207 81 -80 -199)" universe="1"/>
<cell id="131" material="5" region="(((11041 11042) | -11042) -246 247 -105 274) | (247 119 -246 ((11041 11042) | -11042) -274 207) | (-207 -274 247 277 -80 208 119) | (247 208 277 -300 -207 -119) | (-80 -274 247 275 -208 211) | (211 -208 277 -276 247 -80) | (-80 277 247 -274 212 -211) | (-105 ((11041 11042) | -11042) 106 -247 300 248) | (-105 300 249 275 ((11041 11042) | -11042) -248) | (-247 212 249 -274 105) | (-247 249 212 275 -300 -105) | (118 -247 -276 211) | (118 212 -275 -247 248 -211) | (212 118 249 ((11041 11042) | -11042) -275 -248) | (249 ((11041 11042) | -11042) -247 119 -118 300) | (249 -118 212 -247 277 -300)" universe="1"/>
<cell id="132" material="5" region="(147 89 -139 -108 -86 109) | (147 89 -139 -88 -109 115) | (115 -109 87 -139 -86 147) | (-139 89 147 -86 116 -115)" universe="1"/>
<cell id="133" material="5" region="(-107 117 87 -31 -134 135) | (-31 117 87 -115 -135 138) | (138 -135 109 87 -107 -31) | (-31 117 87 -107 139 -138) | (88 -134 -87 -107 139 109) | (88 -134 115 -87 135 -109) | (115 -134 -107 89 139 -88) | (-87 117 -134 89 139 -115)" universe="1"/>
<cell id="134" material="void" region="-62" universe="1"/>
<cell id="135" material="void" region="-69" universe="1"/>
<cell id="136" material="void" region="-67" universe="1"/>
<cell id="137" material="void" region="-65" universe="1"/>
<cell id="138" material="void" region="-63" universe="1"/>
<cell id="139" material="void" region="-68" universe="1"/>
<cell id="140" material="void" region="-66" universe="1"/>
<cell id="141" material="void" region="-64" universe="1"/>
<cell id="142" material="void" region="74 -103 -73 121 216 -202" universe="1"/>
<cell id="143" material="void" region="-103 180 121 -167 -73 74" universe="1"/>
<cell id="144" material="void" region="76 -103 -75 121 216 -202" universe="1"/>
<cell id="145" material="void" region="78 -77 137 -110 -136 114" universe="1"/>
<cell id="146" material="void" region="-103 180 121 -167 -75 76" universe="1"/>
<cell id="147" material="6" region="(-270 59 -29 -198 278 201 230) | (-201 -29 217 -270 59 273 230) | (-201 -29 278 217 30 -273 231) | (-198 59 281 -29 217 -278 230) | (-29 281 59 220 -270 -217 230)" universe="1"/>
<cell id="148" material="6" region="(-29 179 -102 58 -166 104 90) | (-29 -104 -166 58 122 168 90) | (-29 179 30 -104 -168 120 92) | (-29 -168 122 58 179 -120 90) | (122 58 -29 -102 181 -179 90)" universe="1"/>
<cell id="149" material="1" region="(28 128 -71 -192 -96 193 92) | (225 -71 -96 -193 28 97 92) | (225 127 -71 -193 72 -97) | (127 -71 226 28 -96 -225 92) | (-71 -193 28 226 128 -127 92)" universe="1"/>
<cell id="150" material="void" region="-79 93 -112 130 -215 229 (28 | -91 | 227 | -257 | -228 | 290) ((11045 11046) | -11046 | -257 | -55 | -221 | 256 | 210 | -243) (55 | 290 | -257 | -221 | 210) (214 | 290 | -43 | -223 | 40 | -257) (-257 | -44 | 290 | 43 | -223 | 214) (214 | -223 | -40 | 290 | 39 | -257) (-257 | -44 | 290 | 39 | -224 | 223) (-219 | -80 | 112 | 218 | 31 | -279) (-219 | 31 | 199 | -280 | -80 | 279) (-277 | 112 | 212 | -81 | 80 | -219) (199 | -219 | -81 | -268 | 80 | 277)" universe="1"/>
<cell id="151" material="void" region="-85 93 -112 130 -175 215 (150 | 54 | -257 | 290 | -204 | -56) (-48 | 186 | (11041 11042) | -11042 | -257 | (-11039 11040) | 118) (48 | -257 | -209 | 290 | 204 | -56) (256 | 37 | (11045 11046) | -11046 | (-11043 11044) | -257 | -210 | -243) ((11045 11046) | -11046 | -257 | -55 | -221 | 256 | 210 | -243) (57 | -257 | 290 | 145 | -210) (55 | 290 | -257 | -221 | 210) (47 | -49 | -178 | 290 | 169 | -257) (-52 | -263 | 51 | 286 | 171 | -177) (-257 | -177 | 171 | 51 | -52 | 264) (286 | (11027 -11028) | 11028 | -263 | -52 | 51 | -185) (51 | -52 | -257 | -185 | (11027 -11028) | 11028 | 264) (51 | -52 | -190 | 186 | 286 | -263) (264 | 186 | 51 | -257 | -190 | -52) (286 | 171 | 52 | -263 | -177 | -53) (171 | 264 | 52 | -53 | -177 | -257) (-53 | -185 | 286 | (11027 -11028) | 11028 | -263 | 52) (264 | 52 | -257 | (11027 -11028) | 11028 | -185 | -53) (286 | -263 | -53 | -190 | 186 | 52) (-53 | -190 | 264 | -257 | 186 | 52) (-237 | 191 | 262 | -304 | -261 | 303) (-257 | 258 | -295 | 191 | 294 | -242) (262 | 298 | -203 | -261 | 253) (-261 | 191 | -53 | 239 | 262 | -203) (-53 | -265 | 235 | -203 | 266 | 191) (258 | -203 | -257 | 191 | 245 | -53) (292 | -257 | -203 | 258 | 255) (266 | -265 | 301 | 251 | -203)" universe="1"/>
<cell id="152" material="void" region="-79 85 -129 130 -175 215 (-35 | 33 | -257 | 290 | 196 | -205) (-36 | -257 | 195 | 32 | 290 | -196) (-257 | 32 | 290 | -33 | 196 | -205) (32 | -257 | -36 | 290 | -206 | 205)" universe="1"/>
<cell id="153" material="void" region="-79 85 -112 129 -194 215 (-48 | (11041 11042) | -11042 | (-11039 11040) | 248 | -118 | 106 | -92) (-48 | 186 | (11041 11042) | -11042 | -257 | (-11039 11040) | 118) (48 | -257 | -209 | 290 | 204 | -56) (256 | 37 | (11045 11046) | -11046 | (-11043 11044) | -257 | -210 | -243) ((11045 11046) | -11046 | -257 | -55 | -221 | 256 | 210 | -243) ((11001 -11002) | 11002 | -257 | 34 | (11045 11046) | -11046 | 256 | -37 | -243) (-35 | 33 | -257 | 290 | 196 | -205) (214 | 290 | -43 | -223 | 40 | -257) (-36 | -257 | 195 | 32 | 290 | -196) (-257 | 32 | 290 | -33 | 196 | -205) (-205 | 196 | 35 | 290 | -36 | -257) (32 | -257 | -36 | 290 | -206 | 205) (290 | -44 | -257 | 39 | 213 | -214) (-257 | -44 | 290 | 43 | -223 | 214) (214 | -223 | -40 | 290 | 39 | -257) (-237 | 191 | 262 | -304 | -261 | 303) (-257 | 258 | -295 | 191 | 294 | -242) (262 | 298 | -203 | -261 | 253) (266 | -265 | 301 | 251 | -203) (248 | -308 | 266 | -233 | 307 | -265) (-279 | 112 | -200 | 199 | -80 | 31) (-219 | 31 | 199 | -280 | -80 | 279) (199 | 80 | 112 | -207 | -81 | -277) (-277 | 112 | 212 | -81 | 80 | -219) (199 | -219 | -81 | -268 | 80 | 277) (-247 | -119 | 246 | (-11041 11042) | 274 | -207) (207 | 274 | -247 | -277 | 80 | -208 | -119) (-247 | -208 | -277 | 300 | 207 | 119) (-211 | 208 | -277 | 276 | -247 | 80) (80 | -277 | -247 | 274 | -212 | 211) (-118 | 247 | 276 | -211) (-118 | -212 | 275 | 247 | -248 | 211) (-212 | -118 | -249 | (-11041 11042) | 275 | 248) (-249 | (-11041 11042) | 247 | -119 | 118 | -300) (-249 | 118 | -212 | 247 | -277 | 300)" universe="1"/>
<cell id="154" material="void" region="-79 85 -112 129 -175 194 (-122 | 102 | 181 | 38 | -186 | -41 | -92) (38 | 160 | -41 | -186 | -257 | 122) (106 | -118 | -247 | 186 | (11041 11042) | -11042 | (-11039 11040)) (-48 | 186 | (11041 11042) | -11042 | -257 | (-11039 11040) | 118) (256 | 37 | (11045 11046) | -11046 | (-11043 11044) | -257 | -210 | -243) ((11001 -11002) | 11002 | -257 | 34 | (11045 11046) | -11046 | 256 | -37 | -243) (47 | -49 | -178 | 290 | 169 | -257) (-84 | -121 | 80 | 113 | 174 | -176) (-84 | 103 | 80 | -121 | -180 | 176) (-122 | 102 | -184 | 181 | 80 | -38 | -92) (-38 | -184 | 80 | 163 | -125 | 122 | -92) (-125 | 31 | -80 | 124 | 164 | -183) (-125 | -80 | 99 | 31 | -184 | 183) ((-11033 11034) | 286 | (11035 11036) | -11036 | -263 | -190 | 186) (-257 | 264 | (11035 11036) | -11036 | 186 | -190 | (-11033 11034)) (45 | -46 | 264 | 173 | -257 | -179) (-263 | -185 | 45 | 181 | 286 | -46) (-257 | 181 | 264 | -46 | -185 | 45) (-263 | -190 | (-11035 11036) | (11037 11038) | -11038 | 186 | 286) ((-11035 11036) | -257 | -190 | (11037 11038) | -11038 | 264 | 186) (-45 | 173 | 264 | -257 | -179 | 42) (42 | -45 | -185 | -263 | 286 | 181) (-185 | 181 | -257 | 42 | -45 | 264) (-237 | 191 | 262 | -304 | -261 | 303) (-257 | 258 | -295 | 191 | 294 | -242) (-247 | -119 | 246 | (-11041 11042) | 274 | -207) (-249 | (-11041 11042) | 247 | -119 | 118 | -300)" universe="1"/>
<cell id="155" material="void" region="-79 93 -94 112 -215 229 (28 | -91 | 227 | -257 | -228 | 290) (290 | (11045 11046) | -11046 | -291 | -221 | -55 | 210 | -241) (55 | 290 | -257 | -221 | 210) (214 | 290 | -43 | -223 | 40 | -257) (-257 | -44 | 290 | 43 | -223 | 214) (214 | -223 | -40 | 290 | 39 | -257) (-257 | -44 | 290 | 39 | -224 | 223) (199 | 31 | -219 | 271 | -80 | -272) (272 | -112 | 218 | -219 | -80 | 31) (-219 | 199 | -81 | 267 | 80 | -274) (-219 | 80 | -112 | 212 | -81 | 274)" universe="1"/>
<cell id="156" material="void" region="-85 93 -94 112 -175 215 (150 | 54 | -257 | 290 | -204 | -56) (-48 | (-11039 11040) | 186 | (11041 11042) | -11042 | 290 | -106) (48 | -257 | -209 | 290 | 204 | -56) (290 | (11045 11046) | -11046 | -291 | (-11043 11044) | -210 | 37 | -241) (290 | (11045 11046) | -11046 | -291 | -221 | -55 | 210 | -241) (57 | -257 | 290 | 145 | -210) (55 | 290 | -257 | -221 | 210) (47 | -49 | -178 | 290 | 169 | -257) (-52 | -263 | 51 | 286 | 171 | -177) (-52 | 171 | 290 | 51 | -177 | -285) (286 | (11027 -11028) | 11028 | -263 | -52 | 51 | -185) (-52 | 290 | 51 | (11027 -11028) | 11028 | -285 | -185) (51 | -52 | -190 | 186 | 286 | -263) (290 | -285 | -52 | 51 | -190 | 186) (286 | 171 | 52 | -263 | -177 | -53) (290 | -177 | 52 | -53 | 171 | -285) (-53 | -185 | 286 | (11027 -11028) | 11028 | -263 | 52) ((11027 -11028) | 11028 | -285 | 290 | 52 | -185 | -53) (286 | -263 | -53 | -190 | 186 | 52) (-190 | -285 | 290 | 186 | -53 | 52) (-236 | -306 | 305 | 288 | -287 | 191) (296 | 191 | 290 | -240 | -289 | -297) (-287 | 299 | -203 | 288 | 252) (-287 | -203 | 238 | 191 | 288 | -53) (191 | -203 | 234 | -53 | -283 | 284) (244 | -289 | -53 | 290 | 191 | -203) (254 | -289 | -203 | 290 | 293) (284 | 302 | 250 | -283 | -203)" universe="1"/>
<cell id="157" material="void" region="-79 85 -95 112 -194 215 (-48 | (-11039 11040) | 186 | (11041 11042) | -11042 | 290 | -106) (-48 | (11041 11042) | -11042 | (-11039 11040) | 248 | -118 | 106 | -92) (48 | -257 | -209 | 290 | 204 | -56) (-291 | (11045 11046) | -11046 | 290 | (11001 -11002) | 11002 | 34 | -37 | -241) (290 | (11045 11046) | -11046 | -291 | (-11043 11044) | -210 | 37 | -241) (290 | (11045 11046) | -11046 | -291 | -221 | -55 | 210 | -241) (-35 | 33 | -257 | 290 | 196 | -205) (214 | 290 | -43 | -223 | 40 | -257) (-36 | -257 | 195 | 32 | 290 | -196) (-257 | 32 | 290 | -33 | 196 | -205) (-205 | 196 | 35 | 290 | -36 | -257) (32 | -257 | -36 | 290 | -206 | 205) (290 | -44 | -257 | 39 | 213 | -214) (-257 | -44 | 290 | 43 | -223 | 214) (214 | -223 | -40 | 290 | 39 | -257) (-236 | -306 | 305 | 288 | -287 | 191) (296 | 191 | 290 | -240 | -289 | -297) (-287 | 299 | -203 | 288 | 252) (284 | 302 | 250 | -283 | -203) (248 | -310 | 284 | -232 | 309 | -283) (199 | 31 | -219 | 271 | -80 | -272) (199 | -80 | -112 | -200 | 31 | 272) (-219 | 199 | -81 | 267 | 80 | -274) (-219 | 80 | -112 | 212 | -81 | 274) (274 | -112 | -207 | -81 | 80 | 199) ((-11041 11042) | 246 | -247 | 105 | -274) (-247 | -119 | 246 | (-11041 11042) | 274 | -207) (207 | 274 | -247 | -277 | 80 | -208 | -119) (80 | 274 | -247 | -275 | 208 | -211) (80 | -277 | -247 | 274 | -212 | 211) (105 | (-11041 11042) | -106 | 247 | -300 | -248) (105 | -300 | -249 | -275 | (-11041 11042) | 248) (247 | -212 | -249 | 274 | -105) (247 | -249 | -212 | -275 | 300 | 105) (-118 | -212 | 275 | 247 | -248 | 211) (-212 | -118 | -249 | (-11041 11042) | 275 | 248)" universe="1"/>
<cell id="158" material="void" region="-79 85 -95 112 -175 194 (-41 | 160 | 38 | -186 | 290 | -102) (-122 | 102 | 181 | 38 | -186 | -41 | -92) (-48 | (-11039 11040) | 186 | (11041 11042) | -11042 | 290 | -106) (106 | -118 | -247 | 186 | (11041 11042) | -11042 | (-11039 11040)) (-291 | (11045 11046) | -11046 | 290 | (11001 -11002) | 11002 | 34 | -37 | -241) (290 | (11045 11046) | -11046 | -291 | (-11043 11044) | -210 | 37 | -241) (47 | -49 | -178 | 290 | 169 | -257) (-176 | 174 | 103 | -111 | 80 | -84) (-84 | 103 | 80 | -121 | -180 | 176) (-38 | 163 | 80 | -184 | 99 | -102 | -92) (-122 | 102 | -184 | 181 | 80 | -38 | -92) (-183 | 164 | -100 | 31 | 99 | -80) (-125 | -80 | 99 | 31 | -184 | 183) ((-11033 11034) | 286 | (11035 11036) | -11036 | -263 | -190 | 186) (-190 | (11035 11036) | -11036 | 290 | 186 | -285 | (-11033 11034)) (-179 | -46 | -285 | 290 | 173 | 45) (-263 | -185 | 45 | 181 | 286 | -46) (-185 | -46 | -285 | 45 | 290 | 181) (-263 | -190 | (-11035 11036) | (11037 11038) | -11038 | 186 | 286) ((-11035 11036) | ((11037 11038) | -11038) | -190 | -285 | 290 | 186) (173 | 290 | 42 | -285 | -45 | -179) (42 | -45 | -185 | -263 | 286 | 181) (181 | 42 | -285 | 290 | -185 | -45) (-236 | -306 | 305 | 288 | -287 | 191) (296 | 191 | 290 | -240 | -289 | -297) ((-11041 11042) | 246 | -247 | 105 | -274) (-247 | -119 | 246 | (-11041 11042) | 274 | -207) (105 | (-11041 11042) | -106 | 247 | -300 | -248)" universe="1"/>
<cell id="159" material="void" region="-79 85 -94 95 -175 215 (-35 | 33 | -257 | 290 | 196 | -205) (-36 | -257 | 195 | 32 | 290 | -196) (-257 | 32 | 290 | -33 | 196 | -205) (32 | -257 | -36 | 290 | -206 | 205)" universe="1"/>
<cell id="160" material="void" region="-70 79 -112 130 -175 229 (-31 | -257 | 28 | 189 | 269 | -197) (-31 | -282 | 197 | 269 | 61 | -200) (-218 | 200 | 279 | 61 | -282 | -31) (61 | -282 | 269 | -31 | -222 | 218) (197 | -31 | -222 | -257 | 28 | 282) (-31 | 290 | 28 | -257 | -227 | 222) (28 | -91 | 227 | -257 | -228 | 290) (-31 | -121 | 180 | 60 | 112 | -182) (-31 | 112 | -189 | 28 | -121 | 182 | -92) (-31 | 165 | 121 | 60 | -182 | -123) (-31 | -182 | 28 | -257 | 165 | 123) (28 | -257 | -189 | -31 | 121 | 182) (-125 | 31 | -80 | 124 | 164 | -183) (-125 | -80 | 99 | 31 | -184 | 183) (-128 | -188 | 71 | 96 | 158 | -72) (-187 | 159 | 126 | -28 | -128 | 72 | -92) (-28 | 96 | 72 | -128 | -188 | 187 | -92) (-219 | -80 | 112 | 218 | 31 | -279) (-279 | 112 | -200 | 199 | -80 | 31) (-219 | 31 | 199 | -280 | -80 | 279) 62 69 67 65 63 68 (-74 | 103 | 73 | -121 | -216 | 202) (103 | -180 | -121 | 167 | 73 | -74) (-76 | 103 | 75 | -121 | -216 | 202) (103 | -180 | -121 | 167 | 75 | -76) (270 | -59 | 29 | 198 | -278 | -201 | -230) (201 | 29 | -278 | -217 | -30 | 273 | -231) (198 | -59 | -281 | 29 | -217 | 278 | -230) (29 | -281 | -59 | -220 | 270 | 217 | -230) (29 | -179 | -30 | 104 | 168 | -120 | -92) (29 | 168 | -122 | -58 | -179 | 120 | -90) (-122 | -58 | 29 | 102 | -181 | 179 | -90) (-28 | -128 | 71 | 192 | 96 | -193 | -92) (-225 | -127 | 71 | 193 | -72 | 97) (-127 | 71 | -226 | -28 | 96 | 225 | -92) (71 | 193 | -28 | -226 | -128 | 127 | -92)" universe="1"/>
<cell id="161" material="void" region="-70 79 -94 112 -175 229 (-31 | 189 | 28 | 290 | -222 | -269) (-31 | -257 | 28 | 189 | 269 | -197) (-31 | -282 | 197 | 269 | 61 | -200) (-31 | 269 | 61 | -271 | 200 | -218) (61 | -282 | 269 | -31 | -222 | 218) (-31 | 290 | 28 | -257 | -227 | 222) (28 | -91 | 227 | -257 | -228 | 290) (-31 | 165 | 28 | 290 | -182 | -101) (-31 | -182 | -103 | 60 | 165 | 101) (-103 | -31 | 290 | -189 | 28 | 182) (103 | -31 | -112 | 180 | 60 | -182) (103 | -112 | -189 | -31 | 28 | 182 | -92) (-183 | 164 | -100 | 31 | 99 | -80) (-125 | -80 | 99 | 31 | -184 | 183) (-128 | -188 | 71 | 96 | 158 | -72) (96 | -28 | 72 | -98 | 159 | -187 | -92) (-28 | 96 | 72 | -128 | -188 | 187 | -92) (199 | 31 | -219 | 271 | -80 | -272) (199 | -80 | -112 | -200 | 31 | 272) (272 | -112 | 218 | -219 | -80 | 31) 62 69 67 65 63 68 (-74 | 103 | 73 | -121 | -216 | 202) (103 | -180 | -121 | 167 | 73 | -74) (-76 | 103 | 75 | -121 | -216 | 202) (103 | -180 | -121 | 167 | 75 | -76) (270 | -59 | 29 | 198 | -278 | -201 | -230) (201 | 29 | -217 | 270 | -59 | -273 | -230) (201 | 29 | -278 | -217 | -30 | 273 | -231) (29 | -281 | -59 | -220 | 270 | 217 | -230) (29 | -179 | 102 | -58 | 166 | -104 | -90) (29 | -179 | -30 | 104 | 168 | -120 | -92) (-122 | -58 | 29 | 102 | -181 | 179 | -90) (-28 | -128 | 71 | 192 | 96 | -193 | -92) (-225 | 71 | 96 | 193 | -28 | -97 | -92) (-225 | -127 | 71 | 193 | -72 | 97) (-127 | 71 | -226 | -28 | 96 | 225 | -92)" universe="1"/>
<cell id="162" material="void" region="-85 93 -112 130 -146 175 (150 | 54 | -257 | 290 | -204 | -56) ((-11007 -11008) | -48 | (11005 -11006) | 11006 | 290 | -160 | -257) (147 | -150 | 48 | -87) (87 | -88 | 48 | 115 | -150 | -257 | 147) (-257 | 290 | 147 | -56 | -150 | 88) ((11001 -11002) | 11002 | -257 | 256 | (-11003 -11004) | 37 | 145 | -243) (57 | -257 | 290 | 145 | -210) (47 | -49 | -178 | 290 | 169 | -257) (-52 | -263 | 51 | 286 | 171 | -177) (-257 | -177 | 171 | 51 | -52 | 264) (-153 | (11029 11030) | -11030 | 264 | 152 | (-11015 -11016) | -257) (264 | (-11031 11032) | (11011 -11012) | 11012 | (11019 11020) | -11020 | (-11013 -11014) | -257) (162 | -52 | 51 | 286 | -170 | -263) (157 | -161 | 286 | -52 | 51 | -263) (-52 | -257 | -170 | 162 | 51 | 264) (-52 | 264 | 157 | 51 | -161 | -257) ((11017 -11018) | 11018 | -52 | 51 | -263 | -156 | 286) (-257 | 51 | -52 | 264 | -156 | (11017 -11018) | 11018) (151 | 264 | -152 | (-11015 -11016) | -257 | (11029 11030) | -11030) ((11009 -11010) | 11010 | 264 | (-11011 -11012) | -257 | (11019 11020) | -11020 | (-11031 11032)) (286 | 171 | 52 | -263 | -177 | -53) (171 | 264 | 52 | -53 | -177 | -257) (-263 | (11017 -11018) | 11018 | 286 | -53 | -156 | 52) (-53 | 52 | 264 | -257 | (11017 -11018) | 11018 | -156) (162 | -53 | -170 | 286 | -263 | 52) (52 | -53 | 264 | -257 | 162 | -170) (52 | 286 | -161 | 157 | -263 | -53) (264 | 157 | -257 | -53 | 52 | -161) (-263 | (-11015 -11016) | 286 | 151 | 50) (-147 | -89 | 139 | 88 | 109 | -115) (-115 | 109 | -87 | 139 | 86 | -147) (139 | -89 | -147 | 86 | -116 | 115)" universe="1"/>
<cell id="163" material="void" region="-79 85 -112 130 -146 175 (-41 | 160 | 38 | -166 | 102 | -122 | -92) (38 | 160 | -41 | -186 | -257 | 122) ((-11007 -11008) | -48 | (11005 -11006) | 11006 | 290 | -160 | -257) (147 | -150 | 48 | -87) ((11001 -11002) | 11002 | -257 | 256 | (-11003 -11004) | 37 | 145 | -243) ((11001 -11002) | 11002 | -257 | 34 | (11045 11046) | -11046 | 256 | -37 | -243) (33 | 149 | 290 | -257 | -35 | -154) (32 | 290 | -36 | -257 | 148 | -149) (290 | 32 | -257 | -33 | -154 | 149) (149 | -154 | 35 | -257 | -36 | 290) (-36 | 290 | -155 | 32 | -257 | 154) (47 | -49 | -178 | 290 | 169 | -257) (-121 | 80 | 111 | 167 | -83 | -259) (259 | -121 | -174 | 80 | 111 | -82) (259 | -121 | -83 | -174 | 113 | 82) (-174 | 83 | -84 | 260 | -113 | 111) (111 | -113 | -259 | 167 | 83 | -84) (-174 | 167 | 83 | -121 | -84 | 113) (-84 | -121 | 80 | 113 | 174 | -176) (-38 | 163 | 80 | -166 | 102 | -122 | -92) (-38 | -184 | 80 | 163 | -125 | 122 | -92) (31 | 99 | -125 | 163 | -80 | -164) (-125 | 31 | -80 | 124 | 164 | -183) (286 | (-11013 -11014) | (-11021 11022) | (11023 11024) | -11024 | -263 | (11011 -11012) | 11012) ((-11021 11022) | ((11011 -11012) | 11012) | 264 | -257 | (-11013 -11014) | (11023 11024) | -11024) (-172 | -46 | -257 | 264 | 168 | 45) (45 | -46 | 264 | 173 | -257 | -179) (-166 | -263 | -46 | (-11025 11026) | 286 | 45) ((11019 11020) | -11020 | -263 | (-11013 -11014) | (11011 -11012) | 11012 | 286 | (-11031 11032)) ((-11025 11026) | -46 | -257 | -166 | 264 | 45) (264 | (-11031 11032) | (11011 -11012) | 11012 | (11019 11020) | -11020 | (-11013 -11014) | -257) (-263 | (11023 11024) | -11024 | (-11011 -11012) | (-11021 11022) | 286 | (11009 -11010) | 11010) ((11023 11024) | -11024 | (-11011 -11012) | (-11021 11022) | 264 | -257 | (11009 -11010) | 11010) (-257 | 168 | -172 | -45 | 264 | 42) (-45 | 173 | 264 | -257 | -179 | 42) (42 | -263 | 286 | -45 | -166 | (-11025 11026)) (151 | 264 | -152 | (-11015 -11016) | -257 | (11029 11030) | -11030) (-263 | (11019 11020) | -11020 | (-11031 11032) | (11009 -11010) | 11010 | 286 | (-11011 -11012)) ((11009 -11010) | 11010 | 264 | (-11011 -11012) | -257 | (11019 11020) | -11020 | (-11031 11032)) ((-11025 11026) | -166 | -257 | 264 | 42 | -45)" universe="1"/>
<cell id="164" material="void" region="-79 93 -112 130 -131 146 (28 | -91 | 132 | -257 | -133 | 290) (256 | (11001 -11002) | 11002 | 142 | -55 | -257 | -145 | -243) ((11001 -11002) | 11002 | -257 | 256 | (-11003 -11004) | 37 | 145 | -243) (57 | -257 | 290 | 145 | -210) (55 | -257 | 142 | -145 | 290) (141 | 40 | -43 | 290 | -257 | -143) (-257 | 39 | 290 | 140 | -44 | -141) (-257 | 39 | 290 | -40 | 141 | -143) (-143 | 141 | -44 | 43 | 290 | -257) (-257 | -44 | 290 | 39 | -144 | 143) (-147 | -89 | 139 | 88 | 109 | -115) (-115 | 109 | -87 | 139 | 86 | -147) (139 | -89 | -147 | 86 | -116 | 115) (107 | -117 | -87 | 31 | 134 | -135) (31 | -117 | -87 | 115 | 135 | -138) (31 | -117 | -87 | 107 | -139 | 138) (-88 | 134 | -115 | 87 | -135 | 109) (-115 | 134 | 107 | -89 | -139 | 88) (87 | -117 | 134 | -89 | -139 | 115)" universe="1"/>
<cell id="165" material="void" region="-85 93 -94 112 -146 175 (150 | 54 | -257 | 290 | -204 | -56) ((-11007 -11008) | -48 | (11005 -11006) | 11006 | 290 | -160 | -257) (147 | -150 | 48 | -87) (147 | 48 | -150 | 290 | -109 | -88 | 87) (-257 | 290 | 147 | -56 | -150 | 88) (37 | 145 | -291 | (11001 -11002) | 11002 | (-11003 -11004) | 290 | -241) (57 | -257 | 290 | 145 | -210) (47 | -49 | -178 | 290 | 169 | -257) (-52 | -263 | 51 | 286 | 171 | -177) (-52 | 171 | 290 | 51 | -177 | -285) (-153 | 290 | -285 | (11029 11030) | -11030 | 152 | (-11015 -11016)) ((-11013 -11014) | ((11019 11020) | -11020) | (-11031 11032) | 290 | (11011 -11012) | 11012 | -285) (162 | -52 | 51 | 286 | -170 | -263) (157 | -161 | 286 | -52 | 51 | -263) (-52 | 290 | 51 | 162 | -285 | -170) (-52 | 51 | -285 | 157 | -161 | 290) ((11017 -11018) | 11018 | -52 | 51 | -263 | -156 | 286) (290 | -285 | -156 | -52 | (11017 -11018) | 11018 | 51) ((11029 11030) | -11030 | -152 | -285 | 290 | (-11015 -11016) | 151) ((11019 11020) | -11020 | 290 | -285 | (-11031 11032) | (11009 -11010) | 11010 | (-11011 -11012)) (286 | 171 | 52 | -263 | -177 | -53) (290 | -177 | 52 | -53 | 171 | -285) (-263 | (11017 -11018) | 11018 | 286 | -53 | -156 | 52) (-53 | 290 | 52 | (11017 -11018) | 11018 | -156 | -285) (162 | -53 | -170 | 286 | -263 | 52) (-53 | -170 | -285 | 52 | 162 | 290) (52 | 286 | -161 | 157 | -263 | -53) (-53 | 52 | 157 | 290 | -161 | -285) (-263 | (-11015 -11016) | 286 | 151 | 50) (-147 | -89 | 139 | 108 | 86 | -109) (-147 | -89 | 139 | 88 | 109 | -115) (-115 | 109 | -87 | 139 | 86 | -147)" universe="1"/>
<cell id="166" material="void" region="-79 85 -94 112 -146 175 (-41 | 160 | 38 | -186 | 290 | -102) (-41 | 160 | 38 | -166 | 102 | -122 | -92) ((-11007 -11008) | -48 | (11005 -11006) | 11006 | 290 | -160 | -257) (147 | -150 | 48 | -87) (-291 | (11045 11046) | -11046 | 290 | (11001 -11002) | 11002 | 34 | -37 | -241) (37 | 145 | -291 | (11001 -11002) | 11002 | (-11003 -11004) | 290 | -241) (33 | 149 | 290 | -257 | -35 | -154) (32 | 290 | -36 | -257 | 148 | -149) (290 | 32 | -257 | -33 | -154 | 149) (149 | -154 | 35 | -257 | -36 | 290) (-36 | 290 | -155 | 32 | -257 | 154) (47 | -49 | -178 | 290 | 169 | -257) (-83 | 167 | 80 | -174 | 103 | -111) (-121 | 80 | 111 | 167 | -83 | -259) (259 | -121 | -174 | 80 | 111 | -82) (-174 | -84 | 167 | 103 | 83 | -111) (-174 | 83 | -84 | 260 | -113 | 111) (111 | -113 | -259 | 167 | 83 | -84) (-176 | 174 | 103 | -111 | 80 | -84) (-38 | 163 | 80 | -184 | 99 | -102 | -92) (-38 | 163 | 80 | -166 | 102 | -122 | -92) (31 | 99 | -125 | 163 | -80 | -164) (-183 | 164 | -100 | 31 | 99 | -80) (286 | (-11013 -11014) | (-11021 11022) | (11023 11024) | -11024 | -263 | (11011 -11012) | 11012) ((11011 -11012) | 11012 | -285 | (-11013 -11014) | (11023 11024) | -11024 | (-11021 11022) | 290) (-46 | -285 | 168 | 290 | -172 | 45) (-179 | -46 | -285 | 290 | 173 | 45) (-166 | -263 | -46 | (-11025 11026) | 286 | 45) ((11019 11020) | -11020 | -263 | (-11013 -11014) | (11011 -11012) | 11012 | 286 | (-11031 11032)) ((-11025 11026) | 45 | 290 | -166 | -46 | -285) ((-11013 -11014) | ((11019 11020) | -11020) | (-11031 11032) | 290 | (11011 -11012) | 11012 | -285) (-263 | (11023 11024) | -11024 | (-11011 -11012) | (-11021 11022) | 286 | (11009 -11010) | 11010) ((-11021 11022) | (-11011 -11012) | (11009 -11010) | 11010 | (11023 11024) | -11024 | 290 | -285) (-45 | 290 | 42 | -172 | 168 | -285) (173 | 290 | 42 | -285 | -45 | -179) (42 | -263 | 286 | -45 | -166 | (-11025 11026)) ((11029 11030) | -11030 | -152 | -285 | 290 | (-11015 -11016) | 151) (-263 | (11019 11020) | -11020 | (-11031 11032) | (11009 -11010) | 11010 | 286 | (-11011 -11012)) ((11019 11020) | -11020 | 290 | -285 | (-11031 11032) | (11009 -11010) | 11010 | (-11011 -11012)) (290 | 42 | (-11025 11026) | -45 | -285 | -166)" universe="1"/>
<cell id="167" material="void" region="-79 93 -94 112 -131 146 (28 | -91 | 132 | -257 | -133 | 290) (-291 | 142 | -55 | (11001 -11002) | 11002 | 290 | -145 | -241) (37 | 145 | -291 | (11001 -11002) | 11002 | (-11003 -11004) | 290 | -241) (57 | -257 | 290 | 145 | -210) (55 | -257 | 142 | -145 | 290) (141 | 40 | -43 | 290 | -257 | -143) (-257 | 39 | 290 | 140 | -44 | -141) (-257 | 39 | 290 | -40 | 141 | -143) (-143 | 141 | -44 | 43 | 290 | -257) (-257 | -44 | 290 | 39 | -144 | 143) (-147 | -89 | 139 | 108 | 86 | -109) (-147 | -89 | 139 | 88 | 109 | -115) (-115 | 109 | -87 | 139 | 86 | -147) (107 | -117 | -87 | 31 | 134 | -135) (-138 | 135 | -109 | -87 | 107 | 31) (31 | -117 | -87 | 107 | -139 | 138) (-88 | 134 | 87 | 107 | -139 | -109) (-88 | 134 | -115 | 87 | -135 | 109) (-115 | 134 | 107 | -89 | -139 | 88)" universe="1"/>
<cell id="168" material="void" region="-70 79 -94 130 -131 175 (28 | -91 | 132 | -257 | -133 | 290) (-121 | 112 | 28 | 133 | -31 | -165 | -92) (-121 | -31 | 112 | -167 | 60 | 165) (121 | -31 | -257 | 28 | 133 | -165) (-31 | 165 | 121 | 60 | -182 | -123) (-31 | -182 | 28 | -257 | 165 | 123) (28 | 290 | 133 | -31 | -103 | -165) (-31 | 165 | 28 | 290 | -182 | -101) (-31 | -182 | -103 | 60 | 165 | 101) (-31 | -112 | 133 | 28 | 103 | -165 | -92) (-31 | 103 | -167 | 60 | -112 | 165) (31 | 99 | -125 | 163 | -80 | -164) (-125 | 31 | -80 | 124 | 164 | -183) (-183 | 164 | -100 | 31 | 99 | -80) (-128 | -188 | 71 | 96 | 158 | -72) (-128 | 72 | 96 | 158 | -28 | -159 | -92) (96 | -28 | 72 | -98 | 159 | -187 | -92) (-187 | 159 | 126 | -28 | -128 | 72 | -92) (107 | -117 | -87 | 31 | 134 | -135) (31 | -117 | -87 | 115 | 135 | -138) (-138 | 135 | -109 | -87 | 107 | 31) (31 | -117 | -87 | 107 | -139 | 138) 66 64 (103 | -180 | -121 | 167 | 73 | -74) (-78 | 77 | -137 | 110 | 136 | -114) (103 | -180 | -121 | 167 | 75 | -76) (29 | -179 | 102 | -58 | 166 | -104 | -90) (29 | 104 | 166 | -58 | -122 | -168 | -90) (29 | -179 | -30 | 104 | 168 | -120 | -92) (29 | 168 | -122 | -58 | -179 | 120 | -90)" universe="1"/>
<cell id="169" material="void" region="131 | -229 | -130 | -93 | 94 | 70" universe="1"/>
<cell id="5000" material="void" region="-470 490 1780 -11000 -1690 10000" universe="0"/>
<surface id="28" type="z-cylinder" coeffs="0.0 0.0 1250.0"/>
<surface id="29" type="z-cylinder" coeffs="0.0 0.0 1210.0"/>
<surface id="30" type="z-cylinder" coeffs="0.0 0.0 1190.0"/>
<surface id="31" type="z-cylinder" coeffs="0.0 0.0 1150.0"/>
<surface id="32" type="z-cylinder" coeffs="0.0 0.0 800.0"/>
<surface id="33" type="z-cylinder" coeffs="0.0 0.0 790.0"/>
<surface id="34" type="z-cylinder" coeffs="0.0 0.0 726.0670000000001"/>
<surface id="35" type="z-cylinder" coeffs="0.0 0.0 710.0"/>
<surface id="36" type="z-cylinder" coeffs="0.0 0.0 700.0"/>
<surface id="37" type="z-cylinder" coeffs="0.0 0.0 651.067"/>
<surface id="38" type="z-cylinder" coeffs="0.0 0.0 626.067"/>
<surface id="39" type="z-cylinder" coeffs="0.0 0.0 600.0"/>
<surface id="40" type="z-cylinder" coeffs="0.0 0.0 590.0"/>
<surface id="41" type="z-cylinder" coeffs="0.0 0.0 546.067"/>
<surface id="42" type="z-cylinder" coeffs="0.0 0.0 534.6"/>
<surface id="43" type="z-cylinder" coeffs="0.0 0.0 510.0"/>
<surface id="44" type="z-cylinder" coeffs="0.0 0.0 500.0"/>
<surface id="45" type="z-cylinder" coeffs="0.0 0.0 492.58654321193296"/>
<surface id="46" type="z-cylinder" coeffs="0.0 0.0 491.586543211933"/>
<surface id="47" type="z-cylinder" coeffs="0.0 0.0 450.0"/>
<surface id="48" type="z-cylinder" coeffs="0.0 0.0 350.0"/>
<surface id="49" type="z-cylinder" coeffs="0.0 0.0 300.0"/>
<surface id="50" type="z-cylinder" coeffs="0.0 0.0 228.288003383511"/>
<surface id="51" type="z-cylinder" coeffs="0.0 0.0 224.3"/>
<surface id="52" type="z-cylinder" coeffs="0.0 0.0 223.3"/>
<surface id="53" type="z-cylinder" coeffs="0.0 0.0 185.0"/>
<surface id="54" type="z-cylinder" coeffs="0.0 0.0 180.0"/>
<surface id="55" type="z-cylinder" coeffs="0.0 0.0 140.0"/>
<surface id="56" type="z-cylinder" coeffs="0.0 0.0 120.0"/>
<surface id="57" type="z-cylinder" coeffs="0.0 0.0 80.0"/>
<surface id="58" type="z-cylinder" coeffs="50.0 0.0 1155.0"/>
<surface id="59" type="z-cylinder" coeffs="49.9993951345026 0.000124423115722 1155.0"/>
<surface id="60" type="z-cylinder" coeffs="50.0 0.0 1150.0"/>
<surface id="61" type="z-cylinder" coeffs="49.9993951345026 0.000124423115949 1150.0"/>
<surface id="62" type="sphere" coeffs="1637.6 0.0 -685.6 25.0"/>
<surface id="63" type="sphere" coeffs="1634.9 0.0 -203.8 25.0000000000001"/>
<surface id="64" type="sphere" coeffs="1631.1 0.0 195.5 25.0"/>
<surface id="65" type="sphere" coeffs="1630.1 0.0 -365.6 25.0"/>
<surface id="66" type="sphere" coeffs="1291.4 0.0 195.4 25.0000000000001"/>
<surface id="67" type="sphere" coeffs="1291.1 0.0 -369.1 25.0"/>
<surface id="68" type="sphere" coeffs="1289.4 0.0 -200.3 25.0000000000001"/>
<surface id="69" type="sphere" coeffs="1281.9 0.0 -684.6 25.0000000000001"/>
<surface id="70" type="x-plane" boundary="vacuum" coeffs="1864.0"/>
<surface id="71" type="x-plane" coeffs="1687.8495"/>
<surface id="72" type="x-plane" coeffs="1667.8495"/>
<surface id="73" type="x-plane" coeffs="1445.1235"/>
<surface id="74" type="x-plane" coeffs="1435.1235"/>
<surface id="75" type="x-plane" coeffs="995.1235"/>
<surface id="76" type="x-plane" coeffs="985.1235"/>
<surface id="77" type="x-plane" coeffs="877.827"/>
<surface id="78" type="x-plane" coeffs="867.827"/>
<surface id="79" type="x-plane" coeffs="840.0"/>
<surface id="80" type="x-plane" coeffs="838.4085"/>
<surface id="81" type="x-plane" coeffs="836.4085"/>
<surface id="82" type="x-plane" coeffs="747.7295"/>
<surface id="83" type="x-plane" coeffs="706.792186948168"/>
<surface id="84" type="x-plane" coeffs="544.8505"/>
<surface id="85" type="x-plane" coeffs="328.0"/>
<surface id="86" type="x-plane" coeffs="325.917"/>
<surface id="87" type="x-plane" coeffs="322.917"/>
<surface id="88" type="x-plane" coeffs="220.041"/>
<surface id="89" type="x-plane" coeffs="215.041"/>
<surface id="90" type="x-plane" coeffs="49.99999999999768"/>
<surface id="91" type="x-plane" coeffs="1.0"/>
<surface id="92" type="x-plane" coeffs="0.0"/>
<surface id="93" type="x-plane" boundary="vacuum" coeffs="-184.0"/>
<surface id="94" type="y-plane" boundary="vacuum" coeffs="782.0"/>
<surface id="95" type="y-plane" coeffs="391.0"/>
<surface id="96" type="y-plane" coeffs="221.75799999999708"/>
<surface id="97" type="y-plane" coeffs="201.757999999997"/>
<surface id="98" type="y-plane" coeffs="199.75799999999708"/>
<surface id="99" type="y-plane" coeffs="149.999999999997"/>
<surface id="100" type="y-plane" coeffs="147.99999999999704"/>
<surface id="101" type="y-plane" coeffs="134.99999999999704"/>
<surface id="102" type="y-plane" coeffs="129.99999999999704"/>
<surface id="103" type="y-plane" coeffs="124.99999999999704"/>
<surface id="104" type="y-plane" coeffs="119.999999999997"/>
<surface id="105" type="y-plane" coeffs="86.99999999999739"/>
<surface id="106" type="y-plane" coeffs="84.99999999999642"/>
<surface id="107" type="y-plane" coeffs="67.0"/>
<surface id="108" type="y-plane" coeffs="65.0"/>
<surface id="109" type="y-plane" coeffs="62.0"/>
<surface id="110" type="y-plane" coeffs="60.999999999999"/>
<surface id="111" type="y-plane" coeffs="2.499999999997044"/>
<surface id="112" type="y-plane" coeffs="0.0"/>
<surface id="113" type="y-plane" coeffs="-7.500000000002956"/>
<surface id="114" type="y-plane" coeffs="-61.00000000000008"/>
<surface id="115" type="y-plane" coeffs="-62.000000000002956"/>
<surface id="116" type="y-plane" coeffs="-65.0"/>
<surface id="117" type="y-plane" coeffs="-67.0"/>
<surface id="118" type="y-plane" coeffs="-90.00000000000144"/>
<surface id="119" type="y-plane" coeffs="-92.00000000000395"/>
<surface id="120" type="y-plane" coeffs="-125.000000000003"/>
<surface id="121" type="y-plane" coeffs="-130.00000000000296"/>
<surface id="122" type="y-plane" coeffs="-135.00000000000296"/>
<surface id="123" type="y-plane" coeffs="-140.00000000000296"/>
<surface id="124" type="y-plane" coeffs="-148.00000000000296"/>
<surface id="125" type="y-plane" coeffs="-150.000000000003"/>
<surface id="126" type="y-plane" coeffs="-204.758000000003"/>
<surface id="127" type="y-plane" coeffs="-206.758000000003"/>
<surface id="128" type="y-plane" coeffs="-226.758000000003"/>
<surface id="129" type="y-plane" coeffs="-391.0"/>
<surface id="130" type="y-plane" boundary="vacuum" coeffs="-782.0"/>
<surface id="131" type="z-plane" boundary="vacuum" coeffs="1100.0"/>
<surface id="132" type="z-plane" coeffs="999.999999999997"/>
<surface id="133" type="z-plane" coeffs="899.999999999997"/>
<surface id="134" type="z-plane" coeffs="839.9999999999997"/>
<surface id="135" type="z-plane" coeffs="834.9999999999997"/>
<surface id="136" type="z-plane" coeffs="834.0"/>
<surface id="137" type="z-plane" coeffs="725.199999999999"/>
<surface id="138" type="z-plane" coeffs="724.199999999999"/>
<surface id="139" type="z-plane" coeffs="719.199999999999"/>
<surface id="140" type="z-plane" coeffs="690.0"/>
<surface id="141" type="z-plane" coeffs="680.0"/>
<surface id="142" type="z-plane" coeffs="657.999999999997"/>
<surface id="143" type="z-plane" coeffs="600.0"/>
<surface id="144" type="z-plane" coeffs="590.0"/>
<surface id="145" type="z-plane" coeffs="557.9999999999969"/>
<surface id="146" type="z-plane" coeffs="525.0"/>
<surface id="147" type="z-plane" coeffs="517.9999999999969"/>
<surface id="148" type="z-plane" coeffs="450.0"/>
<surface id="149" type="z-plane" coeffs="440.0"/>
<surface id="150" type="z-plane" coeffs="437.999999999997"/>
<surface id="151" type="z-plane" coeffs="425.3999999999991"/>
<surface id="152" type="z-plane" coeffs="385.39107592748206"/>
<surface id="153" type="z-plane" coeffs="384.3910759274831"/>
<surface id="154" type="z-plane" coeffs="360.0"/>
<surface id="155" type="z-plane" coeffs="350.0"/>
<surface id="156" type="z-plane" coeffs="311.19999999999925"/>
<surface id="157" type="z-plane" coeffs="300.99999999999926"/>
<surface id="158" type="z-plane" coeffs="251.75799999999708"/>
<surface id="159" type="z-plane" coeffs="229.75799999999708"/>
<surface id="160" type="z-plane" coeffs="223.01345678806706"/>
<surface id="161" type="z-plane" coeffs="201.19999999999928"/>
<surface id="162" type="z-plane" coeffs="191.09999999999928"/>
<surface id="163" type="z-plane" coeffs="174.99999999999704"/>
<surface id="164" type="z-plane" coeffs="172.99999999999704"/>
<surface id="165" type="z-plane" coeffs="164.99999999999704"/>
<surface id="166" type="z-plane" coeffs="159.99999999999704"/>
<surface id="167" type="z-plane" coeffs="154.99999999999704"/>
<surface id="168" type="z-plane" coeffs="150.000000000001"/>
<surface id="169" type="z-plane" coeffs="99.99999999999704"/>
<surface id="170" type="z-plane" coeffs="86.70000000000012"/>
<surface id="171" type="z-plane" coeffs="76.99999999999991"/>
<surface id="172" type="z-plane" coeffs="2.499999999999777"/>
<surface id="173" type="z-plane" coeffs="-7.500000000000013"/>
<surface id="174" type="z-plane" coeffs="-24.60000000000297"/>
<surface id="175" type="z-plane" coeffs="-50.0"/>
<surface id="176" type="z-plane" coeffs="-54.60000000000297"/>
<surface id="177" type="z-plane" coeffs="-83.40000000000073"/>
<surface id="178" type="z-plane" coeffs="-100.00000000000296"/>
<surface id="179" type="z-plane" coeffs="-149.99999999999918"/>
<surface id="180" type="z-plane" coeffs="-155.00000000000296"/>
<surface id="181" type="z-plane" coeffs="-160.00000000000296"/>
<surface id="182" type="z-plane" coeffs="-165.00000000000296"/>
<surface id="183" type="z-plane" coeffs="-173.00000000000296"/>
<surface id="184" type="z-plane" coeffs="-175.00000000000296"/>
<surface id="185" type="z-plane" coeffs="-213.013456788066"/>
<surface id="186" type="z-plane" coeffs="-223.0134567880649"/>
<surface id="187" type="z-plane" coeffs="-229.758000000003"/>
<surface id="188" type="z-plane" coeffs="-251.758000000003"/>
<surface id="189" type="z-plane" coeffs="-276.71607766121997"/>
<surface id="190" type="z-plane" coeffs="-298.22019167317603"/>
<surface id="191" type="z-plane" coeffs="-308.2201916731764"/>
<surface id="192" type="z-plane" coeffs="-313.069155322438"/>
<surface id="193" type="z-plane" coeffs="-333.069155322438"/>
<surface id="194" type="z-plane" coeffs="-337.5"/>
<surface id="195" type="z-plane" coeffs="-350.0"/>
<surface id="196" type="z-plane" coeffs="-360.0"/>
<surface id="197" type="z-plane" coeffs="-388.432155322438"/>
<surface id="198" type="z-plane" coeffs="-393.432155322438"/>
<surface id="199" type="z-plane" coeffs="-396.432155322438"/>
<surface id="200" type="z-plane" coeffs="-398.432155322438"/>
<surface id="201" type="z-plane" coeffs="-403.432155322438"/>
<surface id="202" type="z-plane" coeffs="-408.432155322438"/>
<surface id="203" type="z-plane" coeffs="-414.94999999999976"/>
<surface id="204" type="z-plane" coeffs="-438.000000000003"/>
<surface id="205" type="z-plane" coeffs="-440.0"/>
<surface id="206" type="z-plane" coeffs="-450.0"/>
<surface id="207" type="z-plane" coeffs="-466.432155322438"/>
<surface id="208" type="z-plane" coeffs="-468.432155322438"/>
<surface id="209" type="z-plane" coeffs="-518.0000000000031"/>
<surface id="210" type="z-plane" coeffs="-558.000000000003"/>
<surface id="211" type="z-plane" coeffs="-578.65670184672"/>
<surface id="212" type="z-plane" coeffs="-580.65670184672"/>
<surface id="213" type="z-plane" coeffs="-590.0"/>
<surface id="214" type="z-plane" coeffs="-600.0"/>
<surface id="215" type="z-plane" coeffs="-625.0"/>
<surface id="216" type="z-plane" coeffs="-638.65670184672"/>
<surface id="217" type="z-plane" coeffs="-643.65670184672"/>
<surface id="218" type="z-plane" coeffs="-648.65670184672"/>
<surface id="219" type="z-plane" coeffs="-650.65670184672"/>
<surface id="220" type="z-plane" coeffs="-653.65670184672"/>
<surface id="221" type="z-plane" coeffs="-657.9999999999991"/>
<surface id="222" type="z-plane" coeffs="-658.65670184672"/>
<surface id="223" type="z-plane" coeffs="-680.0"/>
<surface id="224" type="z-plane" coeffs="-690.0"/>
<surface id="225" type="z-plane" coeffs="-714.01970184672"/>
<surface id="226" type="z-plane" coeffs="-734.01970184672"/>
<surface id="227" type="z-plane" coeffs="-899.999999999999"/>
<surface id="228" type="z-plane" coeffs="-999.9999999999994"/>
<surface id="229" type="z-plane" boundary="vacuum" coeffs="-1200.0"/>
<surface id="230" type="plane" coeffs="0.999987890449687 0.004921275646115 0.0 49.99879027534236"/>
<surface id="231" type="plane" coeffs="0.999987890449687 0.00492127564612 0.0 0.0"/>
<surface id="232" type="plane" coeffs="0.994521895368274 0.104528463267653 0.0 340.648777012472"/>
<surface id="233" type="plane" coeffs="0.994521895368273 -0.104528463267655 0.0 340.648777012472"/>
<surface id="234" type="plane" coeffs="0.965935354645742 0.10152389676611 0.238037368979807 131.94109346392815"/>
<surface id="235" type="plane" coeffs="0.96593535464574 -0.101523896766132 0.238037368979807 131.9410934639268"/>
<surface id="236" type="plane" coeffs="0.951056516295154 0.309016994374946 0.0 340.6487770124723"/>
<surface id="237" type="plane" coeffs="0.951056516295153 -0.309016994374949 0.0 340.6487770124725"/>
<surface id="238" type="plane" coeffs="0.92371934457564 0.300134608843966 0.238037368979809 131.9410934639275"/>
<surface id="239" type="plane" coeffs="0.923719344575634 -0.300134608843986 0.238037368979807 131.94109346392702"/>
<surface id="240" type="plane" coeffs="0.866025403784439 0.5 0.0 340.6487770124717"/>
<surface id="241" type="plane" coeffs="0.866025403784442 0.499999999999995 0.0 0.0"/>
<surface id="242" type="plane" coeffs="0.866025403784439 -0.5 0.0 340.6487770124719"/>
<surface id="243" type="plane" coeffs="0.866025403784439 -0.5 0.0 0.0"/>
<surface id="244" type="plane" coeffs="0.841132366650391 0.485627998309697 0.238037368979809 131.94109346392804"/>
<surface id="245" type="plane" coeffs="0.84113236665038 -0.485627998309717 0.238037368979806 131.9410934639279"/>
<surface id="246" type="plane" coeffs="0.743144825477394 0.0 0.669130606358858 208.22378111711697"/>
<surface id="247" type="plane" coeffs="0.743144825477394 0.0 0.669130606358858 206.22378111711694"/>
<surface id="248" type="plane" coeffs="0.743144825477394 0.0 0.669130606358858 41.495781117115996"/>
<surface id="249" type="plane" coeffs="0.743144825477394 0.0 0.669130606358858 39.49578111711696"/>
<surface id="250" type="plane" coeffs="0.593191718026366 0.062346961889092 0.802643408998123 -131.30274517754975"/>
<surface id="251" type="plane" coeffs="0.593191718026366 -0.062346961889096 0.802643408998123 -131.302745177549"/>
<surface id="252" type="plane" coeffs="0.567266393498942 0.18431602425881 0.802643408998124 -131.30274517754927"/>
<surface id="253" type="plane" coeffs="0.567266393498942 -0.184316024258814 0.802643408998123 -131.30274517754953"/>
<surface id="254" type="plane" coeffs="0.516548805529452 0.298229591922007 0.802643408998124 -131.3027451775498"/>
<surface id="255" type="plane" coeffs="0.516548805529452 -0.298229591922011 0.802643408998122 -131.30274517754918"/>
<surface id="256" type="plane" coeffs="0.5 0.866025403784438 0.0 49.99999999999752"/>
<surface id="257" type="plane" coeffs="0.5 0.866025403784438 0.0 0.0"/>
<surface id="258" type="plane" coeffs="0.4226182617407 0.90630778703665 0.0 0.0"/>
<surface id="259" type="plane" coeffs="0.417875093072831 0.0 0.908504489030942 335.1555344506364"/>
<surface id="260" type="plane" coeffs="0.417875093072831 0.0 0.908504489030942 295.5447387288855"/>
<surface id="261" type="plane" coeffs="0.390731128489274 0.92050485345244 0.0 0.0"/>
<surface id="262" type="plane" coeffs="0.224951054343865 0.974370064785235 0.0 0.0"/>
<surface id="263" type="plane" coeffs="0.207911690817759 0.978147600733806 0.0 5.000000000000062"/>
<surface id="264" type="plane" coeffs="0.20791169081776 0.978147600733805 0.0 -4.999999999999938"/>
<surface id="265" type="plane" coeffs="0.190808995376545 0.981627183447664 0.0 0.0"/>
<surface id="266" type="plane" coeffs="0.017452406437284 0.999847695156391 0.0 0.0"/>
<surface id="267" type="plane" coeffs="0.0 0.999985063415497 0.005465614869812 155.12402186329712"/>
<surface id="268" type="plane" coeffs="0.0 0.999985063415497 0.005465614869812 -163.87510797868427"/>
<surface id="269" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 158.9961657321474"/>
<surface id="270" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 153.99616573214803"/>
<surface id="271" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 150.99616573214772"/>
<surface id="272" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 148.99616573214732"/>
<surface id="273" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 145.99616573214738"/>
<surface id="274" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 80.99616573214693"/>
<surface id="275" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 78.99616573214693"/>
<surface id="276" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 -95.99910128921725"/>
<surface id="277" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 -97.99910128921726"/>
<surface id="278" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685652 -160.99910128921775"/>
<surface id="279" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685652 -165.99910128921707"/>
<surface id="280" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 -167.99910128921695"/>
<surface id="281" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 -170.9991012892173"/>
<surface id="282" type="plane" coeffs="-0.004921202140863 0.999972954407795 0.005465548685651 -175.99910128921664"/>
<surface id="283" type="plane" coeffs="-0.017452406437283 0.999847695156391 0.0 0.0"/>
<surface id="284" type="plane" coeffs="-0.190808995376545 0.981627183447664 0.0 0.0"/>
<surface id="285" type="plane" coeffs="-0.207911690817759 0.978147600733806 0.0 5.000000000000062"/>
<surface id="286" type="plane" coeffs="-0.207911690817759 0.978147600733806 0.0 -4.999999999999938"/>
<surface id="287" type="plane" coeffs="-0.224951054343865 0.974370064785235 0.0 0.0"/>
<surface id="288" type="plane" coeffs="-0.390731128489274 0.92050485345244 0.0 0.0"/>
<surface id="289" type="plane" coeffs="-0.422618261740699 0.90630778703665 0.0 0.0"/>
<surface id="290" type="plane" coeffs="-0.5 0.866025403784439 0.0 0.0"/>
<surface id="291" type="plane" coeffs="-0.5 0.866025403784439 0.0 -50.00000000000094"/>
<surface id="292" type="plane" coeffs="-0.583254692908226 0.336742253956675 0.739201337661607 -469.13130870086985"/>
<surface id="293" type="plane" coeffs="-0.583254692908227 -0.336742253956679 0.739201337661605 -469.1313087008706"/>
<surface id="294" type="plane" coeffs="-0.613538672991646 0.354226718009974 0.705757556807954 -506.59277427674766"/>
<surface id="295" type="plane" coeffs="-0.613538672991647 0.354226718009972 0.705757556807954 -534.2395233260876"/>
<surface id="296" type="plane" coeffs="-0.613538672991649 -0.354226718009974 0.705757556807951 -506.5927742767483"/>
<surface id="297" type="plane" coeffs="-0.613538672991648 -0.354226718009975 0.705757556807952 -534.2395233260875"/>
<surface id="298" type="plane" coeffs="-0.64052182987483 0.208118158393473 0.739201337661607 -469.13130870087"/>
<surface id="299" type="plane" coeffs="-0.64052182987483 -0.208118158393478 0.739201337661605 -469.13130870087105"/>
<surface id="300" type="plane" coeffs="-0.669130606358858 0.0 0.743144825477394 -814.1043663501741"/>
<surface id="301" type="plane" coeffs="-0.669795089311158 0.070398300646753 0.739201337661606 -469.1313087008705"/>
<surface id="302" type="plane" coeffs="-0.669795089311158 -0.070398300646757 0.739201337661606 -469.13130870087025"/>
<surface id="303" type="plane" coeffs="-0.673779256818462 0.218924151453489 0.705757556807953 -506.5927742767474"/>
<surface id="304" type="plane" coeffs="-0.673779256818462 0.218924151453485 0.705757556807954 -534.2395233260877"/>
<surface id="305" type="plane" coeffs="-0.673779256818464 -0.218924151453488 0.705757556807952 -506.59277427674806"/>
<surface id="306" type="plane" coeffs="-0.673779256818462 -0.218924151453491 0.705757556807952 -534.2395233260879"/>
<surface id="307" type="plane" coeffs="-0.704572453970723 0.074053548963854 0.705757556807953 -506.5927742767473"/>
<surface id="308" type="plane" coeffs="-0.704572453970723 0.074053548963851 0.705757556807954 -534.2395233260878"/>
<surface id="309" type="plane" coeffs="-0.704572453970723 -0.074053548963854 0.705757556807953 -506.5927742767473"/>
<surface id="310" type="plane" coeffs="-0.704572453970722 -0.074053548963857 0.705757556807954 -534.2395233260874"/>
<surface id="470" type="z-cylinder" coeffs="0.0 0.0 450.1"/>
<surface id="490" type="z-cylinder" coeffs="0.0 0.0 300.1"/>
<surface id="1000" type="x-plane" boundary="vacuum" coeffs="2074.0"/>
<surface id="1690" type="z-plane" coeffs="100.1"/>
<surface id="1780" type="z-plane" coeffs="-100.10000000000296"/>
<surface id="2000" type="x-plane" boundary="vacuum" coeffs="-100.0"/>
<surface id="3000" type="y-plane" boundary="vacuum" coeffs="1288.0"/>
<surface id="4000" type="y-plane" boundary="vacuum" coeffs="-1288.0"/>
<surface id="5000" type="z-plane" boundary="vacuum" coeffs="1189.0"/>
<surface id="6000" type="z-plane" coeffs="999.989999999997"/>
<surface id="7000" type="z-plane" coeffs="-999.989999999999"/>
<surface id="8000" type="z-plane" boundary="vacuum" coeffs="-1189.0"/>
<surface id="9000" type="plane" coeffs="0.999999750345605 -0.000706617808908 0.0 1887.8572330099448"/>
<surface id="10000" type="plane" boundary="reflective" coeffs="0.5 0.866025403784439 0.0 0.009999999997189"/>
<surface id="11000" type="plane" boundary="reflective" coeffs="-0.499999999999998 0.86602540378444 0.0 -0.010000000002111"/>
<surface id="11001" type="z-cone" coeffs="0.0 0.0 1038.3339364894073 0.875839610035342"/>
<surface id="11002" type="z-plane" coeffs="1038.3339364894073"/>
<surface id="11003" type="z-cone" coeffs="0.0 0.0 928.5732478142554 0.875839610035342"/>
<surface id="11004" type="z-plane" coeffs="928.5732478142554"/>
<surface id="11005" type="z-cone" coeffs="0.0 0.0 891.9863515892083 0.875839610035342"/>
<surface id="11006" type="z-plane" coeffs="891.9863515892083"/>
<surface id="11007" type="z-cone" coeffs="0.0 0.0 821.7733536198214 0.831737828487812"/>
<surface id="11008" type="z-plane" coeffs="821.7733536198214"/>
<surface id="11009" type="z-cone" coeffs="0.0 0.0 808.3004040876435 0.831737828487812"/>
<surface id="11010" type="z-plane" coeffs="808.3004040876435"/>
<surface id="11011" type="z-cone" coeffs="0.0 0.0 752.8079291785617 0.831737828487812"/>
<surface id="11012" type="z-plane" coeffs="752.8079291785617"/>
<surface id="11013" type="z-cone" coeffs="0.0 0.0 751.3239137021349 0.831737828487812"/>
<surface id="11014" type="z-plane" coeffs="751.3239137021349"/>
<surface id="11015" type="z-cone" coeffs="0.0 0.0 635.7077977836594 0.831737828487822"/>
<surface id="11016" type="z-plane" coeffs="635.7077977836594"/>
<surface id="11017" type="z-cone" coeffs="0.0 0.0 625.7077977836594 0.831737828487822"/>
<surface id="11018" type="z-plane" coeffs="625.7077977836594"/>
<surface id="11019" type="z-cone" coeffs="0.0 0.0 129.25610534617596 3.733038782626343"/>
<surface id="11020" type="z-plane" coeffs="129.25610534617596"/>
<surface id="11021" type="z-cone" coeffs="0.0 0.0 119.25610534617596 3.733038782626343"/>
<surface id="11022" type="z-plane" coeffs="119.25610534617596"/>
<surface id="11023" type="z-cone" coeffs="0.0 0.0 87.47978273635749 13.928203230275834"/>
<surface id="11024" type="z-plane" coeffs="87.47978273635749"/>
<surface id="11025" type="z-cone" coeffs="0.0 0.0 77.47978273635749 13.928203230275834"/>
<surface id="11026" type="z-plane" coeffs="77.47978273635749"/>
<surface id="11027" type="z-cone" coeffs="0.0 0.0 -91.75913401661253 70735.93051432527"/>
<surface id="11028" type="z-plane" coeffs="-91.75913401661253"/>
<surface id="11029" type="z-cone" coeffs="0.0 0.0 -643.4514249694855 0.101058332300901"/>
<surface id="11030" type="z-plane" coeffs="-643.4514249694855"/>
<surface id="11031" type="z-cone" coeffs="0.0 0.0 -676.4594165885985 0.101058332300901"/>
<surface id="11032" type="z-plane" coeffs="-676.4594165885985"/>
<surface id="11033" type="z-cone" coeffs="0.0 0.0 -714.6000000000013 0.999999999999998"/>
<surface id="11034" type="z-plane" coeffs="-714.6000000000013"/>
<surface id="11035" type="z-cone" coeffs="0.0 0.0 -716.0142135623747 0.999999999999995"/>
<surface id="11036" type="z-plane" coeffs="-716.0142135623747"/>
<surface id="11037" type="z-cone" coeffs="0.0 0.0 -783.0034279022246 0.911375627552037"/>
<surface id="11038" type="z-plane" coeffs="-783.0034279022246"/>
<surface id="11039" type="z-cone" coeffs="0.0 0.0 -821.7733536198173 0.831737828487812"/>
<surface id="11040" type="z-plane" coeffs="-821.7733536198173"/>
<surface id="11041" type="z-cone" coeffs="0.0 0.0 -891.9863515892042 0.875839610035342"/>
<surface id="11042" type="z-plane" coeffs="-891.9863515892042"/>
<surface id="11043" type="z-cone" coeffs="0.0 0.0 -928.5732478142554 0.875839610035342"/>
<surface id="11044" type="z-plane" coeffs="-928.5732478142554"/>
<surface id="11045" type="z-cone" coeffs="0.0 0.0 -1038.333936489409 0.875839610035342"/>
<surface id="11046" type="z-plane" coeffs="-1038.333936489409"/>
</geometry>
<settings>
<run_mode>fixed source</run_mode>
<particles>1000</particles>
<batches>10</batches>
<source type="independent" strength="1.0" particle="neutron">
<space type="point">
<parameters>375.0 0.0 0.0</parameters>
</space>
<energy type="discrete">
<parameters>14000000.0 1.0</parameters>
</energy>