generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Post-Human Republic.cat
3194 lines (3194 loc) · 226 KB
/
Post-Human Republic.cat
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" standalone="yes"?>
<catalogue library="false" id="40a3-46c5-d9fd-74c7" name="Post-Human Republic" gameSystemId="sys-5fec-a8da-5dec-0ae6" gameSystemRevision="1" revision="8" authorName="John Kemp" battleScribeVersion="2.03" authorUrl="https://github.com/BSData/dropfleet-commander-2024" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="false" name="----- Admirals -----" hidden="true" id="66a8-ba07-3fa8-ecf7"/>
<selectionEntry type="unit" import="true" name="Vice Director" hidden="false" id="c974-a513-7df9-d0fe" publicationId="6462-e99b-594c-193a" page="1">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="50"/>
</costs>
<categoryLinks>
<categoryLink targetId="79f7-4244-6fb7-d41a" id="2c7b-44d9-7ea1-8222" primary="false" name="Faction/Famous Admirals"/>
<categoryLink targetId="fb8b-57b3-d46c-d679" id="3307-19af-f329-3b04" primary="true" name="Admirals"/>
</categoryLinks>
<constraints>
<constraint type="max" value="0" field="selections" scope="parent" shared="true" id="e9f4-2a8a-ec8c-0ea8"/>
</constraints>
<profiles>
<profile name="Vice Director" typeId="92cf-ddd3-4d79-e408" typeName="Admiral" hidden="false" id="7626-9574-a960-0fd7">
<characteristics>
<characteristic name="Level" typeId="391a-b7ae-831e-4cf0">3</characteristic>
<characteristic typeId="2a6e-dc3c-846c-d4c2" name="Special"/>
</characteristics>
</profile>
<profile name="Re-route Systems" typeId="705b-98a3-a21d-7118" typeName="Admiral Ability" hidden="false" id="fe8f-80c2-e818-99e1">
<characteristics>
<characteristic name="Cost" typeId="e725-1a05-f360-abc6">1AP</characteristic>
<characteristic name="Effect" typeId="49ae-26b2-d6ec-81aa">At the start of a friendly Group’s activation, remove one Crippling Effect token (of any type) from that Group.</characteristic>
</characteristics>
</profile>
<profile name="Ranked Fire" typeId="705b-98a3-a21d-7118" typeName="Admiral Ability" hidden="false" id="8ed1-95f9-04eb-bfc6">
<characteristics>
<characteristic name="Cost" typeId="e725-1a05-f360-abc6">3AP</characteristic>
<characteristic name="Effect" typeId="49ae-26b2-d6ec-81aa">When you assign targets to Broadside Arc weapons, select one of those weapons with the Volley-X special rule. That weapon does not need to alternate arcs due to its Volley-X special rule (so can attack the same target in the same arc using each Volley attack) for that attack.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="-1" field="e9f4-2a8a-ec8c-0ea8">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="7895-d441-b903-8bb2" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Gaius Chau - Romulus" hidden="false" id="416b-ac4b-0ec7-e966" page="5" publicationId="6462-e99b-594c-193a">
<categoryLinks>
<categoryLink name="Famous Admirals" hidden="false" id="32c7-e487-ffba-7775" targetId="daa7-4c13-fe75-9281" primary="true"/>
<categoryLink name="Faction/Famous Admirals" hidden="false" id="d224-a49e-ba2e-3f02" targetId="79f7-4244-6fb7-d41a" primary="false"/>
<categoryLink name="Admirals" hidden="false" id="8b2a-6c39-d415-68ad" targetId="fb8b-57b3-d46c-d679" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Gaius Chau" hidden="false" id="9507-690f-5625-4e73" subType="crew" sortIndex="1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8daf-47c5-2650-043e" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b216-af35-aeb5-261a" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Gaius Chau" typeId="92cf-ddd3-4d79-e408" typeName="Admiral" hidden="false" id="47fb-51dc-5d46-60dd">
<characteristics>
<characteristic name="Level" typeId="391a-b7ae-831e-4cf0">5</characteristic>
<characteristic name="Special" typeId="2a6e-dc3c-846c-d4c2">-</characteristic>
</characteristics>
</profile>
<profile name="Backup Systems Engaged" typeId="705b-98a3-a21d-7118" typeName="Admiral Ability" hidden="false" id="43f1-1c5a-49eb-824b">
<characteristics>
<characteristic name="Cost" typeId="e725-1a05-f360-abc6">3AP</characteristic>
<characteristic name="Effect" typeId="49ae-26b2-d6ec-81aa">When a friendly ship would roll for Crippling Damage, roll a dice. On a 4+ that Ship does not roll on the Crippling Damage table but is still Crippled.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="90"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Romulus Dreadnought" hidden="false" id="d4ba-6454-a4f5-6756" type="selectionEntry" targetId="24f3-bf29-8263-56f4" sortIndex="2">
<infoLinks>
<infoLink name="Cutting Power" id="8772-48fd-8df1-82c2" hidden="false" type="rule" targetId="4307-771a-1d85-2af8"/>
</infoLinks>
<modifiers>
<modifier type="set" value="Cutting Power" field="fdf5-89b6-e62e-570f" affects="childs.recursive.model.profiles.Ship" join=", " scope="parent"/>
</modifiers>
<categoryLinks>
<categoryLink targetId="default-category" id="1ed9-356e-1714-8e26" primary="false" name="Group"/>
<categoryLink targetId="52fa-6578-d171-57d6" id="6548-86e3-c3fc-786a" primary="false" name="Colossal Groups"/>
</categoryLinks>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="0" field="selections" scope="parent" shared="true" id="1580-1a6b-429f-64cb"/>
</constraints>
<modifiers>
<modifier type="set" value="-1" field="1580-1a6b-429f-64cb">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="7895-d441-b903-8bb2" shared="true" includeChildSelections="true" includeChildForces="true"/>
<condition type="equalTo" value="0" field="selections" scope="force" childId="3fda-65f2-6cc3-ee33" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Claudia Rhee - Heracles" hidden="false" id="fc7e-9c9b-0758-b590" page="4" publicationId="6462-e99b-594c-193a">
<categoryLinks>
<categoryLink name="Famous Admirals" hidden="false" id="3906-76c2-4f2e-d789" targetId="daa7-4c13-fe75-9281" primary="true"/>
<categoryLink name="Faction/Famous Admirals" hidden="false" id="1afe-e2ff-046e-4b12" targetId="79f7-4244-6fb7-d41a" primary="false"/>
<categoryLink name="Admirals" hidden="false" id="75f2-df79-608e-a6b4" targetId="fb8b-57b3-d46c-d679" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Claudia Rhee" hidden="false" id="821d-4002-c383-4bcc" subType="crew" sortIndex="1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6756-e09a-a5ee-25cb" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="90ae-9f68-9f9d-e5a4" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Claudia Rhee" typeId="92cf-ddd3-4d79-e408" typeName="Admiral" hidden="false" id="0450-d5cf-7fdc-207a">
<characteristics>
<characteristic name="Level" typeId="391a-b7ae-831e-4cf0">4</characteristic>
<characteristic name="Special" typeId="2a6e-dc3c-846c-d4c2">-</characteristic>
</characteristics>
</profile>
<profile name="High-G Manouevre" typeId="705b-98a3-a21d-7118" typeName="Admiral Ability" hidden="false" id="db14-31da-1ac5-5ca1">
<characteristics>
<characteristic name="Cost" typeId="e725-1a05-f360-abc6">2AP</characteristic>
<characteristic name="Effect" typeId="49ae-26b2-d6ec-81aa">When a friendly Group is given a Max Thrust order, it may turn as if it was on General Quarters.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="70"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Heracles Battleship" hidden="false" id="5958-2e69-1a9f-f054" type="selectionEntry" targetId="8b0c-9463-8922-0703" sortIndex="2">
<modifiers>
<modifier type="set" value="255" field="ab32-c9b6-10f3-cbdb"/>
</modifiers>
<entryLinks>
<entryLink import="true" name="Hornet Drones" hidden="false" id="f1b8-9437-9507-593d" type="selectionEntry" targetId="07d3-ae7d-c07b-ce68"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="default-category" id="8b67-a91d-baf5-2a13" primary="false" name="Group"/>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="b100-6a9a-5414-3de3" primary="false" name="Heavy Groups"/>
</categoryLinks>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="0" field="selections" scope="parent" shared="true" id="d375-1336-6507-d1d5"/>
</constraints>
<modifiers>
<modifier type="set" value="-1" field="d375-1336-6507-d1d5">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="7895-d441-b903-8bb2" shared="true" includeChildSelections="true" includeChildForces="true"/>
<condition type="equalTo" value="0" field="selections" scope="force" childId="3fda-65f2-6cc3-ee33" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Helena of Asgard - Pompeius" hidden="false" id="3498-03f8-e547-1c37" page="3" publicationId="6462-e99b-594c-193a">
<categoryLinks>
<categoryLink name="Famous Admirals" hidden="false" id="4ed6-87d9-5345-ef3d" targetId="daa7-4c13-fe75-9281" primary="true"/>
<categoryLink name="Faction/Famous Admirals" hidden="false" id="7685-3391-11e3-bfae" targetId="79f7-4244-6fb7-d41a" primary="false"/>
<categoryLink name="Admirals" hidden="false" id="0797-75a3-d4cd-1da3" targetId="fb8b-57b3-d46c-d679" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Helena of Asgard" hidden="false" id="4ce1-df00-0db3-ca07" subType="crew" sortIndex="1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a8a5-48ba-00f7-a6b3" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1e3c-7405-728f-e329" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Helena of Asgard" typeId="92cf-ddd3-4d79-e408" typeName="Admiral" hidden="false" id="dcde-25ef-2d7e-c365">
<characteristics>
<characteristic name="Level" typeId="391a-b7ae-831e-4cf0">2</characteristic>
<characteristic name="Special" typeId="2a6e-dc3c-846c-d4c2">-</characteristic>
</characteristics>
</profile>
<profile name="Experimental Munitions" typeId="705b-98a3-a21d-7118" typeName="Admiral Ability" hidden="false" id="4e91-7a62-d3c3-7ddf">
<characteristics>
<characteristic name="Cost" typeId="e725-1a05-f360-abc6">2AP</characteristic>
<characteristic name="Effect" typeId="49ae-26b2-d6ec-81aa">When you assign targets to weapons, select one of those weapons with the Calibre-X special rule. That weapon gains the benefits of its Calibre-X special rule regardless of the Tonnage of the target Group for that attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="30"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Pompeius Battlecruiser" hidden="false" id="7af1-36a0-b6bc-9355" publicationId="6462-e99b-594c-193a" page="40" sortIndex="2">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="140"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="d4da-9490-0d72-0cae" targetId="9d6f-26b0-7969-496b" primary="true"/>
<categoryLink targetId="default-category" id="f1ef-0639-21c6-bf72" primary="false" name="Group"/>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="918b-cb79-3c90-21b4" primary="false" name="Heavy Groups"/>
</categoryLinks>
<profiles>
<profile name="Pompeius" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="da74-71c2-a496-d339" publicationId="6462-e99b-594c-193a" page="40">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">10"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">15</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="42a4-e9d3-125b-9255" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7cd3-7fce-2fe5-5f07" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Quad Battery" hidden="false" id="e140-727d-da60-6cea" type="selectionEntry" targetId="7276-4155-59af-c39a"/>
</entryLinks>
<comment>Modified weapon</comment>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Javelin - Achilles" hidden="false" id="7ef9-eaa2-4a63-34ad" page="2" publicationId="6462-e99b-594c-193a">
<categoryLinks>
<categoryLink name="Famous Admirals" hidden="false" id="3758-f330-2cd5-aaa2" targetId="daa7-4c13-fe75-9281" primary="true"/>
<categoryLink name="Faction/Famous Admirals" hidden="false" id="4efa-c887-e597-5c05" targetId="79f7-4244-6fb7-d41a" primary="false"/>
<categoryLink name="Admirals" hidden="false" id="2217-258f-9e13-6c0c" targetId="fb8b-57b3-d46c-d679" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Javelin" hidden="false" id="bcbc-2d77-aaf4-71cf" subType="crew" sortIndex="1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3ef0-374c-d37f-38e2" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e80a-45d0-a803-c15b" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Javelin" typeId="92cf-ddd3-4d79-e408" typeName="Admiral" hidden="false" id="6753-3d62-6f1a-464b">
<characteristics>
<characteristic name="Level" typeId="391a-b7ae-831e-4cf0">3</characteristic>
<characteristic name="Special" typeId="2a6e-dc3c-846c-d4c2">-</characteristic>
</characteristics>
</profile>
<profile name="Heavy Sniper" typeId="705b-98a3-a21d-7118" typeName="Admiral Ability" hidden="false" id="4c47-6012-29da-5bda">
<characteristics>
<characteristic name="Cost" typeId="e725-1a05-f360-abc6">3AP</characteristic>
<characteristic name="Effect" typeId="49ae-26b2-d6ec-81aa">When you assign targets to a weapon with the Calibre-H special rule, the attacking Ship doubles its Scan value against H Tonnage Ships for that weapon’s attack (other attacks and weapons are unaffected).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="50"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Achilles Heavy Cruiser" hidden="false" id="2e04-8a3c-b9df-8260" type="selectionEntry" targetId="ddc5-947c-b560-d484" sortIndex="2">
<infoLinks>
<infoLink name="Regenerate-X" id="3ac2-10fb-6d59-b887" hidden="false" type="rule" targetId="df32-1b16-f0f9-7b85"/>
<infoLink name="Self Repairing Armour Systems" id="b42b-3637-6c8a-55d4" hidden="false" type="rule" targetId="9a6b-935a-9e3f-1c05"/>
</infoLinks>
<modifiers>
<modifier type="set" value="Regenerate-2, Self Repairing Armour Systems" field="fdf5-89b6-e62e-570f" affects="childs.recursive.model.profiles.Ship" join=", " scope="parent"/>
</modifiers>
<categoryLinks>
<categoryLink targetId="default-category" id="1ee2-9557-4023-b487" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="ea7c-94d5-a98b-fddb" primary="false" name="Medium Groups"/>
</categoryLinks>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="0" field="selections" scope="parent" shared="true" id="5881-ca82-de92-ecd1"/>
</constraints>
<modifiers>
<modifier type="set" value="-1" field="5881-ca82-de92-ecd1">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="7895-d441-b903-8bb2" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="false" name="----- Groups -----" hidden="true" id="b303-eea2-dff8-cd8d"/>
<selectionEntry type="upgrade" import="true" name="Remus Dreadnought" hidden="false" id="0950-b68a-8d06-12cd">
<categoryLinks>
<categoryLink targetId="52fa-6578-d171-57d6" id="15c8-c8fa-e6dd-f36e" primary="true" name="Colossal Groups"/>
<categoryLink targetId="default-category" id="14bc-2b81-67d7-4728" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Remus Dreadnought" hidden="false" id="6c3f-c518-ef63-d9dc" publicationId="6462-e99b-594c-193a" page="48">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="470"/>
</costs>
<categoryLinks>
<categoryLink name="Colossal Ship" hidden="false" id="fc46-d80b-b7a7-1049" targetId="6e44-cb75-e25f-8b24" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Remus" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="8de4-6124-3bc2-e1ac" publicationId="6462-e99b-594c-193a" page="48">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">6"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">12"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">14"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">25</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">2+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">3+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">4+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1c80-4f13-8c38-d8d4-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1c80-4f13-8c38-d8d4-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Apocalypse Cannon" hidden="false" id="a72f-7bed-871b-effa" type="selectionEntry" targetId="0aff-b5fa-c7c7-2f4d" sortIndex="1"/>
<entryLink import="true" name="Energy Glaive Battery" hidden="false" id="4955-7d4a-692e-6acd" type="selectionEntry" targetId="131f-bd0f-ed3a-84e0" sortIndex="2"/>
<entryLink import="true" name="Hornet Drone Hive" hidden="false" id="22a9-6dc1-a9cf-535c" type="selectionEntry" targetId="4f5c-a55e-37ee-fbbe" sortIndex="3"/>
<entryLink import="true" name="Torpedo" hidden="false" id="77f2-e8de-3f94-e01e" type="selectionEntry" targetId="54f4-8855-f1b9-fdf5" sortIndex="4"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Romulus Dreadnought" hidden="false" id="1b60-1121-d2d9-27b9">
<categoryLinks>
<categoryLink targetId="52fa-6578-d171-57d6" id="59f2-8457-f555-d231" primary="true" name="Colossal Groups"/>
<categoryLink targetId="default-category" id="b99a-2fb4-e470-ecc2" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Romulus Dreadnought" hidden="false" id="24f3-bf29-8263-56f4" publicationId="6462-e99b-594c-193a" page="47">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="450"/>
</costs>
<categoryLinks>
<categoryLink name="Colossal Ship" hidden="false" id="e1d3-4c50-c19a-0074" targetId="6e44-cb75-e25f-8b24" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Romulus" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="65b8-ecec-cf8d-0649" publicationId="6462-e99b-594c-193a" page="47">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">6"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">12"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">14"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">25</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">2+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">3+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">4+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c59c-a632-ac45-856c-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c59c-a632-ac45-856c-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Hypernova Laser" hidden="false" id="9ab3-7ad9-5e8b-f2c2" type="selectionEntry" targetId="d34c-e151-349f-1e33" sortIndex="1"/>
<entryLink import="true" name="Energy Glaive Battery" hidden="false" id="5213-7e33-5e04-3138" type="selectionEntry" targetId="694e-c9a3-913d-e953" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Rhadamanthus Battleship" hidden="false" id="6e34-bf2a-f70f-9aa6">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="4f01-f952-ce45-5bb6" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="2a3a-f1b3-f894-768b" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Rhadamanthus Battleship" hidden="false" id="b76a-6bb5-ace1-f6fa" publicationId="6462-e99b-594c-193a" page="46">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="215"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="3c8c-895a-5354-6bf7" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Rhadamanthus" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="989a-97f8-f150-b328" publicationId="6462-e99b-594c-193a" page="46">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">10"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">10"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">10"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">22</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">3+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">5+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f380-5506-e1c0-ba3a-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f380-5506-e1c0-ba3a-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Calibre Broadside" hidden="false" id="81ad-15e9-70cc-472c" type="selectionEntry" targetId="340b-f569-8189-5108" sortIndex="1"/>
<entryLink import="true" name="Neutron Missiles" hidden="false" id="1fc4-25e0-3f36-519b" type="selectionEntry" targetId="a485-107a-1180-728a" sortIndex="2"/>
<entryLink import="true" name="Hornet Drone Cluster" hidden="false" id="3e94-9e79-cbf1-1a6e" type="selectionEntry" targetId="1780-c172-abd0-6d3d" sortIndex="3"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Kairos Battleship" hidden="false" id="ee86-1308-9db9-6299">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="639a-83ac-4eb1-c08e" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="1657-f670-6fad-2d01" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Kairos Battleship" hidden="false" id="36dd-a940-8233-4715" publicationId="6462-e99b-594c-193a" page="45">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="205"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="2d6d-be81-6eab-a1ea" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Kairos" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="9165-01ae-84f5-ff20" publicationId="6462-e99b-594c-193a" page="45">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">10"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">10"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">10"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">22</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">3+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">5+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f04e-125a-343b-f05b-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f04e-125a-343b-f05b-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Laser Multi-Lance" hidden="false" id="eaf4-4270-0be5-7e27" type="selectionEntry" targetId="9fbc-7840-edb0-9d27" sortIndex="1"/>
<entryLink import="true" name="Neutron Missiles" hidden="false" id="0fbd-e1a2-1a45-218d" type="selectionEntry" targetId="a485-107a-1180-728a" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sarpedon Battleship" hidden="false" id="5621-21e8-7294-8b87">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="1961-15fb-3b73-802e" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="8e5d-740c-affa-76ba" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Sarpedon Battleship" hidden="false" id="b514-f04f-e379-f03e" publicationId="6462-e99b-594c-193a" page="44">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="235"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="d21b-afe9-2599-7ae3" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Sarpedon" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="bc21-ffad-5328-2491" publicationId="6462-e99b-594c-193a" page="44">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">6"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">16"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">10"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">22</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">3+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">5+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="08ef-205d-88e7-67b4-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="08ef-205d-88e7-67b4-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Meganova Laser" hidden="false" id="5f5c-c4cd-c37c-191a" type="selectionEntry" targetId="0620-f0eb-07da-c928" sortIndex="1"/>
<entryLink import="true" name="Laser Multi-Lance" hidden="false" id="c5cf-d01e-40c7-4026" type="selectionEntry" targetId="9fbc-7840-edb0-9d27" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Minos Battleship" hidden="false" id="8763-b0c6-5998-5e8f">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="71fe-1fd7-090e-3d6d" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="96e4-7dbf-2dee-2d81" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Minos Battleship" hidden="false" id="e28f-f45c-b779-2ce8" publicationId="6462-e99b-594c-193a" page="43">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="260"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="9cad-eb65-428c-bd67" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Minos" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="d63f-03c7-8a4d-a43d" publicationId="6462-e99b-594c-193a" page="43">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">6"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">10"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">10"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">22</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">3+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">5+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5de3-b509-9c3b-0f5c-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5de3-b509-9c3b-0f5c-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Calibre Triple Broadside" hidden="false" id="e281-512b-900a-766b" type="selectionEntry" targetId="7f13-4c1e-35bc-ad5b" sortIndex="1"/>
<entryLink import="true" name="Neutron Missiles" hidden="false" id="d246-ba08-18c1-079c" type="selectionEntry" targetId="a485-107a-1180-728a" sortIndex="2"/>
<entryLink import="true" name="Torpedo" hidden="false" id="a1b5-ef90-95ec-8277" type="selectionEntry" targetId="1ecd-8724-e3ea-ea21" sortIndex="3"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heracles Battleship" hidden="false" id="fc9e-c3b8-5f42-615c">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="81c6-9b7e-dcbb-cfe8" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="efb7-9814-690b-fc81" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Heracles Battleship" hidden="false" id="8b0c-9463-8922-0703" publicationId="6462-e99b-594c-193a" page="42">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="225"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="49e2-6b16-e5da-4e8a" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Heracles" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="ed18-4dba-dca9-069f" publicationId="6462-e99b-594c-193a" page="42">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">6"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">10"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">10"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">22</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">3+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">5+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="eb26-f949-2bd7-7411-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eb26-f949-2bd7-7411-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Calibre Triple Broadside" hidden="false" id="e4fa-9f9f-c45f-f2a5" type="selectionEntry" targetId="7f13-4c1e-35bc-ad5b" sortIndex="1"/>
<entryLink import="true" name="Dark Matter Cannon" hidden="false" id="7017-6e14-5eb6-27cd" type="selectionEntry" targetId="1eed-bc52-14ca-6925" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Agrippa Battlecruiser" hidden="false" id="a0af-fd5a-1456-74ee">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="c814-12ea-f7f0-47c4" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="efc2-2cb5-76fd-e575" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Agrippa Battlecruiser" hidden="false" id="422b-7f87-368e-c551" publicationId="6462-e99b-594c-193a" page="41">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="160"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="b129-edc5-1a37-a03f" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Agrippa" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="9c3e-31e6-4ed2-09e2" publicationId="6462-e99b-594c-193a" page="41">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">10"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">15</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">Holo-Debris Field</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ce39-2967-98ad-d877-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ce39-2967-98ad-d877-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Holographic Drones" hidden="false" id="f8a5-a33d-95a5-313c" type="selectionEntry" targetId="fc0f-285f-3cba-2254"/>
</entryLinks>
<infoLinks>
<infoLink name="Holo-Debris Field" id="cb2e-2fb2-e780-b97d" hidden="false" type="rule" targetId="8857-c5fc-0b83-e275"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Pompeius Battlecruiser" hidden="false" id="dfdb-5ed7-e81d-d2d9">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="e56d-dabe-79a9-817f" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="2201-68ee-e32a-2fa1" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Pompeius Battlecruiser" hidden="false" id="4e65-7590-edfe-166e" publicationId="6462-e99b-594c-193a" page="40">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="140"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="b87b-2741-4ae1-3636" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Pompeius" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="77e7-e2a7-d87c-f1d2" publicationId="6462-e99b-594c-193a" page="40">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">10"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">15</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7444-5ae2-44a3-f0c5-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7444-5ae2-44a3-f0c5-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Quad Battery" hidden="false" id="3ebe-c53a-e296-5c29" type="selectionEntry" targetId="d898-57f0-9449-2003"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Priam Battlecruiser" hidden="false" id="ae6b-c8c1-0302-2825">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="ba16-dd1c-79ac-8bac" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="a6b7-cf82-6c0d-7f41" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Priam Battlecruiser" hidden="false" id="43c3-a8cb-35d9-b863" publicationId="6462-e99b-594c-193a" page="39">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="230"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="b17c-66ea-1ade-bbd5" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Priam" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="e5f1-062c-d5c9-c3ef" publicationId="6462-e99b-594c-193a" page="39">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">8"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">15</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d0a1-4642-a78d-3504-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d0a1-4642-a78d-3504-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Light Calibre Broadside" hidden="false" id="ee23-6dcc-5373-b741" type="selectionEntry" targetId="59ca-a9be-70de-6eea" sortIndex="1"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="1540-3aba-d831-bbfd" type="selectionEntry" targetId="2fe0-cfd4-7c48-0f83" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Agamemnon Battlecruiser" hidden="false" id="b550-31c0-1b25-829b">
<categoryLinks>
<categoryLink targetId="8d99-053d-ffeb-98c5" id="9d10-7f07-185c-a619" primary="true" name="Heavy Groups"/>
<categoryLink targetId="default-category" id="4693-eb3e-99c1-8709" primary="false" name="Group"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Agamemnon Battlecruiser" hidden="false" id="58a3-a47e-ba97-f8c1" publicationId="6462-e99b-594c-193a" page="38">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="170"/>
</costs>
<categoryLinks>
<categoryLink name="Heavy Ship" hidden="false" id="3d4d-4dba-60e6-c63f" targetId="9d6f-26b0-7969-496b" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Agamemnon" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="f8bc-847b-ccde-b0a5" publicationId="6462-e99b-594c-193a" page="38">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">8"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">15</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="79a9-8475-31e4-014f-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="79a9-8475-31e4-014f-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Light Calibre Broadside" hidden="false" id="3b52-0c4d-288f-41d0" type="selectionEntry" targetId="59ca-a9be-70de-6eea" sortIndex="1"/>
<entryLink import="true" name="Medium Calibre Broadside" hidden="false" id="ad5a-d4ef-a3c3-b510" type="selectionEntry" targetId="21ae-c657-c054-890d" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ganymede Assault Troopship" hidden="false" id="ef2c-1c7b-5a13-0e53">
<categoryLinks>
<categoryLink targetId="default-category" id="11e0-a07d-c570-19d9" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="92d6-fb23-c49e-86ff" primary="true" name="Medium Groups"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ganymede Assault Troopship" hidden="false" id="3d81-72a8-e490-2260" publicationId="6462-e99b-594c-193a" page="37">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="170"/>
</costs>
<categoryLinks>
<categoryLink name="Medium Ship" hidden="false" id="5e7f-5cad-67e1-e6ce" targetId="53c3-afc0-63ef-413a" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Ganymede" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="a2ed-6e99-69fc-700f" publicationId="6462-e99b-594c-193a" page="37">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">7"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">13</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b1bb-cfcc-5875-ac86-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b1bb-cfcc-5875-ac86-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Bombardment Battery" hidden="false" id="3136-11d2-6c2e-12c9" type="selectionEntry" targetId="31dc-b3e8-52dc-bfcf" sortIndex="1"/>
<entryLink import="true" name="Medium Calibre Broadside" hidden="false" id="438b-c2e1-39d3-7f1e" type="selectionEntry" targetId="e2fc-fc8c-e7e4-82a6" sortIndex="2"/>
<entryLink import="true" name="Medium Calibre Turret" hidden="false" id="fa7a-0d09-d7f5-8389" type="selectionEntry" targetId="977b-b42b-23a9-4dd7" sortIndex="3"/>
<entryLink import="true" name="Bulk Landers" hidden="false" id="8c39-614b-7529-20db" type="selectionEntry" targetId="73d9-9564-99d8-a5c7" sortIndex="4"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Orpheus Assault Troopship" hidden="false" id="7130-fc17-006a-217a">
<categoryLinks>
<categoryLink targetId="default-category" id="fe10-2041-4dc9-2e12" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="3bb5-0c17-553e-51b9" primary="true" name="Medium Groups"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Orpheus Assault Troopship" hidden="false" id="8df8-71a7-07ab-2254" publicationId="6462-e99b-594c-193a" page="36">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="170"/>
</costs>
<categoryLinks>
<categoryLink name="Medium Ship" hidden="false" id="091e-b92a-f470-94ae" targetId="53c3-afc0-63ef-413a" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Orpheus" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="ad0f-1fe6-cdf6-2b95" publicationId="6462-e99b-594c-193a" page="36">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">7"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">13</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c7e9-2779-1c8c-1fcc-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c7e9-2779-1c8c-1fcc-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Light Calibre Broadside" hidden="false" id="0937-ac4a-7b46-10d0" type="selectionEntry" targetId="59ca-a9be-70de-6eea" sortIndex="1"/>
<entryLink import="true" name="Supernova Laser" hidden="false" id="242c-0682-c021-ea7a" type="selectionEntry" targetId="de49-c52e-f6e1-3399" sortIndex="2"/>
<entryLink import="true" name="Bulk Landers" hidden="false" id="bed7-635a-509a-70b5" type="selectionEntry" targetId="73d9-9564-99d8-a5c7" sortIndex="3"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sysyphus Heavy Cruiser" hidden="false" id="988e-c3cb-9eab-90b1">
<categoryLinks>
<categoryLink targetId="default-category" id="6253-d4d4-acc3-08e3" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="888f-0826-ef93-a4f5" primary="true" name="Medium Groups"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Sysyphus Heavy Cruiser" hidden="false" id="84e9-92a0-d09f-dd24" publicationId="6462-e99b-594c-193a" page="35">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="125"/>
</costs>
<categoryLinks>
<categoryLink name="Medium Ship" hidden="false" id="7fb6-bada-02fd-4dc9" targetId="53c3-afc0-63ef-413a" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Sysyphus" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="5f90-ae2f-ba50-7572" publicationId="6462-e99b-594c-193a" page="35">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">7"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">13</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dedd-fd05-fbb3-218a-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dedd-fd05-fbb3-218a-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Bombardment Battery" hidden="false" id="ffcd-7b2e-cc2c-ac27" type="selectionEntry" targetId="31dc-b3e8-52dc-bfcf" sortIndex="1"/>
<entryLink import="true" name="Light Calibre Broadside" hidden="false" id="d557-6ec6-694b-82cd" type="selectionEntry" targetId="95cd-9fbd-28c1-4096" sortIndex="2"/>
<entryLink import="true" name="Torpedo" hidden="false" id="0ff7-dde5-99bb-344d" type="selectionEntry" targetId="2333-5caa-d8f0-1fd5" sortIndex="3"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hector Heavy Cruiser" hidden="false" id="518e-03dd-6988-faf9">
<categoryLinks>
<categoryLink targetId="default-category" id="e244-8f7a-6edd-1825" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="bd9b-1640-7c7a-5c8a" primary="true" name="Medium Groups"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Hector Heavy Cruiser" hidden="false" id="180c-8c7e-527e-85e8" publicationId="6462-e99b-594c-193a" page="34">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="150"/>
</costs>
<categoryLinks>
<categoryLink name="Medium Ship" hidden="false" id="c128-139e-8636-8ad5" targetId="53c3-afc0-63ef-413a" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Hector" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="0d9c-bb00-f542-fd19" publicationId="6462-e99b-594c-193a" page="34">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">7"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">13</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d696-2373-7a5f-12ac-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d696-2373-7a5f-12ac-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Medium Calibre Broadside" hidden="false" id="df89-98f8-16a2-dd96" type="selectionEntry" targetId="21ae-c657-c054-890d" sortIndex="1"/>
<entryLink import="true" name="Twin Supernova Laser" hidden="false" id="648a-1d77-a9a8-b3c1" type="selectionEntry" targetId="946e-a3bc-7077-ecee" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bellerophon Heavy Cruiser" hidden="false" id="64f8-3f16-0e65-1a8d">
<categoryLinks>
<categoryLink targetId="default-category" id="4347-080e-a6bd-1cfa" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="369f-91ab-c007-4655" primary="true" name="Medium Groups"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Bellerophon Heavy Cruiser" hidden="false" id="9ede-56c9-9446-c4ce" publicationId="6462-e99b-594c-193a" page="33">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="210"/>
</costs>
<categoryLinks>
<categoryLink name="Medium Ship" hidden="false" id="640a-792f-6fbf-2560" targetId="53c3-afc0-63ef-413a" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Bellerophon" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="c0e5-946d-3a8b-9798" publicationId="6462-e99b-594c-193a" page="33">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">7"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">13</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="33b4-cebe-627e-8878-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="33b4-cebe-627e-8878-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Twin Supernova Laser" hidden="false" id="4ea3-a9e7-dfe2-904c" type="selectionEntry" targetId="946e-a3bc-7077-ecee" sortIndex="1"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="6587-79fd-013b-4c18" type="selectionEntry" targetId="2fe0-cfd4-7c48-0f83" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Achilles Heavy Cruiser" hidden="false" id="02ed-2702-3631-13be">
<categoryLinks>
<categoryLink targetId="default-category" id="7002-ba3b-4bb0-c222" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="9649-84ea-256d-bfe0" primary="true" name="Medium Groups"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Achilles Heavy Cruiser" hidden="false" id="ddc5-947c-b560-d484" publicationId="6462-e99b-594c-193a" page="32">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="145"/>
</costs>
<categoryLinks>
<categoryLink name="Medium Ship" hidden="false" id="52d7-2da5-bb0e-b9b3" targetId="53c3-afc0-63ef-413a" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Achilles" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="1ef8-73a5-43c2-0611" publicationId="6462-e99b-594c-193a" page="32">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">7"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">13</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">6+</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a3e1-ae5c-a3a7-9a14-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a3e1-ae5c-a3a7-9a14-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Calibre Broadside" hidden="false" id="94fd-7f17-48e8-bf23" type="selectionEntry" targetId="b9e0-01df-babb-da9d" sortIndex="1"/>
<entryLink import="true" name="Torpedo" hidden="false" id="21c3-b375-8c9d-277e" type="selectionEntry" targetId="2333-5caa-d8f0-1fd5" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Teucer Cruisers" hidden="false" id="8690-4ba5-4bd5-36d2">
<categoryLinks>
<categoryLink targetId="default-category" id="9cad-858c-b7d0-5456" primary="false" name="Group"/>
<categoryLink targetId="e555-ff57-c478-18cd" id="6845-91f4-ee3a-4bfe" primary="true" name="Medium Groups"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Teucer Cruiser" hidden="false" id="7637-3613-eab0-0b69" publicationId="6462-e99b-594c-193a" page="31">
<costs>
<cost name="pts" typeId="ab32-c9b6-10f3-cbdb" value="120"/>
</costs>
<categoryLinks>
<categoryLink name="Medium Ship" hidden="false" id="51c5-ca0d-9ef3-858d" targetId="53c3-afc0-63ef-413a" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Teucer" typeId="8a2d-efd5-4b60-f4fa" typeName="Ship" hidden="false" id="2929-d852-43f5-dc03" publicationId="6462-e99b-594c-193a" page="31">
<characteristics>
<characteristic name="Thrust" typeId="d821-4294-3117-e8a6">8"</characteristic>
<characteristic name="Scan" typeId="960a-5d0e-18c5-4310">8"</characteristic>
<characteristic name="Sig" typeId="4feb-14c2-b1f1-9fa5">6"</characteristic>
<characteristic name="Hull" typeId="5253-be1d-917b-17d9">11</characteristic>
<characteristic name="ES" typeId="42ae-03c9-d0ff-61da">3+</characteristic>
<characteristic name="KS" typeId="a4d4-4c63-1848-24f8">4+</characteristic>
<characteristic name="BS" typeId="05b6-9825-68e8-4983">-</characteristic>
<characteristic name="G" typeId="32ce-7bbb-1d0f-8c80">1-2</characteristic>
<characteristic name="Special" typeId="fdf5-89b6-e62e-570f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="423d-9354-9ee6-9172" includeChildSelections="false"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="cc3b-49d3-5b72-3363" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Medium Calibre Broadside" hidden="false" id="3fde-53ef-d92d-7269" type="selectionEntry" targetId="e2fc-fc8c-e7e4-82a6" sortIndex="1"/>
<entryLink import="true" name="Heavy Calibre Broadside" hidden="false" id="cb09-edba-096f-230a" type="selectionEntry" targetId="340b-f569-8189-5108" sortIndex="2"/>
<entryLink import="true" name="Supernova Laser" hidden="false" id="2391-caac-2f6a-18ff" type="selectionEntry" targetId="de49-c52e-f6e1-3399" sortIndex="3"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>