forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Space Wolves.cat
10903 lines (10895 loc) · 847 KB
/
Imperium - Space Wolves.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="24b6-2b46-0063-2867" name="Imperium - Adeptus Astartes - Space Wolves" revision="213" battleScribeVersion="2.03" authorName="CrusherJoe, Mad-Spy" authorContact="@CrusherJoe, @Mad-Spy" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="205" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<readme>All LIEUTENANT models are contained within the Lieutenants "unit" in the HQ section. This includes the Wolf Guard Battle Leader in Terminator Armour, Wolf Guard Battle Leader on Thunderwolf and Arjac Rockfist. </readme>
<publications>
<publication id="24b6-2b46-pubN65537" name="Codex: Space Wolves"/>
</publications>
<profileTypes>
<profileType id="6657-e5fe-e020-4f89" name="Stat Damage - M/AddAttks">
<characteristicTypes>
<characteristicType id="0641-3c3f-006e-9ec6" name="Remaining W"/>
<characteristicType id="68fd-6915-4039-fc51" name="Movement"/>
</characteristicTypes>
</profileType>
<profileType id="8e0b-501f-13be-6d2f" name="Stat Damage - M/BS">
<characteristicTypes>
<characteristicType id="0199-68c2-2227-31cc" name="Remaining W"/>
<characteristicType id="0a38-9454-11f5-bed1" name="Movement"/>
<characteristicType id="927d-f299-7a87-89a4" name="BS"/>
</characteristicTypes>
</profileType>
<profileType id="29af-65db-c2dc-cfa1" name="Stat Damage - M/BS/A">
<characteristicTypes>
<characteristicType id="8fc5-896d-483d-3667" name="Remaining W"/>
<characteristicType id="52ff-99c8-da8d-7a41" name="Movement"/>
<characteristicType id="584b-923f-c35a-0439" name="BS"/>
<characteristicType id="7f3d-3b48-eff9-ebb9" name="Attacks"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="f093-e031-3131-7b82" name="Faction: Space Wolves" hidden="false"/>
<categoryEntry id="d4da-9e6e-8a6c-4892" name="Wolf Lord" hidden="false"/>
<categoryEntry id="8abb-748c-15ff-fa0b" name="Ragnar Blackmane" hidden="false"/>
<categoryEntry id="277e-0e4e-e93e-53bf" name="Logan Grimnar" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="991c-f7f9-44ad-284b" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="00e5-0a40-b67b-6a8b" name="Chapter Master" hidden="false"/>
<categoryEntry id="15d7-1ea5-1780-00bf" name="Terminator" hidden="false"/>
<categoryEntry id="39ba-82a5-a309-f73f" name="Stormrider" hidden="false"/>
<categoryEntry id="b46d-3b8e-d997-933e" name="Thunderwolf" hidden="false"/>
<categoryEntry id="502c-944f-3651-2f2f" name="Krom Dragongaze" hidden="false"/>
<categoryEntry id="7cd7-91a0-6d7a-bdf0" name="Harald Deathwolf" hidden="false"/>
<categoryEntry id="051a-d40e-0909-aea2" name="Wolf Guard" hidden="false"/>
<categoryEntry id="3895-fe56-9c6d-e818" name="Canis Wolfborn" hidden="false"/>
<categoryEntry id="4dc6-527c-7af1-df8d" name="Rune Priest" hidden="false"/>
<categoryEntry id="5bbd-8e2c-1f11-0867" name="Njal Stormcaller" hidden="false"/>
<categoryEntry id="bb97-ab6a-dd79-137e" name="Wolf Priest" hidden="false"/>
<categoryEntry id="db1d-c5fb-fd8d-143d" name="Battle Leader" hidden="false"/>
<categoryEntry id="2e2c-e640-47a0-2813" name="Ulrik The Slayer" hidden="false"/>
<categoryEntry id="db51-bafa-0d7b-3142" name="Bjorn The Fell-Handed" hidden="false"/>
<categoryEntry id="912a-5924-339a-e2d4" name="Arjac Rockfist" hidden="false"/>
<categoryEntry id="766b-5215-896e-d2e9" name="Iron Priest" hidden="false"/>
<categoryEntry id="32bc-dc49-5c8a-2449" name="Lukas The Trickster" hidden="false"/>
<categoryEntry id="0f1b-0f2c-ecf3-6b13" name="Blood Claws" hidden="false"/>
<categoryEntry id="b0f0-5b86-e789-b98d" name="Cyberwolves" hidden="false"/>
<categoryEntry id="52aa-c228-ef73-82b9" name="Lone Wolf" hidden="false"/>
<categoryEntry id="ae78-3c98-180f-b5c6" name="Murderfang" hidden="false"/>
<categoryEntry id="869f-dd74-893f-a644" name="Wulfen" hidden="false"/>
<categoryEntry id="5887-afba-672d-2c89" name="Stormwolf" hidden="false"/>
<categoryEntry id="d757-ced7-3efb-8941" name="Stormfang Gunship" hidden="false"/>
<categoryEntry id="a8ba-c0ba-c493-418f" name="Land Raider Excelsior" hidden="false"/>
<categoryEntry id="98e5-0d75-03c2-6954" name="Land Raider Redeemer" hidden="false"/>
<categoryEntry id="a8e9-11e8-24ed-45c2" name="Land Raider Crusader" hidden="false"/>
<categoryEntry id="ca75-4ae4-2546-b0ff" name="Land Raider" hidden="false"/>
<categoryEntry id="e27c-0740-1e0f-186a" name="Vindicator" hidden="false"/>
<categoryEntry id="1080-46f3-7a40-86e7" name="Predator" hidden="false"/>
<categoryEntry id="7b68-1990-813f-9a1a" name="Rhino" hidden="false"/>
<categoryEntry id="cdc5-f012-f7e7-a6e9" name="Whirlwind" hidden="false"/>
<categoryEntry id="5e78-7f37-7c0c-b0be" name="Razorback" hidden="false"/>
<categoryEntry id="e386-bccd-fcac-10fd" name="Rhino Primaris" hidden="false"/>
<categoryEntry id="bfbd-efd5-bc68-88a7" name="Primaris Ancient" hidden="false"/>
<categoryEntry id="489e-4894-bbae-7058" name="Primaris Lieutenant" hidden="false"/>
<categoryEntry id="cbda-3bd3-08bb-48d5" name="Wolf Guard Battle Leader" hidden="false"/>
<categoryEntry id="9eb8-8127-3ec4-5f78" name="Grey Hunters" hidden="false"/>
<categoryEntry id="ef51-e32b-2c58-5571" name="Wolf Scouts" hidden="false"/>
<categoryEntry id="df33-f304-72e0-f7d7" name="Swiftclaws" hidden="false"/>
<categoryEntry id="3ff2-0080-e500-32d3" name="Swiftclaw Attack Bikes" hidden="false"/>
<categoryEntry id="71c8-6336-9dd6-9e8d" name="Thunderwolf Cavalry" hidden="false"/>
<categoryEntry id="2c97-f835-1fbd-0945" name="Long Fangs" hidden="false"/>
<categoryEntry id="dd06-3049-d027-b4fa" name="Fenrisian Wolves" hidden="false"/>
<categoryEntry id="3718-f4de-a999-5d50" name="Scout" hidden="false"/>
<categoryEntry id="b8c0-0d1b-912c-4d7e" name="Swiftclaw Attack Bikes" hidden="false"/>
<categoryEntry id="7668-23ee-94a8-ebf5" name="Skyclaws" hidden="false"/>
<categoryEntry id="6980-b61e-a8c6-1168" name="Techmarine" hidden="false"/>
<categoryEntry id="7647-555a-b7d9-115c" name="Wulfen Dreadnought" hidden="false"/>
<categoryEntry id="36aa-fda4-6bf3-bf61" name="Great Company Ancient" hidden="false"/>
<categoryEntry id="afcf-9fa3-d188-3ee9" name="Great Company Champion" hidden="false"/>
<categoryEntry id="407d-8a64-7fff-9960" name="Cataphractii Terminators" hidden="false"/>
<categoryEntry id="f82d-568a-2b05-4ee4" name="Tartaros Terminators" hidden="false"/>
<categoryEntry id="3d57-c3c6-86cd-e4f4" name="Contemptor Dreadnought" hidden="false"/>
<categoryEntry id="b111-19d5-0750-fef1" name="Wolf Scout Bikers" hidden="false"/>
<categoryEntry id="db4f-2bf6-6907-da46" name="Hunter" hidden="false"/>
<categoryEntry id="9e4b-7407-8d75-2add" name="Stalker" hidden="false"/>
<categoryEntry id="fc68-90be-c888-d8b2" name="Land Speeder Storm" hidden="false"/>
<categoryEntry id="b51e-c770-1b9d-5313" name="Stormhawk Interceptor" hidden="false"/>
<categoryEntry id="d78a-9066-6f29-3930" name="Invictor Tactical Warsuit" hidden="false"/>
<categoryEntry id="6f37-636e-dbf9-022a" name="Reiver" hidden="false"/>
<categoryEntry id="6276-ca3a-7a45-120e" name="Incursor Squad" hidden="false"/>
<categoryEntry id="25a3-a704-6288-e59a" name="Impulsor" hidden="false"/>
<categoryEntry id="d41a-2599-dda4-ff7b" name="Outrider Squad" hidden="false"/>
<categoryEntry id="1e5e-d97d-ed93-55f6" name="Eradicator Squad." hidden="false"/>
<categoryEntry id="79af-30e4-4258-7814" name="Hounds of Morkai" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="872a-6afc-b072-186e" name="Deeds and Sagas [Reference]" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3bcf-a55d-9edf-836e" type="max"/>
</constraints>
<profiles>
<profile id="13a3-a503-bdd6-a352" name="Beastslayer" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Deed of the Beastslayer: An enemy MONSTER or VEHICLE unit is destroyed as the result of an attack made by this model.
Saga of the Beastslayer (Aura): SPACE WOLVES CORE units within 6" add 1 to wound rolls for melee attacks against VEHICLES or MONSTERS.</characteristic>
</characteristics>
</profile>
<profile id="b925-f810-0ad9-64ed" name="Hunter" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Deed of the Hunter: Successfully charge an enemy unit with this model.
Saga of the Hunter (Aura): While a friendly SPACE WOLVES CORE unit is within 6" of this model, that unit is eligible to declare a charge in a turn in which they Advanced. While a friendly SPACE WOLVES CORE unit with the Swift Hunters ability is within 6" of this model, that unit is eligible to declare a charge in a turn in which they Fell Back.</characteristic>
</characteristics>
</profile>
<profile id="58ab-ddc6-d5a7-b39a" name="Warrior Born" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Deed of the Warrior Born: An enemy CHARACTER model is destroyed as a result of a melee attack made by this model.
Saga of the Warrior Born (Aura): At the start of the Fight phase, each friendly SPACE WOLVES CORE unit that is within 6" of this model and within Engagement Range of any enemy units fights first that phase.</characteristic>
</characteristics>
</profile>
<profile id="8bd0-b010-7d11-5f09" name="Resolve of the Bear" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Deed of the Bear: This model loses any wounds.
Saga of the Bear (Aura): While a friendly SPACE WOLVES CORE unit is within 6" of this model, each time a model in that unit would lose a wound, roll one D6; on a 6, that wound is not lost.</characteristic>
</characteristics>
</profile>
<profile id="eac1-67fe-7877-cd31" name="Aura of Majesty" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Deed of Majesty: At the start of your Command phase, this model is within range of an objective marker that is more than 6" away from your deployment zone.
Saga of Majesty (Aura): While a friendly SPACE WOLVES CORE unit is within 6" of this model, each time a Morale test is taken for that unit, it is automatically passed.</characteristic>
</characteristics>
</profile>
<profile id="19e0-720d-015e-cd74" name="Wolfkin" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Deed of the Wolfkin: An enemy model is destroyed as a result of a melee attack made by this model.
Saga of the Wolfkin (Aura): While a friendly SPACE WOLVES CORE unit is within 6" of this model, that unit is always treated as having made a charge move for the purposes of the Shock Assault ability.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5f23-b56b-b3ab-f95e" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</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="bccc-fd65-07f8-77af" name="Ragnar Blackmane" hidden="false" collective="false" import="true" targetId="c730-c6a1-40ae-1bf0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="e302-9f77-7058-3726" name="Logan Grimnar" hidden="false" collective="false" import="true" targetId="3f45-b00c-544d-8e9e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f4e5-4487-41ac-b84a" name="Logan Grimnar on Stormrider" hidden="false" collective="false" import="true" targetId="793e-fa9d-b5ad-3b8e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3442-4278-5633-410a" name="Wolf Lord on Thunderwolf" hidden="false" collective="false" import="true" targetId="e905-6c75-013b-af55" type="selectionEntry"/>
<entryLink id="e822-2d69-b81c-cd0e" name="Krom Dragongaze" hidden="false" collective="false" import="true" targetId="044a-7c10-852f-bee3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7456-a100-75d8-377e" name="Harald Deathwolf" hidden="false" collective="false" import="true" targetId="6410-3efe-14bc-a30f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="fa64-e449-cabd-aa20" name="Rune Priest on Bike [Legends]" hidden="false" collective="false" import="true" targetId="48b4-45ba-2ba5-931d" type="selectionEntry"/>
<entryLink id="6382-0f00-d3b9-7541" name="Canis Wolfborn" hidden="false" collective="false" import="true" targetId="94f4-0878-c4c9-4436" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1256-9246-2f0f-8868" name="Njal Stormcaller" hidden="false" collective="false" import="true" targetId="8b12-ade8-6c5e-9080" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c953-1fc1-79a9-2f13" name="Wolf Priest on Bike [Legends]" hidden="false" collective="false" import="true" targetId="ab40-f67f-acd0-66fc" type="selectionEntry"/>
<entryLink id="1340-2d1b-6d30-b3a2" name="Wolf Guard Battle Leader on Bike [Legends]" hidden="false" collective="false" import="true" targetId="e536-d35b-e2ba-4db0" type="selectionEntry"/>
<entryLink id="b725-1267-b38d-d6e4" name="Ulrik The Slayer" hidden="false" collective="false" import="true" targetId="c4b7-6864-7130-ae56" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink id="4fac-e0c7-39dc-039a" name="Litany of Hate" hidden="false" collective="false" import="true" targetId="a441-cc96-406f-0667" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2658-1f0d-4391-476f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e4d-6eaf-5dba-2ece" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="565c-65af-f4f4-e98e" name="Bjorn the Fell-handed" hidden="false" collective="false" import="true" targetId="1044-90a4-eb93-21c9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="a6f8-a6a7-92c2-70e5" name="Iron Priest on Bike [Legends]" hidden="false" collective="false" import="true" targetId="12fe-980e-4843-70a1" type="selectionEntry"/>
<entryLink id="face-18bc-6a3c-603e" name="Iron Priest on Thunderwolf" hidden="false" collective="false" import="true" targetId="3e33-ec16-a4cb-5b44" type="selectionEntry"/>
<entryLink id="f85d-9976-b6e9-2afd" name="Lukas the Trickster" hidden="false" collective="false" import="true" targetId="8d43-e183-8b40-56b5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d81e-ac12-3bc3-f102" name="Blood Claws" hidden="false" collective="false" import="true" targetId="1ad9-fced-ea9d-a5a4" type="selectionEntry"/>
<entryLink id="16c9-d61b-e185-752f" name="Murderfang" hidden="false" collective="false" import="true" targetId="a7b7-c15c-0f1e-af3d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4da8-aa69-77ec-b49e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9afc-6ea7-d6ce-b0c5" name="Wulfen" hidden="false" collective="false" import="true" targetId="da80-4870-f4be-2ac7" type="selectionEntry"/>
<entryLink id="d466-dbf8-ff18-dbbd" name="New EntryLink" hidden="false" collective="false" import="true" targetId="b1a6-9274-82d6-1b08" type="selectionEntry"/>
<entryLink id="6fc2-4257-ecca-2406" name="Wolf Guard" hidden="false" collective="false" import="true" targetId="ad37-e26a-6cab-8c1b" type="selectionEntry"/>
<entryLink id="6f40-03a3-24b4-47f3" name="Wolf Guard on Bikes [Legends]" hidden="false" collective="false" import="true" targetId="c4f9-57b1-ebb0-d9bf" type="selectionEntry"/>
<entryLink id="1482-671c-e21f-ac85" name="Stormfang Gunship" hidden="false" collective="false" import="true" targetId="21d4-cfac-544c-1bf5" type="selectionEntry"/>
<entryLink id="b6f9-92d0-33b8-2bad" name="Stormwolf" hidden="false" collective="false" import="true" targetId="b6a6-c571-f3ca-0ff7" type="selectionEntry"/>
<entryLink id="d59c-6129-a76d-dd79" name="Fenrisian Wolves" hidden="false" collective="false" import="true" targetId="b594-c93a-5533-917c" type="selectionEntry"/>
<entryLink id="cf82-7acb-6cd6-6876" name="Grey Hunters" hidden="false" collective="false" import="true" targetId="2e39-6ee4-1903-7c95" type="selectionEntry"/>
<entryLink id="9e5f-939f-a9e9-333d" name="Long Fangs" hidden="false" collective="false" import="true" targetId="6fdb-3701-0b68-8dea" type="selectionEntry"/>
<entryLink id="b12b-bfd5-6316-ad31" name="Thunderwolf Cavalry" hidden="false" collective="false" import="true" targetId="fa2b-9439-7a9a-c46b" type="selectionEntry"/>
<entryLink id="70c8-4ab6-aeb8-6175" name="Skyclaws" hidden="false" collective="false" import="true" targetId="1518-6c66-712e-32b9" type="selectionEntry"/>
<entryLink id="88f0-1d34-e96e-efea" name="New EntryLink" hidden="false" collective="false" import="true" targetId="6a52-9880-4770-5359" type="selectionEntry"/>
<entryLink id="02be-8b99-06e8-a288" name="Wulfen Dreadnought" hidden="false" collective="false" import="true" targetId="097c-16f9-e115-645c" type="selectionEntry"/>
<entryLink id="2593-0d22-4042-08a6" name="Lone Wolf [LEGENDS]" hidden="false" collective="false" import="true" targetId="12c4-abca-1c05-c75f" type="selectionEntry"/>
<entryLink id="d51d-243d-08ac-9b47" name="Specialist Detachment" hidden="false" collective="false" import="true" targetId="dd4b-7b0a-b95e-8073" type="selectionEntry"/>
<entryLink id="25f0-7ba8-e832-3c53" name="Lone Wolf in Terminator Armour [LEGENDS]" hidden="false" collective="false" import="true" targetId="52d8-42b5-95db-20aa" type="selectionEntry"/>
<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="ae78-ac7e-96df-e9f0" name="Aggressor Squad" hidden="false" collective="false" import="true" targetId="0f7e-ce51-f92d-0138" type="selectionEntry">
<infoLinks>
<infoLink id="dc81-b292-62a0-aee3" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5602-d483-5228-6496" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="99aa-80cd-37b9-8bd9" name="Ancient in Terminator Armour" hidden="false" collective="false" import="true" targetId="5654-2e3b-1351-bed9" type="selectionEntry">
<infoLinks>
<infoLink id="480c-01eb-1efd-f57e" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="617d-5465-8a14-9ce8" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="78eb-efda-0dec-7020" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="b265-022a-2e5f-3dfd" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="3e88-c447-536b-f3d0" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="62f2-ee64-846e-40e7" name="Assault Intercessor Squad" hidden="false" collective="false" import="true" targetId="2ab1-1cf3-acbf-530e" type="selectionEntry">
<infoLinks>
<infoLink id="08d6-4961-613c-dbfc" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
<infoLink id="0aac-20e6-84dc-94be" name="Objective Secured" hidden="false" targetId="87a0-1e8f-4535-6dd1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0a51-e549-fe11-f523" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0976-a7bf-86f4-4045" name="Astraeus" hidden="false" collective="false" import="true" targetId="2faf-85ff-2008-1a28" type="selectionEntry">
<infoLinks>
<infoLink id="242a-1866-9d13-04d0" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="42b2-fddd-0286-ae2c" name="Attack Bike Squad" hidden="false" collective="false" import="true" targetId="0b99-2404-285f-99db" type="selectionEntry">
<infoLinks>
<infoLink id="049c-f309-162e-e9d3" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2992-d913-8357-a290" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5f7d-a92e-7388-599a" name="Bike Squad" hidden="false" collective="false" import="true" targetId="a0f4-1ef1-00a6-b9a7" type="selectionEntry">
<infoLinks>
<infoLink id="411b-29e3-03b6-a2fa" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
<infoLink id="6562-960f-3c7f-0b75" name="Headstrong" hidden="false" targetId="f920-41f8-7db4-f6be" type="profile"/>
<infoLink id="90c1-ab09-ed72-2c20" name="Berserk Charge" hidden="false" targetId="0d71-5596-3fcf-a238" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bb93-d4ce-6a05-2a86" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ad0e-c067-6907-6b04" name="Bladeguard Ancient" hidden="false" collective="false" import="true" targetId="0dac-86be-d7a0-9dd8" type="selectionEntry">
<infoLinks>
<infoLink id="cfc3-c774-2804-d871" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8c43-3af3-25ac-d3cb" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8295-c69d-0fa5-5492" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="c4c8-7f61-ea51-11c2" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="0342-d370-eaf5-554c" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="eca4-3e36-3118-0d46" name="Bladeguard Veteran Squad" hidden="false" collective="false" import="true" targetId="0da5-bbc7-769c-7ae4" type="selectionEntry">
<infoLinks>
<infoLink id="9e3a-2f3d-a6c5-2ccd" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e58c-dd19-c399-ef8c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a3c5-9073-90fb-9e88" name="Caestus Assault Ram [Legends]" hidden="false" collective="false" import="true" targetId="5c09-08ad-2a0f-fbc9" type="selectionEntry">
<infoLinks>
<infoLink id="90bb-8e4f-4f3d-e9bf" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="4921-c310-e548-635f" name="Captain" hidden="false" collective="false" import="true" targetId="a0b8-6a5c-ea09-44f9" type="selectionEntry">
<infoLinks>
<infoLink id="c66c-acfc-def1-7a23" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="99ad-a141-5018-4d70" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c350-6c4d-357b-9906" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="a144-e1c4-b91b-a634" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="00ba-c202-f347-485b" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="2ed6-35a9-926b-5c7b" name="Captain in Gravis Armor" hidden="false" collective="false" import="true" targetId="5854-3db8-6043-ce0b" type="selectionEntry">
<infoLinks>
<infoLink id="771f-79c8-744b-d5b8" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ad74-89cc-0933-0d70" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="3654-42ee-d4cf-5398" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="642c-ac4f-83ee-67df" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="69f2-f473-7929-a18a" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="9ea2-b49a-209d-2b05" name="Captain in Phobos Armour" hidden="false" collective="false" import="true" targetId="04ca-503e-38b7-0380" type="selectionEntry">
<infoLinks>
<infoLink id="fc1d-9616-7c2f-bb3c" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d523-d590-5281-abe3" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a2f5-28ba-48f5-819a" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="522d-a237-fede-b2ed" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="0e3a-5abe-0bb1-3b91" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="b0fb-9fee-a039-9f44" name="Captain in Terminator Armor" hidden="false" collective="false" import="true" targetId="79ab-3318-ac01-06d2" type="selectionEntry">
<infoLinks>
<infoLink id="8fba-9154-1cc6-e759" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0200-fbe5-d340-37e5" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8ee4-633e-b91d-8076" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="2e81-b658-4e17-b76a" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="2238-ece1-603d-c8ba" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="ec4b-1985-668c-d7aa" name="Captain on Bike" hidden="false" collective="false" import="true" targetId="2c58-b224-00e8-95f4" type="selectionEntry">
<infoLinks>
<infoLink id="443e-3edd-adac-11c9" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cdf5-278b-9349-75f1" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="e9cd-70c2-833a-1598" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="1403-ee9a-11ab-f138" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="015d-74ed-5d4b-58fd" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="863c-0b3e-f504-2d6f" name="Captain with Master-crafted Heavy bolt rifle" hidden="false" collective="false" import="true" targetId="5b8c-c359-235c-866b" type="selectionEntry">
<infoLinks>
<infoLink id="d9a7-11a6-d3fb-a60c" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bf2d-8dcd-b657-014e" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="07ce-f39b-144b-4cf3" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="1832-22e8-61e9-e21e" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="7b0e-3fbd-2506-0557" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="bb15-e5f1-cf7c-d3c8" name="Castellum Stronghold [Legends]" hidden="false" collective="false" import="true" targetId="8ae2-6460-9014-1f13" type="selectionEntry">
<infoLinks>
<infoLink id="47ed-be46-e68d-5177" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="82f0-7744-6840-1810" name="Centurion Assault Squad" hidden="false" collective="false" import="true" targetId="cd3c-39b0-b3be-0e35" type="selectionEntry">
<infoLinks>
<infoLink id="5460-9ae3-7e99-ac2c" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b64b-e819-972e-9243" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4b45-fc67-3555-9806" name="Centurion Devastator Squad" hidden="false" collective="false" import="true" targetId="c7a9-cbea-2263-acdc" type="selectionEntry">
<infoLinks>
<infoLink id="fe2a-2435-e881-e1b5" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0758-b14e-bd4c-4630" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f823-08bc-7aac-0f85" name="Chaplain" hidden="false" collective="false" import="true" targetId="400e-bbea-4690-6942" type="selectionEntry">
<infoLinks>
<infoLink id="f427-6bf8-6138-d3ad" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3372-b6ea-40ca-d933" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="ac97-1bbf-cd06-a714" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="aa1b-2e7e-fdb1-625b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="55a0-0de3-3693-c341" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
<entryLink id="d731-abd9-7b27-b781" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
<entryLink id="0200-0c04-a61b-09e3" name="Litany of Hate" hidden="false" collective="false" import="true" targetId="a441-cc96-406f-0667" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d98c-6ad7-ab0f-6626" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e683-8bd4-62bb-e322" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="ad4b-d71b-5d4e-0a81" name="Chaplain in Terminator Armour" hidden="false" collective="false" import="true" targetId="6876-9f56-4e02-5400" type="selectionEntry">
<infoLinks>
<infoLink id="f6b0-46d3-2268-e078" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9ad7-fecb-889e-467f" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="1005-7f1b-36d0-003d" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="8eec-4aa5-38fe-ca6b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="ec52-b80d-603e-3d6e" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
<entryLink id="29dd-898a-481a-d117" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
<entryLink id="f3f0-3aeb-81df-6436" name="Litany of Hate" hidden="false" collective="false" import="true" targetId="a441-cc96-406f-0667" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ead-29be-be45-cce1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b27-fa74-f49d-0a82" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="cf39-a672-6578-8b2d" name="Chaplain on Bike [Legends]" hidden="false" collective="false" import="true" targetId="f3b6-1ac6-0a68-68c7" type="selectionEntry">
<infoLinks>
<infoLink id="2d5e-c0c9-6f9d-d4f0" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="46b3-510c-513f-4aec" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="ac4b-03f4-af62-f2fa" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="fa49-9fe9-3cac-5a77" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="6953-57e4-688e-788f" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
<entryLink id="5900-6ed3-ed1d-2dff" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
<entryLink id="ceb6-c0a9-fa17-2cc3" name="Litany of Hate" hidden="false" collective="false" import="true" targetId="a441-cc96-406f-0667" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="64e5-395a-7887-e6e7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="acec-6037-7ecf-3439" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="6970-eee6-8ac9-4780" name="Chaplain Venerable Dreadnought [Legends]" hidden="false" collective="false" import="true" targetId="28af-fce8-2f9c-0145" type="selectionEntry">
<infoLinks>
<infoLink id="b2bd-fda2-f238-334f" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="d7e3-361f-d692-472d" name="Warlord" hidden="false" collective="false" import="true" targetId="01cf-00c7-c4af-701b" type="selectionEntry"/>
<entryLink id="a02e-f90d-552b-2d1f" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="781a-1e4e-1c81-1212" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
<entryLink id="a3a8-f73a-ef9a-d864" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
<entryLink id="0a65-6c71-ddc0-a70a" name="Litany of Hate" hidden="false" collective="false" import="true" targetId="a441-cc96-406f-0667" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3086-7435-c85b-5ce0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c17-7a6b-2597-e92d" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="b970-2cff-443e-14aa" name="Company Ancient" hidden="false" collective="false" import="true" targetId="0e51-de2e-2557-b79e" type="selectionEntry">
<infoLinks>
<infoLink id="3994-28c2-5e93-bee4" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2345-c60c-c0a3-6293" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="21f3-53c9-4f6f-8f67" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="c653-61aa-3482-2119" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="a3eb-cb13-8187-6219" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="4f90-7bb2-0831-42e9" name="Company Ancient" hidden="false" collective="false" import="true" targetId="0e51-de2e-2557-b79e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="339f-3bb9-0c10-034b" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="454e-f63a-13ce-c6a9" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="339f-3bb9-0c10-034b" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="454e-f63a-13ce-c6a9" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ffea-4bb8-5310-8426" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="444c-77d6-d68b-dc86" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8fcf-5628-e184-c589" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="fd00-3cd2-9ede-d56d" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="8c5b-11ba-e586-2e3d" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="407a-1f95-b7e4-93de" name="Company Ancient on Bike [Legends]" hidden="false" collective="false" import="true" targetId="1698-9139-721c-e72e" type="selectionEntry">
<infoLinks>
<infoLink id="becd-c6f6-afe0-835c" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="89ed-3420-104f-dc09" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="971d-fcbd-4b9a-5d55" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="bbea-57ae-82b3-564c" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="8ed5-86cd-6fdd-32c2" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="af97-67dd-062b-7c33" name="Company Champion" hidden="false" collective="false" import="true" targetId="c4ab-433a-ad56-2172" type="selectionEntry">
<infoLinks>
<infoLink id="da20-1a73-ec99-e1df" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9e0b-0e86-155e-35d8" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7b71-a7a9-1793-a611" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="599c-6f26-27c4-a99c" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="d65f-0997-856a-7a1e" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="7510-b5b7-78d0-4fac" name="Company Champion" hidden="false" collective="false" import="true" targetId="c4ab-433a-ad56-2172" type="selectionEntry">
<modifiers>
<modifier type="increment" field="a318-0d66-9b68-3a94" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="339f-3bb9-0c10-034b" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="339f-3bb9-0c10-034b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a318-0d66-9b68-3a94" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6494-af23-a50a-7ed9" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="51e7-1ecd-e940-2090" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="5b0d-9946-e09d-6633" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="e1b8-8160-76b8-548e" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="973b-f863-1004-464f" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="aaab-fb6d-c12a-6d26" name="Company Champion on Bike [Legends]" hidden="false" collective="false" import="true" targetId="c2ef-5c4d-3f2a-13d2" type="selectionEntry">
<infoLinks>
<infoLink id="30ed-4c19-4213-ed06" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d28d-9f68-951e-e3a7" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="91f9-424f-1623-1c6e" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="0ec5-eb69-6b15-d94d" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="6152-a50e-4812-6dba" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="20fc-a2d2-5205-5359" name="Company Veterans" hidden="false" collective="false" import="true" targetId="339f-3bb9-0c10-034b" type="selectionEntry">
<infoLinks>
<infoLink id="edcf-dd41-22ed-d727" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d6ed-9d81-af8b-491d" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fac0-70ee-b62d-54ca" name="Company Veterans" hidden="false" collective="false" import="true" targetId="339f-3bb9-0c10-034b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8352-7f67-7e2b-3b4f" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5ad3-0320-2839-8582" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="increment" field="ee1e-7ae3-c899-e88d" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8352-7f67-7e2b-3b4f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee1e-7ae3-c899-e88d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6bc2-9c2e-709e-712b" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5d8c-3492-8710-4a26" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a708-a703-c261-e06c" name="Company Veterans on Bikes [Legends]" hidden="false" collective="false" import="true" targetId="7510-80bd-46ea-1b7f" type="selectionEntry">
<infoLinks>
<infoLink id="a185-9780-1553-c897" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="06eb-1825-c086-b3ae" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8acd-c772-80c1-63ce" name="Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="5912-3f43-75c1-f85c" type="selectionEntry">
<infoLinks>
<infoLink id="afed-f985-859f-0bcd" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="41ec-5af3-7cc2-329b" name="Elites" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="816b-516d-c153-0102" name="Contemptor Mortis Dreadnought" hidden="false" collective="false" import="true" targetId="2149-8a56-0274-5e59" type="selectionEntry">
<infoLinks>
<infoLink id="27eb-64d7-cf0a-7dae" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="ae5d-a287-01f5-51ad" name="Damocles Command Rhino" hidden="false" collective="false" import="true" targetId="7f53-6376-cd1f-8356" type="selectionEntry">
<infoLinks>
<infoLink id="ba53-c443-f75f-09c7" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="6c6f-190b-cea2-c440" name="Deathstorm Drop Pod" hidden="false" collective="false" import="true" targetId="6d7b-340f-c91b-98ac" type="selectionEntry">
<infoLinks>
<infoLink id="8478-2484-383d-d992" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="8d4d-0ac3-bb4e-1650" name="Deimos Predator [Legends]" hidden="false" collective="false" import="true" targetId="b048-66f2-3f07-e5ec" type="selectionEntry">
<infoLinks>
<infoLink id="9635-a062-332f-f4ae" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="e4a8-ab80-1dcc-a3e5" name="Vindicator Laser Destroyer" hidden="false" collective="false" import="true" targetId="1cc4-d166-fe8b-d4c7" type="selectionEntry">
<infoLinks>
<infoLink id="80df-3d19-59fb-b198" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="0995-cb79-0bc3-bf3f" name="Dreadnought" hidden="false" collective="false" import="true" targetId="002e-7c43-59e8-3496" type="selectionEntry">
<infoLinks>
<infoLink id="9985-5b69-85c4-61a2" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9726-eedb-751d-ce22" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="323a-ce22-e41f-c377" name="Drop Pod" hidden="false" collective="false" import="true" targetId="6459-e87c-6b3f-56f2" type="selectionEntry">
<infoLinks>
<infoLink id="b018-4c0d-fb2a-4eae" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7deb-db6c-138d-48f9" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8423-04e6-7ba0-600b" name="Eliminator Squad" hidden="false" collective="false" import="true" targetId="1156-c71b-f255-6d86" type="selectionEntry">
<modifiers>
<modifier type="set" field="e356-c769-5920-6e14" value="5.0"/>
</modifiers>
<infoLinks>
<infoLink id="d6a1-ba72-db89-7367" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6370-4f96-60b9-3c17" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="71db-35cc-d4a5-e609" name="Eradicator Squad" hidden="false" collective="false" import="true" targetId="17cc-76ac-ab20-fae6" type="selectionEntry">
<infoLinks>
<infoLink id="2beb-38d5-906b-b387" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c3c5-57cb-4dc0-b2de" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4582-caed-00d6-3dba" name="Fire Raptor Gunship" hidden="false" collective="false" import="true" targetId="e385-ed6c-8c89-72fa" type="selectionEntry">
<infoLinks>
<infoLink id="a272-e39a-f817-29dc" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="8c0d-32e4-5ac9-710e" name="Gladiator Lancer" hidden="false" collective="false" import="true" targetId="d96d-9a72-9f05-aa1d" type="selectionEntry">
<infoLinks>
<infoLink id="5294-10ff-b595-10d0" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5cb5-fcbf-60c9-77fb" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="148f-7301-e4db-4952" name="Gladiator Reaper" hidden="false" collective="false" import="true" targetId="de9a-7ea4-0cfe-87ad" type="selectionEntry">
<infoLinks>
<infoLink id="e53e-7c8b-cd1c-091d" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2093-7115-5dca-92f6" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="051d-5c2f-d82b-712e" name="Gladiator Valiant " hidden="false" collective="false" import="true" targetId="5828-59fa-8fe8-03ae" type="selectionEntry">
<infoLinks>
<infoLink id="158b-9cea-c4d8-04c3" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="83c2-a977-d47a-e52b" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="60d2-79d6-cbd7-f358" name="Hammerfail Bunker" hidden="false" collective="false" import="true" targetId="d068-0e53-bd66-4fe8" type="selectionEntry">
<infoLinks>
<infoLink id="abbe-85b6-8a60-dae2" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d836-e1d8-f732-4749" name="New CategoryLink" hidden="false" targetId="d713cda3-5d0f-40d8-b621-69233263ec2a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="361e-a3e4-cc1c-a16e" name="Heavy Intercessor Squad" hidden="false" collective="false" import="true" targetId="426f-d48b-06eb-f05e" type="selectionEntry">
<infoLinks>
<infoLink id="dd6e-2ef3-e4ae-bfeb" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
<infoLink id="618c-43f0-3055-8347" name="Objective Secured" hidden="false" targetId="87a0-1e8f-4535-6dd1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5a44-e8cc-e3c7-c280" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b027-ecc3-57fd-2618" name="Hellblaster Squad" hidden="false" collective="false" import="true" targetId="ac7e-23cf-be74-f957" type="selectionEntry">
<infoLinks>
<infoLink id="d52a-7066-d9a7-4cf4" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4d8b-3ffd-a18c-2510" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8684-310c-575f-1880" name="Honour Guard [Legends]" hidden="false" collective="false" import="true" targetId="02ee-2890-6c93-ea34" type="selectionEntry">
<infoLinks>
<infoLink id="a2a4-c94c-1321-ecee" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="67f5-7318-ed94-1afc" name="Hunter" hidden="false" collective="false" import="true" targetId="af33-4263-38f9-ef56" type="selectionEntry">
<infoLinks>
<infoLink id="ca6d-ebca-7aa0-f7c4" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d170-81f5-95b1-a9f8" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="37c6-4e43-ca17-1be4" name="Imperial Space Marine [Legends]" hidden="false" collective="false" import="true" targetId="fde4-48fe-5b25-d8c3" type="selectionEntry">
<infoLinks>
<infoLink id="9d43-58ce-4a14-459d" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3dc8-e5f9-c87e-fd04" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="71c6-dd1a-061e-bf01" name="Impulsor" hidden="false" collective="false" import="true" targetId="9930-9131-25e4-fd41" type="selectionEntry">
<infoLinks>
<infoLink id="e19e-6b99-1c36-e870" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a9b3-71e0-0118-fe10" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5473-5b26-3253-4641" name="Inceptor Squad" hidden="false" collective="false" import="true" targetId="70bc-0516-df21-bbb8" type="selectionEntry">
<infoLinks>
<infoLink id="da2d-6d6e-d59d-13be" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c04b-743f-1330-8297" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8d57-7ee5-b80c-7192" name="Incursor Squad" hidden="false" collective="false" import="true" targetId="c7c4-a4fe-8e4f-5eb6" type="selectionEntry">
<infoLinks>
<infoLink id="706c-78f7-e1d2-21db" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
<infoLink id="e8a6-443e-b66d-176c" name="Objective Secured" hidden="false" targetId="87a0-1e8f-4535-6dd1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4d66-c84e-078c-eb43" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7973-bbd6-1272-de94" name="Infiltrator Squad" hidden="false" collective="false" import="true" targetId="4d98-5c31-6b1c-9002" type="selectionEntry">
<infoLinks>
<infoLink id="9732-74b1-7c79-a894" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
<infoLink id="1dd2-86ee-fd19-24af" name="Objective Secured" hidden="false" targetId="87a0-1e8f-4535-6dd1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="23bc-3305-8761-8968" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bbee-937f-0bdb-aff3" name="Intercessor Squad" hidden="false" collective="false" import="true" targetId="e89e-4431-97de-4b38" type="selectionEntry">
<infoLinks>
<infoLink id="7e3e-e90d-d8ce-37b6" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
<infoLink id="9283-ee24-c280-d0c5" name="Objective Secured" hidden="false" targetId="87a0-1e8f-4535-6dd1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6430-cc34-0bfd-5398" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f2b4-3a48-16fd-099e" name="Invictor Tactical Warsuit" hidden="false" collective="false" import="true" targetId="2c7f-89cd-0078-fb70" type="selectionEntry">
<infoLinks>
<infoLink id="7dc8-9004-20cf-95ac" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0042-6016-5c5f-950f" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1278-fa4e-ce35-9b83" name="Judiciar" hidden="false" collective="false" import="true" targetId="335d-a06f-0afb-c749" type="selectionEntry">
<infoLinks>
<infoLink id="4c5f-3418-29fa-f787" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="847b-c2df-7834-5356" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="df65-c79e-72a3-4c65" name="Relics" hidden="false" collective="false" import="true" targetId="e6ae-603c-ac42-ff8a" type="selectionEntryGroup"/>
<entryLink id="4647-fa14-854a-3fa0" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c55b-ceca-3892-5504" type="selectionEntryGroup"/>
<entryLink id="eff6-6585-ce06-dc75" name="Stratagem: Warrior of Legend" hidden="false" collective="false" import="true" targetId="ad41-3ce3-001e-7a9c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="67ca-84bf-dc2f-dc78" name="Land Raider" hidden="false" collective="false" import="true" targetId="1dc2-439f-a67f-ab18" type="selectionEntry">
<infoLinks>
<infoLink id="1253-6777-ec69-5cca" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4c64-231f-009f-0ff6" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8cb2-9c0a-6185-ce1f" name="Land Raider Achilles" hidden="false" collective="false" import="true" targetId="cda6-03b8-b84c-777e" type="selectionEntry">
<infoLinks>
<infoLink id="d9a4-ba62-1aa5-4ae8" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="51e1-f523-4f20-4877" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9e9b-aea4-9760-8591" name="Land Raider Crusader" hidden="false" collective="false" import="true" targetId="82a3-db47-e289-5c4a" type="selectionEntry">
<infoLinks>
<infoLink id="59a4-d98d-7dfb-ea0e" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5685-9ddc-afce-f279" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a06e-d433-9fc0-c00a" name="Land Raider Excelsior [Legends]" hidden="false" collective="false" import="true" targetId="1bf2-8db1-fc7f-085e" type="selectionEntry">
<infoLinks>
<infoLink id="55e8-2f9b-411b-abaf" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="329f-e312-7f2e-8082" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a994-8a19-54e0-4c81" name="Land Raider Helios [Legends]" hidden="false" collective="false" import="true" targetId="2d29-c013-02f4-1b69" type="selectionEntry">
<infoLinks>
<infoLink id="07ee-694c-9d43-7c91" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cb45-a9c9-0ec9-313c" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0e3a-d229-bbfe-efc8" name="Land Raider Prometheus [Legends]" hidden="false" collective="false" import="true" targetId="63f2-ec41-a54f-9c67" type="selectionEntry">
<infoLinks>
<infoLink id="46d8-1ab8-2255-7eb6" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="11a6-ecfa-8fd3-5791" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6ff5-b52b-0aa0-dc1a" name="Land Raider Redeemer" hidden="false" collective="false" import="true" targetId="5549-ba1d-add0-8c62" type="selectionEntry">
<infoLinks>
<infoLink id="67db-badb-d0c9-2a9c" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ba6d-0cc8-4616-18e0" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="73b1-a21c-c34f-5d03" name="Land Speeder Storm" hidden="false" collective="false" import="true" targetId="0213-79bc-add0-1b5d" type="selectionEntry">
<infoLinks>
<infoLink id="e82f-dc98-0aba-9012" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="da3e-9f41-7800-7265" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="19fb-6336-aebd-98b5" name="Land Speeder Tempest" hidden="false" collective="false" import="true" targetId="fe5a-52a1-e42a-51cd" type="selectionEntry">
<infoLinks>
<infoLink id="8d4e-7ebb-a8d3-cce5" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="d442-2b9e-d0f2-96b7" name="Land Speeder Tornadoes" hidden="false" collective="false" import="true" targetId="df46-28c5-9f51-1d4f" type="selectionEntry">
<infoLinks>
<infoLink id="b57a-2a64-3dc5-079b" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a645-0b2a-be9b-9f74" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="47cb-790a-2abe-f473" name="Land Speeder Typhoons" hidden="false" collective="false" import="true" targetId="7471-0ab4-c1b0-0e0a" type="selectionEntry">
<infoLinks>
<infoLink id="7057-6e5d-5818-a65f" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="94e4-1e77-e63b-d67b" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ea07-59e9-f359-7706" name="Land Speeders" hidden="false" collective="false" import="true" targetId="f177-22c2-149f-d158" type="selectionEntry">
<infoLinks>
<infoLink id="b894-c87d-c4a9-b25a" name="Savage Fury" hidden="false" targetId="50dd-5312-6550-d7e0" type="profile"/>
</infoLinks>
<categoryLinks>