forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImperium - Deathwatch.cat
7950 lines (7933 loc) · 613 KB
/
Imperium - Deathwatch.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 id="203b-f8dd-2a64-2676" name="Imperium - Adeptus Astartes - Deathwatch" revision="130" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Technoblazed" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="185" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="1973-efc9-3214-865a" name="Codex: Space Marines"/>
<publication id="b8dc-efc0-c6b3-2c9f" name="Codex Supplement: Deathwatch" publisher="Codex Supplement: Deathwatch" publicationDate="2020-11-07" publisherUrl="https://www.games-workshop.com/en-GB/Codex-Supplement-Deathwatch-EN-2020"/>
</publications>
<profileTypes>
<profileType id="9274-6dd0-4017-311d" name="Reiver Wargear">
<characteristicTypes>
<characteristicType id="acbb-e636-87f5-bef3" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="54ec-f8b4-8cb9-4e5b" name="Vanguard Wargear">
<characteristicTypes>
<characteristicType id="687d-45c2-63b7-9859" name="Vanguard Wargear"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="e45d-7039-02ab-dc2b" name="Repulsor Executioner" hidden="false"/>
<categoryEntry id="02f8-606f-03d2-17cd" name="Watch Master" hidden="false"/>
<categoryEntry id="89d9-d083-eea1-1d31" name="Deathwatch" hidden="false"/>
<categoryEntry id="414a-9488-2c1b-b1ca" name="Watch Captain Artemis" hidden="false"/>
<categoryEntry id="ab37-765c-f5a5-2234" name="Chaplain Cassius" hidden="false"/>
<categoryEntry id="f390-7785-ce03-c8ed" name="Corvus Blackstar" hidden="false"/>
<categoryEntry id="a996-db28-454e-2af4" name="Bikers" hidden="false"/>
<categoryEntry id="2ea3-2e45-71eb-e017" name="Veteran Bike Squad" hidden="false"/>
<categoryEntry id="b65e-48e1-82dc-210a" name="Deathwatch Terminator Squad" hidden="false"/>
<categoryEntry id="52fb-9973-e2c2-78fc" name="Kill Team" hidden="false"/>
<categoryEntry id="bcda-ed2e-436a-073b" name="Smokescreen" hidden="false"/>
<categoryEntry id="f664-1607-ee42-02f5" name="Kill Team Cassius" hidden="false"/>
<categoryEntry id="6653-4e04-1c07-cfd9" name="Veterans" hidden="false"/>
<categoryEntry id="9a88-8fe2-775a-b6f9" name="Indomitor" hidden="false"/>
<categoryEntry id="2ed1-d696-4712-9a12" name="Spectrus" hidden="false"/>
<categoryEntry id="fc85-64c5-fa86-7cd1" name="Shock Grenades" hidden="false"/>
<categoryEntry id="c199-2542-af52-c960" name="Fortis" hidden="false"/>
<categoryEntry id="f6f1-df1e-26c4-9352" name="Codicier Natorian" hidden="false"/>
<categoryEntry id="3e6e-da4d-53e1-2b2e" name="Proteus" hidden="false"/>
<categoryEntry id="46b3-3337-f1a7-4bf3" name="Aquila" hidden="false"/>
<categoryEntry id="d52c-0285-78ad-d56f" name="Venator" hidden="false"/>
<categoryEntry id="8f8f-4a7c-917b-058a" name="Dominatus" hidden="false"/>
<categoryEntry id="2fc9-9264-7f00-1903" name="Furor" hidden="false"/>
<categoryEntry id="d0f7-934a-f461-2e54" name="Malleus" hidden="false"/>
<categoryEntry id="738e-6c7f-fcbc-159b" name="Purgatus" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="824b-8a43-9d8d-271f" name="Lieutenants" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b79c-4214-1bdc-2d09" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6bd2-66ab-eb8a-958e" name="Company Heroes" hidden="false" targetId="b6ba-39af-6402-3665" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c92d-f9c4-5369-0f17" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8433-3fda-7424-082b" name="Up to Two" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="540f-507a-d31b-51eb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5c0-59ff-5e60-c043" type="min"/>
</constraints>
<entryLinks>
<entryLink id="92a6-190a-1382-3df3" name="Lieutenant" hidden="false" collective="false" import="true" targetId="e176-3548-2126-02c8" type="selectionEntry">
<entryLinks>
<entryLink id="070b-d789-8e67-2540" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="0abd-f7b9-c7bf-bfe5" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="2c24-4ce8-6c42-5e7b" name="Lieutenant in Phobos Armour" hidden="false" collective="false" import="true" targetId="dacf-c1ae-563f-3632" type="selectionEntry">
<entryLinks>
<entryLink id="955b-b874-b197-c21b" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="809a-9743-f942-2054" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="a92d-8130-0fe7-f229" name="Lieutenant in Reiver Armour" hidden="false" collective="false" import="true" targetId="692c-72aa-bfa3-204f" type="selectionEntry">
<entryLinks>
<entryLink id="3e26-800b-a2ee-4d93" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="85ac-1736-941f-b594" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="3f28-d757-4891-f65e" name="Primaris Lieutenant" hidden="false" collective="false" import="true" targetId="13fa-cbe0-ef6c-a134" type="selectionEntry">
<entryLinks>
<entryLink id="1de6-63ef-aea7-24be" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="c719-b068-01d5-0112" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="40f4-567b-b152-7d1e" name="Chapter Selection: Deathwatch" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c71f-e220-f1ad-a5fa" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b50-e9c6-8a22-1c81" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="3d6c-4f50-9636-775f" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
<categoryLink id="25f0-d9da-39fa-c509" name="PC: DW" hidden="false" targetId="13a6-f183-3eb6-1c34" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="27ab-90f6-8d21-ba3a" name="Land Raider Variant (Open Play)" hidden="false" collective="false" import="true" targetId="5ea6-c789-f6b9-5c00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cfc5-43e4-b02e-d1f9" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="f3ed-e5d1-2998-e493" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="caef-9500-0cd4-38a4" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ee52-2e3f-99af-3537" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="618b-288c-760b-f909" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="b104-9b93-3ad5-8adf" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="4f26-234b-4bee-bd2e" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="caff-0c36-cde6-42ca" name="Astraeus Super-heavy Tank" hidden="false" collective="false" import="true" targetId="2faf-85ff-2008-1a28" type="selectionEntry"/>
<entryLink id="cc9f-cd87-7830-20f1" name="Caestus Assault Ram" hidden="false" collective="false" import="true" targetId="5c09-08ad-2a0f-fbc9" type="selectionEntry">
<infoLinks>
<infoLink id="fdfd-b287-fb2a-3732" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="dfa3-24ac-00d8-0e05" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8b29-8069-96bc-f632" name="Castellum Stronghold [Legends]" hidden="false" collective="false" import="true" targetId="8ae2-6460-9014-1f13" type="selectionEntry"/>
<entryLink id="09de-1ffd-e172-fd67" name="Chaplain Venerable Dreadnought [Legends]" hidden="false" collective="false" import="true" targetId="28af-fce8-2f9c-0145" type="selectionEntry">
<selectionEntryGroups>
<selectionEntryGroup id="994f-8b38-2a2b-f6ea" name="Stratagems" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="c002-9c6a-b4c6-6a9e" name="Stratagem: A Vigil Unmatched" hidden="false" collective="false" import="true" targetId="4224-8526-e82d-518c" type="selectionEntry"/>
<entryLink id="2a7a-6454-99e2-7352" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="5efd-6285-c9f7-2a5a" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5ed6-c0cf-aaa0-e8d1" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="e700-70cd-69f9-c863" name="Warlord" hidden="false" collective="false" import="true" targetId="01cf-00c7-c4af-701b" type="selectionEntry"/>
<entryLink id="1184-c435-281e-c241" name="Litanies" hidden="false" collective="false" import="true" targetId="3081-e191-b356-8ff8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="91e0-d2a7-fa22-f1a9" name="Contemptor Mortis Dreadnought" hidden="false" collective="false" import="true" targetId="2149-8a56-0274-5e59" type="selectionEntry">
<infoLinks>
<infoLink id="0ca4-49c5-9a1e-48b8" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="150d-842f-87d0-0583" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5920-c1f9-d48c-006c" name="Damocles Command Rhino" hidden="false" collective="false" import="true" targetId="7f53-6376-cd1f-8356" type="selectionEntry">
<infoLinks>
<infoLink id="8e7e-e09a-0f29-6b56" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="3afb-6a32-979e-5e75" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="cfc2-bc53-14fb-c35b" name="Deathstorm Drop Pod" hidden="false" collective="false" import="true" targetId="6d7b-340f-c91b-98ac" type="selectionEntry">
<infoLinks>
<infoLink id="52ff-fb65-b942-0cb5" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="88cb-9c53-23fc-5cab" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="0cb6-2c8b-ca3f-4d0f" name="Deimos Pattern Relic Predator" hidden="false" collective="false" import="true" targetId="b048-66f2-3f07-e5ec" type="selectionEntry">
<infoLinks>
<infoLink id="c8d7-86a4-e0fe-6c52" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="8e13-b075-bd66-dd5d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="f9f7-e56d-2846-b730" name="Deimos Pattern Vindicator Laser Destroyer" hidden="false" collective="false" import="true" targetId="1cc4-d166-fe8b-d4c7" type="selectionEntry">
<infoLinks>
<infoLink id="46ba-3e7a-a71b-c2d7" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="9300-f034-8681-12ea" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="7700-d8b4-e625-afc9" name="Fire Raptor Assault Gunship" hidden="false" collective="false" import="true" targetId="e385-ed6c-8c89-72fa" type="selectionEntry">
<infoLinks>
<infoLink id="cd0a-ef98-6a40-bb25" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="cc8a-4497-fd87-b460" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="311c-4902-59f8-a856" name="Land Raider Achilles" hidden="false" collective="false" import="true" targetId="cda6-03b8-b84c-777e" type="selectionEntry">
<infoLinks>
<infoLink id="b2ef-6379-ed60-3470" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0919-dd41-62df-f895" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="cd37-9943-0ac2-7299" name="Land Raider Helios" hidden="false" collective="false" import="true" targetId="2d29-c013-02f4-1b69" type="selectionEntry">
<infoLinks>
<infoLink id="fb05-ca83-12a9-cc1e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="8397-391a-e15d-edc4" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3a64-e53f-9af1-bfd4" name="Land Raider Prometheus" hidden="false" collective="false" import="true" targetId="63f2-ec41-a54f-9c67" type="selectionEntry">
<infoLinks>
<infoLink id="c59e-ac21-5921-fb08" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="d075-9d31-8c00-22ed" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="1fa1-baf3-9134-c600" name="Land Speeder Tempest" hidden="false" collective="false" import="true" targetId="fe5a-52a1-e42a-51cd" type="selectionEntry">
<infoLinks>
<infoLink id="94cb-0d11-5abf-df98" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="27ed-77c4-8435-9615" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="41ae-be8d-63ce-d3f8" name="Lucius Pattern Dreadnought Drop Pod" hidden="false" collective="false" import="true" targetId="9c15-a12b-ee50-d1b1" type="selectionEntry">
<infoLinks>
<infoLink id="e7f3-9aa3-9ca6-7f5d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="3089-1106-6241-c32d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="438e-11bf-cc76-772f" name="Mortis Dreadnought" hidden="false" collective="false" import="true" targetId="8f67-d315-b9ff-f564" type="selectionEntry">
<infoLinks>
<infoLink id="263a-d1c4-7b31-448d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="7303-2e13-11c7-c015" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="aaf9-9b5a-09f7-5217" name="Rapier Carrier" hidden="false" collective="false" import="true" targetId="58a4-c616-2b06-62bd" type="selectionEntry">
<infoLinks>
<infoLink id="43d9-7a7e-a801-7f61" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6501-8bfc-e1a8-4291" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="2d86-08f8-ab26-dc70" name="Relic Cerberus Heavy Tank Destroyer" hidden="false" collective="false" import="true" targetId="c0a4-cc23-05db-0069" type="selectionEntry">
<infoLinks>
<infoLink id="fb91-5125-899e-55a6" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e913-a575-10c6-4991" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3b7b-42d8-ea20-06d6" name="Relic Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="45f1-772c-0091-a1a8" type="selectionEntry">
<infoLinks>
<infoLink id="b33a-a614-f07a-c56c" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="02f9-8720-4638-3558" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="4ce0-925b-3c55-ecfb" name="Relic Deredeo Dreadnought" hidden="false" collective="false" import="true" targetId="6827-21ac-bb87-2c55" type="selectionEntry">
<infoLinks>
<infoLink id="e9d3-0da5-aafb-3592" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="5098-15a0-53ea-2956" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3bbd-e3c9-ba79-ea25" name="Relic Falchion Super-heavy Tank Destroyer" hidden="false" collective="false" import="true" targetId="29dc-03dd-48c0-b827" type="selectionEntry">
<infoLinks>
<infoLink id="2d9d-1df2-6662-2406" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="7d8e-2c52-d772-7e78" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3fb3-0969-50e0-540f" name="Relic Fellblade Super-heavy Tank" hidden="false" collective="false" import="true" targetId="eb31-fd4c-d1ec-98a8" type="selectionEntry">
<infoLinks>
<infoLink id="399d-d58f-72eb-6b6d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e898-84ec-cf9a-6e40" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="058e-5c7f-0975-6c46" name="Relic Javelin Attack Speeder" hidden="false" collective="false" import="true" targetId="f7e4-a2c8-e56f-771f" type="selectionEntry">
<infoLinks>
<infoLink id="ca6e-e03b-e435-8505" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="f372-3165-76ce-1468" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="582a-6b27-b611-bb96" name="Relic Land Raider Proteus" hidden="false" collective="false" import="true" targetId="1c6e-951e-b7b2-d0b5" type="selectionEntry">
<infoLinks>
<infoLink id="b193-4df2-02b8-1518" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="b08b-3443-b80b-f131" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5ff9-918a-645a-b28f" name="Relic Leviathan Dreadnought" hidden="false" collective="false" import="true" targetId="945d-3e51-177b-81a4" type="selectionEntry">
<infoLinks>
<infoLink id="8338-60a8-f944-4da3" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6dca-5dd8-192e-8c86" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5bf8-3323-9155-c6db" name="Relic Mastodon Super-heavy Siege Transport" hidden="false" collective="false" import="true" targetId="f234-bce0-e518-5f66" type="selectionEntry">
<infoLinks>
<infoLink id="266a-b7fb-fcdf-e82f" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="2ae2-99ad-823f-3485" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="544e-4472-95e8-92c0" name="Relic Sicaran Arcus Strike Tank" hidden="false" collective="false" import="true" targetId="eb92-5053-3d5f-745d" type="selectionEntry">
<infoLinks>
<infoLink id="03bf-3f5c-8fad-840b" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="fe28-ab59-6060-8a2e" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="4d5b-86a5-29c7-64cb" name="Relic Sicaran Battle Tank" hidden="false" collective="false" import="true" targetId="205b-9bbc-256d-54e9" type="selectionEntry">
<infoLinks>
<infoLink id="6983-d5c0-1b07-5791" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="c48b-95b7-1a96-d71f" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="eea7-918e-7eeb-3fe0" name="Relic Sicaran Omega Tank Destroyer" hidden="false" collective="false" import="true" targetId="ae08-6f34-f510-66fb" type="selectionEntry">
<infoLinks>
<infoLink id="06b3-220c-7320-af9e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6e44-a29e-63a6-2d6d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="f5a1-e539-7022-398c" name="Relic Sicaran Punisher Assault Tank" hidden="false" collective="false" import="true" targetId="0260-ed3e-73b7-b490" type="selectionEntry">
<infoLinks>
<infoLink id="6d7d-8985-0158-5a6f" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="474c-e90a-91b8-12da" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8d45-5797-9090-0437" name="Relic Sicaran Venator Tank Destroyer" hidden="false" collective="false" import="true" targetId="c1c8-a93d-9eec-e2a1" type="selectionEntry">
<infoLinks>
<infoLink id="ac26-987c-54dc-78be" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="92bd-0ffc-d251-743d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3b0f-6c60-d395-fe8d" name="Relic Spartan Assault Tank" hidden="false" collective="false" import="true" targetId="251c-52c6-b76e-f737" type="selectionEntry">
<infoLinks>
<infoLink id="8bef-c504-c2dd-fdb4" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e0a8-1996-8f4e-782d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="4c31-61da-b37e-77ab" name="Relic Typhon Heavy Siege Tank" hidden="false" collective="false" import="true" targetId="e2b1-8e57-c071-300a" type="selectionEntry">
<infoLinks>
<infoLink id="6f80-7b95-b541-52fe" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="469d-401e-b057-8cb6" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="ed4e-e47a-951a-ba6f" name="Relic Whirlwind Scorpius" hidden="false" collective="false" import="true" targetId="8a97-e37c-1e15-dbf7" type="selectionEntry">
<infoLinks>
<infoLink id="d95b-54c1-bef3-4bd3" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="10c0-7aed-16e8-2c5b" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3ca9-bd41-9639-bc65" name="Sokar Pattern Stormbird" hidden="false" collective="false" import="true" targetId="c5c5-9229-e931-8bb7" type="selectionEntry">
<infoLinks>
<infoLink id="07b5-3c87-c3f3-d402" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="bcac-ddef-0417-afd1" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8ed6-3d09-dae7-16a5" name="Storm Eagle Assault Gunship" hidden="false" collective="false" import="true" targetId="fe69-c329-dccc-975d" type="selectionEntry">
<infoLinks>
<infoLink id="8959-d09c-80aa-9a3e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="c67f-df73-7a49-8284" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="ff77-027a-2990-e66c" name="Tarantula Air Defence Battery" hidden="false" collective="false" import="true" targetId="9bf8-a4fa-ed66-4c2f" type="selectionEntry">
<infoLinks>
<infoLink id="f377-e7e3-9c70-ef3b" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="dd8a-26f2-7eac-fc43" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5464-8109-d599-8051" name="Tarantula Sentry Gun" hidden="false" collective="false" import="true" targetId="3021-f871-0263-ccb1" type="selectionEntry">
<infoLinks>
<infoLink id="dacf-e30c-b25f-8e02" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6de1-2bc0-a6d1-ec93" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3240-3762-a8f1-6846" name="Terrax-Pattern Termite Assault Drill" hidden="false" collective="false" import="true" targetId="732b-967e-1bca-5846" type="selectionEntry">
<infoLinks>
<infoLink id="fb77-3cb5-d675-3d24" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="d93e-fd6d-63a6-d865" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6e1d-652a-af27-c9d4" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4852-60c9-6ba8-41d0" name="Thunderhawk Assault Gunship" hidden="false" collective="false" import="true" targetId="1ea8-e5a1-3a69-7697" type="selectionEntry">
<infoLinks>
<infoLink id="65ff-53b4-1e84-804e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="559d-6169-cf15-6af3" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="1daf-078b-53cf-af15" name="Thunderhawk Transporter" hidden="false" collective="false" import="true" targetId="0caa-04e2-7796-7750" type="selectionEntry">
<infoLinks>
<infoLink id="a689-c7f6-da1a-37e5" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="b657-f7c1-aeb4-861e" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="9294-7cf5-3611-8729" name="Whirlwind Hyperios" hidden="false" collective="false" import="true" targetId="7a7c-01f5-bf0d-ae16" type="selectionEntry">
<infoLinks>
<infoLink id="c386-708b-3b75-244e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="23c0-6c56-41d6-3752" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="b05b-fb52-da0b-8d65" name="Xiphon Interceptor" hidden="false" collective="false" import="true" targetId="1327-c39f-b3aa-63c5" type="selectionEntry">
<infoLinks>
<infoLink id="8437-a6d0-4645-8707" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0ff5-4425-983b-e147" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="bceb-2fd8-bd33-6304" name="Operative Requisition Sanctioned" hidden="false" collective="false" import="true" targetId="0b7d-bfe1-b63e-ecb6" type="selectionEntry"/>
<entryLink id="f25b-0654-477f-71af" name="Ephrael Stern and Kyganil of the Bloody Tears" hidden="false" collective="false" import="true" targetId="7dca-e055-7a15-4bf3" type="selectionEntry">
<categoryLinks>
<categoryLink id="f914-2260-4123-9e76" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="77dc-a9d7-2ac8-5b0f" name="Assault Intercessor Squad" hidden="false" collective="false" import="true" targetId="2ab1-1cf3-acbf-530e" type="selectionEntry">
<categoryLinks>
<categoryLink id="1421-231b-43ff-81b1" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3460-6af8-6c8a-6cf3" name="Bladeguard Ancient" hidden="false" collective="false" import="true" targetId="0dac-86be-d7a0-9dd8" type="selectionEntry">
<categoryLinks>
<categoryLink id="910a-5830-8712-0a03" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7c74-e4c6-8ca7-d032" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="d9c9-67d4-a8b1-9ec0" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="963a-29cf-0d60-05c8" name="Bladeguard Veteran Squad" hidden="false" collective="false" import="true" targetId="0da5-bbc7-769c-7ae4" type="selectionEntry">
<categoryLinks>
<categoryLink id="9623-e226-0448-c6e1" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1d48-6733-b6f6-0c40" name="Judiciar" hidden="false" collective="false" import="true" targetId="335d-a06f-0afb-c749" type="selectionEntry">
<categoryLinks>
<categoryLink id="b3c0-d2e4-d3a1-9a5a" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="d0fa-5747-9bb3-bd09" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="414d-9d8c-dde0-9f99" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="d0d5-d541-b945-16bc" name="Eradicator Squad" hidden="false" collective="false" import="true" targetId="17cc-76ac-ab20-fae6" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e7c-3e9f-2bb7-6b5e" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="595a-6c78-5a78-d386" name="Primaris Captain" hidden="false" collective="false" import="true" targetId="5eda-df7b-e300-499e" type="selectionEntry">
<categoryLinks>
<categoryLink id="5c02-173f-9fdf-7220" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="6bbe-9924-03af-67bd" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="c581-4d06-21b7-dc4f" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="f86a-42b1-b3d3-2592" name="Captain in Phobos Armour" hidden="false" collective="false" import="true" targetId="04ca-503e-38b7-0380" type="selectionEntry">
<categoryLinks>
<categoryLink id="055d-48f3-6b49-0ffb" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="cf8a-172e-58dd-45e2" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="c66c-6c7e-66e2-36ed" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="d347-7d38-c5db-08b7" name="Captain in Gravis Armor" hidden="false" collective="false" import="true" targetId="5854-3db8-6043-ce0b" type="selectionEntry">
<categoryLinks>
<categoryLink id="1d3c-9536-0d8b-78c7" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c12c-979a-4202-064f" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="0bcb-25cd-49cf-8321" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="0a3f-3ed2-c365-4007" name="Captain in Terminator Armor" hidden="false" collective="false" import="true" targetId="79ab-3318-ac01-06d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="2ac6-0e85-429e-3ddf" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="063a-f839-dad8-f631" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="9b58-6b61-91af-2540" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="4f04-45b0-1efa-ff73" name="Captain" hidden="false" collective="false" import="true" targetId="a0b8-6a5c-ea09-44f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="85a8-ef68-27c0-92e2" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="bed5-c792-2be2-63bb" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="52ae-70e2-666a-19c5" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="40fa-b025-b0f6-91a3" name="Primaris Librarian" hidden="false" collective="false" import="true" targetId="2603-7d82-fde3-aedd" type="selectionEntry">
<categoryLinks>
<categoryLink id="4866-bee7-95d7-65dd" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="912f-be5d-5175-b7c6" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="3d3f-8a17-3acc-99e2" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="9beb-a1b1-399f-4d2d" name="Disciplines" hidden="false" collective="false" import="true" targetId="6fd3-f64a-15ea-1033" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="84ab-22d6-90a6-ea9d" name="Librarian" hidden="false" collective="false" import="true" targetId="e0af-48b6-0d42-6525" type="selectionEntry">
<categoryLinks>
<categoryLink id="5a9f-29fd-539f-3526" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c9a7-4c5b-6647-c691" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="0812-39d1-0971-4ee5" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="492d-9622-975e-cc07" name="Disciplines" hidden="false" collective="false" import="true" targetId="6fd3-f64a-15ea-1033" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="3cfe-97c2-91c4-4a98" name="Librarian in Phobos Armour" hidden="false" collective="false" import="true" targetId="4f17-85bd-3950-4210" type="selectionEntry">
<categoryLinks>
<categoryLink id="78ba-a885-ef8a-2bbc" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8417-dabe-c606-591a" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="dfe1-46b4-75eb-4cf0" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="6bc5-14cd-b368-a067" name="Disciplines" hidden="false" collective="false" import="true" targetId="6fd3-f64a-15ea-1033" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="0a09-bbf3-ab85-c0c8" name="Librarian in Terminator Armor" hidden="false" collective="false" import="true" targetId="33b2-f596-1a44-a2a0" type="selectionEntry">
<categoryLinks>
<categoryLink id="6018-8eb6-1667-db3c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="444a-8e29-cb70-3558" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="db62-fcf2-0f34-65d6" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="7d83-82d4-0d3f-9332" name="Disciplines" hidden="false" collective="false" import="true" targetId="6fd3-f64a-15ea-1033" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="81ba-04ab-fa1f-f6ef" name="Primaris Chaplain" hidden="false" collective="false" import="true" targetId="b539-2e47-1a8f-d7d8" type="selectionEntry">
<categoryLinks>
<categoryLink id="531e-27d1-6534-46bf" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8a0c-c3b1-23f6-85c6" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="4fae-de78-a1c6-64f6" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="7cd7-c96a-dfed-1831" name="Litanies" hidden="false" collective="false" import="true" targetId="3081-e191-b356-8ff8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="59bf-22e5-1117-076c" name="Chaplain in Terminator Armour" hidden="false" collective="false" import="true" targetId="6876-9f56-4e02-5400" type="selectionEntry">
<categoryLinks>
<categoryLink id="223b-a1e8-d350-afe3" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2660-2da9-5b41-c0b6" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="9ebe-c9cf-9bb9-97e7" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="e12c-121c-c193-0db9" name="Litanies" hidden="false" collective="false" import="true" targetId="3081-e191-b356-8ff8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="27a9-81d5-009f-5465" name="Chaplain" hidden="false" collective="false" import="true" targetId="400e-bbea-4690-6942" type="selectionEntry">
<categoryLinks>
<categoryLink id="4f5e-5284-9cb1-9451" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="382c-19d2-8915-ddd8" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="dcae-b641-f32c-1672" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="05bd-e656-e51b-09eb" name="Litanies" hidden="false" collective="false" import="true" targetId="3081-e191-b356-8ff8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="6009-f771-7846-9099" name="Servitors" hidden="false" collective="false" import="true" targetId="2449-8cca-dc0e-dcbb" type="selectionEntry">
<categoryLinks>
<categoryLink id="b275-a9b5-e8ee-98cd" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="862f-68b4-5aaf-50ed" name="Techmarine" hidden="false" collective="false" import="true" targetId="f8cb-6182-08e4-e22b" type="selectionEntry">
<categoryLinks>
<categoryLink id="8211-905f-76d9-c02d" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="9cba-d18d-6029-ba93" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="be4a-1889-829f-a116" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="ade4-9d0f-68e3-fafa" name="Intercessor Squad" hidden="false" collective="false" import="true" targetId="e89e-4431-97de-4b38" type="selectionEntry">
<categoryLinks>
<categoryLink id="10ac-d00c-7a55-04e4" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2680-5735-4329-652d" name="Infiltrator Squad" hidden="false" collective="false" import="true" targetId="4d98-5c31-6b1c-9002" type="selectionEntry">
<categoryLinks>
<categoryLink id="8054-89d3-84df-9a96" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="489c-b010-1160-cda7" name="Company Champion" hidden="false" collective="false" import="true" targetId="c4ab-433a-ad56-2172" type="selectionEntry">
<categoryLinks>
<categoryLink id="fb9d-5507-ba1a-9905" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="e4ac-54be-40f4-4819" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="6d62-bf51-91a4-9e38" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="5057-230a-59d2-db1b" name="Primaris Apothecary" hidden="false" collective="false" import="true" targetId="2cc5-ebdd-f833-74f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="519e-ee35-83dd-a0cc" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="0f27-ee72-fbed-ac94" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="1e02-90cd-a589-1f9b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="b915-b242-641d-45d9" name="Apothecary" hidden="false" collective="false" import="true" targetId="4739-10df-55b8-6330" type="selectionEntry">
<categoryLinks>
<categoryLink id="0c99-e8f1-2d88-b819" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7b0b-8ee1-3d20-9087" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="b615-a39b-ae4c-7964" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="2302-a0ce-2d9f-d504" name="Company Ancient" hidden="false" collective="false" import="true" targetId="0e51-de2e-2557-b79e" type="selectionEntry">
<categoryLinks>
<categoryLink id="ce71-b46b-a047-3346" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="0dcb-d087-f5f6-0bcc" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="9676-c4df-b0fb-662a" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="6502-ce11-bb9a-4677" name="Primaris Ancient" hidden="false" collective="false" import="true" targetId="58f2-f816-58f2-0b94" type="selectionEntry">
<categoryLinks>
<categoryLink id="e372-1e3c-fdc2-ba0c" name="Elites" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="02cf-e870-05ea-f568" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="f664-61a9-ef3f-7d30" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="b8e1-d1fa-18bf-448c" name="Ancient in Terminator Armor" hidden="false" collective="false" import="true" targetId="5654-2e3b-1351-bed9" type="selectionEntry">
<categoryLinks>
<categoryLink id="9231-7da8-b9ef-1f37" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="733c-45df-e169-3f62" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="b5d5-1ac5-c724-a540" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="863b-87f2-ecf6-dc2d" name="Company Veterans" hidden="false" collective="false" import="true" targetId="339f-3bb9-0c10-034b" type="selectionEntry">
<categoryLinks>
<categoryLink id="b071-fe43-5929-3e43" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4ab3-57c8-053c-8757" name="Vanguard Veteran Squad" hidden="false" collective="false" import="true" targetId="f09f-9a11-0bd0-40a3" type="selectionEntry">
<categoryLinks>
<categoryLink id="9dc3-65a7-837e-4ef6" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a97c-fadd-875c-8818" name="Reiver Squad" hidden="false" collective="false" import="true" targetId="7046-e724-263b-4b74" type="selectionEntry">
<categoryLinks>
<categoryLink id="8adb-f2f3-63ca-b1a1" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="11c5-393c-41e0-186c" name="Aggressor Squad" hidden="false" collective="false" import="true" targetId="0f7e-ce51-f92d-0138" type="selectionEntry">
<categoryLinks>
<categoryLink id="8635-d2f5-1689-1412" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3648-744c-14ae-b02c" name="Terminator Assault Squad" hidden="false" collective="false" import="true" targetId="418f-04b7-2679-eddf" type="selectionEntry">
<categoryLinks>
<categoryLink id="d06a-c6ce-118a-e5db" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="418c-53f2-55a6-b5ae" name="Terminator Squad" hidden="false" collective="false" import="true" targetId="7b2e-47fe-ee40-8b35" type="selectionEntry">
<categoryLinks>
<categoryLink id="9648-bfae-1bad-de8d" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9f9e-5b47-cd59-9e32" name="Centurion Assault Squad" hidden="false" collective="false" import="true" targetId="cd3c-39b0-b3be-0e35" type="selectionEntry">
<categoryLinks>
<categoryLink id="2135-a4f1-ff48-9ad1" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c820-dbea-1de5-3a66" name="Invictor Tactical Warsuit" hidden="false" collective="false" import="true" targetId="2c7f-89cd-0078-fb70" type="selectionEntry">
<categoryLinks>
<categoryLink id="aef3-6d48-dac4-f635" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6840-c6ac-3884-788b" name="Dreadnought" hidden="false" collective="false" import="true" targetId="002e-7c43-59e8-3496" type="selectionEntry">
<categoryLinks>
<categoryLink id="4ff5-93a0-062e-59a9" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f42c-4dd3-c85f-b9e1" name="Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="5912-3f43-75c1-f85c" type="selectionEntry">
<categoryLinks>
<categoryLink id="aa79-96ec-a6d3-78b1" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="28a5-8d57-f277-4bc6" name="Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="ab51-c3f2-9c5a-ecd2" type="selectionEntry">
<categoryLinks>
<categoryLink id="0012-522f-7914-b1a8" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9837-57b0-7599-1f2f" name="Ironclad Dreadnought" hidden="false" collective="false" import="true" targetId="ddfd-70c4-fce9-b2ea" type="selectionEntry">
<categoryLinks>
<categoryLink id="81df-40a6-414a-3ce6" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9238-7f2c-8231-5a44" name="Redemptor Dreadnought" hidden="false" collective="false" import="true" targetId="ba12-f033-1337-ef00" type="selectionEntry">
<categoryLinks>
<categoryLink id="3417-8165-be2f-eb56" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a07a-a223-7e8a-8d6f" name="Outrider Squad" hidden="false" collective="false" import="true" targetId="a977-6081-02ad-35ff" type="selectionEntry">
<categoryLinks>
<categoryLink id="9a25-b7e4-6ec3-0164" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="789e-232b-88ee-e634" name="Invader ATV Squad" hidden="false" collective="false" import="true" targetId="1844-65d8-4305-0617" type="selectionEntry">
<categoryLinks>
<categoryLink id="3929-d66f-8d53-ae17" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c618-c2e1-4259-1245" name="Suppressor Squad" hidden="false" collective="false" import="true" targetId="ec65-f1fb-6f32-11f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="1400-4741-ec73-7ba4" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6ef5-1f20-07ac-2fc4" name="Hellblaster Squad" hidden="false" collective="false" import="true" targetId="ac7e-23cf-be74-f957" type="selectionEntry">
<categoryLinks>
<categoryLink id="e39f-9c06-408d-196a" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fed8-2fe9-942d-261f" name="Eliminator Squad" hidden="false" collective="false" import="true" targetId="1156-c71b-f255-6d86" type="selectionEntry">
<categoryLinks>
<categoryLink id="0f78-7abe-5b99-7b77" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6d4f-cacc-95a3-8fca" name="Centurion Devastator Squad" hidden="false" collective="false" import="true" targetId="c7a9-cbea-2263-acdc" type="selectionEntry">
<categoryLinks>
<categoryLink id="138c-4476-e833-1e99" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="53fa-64c4-07c3-d03d" name="Thunderfire Cannon" hidden="false" collective="false" import="true" targetId="de6d-c0fc-c631-db83" type="selectionEntry">
<categoryLinks>
<categoryLink id="58e4-acb0-e382-9598" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6d35-e5f0-044d-aacb" name="Firestrike Servo-Turrets" hidden="false" collective="false" import="true" targetId="55ee-8767-cab4-5551" type="selectionEntry">
<categoryLinks>
<categoryLink id="af9c-9062-1088-fc9e" name="Heavy Support" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="06d1-7e4d-7b67-8757" name="Hunter" hidden="false" collective="false" import="true" targetId="af33-4263-38f9-ef56" type="selectionEntry">
<categoryLinks>
<categoryLink id="defc-d713-7a3d-5abd" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8776-a05a-180e-ba69" name="Stalker" hidden="false" collective="false" import="true" targetId="2b1c-28cb-0e36-45e9" type="selectionEntry">
<categoryLinks>
<categoryLink id="639f-7910-cbce-918f" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6de8-247b-aea8-8e0e" name="Whirlwind" hidden="false" collective="false" import="true" targetId="77aa-cbfb-0955-3985" type="selectionEntry">
<categoryLinks>
<categoryLink id="e537-f12b-1204-eb5b" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="30a0-621e-3662-c1c7" name="Vindicator" hidden="false" collective="false" import="true" targetId="d99c-5129-83b6-587b" type="selectionEntry">
<categoryLinks>
<categoryLink id="c574-fd2f-2a28-3179" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f667-9eac-21f6-9a29" name="Land Raider" hidden="false" collective="false" import="true" targetId="1dc2-439f-a67f-ab18" type="selectionEntry">
<categoryLinks>
<categoryLink id="cb13-efe7-cb18-7aa7" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c5ba-fefc-cc53-e05a" name="Land Raider Crusader" hidden="false" collective="false" import="true" targetId="82a3-db47-e289-5c4a" type="selectionEntry">
<categoryLinks>
<categoryLink id="7b0f-bfff-5b92-87f3" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5c2d-1513-6a18-92ba" name="Land Raider Redeemer" hidden="false" collective="false" import="true" targetId="5549-ba1d-add0-8c62" type="selectionEntry">
<categoryLinks>
<categoryLink id="8fef-64ba-8f8e-0628" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="33eb-7506-dabd-9709" name="Repulsor" hidden="false" collective="false" import="true" targetId="3d07-7a39-998b-32c8" type="selectionEntry">
<categoryLinks>
<categoryLink id="ccc3-fdae-499d-110b" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5966-2cff-7345-30f8" name="Repulsor Executioner" hidden="false" collective="false" import="true" targetId="1c3b-b714-79e5-38f6" type="selectionEntry">
<categoryLinks>
<categoryLink id="da1f-80dd-12c3-4671" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="af17-ce70-4b7f-3129" name="Rhino" hidden="false" collective="false" import="true" targetId="410f-eff8-c527-d49c" type="selectionEntry">
<categoryLinks>
<categoryLink id="555b-5ad2-bfa4-5cea" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="868a-ecd3-0579-fdcd" name="Razorback" hidden="false" collective="false" import="true" targetId="e7e9-ce98-90d0-0de9" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b80-0502-441f-cbf5" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ca93-c5eb-113e-c284" name="Impulsor" hidden="false" collective="false" import="true" targetId="9930-9131-25e4-fd41" type="selectionEntry">
<categoryLinks>
<categoryLink id="4362-f0a6-7d2a-34d2" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2a89-4a60-53bb-940a" name="Drop Pod" hidden="false" collective="false" import="true" targetId="6459-e87c-6b3f-56f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="a39b-ff27-7302-27c8" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c109-a118-3d91-9724" name="Stormhawk Interceptor" hidden="false" collective="false" import="true" targetId="5c59-8294-4005-3303" type="selectionEntry">
<categoryLinks>
<categoryLink id="edfd-b397-26be-389d" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1b07-9462-2624-a156" name="Stormtalon Gunship" hidden="false" collective="false" import="true" targetId="0775-5d48-0c00-f53f" type="selectionEntry">
<categoryLinks>
<categoryLink id="89a2-54c8-1002-5c02" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2c9a-f1a9-3c56-99b0" name="Stormraven Gunship" hidden="false" collective="false" import="true" targetId="96bd-01eb-93d0-2c91" type="selectionEntry">
<categoryLinks>
<categoryLink id="0a83-8b61-2063-44bb" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8579-4714-8ad4-0385" name="Watch Master" hidden="false" collective="false" import="true" targetId="ef7a-e1db-18bb-225e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5de0-9f91-9189-506c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5a93-7a64-a104-5606" name="Codicier Natorian" hidden="false" collective="false" import="true" targetId="1d1f-3a94-17b4-94d7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="676a-8c52-77b0-c87a" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="78a8-c3fe-cdd5-2042" name="Watch Captain Artemis" hidden="false" collective="false" import="true" targetId="fccc-e88b-ba3f-caab" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0916-3fa4-9774-c6d6" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2d02-786b-bd47-4e5b" name="Chaplain Cassius" hidden="false" collective="false" import="true" targetId="e85e-8ec1-9f36-549a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9c3e-9f58-8d50-df1e" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5ab8-5fa7-9089-4c58" name="Corvus Blackstar" hidden="false" collective="false" import="true" targetId="f9f4-e6be-37ab-c7bf" type="selectionEntry">
<categoryLinks>
<categoryLink id="0609-8637-3779-3c1a" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c918-dca8-4daa-c0eb" name="Veteran Bike Squad" hidden="false" collective="false" import="true" targetId="cd36-3269-a409-dc13" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3c0c-ed30-24f7-93db" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a19c-dbab-f493-24cd" name="Deathwatch Terminator Squad" hidden="false" collective="false" import="true" targetId="8e04-28c5-38f3-8f1a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b81c-1f30-0010-2bf0" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b47c-0501-4a34-0d78" name="Kill Team Cassius" hidden="false" collective="false" import="true" targetId="a584-5a1f-45c1-a117" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7774-6df4-1278-6976" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6896-5ba5-9455-0962" name="Deathwatch Veterans" hidden="false" collective="false" import="true" targetId="327d-4ca1-5b95-ca88" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="50a1-4ce2-cb4f-f2c4" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4ae0-f6d7-8e34-69b9" name="Fortis Kill Team" hidden="false" collective="false" import="true" targetId="80c9-78fd-3628-a03d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76c0-edb1-bea1-cdb7" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="56e1-9a00-cd36-1c0e" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="804c-f7fa-79be-8d70" name="Relic Terminator Squad" hidden="false" collective="false" import="true" targetId="f928-d2b7-7b49-23fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="0538-65d6-f246-a980" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="63cc-87de-62ab-937a" name="Spectrus Kill Team" hidden="false" collective="false" import="true" targetId="0a19-890d-f924-0f87" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76c0-edb1-bea1-cdb7" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a9a3-73e8-ebb7-1615" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fcba-1208-d3fe-0051" name="Indomitor Kill Team" hidden="false" collective="false" import="true" targetId="13b0-2231-db5a-a493" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76c0-edb1-bea1-cdb7" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="218d-a914-9420-6de6" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="039b-16e7-9e73-e3af" name="Proteus Kill Team" hidden="false" collective="false" import="true" targetId="d1d0-415d-5ea7-2e00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1ff7-5b3d-301d-41ce" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4178-0fed-3259-32bd" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="10bb-8570-a8de-5283" name="Primaris Chaplain on Bike" hidden="false" collective="false" import="true" targetId="f2cd-66bf-9644-9b63" type="selectionEntry">
<categoryLinks>
<categoryLink id="53b3-353c-9fa2-e298" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="238e-a514-5750-014d" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="18fb-34ee-fc89-27d5" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="550b-93d5-6417-d9f2" name="Litanies" hidden="false" collective="false" import="true" targetId="3081-e191-b356-8ff8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="2157-8ed5-9050-80c1" name="Captain with Master-crafted Heavy Bolt Rifle" hidden="false" collective="false" import="true" targetId="5b8c-c359-235c-866b" type="selectionEntry">
<categoryLinks>
<categoryLink id="e775-1803-bccb-0053" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2999-245d-0607-0f1b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
<entryLink id="c8c5-b7a4-9bd5-dc1c" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="8895-3d3e-2338-9da6" name="Primaris Techmarine" hidden="false" collective="false" import="true" targetId="539f-002b-82d7-378f" type="selectionEntry">
<categoryLinks>
<categoryLink id="6c25-df43-6e18-9f20" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="82fd-dcfe-685f-6c93" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="f823-a5a7-2b6e-e168" type="selectionEntryGroup"/>
<entryLink id="834d-3b02-2d43-0965" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="022b-15bc-acf5-73c8" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="518d-6086-23e1-cd01" name="Heavy Intercessor Squad" hidden="false" collective="false" import="true" targetId="426f-d48b-06eb-f05e" type="selectionEntry">
<categoryLinks>
<categoryLink id="ef4d-b5ec-f004-6b13" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2059-1259-7b9d-9fa1" name="Veteran Intercessor Squad" hidden="false" collective="false" import="true" targetId="5db7-e75f-0ef7-9ccc" type="selectionEntry">
<categoryLinks>
<categoryLink id="e4f2-82a4-5e71-0d0a" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>