This repository has been archived by the owner on Aug 2, 2020. It is now read-only.
generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Imperium - Grey Knights.cat
8555 lines (8555 loc) · 676 KB
/
Imperium - Grey Knights.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="8cd9-ed49-8c91-2f96" name="Imperium - Grey Knights" revision="59" battleScribeVersion="2.03" authorName="BSData Developers" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="5335-9d49-c85e-4817" gameSystemRevision="130" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="0cc2-3545-pubN112001" name="Codex: Grey Knights"/>
</publications>
<categoryEntries>
<categoryEntry id="31b6-b037-4c7a-f850" name="Grey Knights" hidden="false"/>
<categoryEntry id="4c7d-8833-ad8f-9b89" name="Adeptus Astartes" hidden="false"/>
<categoryEntry id="ed14-046b-12ea-4e1d" name="Strike Squad" hidden="false"/>
<categoryEntry id="2821-762a-49dc-5a17" name="Terminator" hidden="false"/>
<categoryEntry id="d7f3-e85c-9e30-c44c" name="Lord Kaldor Draigo" hidden="false"/>
<categoryEntry id="3a3f-d525-511f-0b7a" name="Grand Master" hidden="false"/>
<categoryEntry id="15f0-19f4-d5b2-9102" name="Brother-Captain" hidden="false"/>
<categoryEntry id="ff8b-de2b-ba78-fe91" name="Ancient" hidden="false"/>
<categoryEntry id="78e6-44b3-63ea-504e" name="Brotherhood Ancient" hidden="false"/>
<categoryEntry id="602f-db93-3bfb-1d3e" name="Brotherhood Champion" hidden="false"/>
<categoryEntry id="bfaf-d2e3-ea37-d0a1" name="Voldus" hidden="false"/>
<categoryEntry id="2dee-488a-0b2d-7187" name="Interceptor Squad" hidden="false"/>
<categoryEntry id="93ce-c53b-02d5-24f5" name="Paladin" hidden="false"/>
<categoryEntry id="c78d-e495-4b56-c15b" name="Nemesis Dreadknight" hidden="false"/>
<categoryEntry id="8897-680b-dbc0-0289" name="Land Raider" hidden="false"/>
<categoryEntry id="23bc-575c-6245-d064" name="Land Raider Crusader" hidden="false"/>
<categoryEntry id="34fe-b4c8-64ce-402d" name="Land Raider Redeemer" hidden="false"/>
<categoryEntry id="180a-06b2-af90-6ee0" name="Stormraven Gunship" hidden="false"/>
<categoryEntry id="7050-d223-264f-f46d" name="Dreadnought" hidden="false"/>
<categoryEntry id="e180-8655-ddcc-69cc" name="Venerable Dreadnought" hidden="false"/>
<categoryEntry id="6ad6-41f2-c4c4-e200" name="Servitors" hidden="false"/>
<categoryEntry id="b6fc-4377-2f38-1842" name="Librarian" hidden="false"/>
<categoryEntry id="79a9-2fca-fdf0-9699" name="Grey Knights" hidden="false"/>
<categoryEntry id="5f54-ad56-a036-640f" name="Grey Knights Vortimer Pattern Razorback" hidden="false"/>
<categoryEntry id="a3fa-58fb-89d6-eb7c" name="Grey Knights Doomglaive Pattern Dreadnought" hidden="false"/>
<categoryEntry id="c0db-0846-37b8-cb4f" name="Dreadnought" hidden="false"/>
<categoryEntry id="9d88-c10f-a509-d631" name="Razorback" hidden="false"/>
<categoryEntry id="3099-4bb3-af23-358e" name="Land Raider" hidden="false"/>
<categoryEntry id="4641-ddc0-e56b-44e3" name="Grey Knights Thunderhawk Assault Gunship" hidden="false"/>
<categoryEntry id="ed3a-5a1a-9b60-ab37" name="Grey Knights Vortimer Pattern Land Raider Redeemer" hidden="false"/>
<categoryEntry id="14bb-2de9-464a-22b5" name="Stormtalon Gunship" hidden="false"/>
<categoryEntry id="d072-1a10-52c7-15c9" name="Stormhawk Interceptor" hidden="false"/>
<categoryEntry id="b9bb-cadc-5dad-170b" name="Chaplain" hidden="false"/>
<categoryEntry id="92b9-9c2f-f83a-d6e8" name="Castellan Crowe" hidden="false"/>
<categoryEntry id="dcb2-8f51-3849-e06d" name="Stern" hidden="false"/>
<categoryEntry id="2a13-c803-fbe2-96e0" name="Techmarine" hidden="false"/>
<categoryEntry id="f486-7ad1-1d08-195f" name="Terminator Squad" hidden="false"/>
<categoryEntry id="e126-9580-f366-7bae" name="Apothecary" hidden="false"/>
<categoryEntry id="599b-fb10-960a-a29f" name="Paladin Squad" hidden="false"/>
<categoryEntry id="7a99-89d3-27de-98f9" name="Purifier Squad" hidden="false"/>
<categoryEntry id="d05b-e3e3-0b58-424a" name="Purgation Squad" hidden="false"/>
<categoryEntry id="651b-4132-1395-d3a9" name="Rhino" hidden="false"/>
<categoryEntry id="fb14-eb8f-867b-3ac9" name="Priest" publicationId="5c2d-db9f-58ca-e7b2" page="67" hidden="false"/>
<categoryEntry id="392f-c3be-9f7a-c861" name="Legends" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="6f2a-590a-c7ae-1f89" name="Detachment Bonuses" 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="c90f-03c0-d184-acdc" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="91b8-6330-7453-3c25" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d88f-7c5a-45b7-7c97" name="Show Bonuses" 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="870c-668d-fae3-fb16" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3009-fb70-053d-cc4c" name="Brotherhood of Psykers" hidden="false" targetId="5a9b-93d7-3e90-9672" type="rule"/>
<infoLink id="77eb-4b12-b245-6bd8" name="Knights of Titan" hidden="false" targetId="a26c-3bc4-cd1f-10bf" type="rule"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="38f4-615d-f35e-da9c" name="Pre Game Enforcement" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="0494-bae4-73d8-1235" 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="0244-9f38-1f40-4689" name="New EntryLink" hidden="false" collective="false" import="true" targetId="e012-a289-720d-a36c" type="selectionEntry"/>
<entryLink id="6cb7-4e4d-9811-a18f" name="Brother-Captain" hidden="false" collective="false" import="true" targetId="f4b7-6f8e-448d-9c3b" type="selectionEntry"/>
<entryLink id="e7b9-75a0-5700-eb0e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="630a-1d50-0a37-a639" type="selectionEntry"/>
<entryLink id="db00-b971-96ba-1ba7" name="New EntryLink" hidden="false" collective="false" import="true" targetId="c701-7188-c97c-cce6" type="selectionEntry"/>
<entryLink id="e653-39ff-b13a-74b5" name="New EntryLink" hidden="false" collective="false" import="true" targetId="1cb4-ee5e-e756-5299" type="selectionEntry"/>
<entryLink id="cd08-22f1-42d1-b0e2" name="New EntryLink" hidden="false" collective="false" import="true" targetId="c122-d85d-f519-81ae" type="selectionEntry"/>
<entryLink id="c1a2-ba3e-b4dc-d16f" name="Grand Master" hidden="false" collective="false" import="true" targetId="ae77-bbb6-8a07-c24b" type="selectionEntry"/>
<entryLink id="92eb-aba6-a177-dad3" name="New EntryLink" hidden="false" collective="false" import="true" targetId="30b4-cee3-1edf-7ee5" type="selectionEntry"/>
<entryLink id="97e1-b5b9-a016-70a9" name="New EntryLink" hidden="false" collective="false" import="true" targetId="d8c1-ae2a-0ca5-88df" type="selectionEntry"/>
<entryLink id="135d-5b8f-17dd-d344" name="New EntryLink" hidden="false" collective="false" import="true" targetId="b7af-7b03-7dfa-e4b5" type="selectionEntry"/>
<entryLink id="ea50-9c74-d6e2-d797" name="New EntryLink" hidden="false" collective="false" import="true" targetId="5254-e74b-2380-e119" type="selectionEntry"/>
<entryLink id="b4da-1c17-3d75-4dc9" name="New EntryLink" hidden="false" collective="false" import="true" targetId="9790-e0f9-5343-81bc" type="selectionEntry"/>
<entryLink id="05bc-4c32-0e62-f81e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="feb0-e13f-7b59-7e07" type="selectionEntry"/>
<entryLink id="4d61-f94b-94f1-936d" name="Apothecary" hidden="false" collective="false" import="true" targetId="6ad2-bcea-a5bd-6da8" type="selectionEntry"/>
<entryLink id="4f7a-efc4-0181-c9f4" name="New EntryLink" hidden="false" collective="false" import="true" targetId="45ea-60a2-7f7e-06c7" type="selectionEntry"/>
<entryLink id="5e19-e5b2-201f-b30d" name="New EntryLink" hidden="false" collective="false" import="true" targetId="0db5-e1aa-6692-1f98" type="selectionEntry"/>
<entryLink id="79fb-ade6-e3c1-eebb" name="New EntryLink" hidden="false" collective="false" import="true" targetId="7c6d-f81e-621d-f141" type="selectionEntry"/>
<entryLink id="89e2-a82c-83da-7cf6" name="New EntryLink" hidden="false" collective="false" import="true" targetId="5a45-57d9-82b8-a715" type="selectionEntry"/>
<entryLink id="c6b3-9338-e684-42b2" name="New EntryLink" hidden="false" collective="false" import="true" targetId="42dd-aa19-1dd5-80b8" type="selectionEntry"/>
<entryLink id="c74d-cb4a-7fb2-0456" name="New EntryLink" hidden="false" collective="false" import="true" targetId="312c-43a3-f95a-3ec9" type="selectionEntry"/>
<entryLink id="a5ad-37ea-e594-ef20" name="Stormraven Gunship" hidden="false" collective="false" import="true" targetId="9db6-778a-09ce-4084" type="selectionEntry"/>
<entryLink id="2202-e3f3-c019-6240" name="Dreadnought" hidden="false" collective="false" import="true" targetId="38ba-4407-1cdf-bd8b" type="selectionEntry"/>
<entryLink id="46e1-6156-4979-ff52" name="Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="4623-e156-ac81-26cd" type="selectionEntry"/>
<entryLink id="1350-c4c8-e22c-b9fa" name="Techmarine" hidden="false" collective="false" import="true" targetId="e15c-3096-8468-aa26" type="selectionEntry"/>
<entryLink id="5431-bb0a-200c-05f9" name="New EntryLink" hidden="false" collective="false" import="true" targetId="ab50-d8e5-a340-28fa" type="selectionEntry"/>
<entryLink id="6659-db85-50fa-2f32" name="Librarian" hidden="false" collective="false" import="true" targetId="1345-340b-cee3-c05e" type="selectionEntry"/>
<entryLink id="1dd7-deca-146d-81f9" name="New EntryLink" hidden="false" collective="false" import="true" targetId="ba4b-b779-f04d-63fd" type="selectionEntry"/>
<entryLink id="f744-c1c1-1ec1-c9db" name="New EntryLink" hidden="false" collective="false" import="true" targetId="3489-1d03-b75e-5218" type="selectionEntry"/>
<entryLink id="725a-9d5c-dfd2-e5e6" name="Thunderhawk Assault Gunship" hidden="false" collective="false" import="true" targetId="ad4f-aef9-b95b-10f3" type="selectionEntry"/>
<entryLink id="a5f6-c7dc-c8d7-f32f" name="Vortimer Pattern Land Raider Redeemer" hidden="false" collective="false" import="true" targetId="3217-a7cd-f0ed-2876" type="selectionEntry"/>
<entryLink id="3a31-a10e-f9a4-c28e" name="Vortimer Pattern Razorback" hidden="false" collective="false" import="true" targetId="4a36-10ef-98c0-1b85" type="selectionEntry"/>
<entryLink id="2655-9630-d566-8edb" name="Doomglaive Dreadnought" hidden="false" collective="false" import="true" targetId="f171-a117-a674-fcc4" type="selectionEntry"/>
<entryLink id="54b9-0e46-2eaa-5820" name="Stormhawk Interceptor" hidden="false" collective="false" import="true" targetId="dada-96a4-e83b-257f" type="selectionEntry"/>
<entryLink id="210b-0941-6039-3965" name="Stormtalon Gunship" hidden="false" collective="false" import="true" targetId="546a-1474-e2e0-989a" type="selectionEntry"/>
<entryLink id="ef78-5ea8-6010-5d2c" name="Grand Master in Nemesis Dreadknight" hidden="false" collective="false" import="true" targetId="0abf-b3fb-43c9-08d2" type="selectionEntry"/>
<entryLink id="f1b9-7c3b-b86d-8d26" name="Grey Knight Chaplain" hidden="false" collective="false" import="true" targetId="b6ec-8c15-3e7d-bb6a" type="selectionEntry"/>
<entryLink id="daf8-fa3b-af05-b261" name="Armoury of Titan" hidden="false" collective="false" import="true" targetId="887a-2749-e111-629e" type="selectionEntry">
<categoryLinks>
<categoryLink id="9641-6791-e354-ed3b" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="784f-bfc9-b09f-c671" 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="false" childId="cfc5-43e4-b02e-d1f9" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
</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="b82e-6fae-2b20-9a82" name="Hide Legends Options" hidden="false" collective="false" import="true" targetId="d2c5-d7cc-f564-ac1f" type="selectionEntry"/>
<entryLink id="ee3b-c725-b855-1822" name="Inquisitor" hidden="false" collective="false" import="true" targetId="0b13-8c12-cbea-300f" type="selectionEntry">
<categoryLinks>
<categoryLink id="d798-6353-8811-2e3b" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4a09-efa6-56e1-cc5c" name="Inquisitor Coteaz" hidden="false" collective="false" import="true" targetId="81d1-1b5f-e97c-35ba" type="selectionEntry">
<categoryLinks>
<categoryLink id="017c-09a1-4f47-56ef" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a5f7-f04e-ff3f-9f78" name="Inquisitor Eisenhorn" hidden="false" collective="false" import="true" targetId="86b2-7c8b-a051-60ca" type="selectionEntry">
<categoryLinks>
<categoryLink id="a077-df09-868a-fdc2" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3444-51c0-50ca-0e66" name="Inquisitor Greyfax" hidden="false" collective="false" import="true" targetId="9d0c-6df4-8f5d-5a34" type="selectionEntry">
<categoryLinks>
<categoryLink id="b0ad-14d0-cd59-f501" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="89c5-9997-e791-3693" name="Inquisitor Karamazov" hidden="false" collective="false" import="true" targetId="59d5-160c-f21d-6e49" type="selectionEntry">
<categoryLinks>
<categoryLink id="c643-7864-e930-ba0a" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8c03-b6e8-f630-a9e5" name="Inquisitor-Lord Hector Rex" hidden="false" collective="false" import="true" targetId="f34a-e3be-53b1-d783" type="selectionEntry">
<categoryLinks>
<categoryLink id="f746-e1db-d3bc-06ca" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="91dd-379a-1b8d-ef80" name="Inquisitor-Lord Solomon Lok" hidden="false" collective="false" import="true" targetId="027b-c552-db2c-f5f0" type="selectionEntry">
<categoryLinks>
<categoryLink id="2225-9a05-1fb1-73ea" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8d8a-3696-7143-3635" name="Ordo Malleus Inquisitor in Terminator Armour" hidden="false" collective="false" import="true" targetId="ba53-1df7-404e-e9c9" type="selectionEntry">
<categoryLinks>
<categoryLink id="ca14-6627-64bb-eb9a" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0fe3-aec5-55ab-9c04" name="Lord Inquisitor Kyria Draxus" hidden="false" collective="false" import="true" targetId="132c-a00e-3b0b-5795" type="selectionEntry">
<categoryLinks>
<categoryLink id="9f9f-8437-9854-966f" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="29b0-fa12-c9b3-9291" 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="5108-0235-86e0-711e" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="b6c2-018d-fcba-6b95" name="The Black Blade of Antwyr" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b575-68d9-f438-b29b" name="The Black Blade of Antwyr" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c97e-2928-fc16-ddc3" name="Dreadfist" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="70dc-ea63-61e4-f38a" name="Dreadfist" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If a model is equipped with two dreadfists, each time it fights it can make 1 additional attack with them.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="10.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6320-0ff7-489d-a576" name="Malleus Argyrum" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="170f-5bef-2b47-5092" name="Malleus Argyrum" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b2c2-86a8-13e9-6290" name="Nemesis Daemon Greathammer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5d52-b575-7dc4-ff8b" name="Nemesis Daemon Greathammer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When a model attacks with this weapon, you must subtract 1 from the hit roll. Damage rolls of less than 3 count as 3 for this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="15.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9beb-5ba2-8317-4b82" name="Nemesis Falchion" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="3b45-5376-733a-9050" name="New InfoLink" hidden="false" targetId="8dda-c08b-39ae-a8f3" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="1.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bbe1-df34-13d0-7ed1" name="Nemesis Force Halberd" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="2595-3113-0720-3a70" name="New InfoLink" hidden="false" targetId="b638-a7b3-9eab-00bd" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="1.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9b71-6e0f-e71f-eacc" name="Nemesis Force Sword" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="0e2a-2983-22bf-6e39" name="New InfoLink" hidden="false" targetId="ad6d-a483-9837-233a" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="1.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="58fb-9127-cea0-b46a" name="Nemesis Greatsword" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="0bbc-f430-3018-6f40" name="Nemesis Greatsword" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="10.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9dc6-e559-0099-005a" name="Nemesis Warding Stave" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="1c6e-a442-5010-aaaa" name="New InfoLink" hidden="false" targetId="a04b-a0df-30b1-9339" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="1.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f442-9be2-7fd2-2a94" name="The Titansword" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c448-314d-0175-5d77" name="The Titansword" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="76fd-e479-a97b-469e" name="Gatling Psilencer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="152c-e891-1fa5-8443" name="Gatling Psilencer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 12</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="20.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4699-2140-a461-203b" name="Heavy Incinerator" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4d87-357e-a3f3-75ef" name="Heavy Incinerator" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its targets.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="19.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a939-ef50-ff7f-636d" name="Heavy Psycannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1fbd-a97f-0771-069b" name="Heavy Psycannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="24.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6650-9429-ac09-255d" name="Incinerator" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="954f-a451-c28a-f5da" name="Incinerator" hidden="false" targetId="16b6-e15c-6301-dfee" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="9.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="94c1-7cb5-a934-687a" name="Psilencer" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11be-2bc6-677b-97a9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f6d-7e5b-d7b6-4ea5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d621-acd4-5387-cd9c" name="New InfoLink" hidden="false" targetId="f7d8-8d94-0a86-534b" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="4.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c047-6362-b1bb-1ffd" name="Psycannon" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e4c-dddd-19dd-b7b5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd2d-33f1-061a-a6e5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d050-b028-8a5a-5402" name="New InfoLink" hidden="false" targetId="a63a-ec88-3dc0-f3cd" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="7.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37bc-bbf1-18fd-7294" name="Psyk-out Grenade" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ef6a-6942-5854-4484" name="Psyk-out Grenade" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">6"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Grenade D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time you roll a hit roll of 6+ for this weapon when targeting a (Psyker) or (Daemon), the target suffers a mortal wound instead of the normal damage.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e012-a289-720d-a36c" name="Strike Squad" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="7">
<conditions>
<condition field="selections" scope="e012-a289-720d-a36c" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9939-4098-d186-7d33" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="b1bd-1640-8dd7-a17f" name="New InfoLink" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
<infoLink id="f64d-7c48-a8db-0e3d" name="Rites of Banishment" hidden="false" targetId="c424-f335-287f-f14c" type="rule"/>
<infoLink id="7b5a-2b3e-cb9c-5c74" name="Daemon Hunters" hidden="false" targetId="a7db-5058-2216-4e6d" type="rule"/>
<infoLink id="f5b0-77e7-a206-5a81" name="New InfoLink" hidden="false" targetId="a29c-ad1e-441b-2167" type="rule"/>
<infoLink id="181a-c718-dfd7-7b6a" name="New InfoLink" hidden="false" targetId="c046-073b-7a50-c436" type="rule"/>
<infoLink id="8b4a-a4c6-0a07-8e2a" name="Psyker (Sanctic 1 Squad)" hidden="false" targetId="b0e6-c2fd-8a9e-9258" type="profile"/>
<infoLink id="2c54-c0bf-6bf7-b820" name="Smite (Rites of Banishment)" hidden="false" targetId="142a-cae9-795d-d610" type="profile"/>
<infoLink id="6f79-500a-eb08-3d7b" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
<infoLink id="4788-b237-acba-8d01" name="Shock Assault" hidden="false" targetId="f9dd-dd4b-52b4-306d" type="rule"/>
<infoLink id="e40f-95fc-ab73-6166" name="Masters of the Warp" hidden="false" targetId="1ac4-804b-0cf0-0bef" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6996-f183-71b1-f09b" name="New CategoryLink" hidden="false" targetId="4c7d-8833-ad8f-9b89" primary="false"/>
<categoryLink id="5d5b-974f-55d0-7536" name="New CategoryLink" hidden="false" targetId="31b6-b037-4c7a-f850" primary="false"/>
<categoryLink id="ea4a-dca4-00c7-e7e2" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="67e4-0fb7-09f1-ae31" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="8a86-b659-ce19-bb2e" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="474b-fa13-9d5c-791c" name="New CategoryLink" hidden="false" targetId="ed14-046b-12ea-4e1d" primary="false"/>
<categoryLink id="8d44-e359-ca28-cbbd" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="9c3b-6a73-4e23-53bf" name="Faction: Adeptus Astartes" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9939-4098-d186-7d33" name="Grey Knights" hidden="false" collective="false" import="true" defaultSelectionEntryId="9253-70bc-b620-f22f">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dac9-ab51-5e89-c3a9" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9638-8040-606e-e169" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="1123-be87-fca2-f102" name="Grey Knight (Daemon Hammer)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fce2-981c-aeff-ca82" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6ec6-2485-3f16-57df" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="19eb-8686-c09b-7d18" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="beb2-6803-3166-085f" name="New EntryLink" hidden="false" collective="false" import="true" targetId="8fba-9c8d-73bd-fe8e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="030a-2d90-bd64-8b59" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9750-9cfe-34c1-3aea" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b220-54cb-ba4a-7043" name="Grey Knight (Falchions)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9cfc-6fdb-6325-7bc2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="47c3-d153-5f99-ae12" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="690b-3cc7-b7c2-e7f3" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="d2be-46c9-ea53-15f5" name="Nemesis Falchion" hidden="false" collective="false" import="true" targetId="9beb-5ba2-8317-4b82" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4325-d660-7e0e-854a" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ebd3-228e-3667-16bf" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6bcd-f4c5-d359-9671" name="Grey Knight (Halberd)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11d9-88a9-91fd-89f3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1b0d-2c65-9cb0-21d4" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="bf65-05ae-807e-5b52" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="0888-83c3-a90b-ae84" name="New EntryLink" hidden="false" collective="false" import="true" targetId="bbe1-df34-13d0-7ed1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f6b9-0be9-ff2e-19ad" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d716-b58d-fd49-8603" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9253-70bc-b620-f22f" name="Grey Knight (Sword)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0494-890e-a2da-a881" type="max"/>
</constraints>
<infoLinks>
<infoLink id="83ae-30d3-cb23-4dea" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="d266-29e7-1cd3-506e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="46a5-729c-5cdb-eec9" name="New EntryLink" hidden="false" collective="false" import="true" targetId="9b71-6e0f-e71f-eacc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d11-e011-e04b-c55b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df64-25d6-1b58-fa00" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1271-d9a1-50d2-6af3" name="Grey Knight (Warding Stave)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58eb-f81e-e28b-b013" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0375-e644-a83e-0ad2" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="5755-f360-74b4-11b8" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="e191-5aef-49dc-295e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="9dc6-e559-0099-005a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2244-3d0f-9e77-1ad7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="35b5-7195-0d95-8d60" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="4449-0bb7-3409-60c8" name="Special Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="df0e-0c95-bf8c-492a" value="1.0">
<conditions>
<condition field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9939-4098-d186-7d33" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df0e-0c95-bf8c-492a" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="17ee-24e8-af43-f4ef" name="Grey Knight (Incinerator)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9813-7fbb-9bea-e300" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0b54-380a-91b7-4c1c" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="96bd-8e9c-5d41-b61e" name="Incinerator" hidden="false" collective="false" import="true" targetId="6650-9429-ac09-255d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5b4-2545-7b23-3536" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="433f-d35c-629f-8f5a" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a459-a0b7-91c4-2e99" name="Grey Knight (Psycannon)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fda8-3d40-425e-f3ae" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4637-eee6-d32b-19b5" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="282c-728a-6183-2ebd" name="Psycannon" hidden="false" collective="false" import="true" targetId="c047-6362-b1bb-1ffd" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a703-4ab6-edc2-92cb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cbe8-b7fc-e3ff-6b2b" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="66ab-7ff3-f2ce-9430" name="Grey Knight (Psilencer)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4987-7065-1188-1a9f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2599-b0a6-81e7-b2e8" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="0584-76b5-4144-352b" name="Psilencer" hidden="false" collective="false" import="true" targetId="94c1-7cb5-a934-687a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5356-3f32-c860-5220" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e619-812a-26de-85f9" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6bed-fae1-6fb0-5dbc" name="Grey Knight Justicar" hidden="false" collective="false" import="true" targetId="767b-e555-311f-cdbe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="403a-512a-3225-44ed" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e03-77ff-3b4d-b0b4" type="min"/>
</constraints>
</entryLink>
<entryLink id="0fe4-98cb-c921-6ebb" name="Sanctic Powers (1)" hidden="false" collective="false" import="true" targetId="8b6c-c5c4-89ac-574e" type="selectionEntryGroup"/>
<entryLink id="1dcc-a8a7-2052-3609" name="Psyk-out Grenade" hidden="false" collective="false" import="true" targetId="37bc-bbf1-18fd-7294" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a295-65e7-764d-78c6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc99-4163-4c45-d150" type="max"/>
</constraints>
</entryLink>
<entryLink id="6f18-42b7-9b30-140e" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f4d7-7d56-5de1-a796" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e3b-5f04-18e9-d0f4" type="max"/>
</constraints>
</entryLink>
<entryLink id="6731-7461-0958-bcc7" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="f75f-6a24-9313-7b86" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="7.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5878-dbd5-19a1-ad9d" name="Grey Knight" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="6f00-5fd0-5a37-7cf0" name="Grey Knight" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="933e-6752-2f4c-a5b8" name="New EntryLink" hidden="false" collective="false" import="true" targetId="2b03-8d64-3711-f300" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="19.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="767b-e555-311f-cdbe" name="Grey Knight Justicar" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9d07-0d02-74cf-b462" name="Grey Knight Justicar" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="98ca-4c67-2c7f-c3ee" name="New EntryLink" hidden="false" collective="false" import="true" targetId="2b03-8d64-3711-f300" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="19ec-febb-759f-f765" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c3f1-cb69-ff2a-28fb" type="min"/>
</constraints>
</entryLink>
<entryLink id="fb52-5a60-2169-0454" name="New EntryLink" hidden="false" collective="false" import="true" targetId="2619-cbc9-7327-dc75" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="14.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f4b7-6f8e-448d-9c3b" name="Brother-Captain" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="6cf3-e6f1-4e1f-8ff5" name="Brother Captain" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+/4++</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5227-621c-1e64-297a" name="New InfoLink" hidden="false" targetId="191c-9909-f353-4013" type="rule"/>
<infoLink id="d9d7-8d88-6297-3f24" name="And They Shall Know No Fear" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
<infoLink id="da36-e07e-97b2-92cf" name="New InfoLink" hidden="false" targetId="a7db-5058-2216-4e6d" type="rule"/>
<infoLink id="8121-0606-ef1f-48a6" name="New InfoLink" hidden="false" targetId="a29c-ad1e-441b-2167" type="rule"/>
<infoLink id="9e94-85fa-d140-7733" name="Psyker (Sanctic 1)" hidden="false" targetId="100e-a5f5-4af4-8c40" type="profile"/>
<infoLink id="dd9c-1c65-e638-73e0" name="Smite (Rites of Banishment)" hidden="false" targetId="142a-cae9-795d-d610" type="profile"/>
<infoLink id="1cc3-e01f-3360-7b35" name="Rites of Banishment" hidden="false" targetId="c424-f335-287f-f14c" type="rule"/>
<infoLink id="c700-6526-6c10-c906" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
<infoLink id="747b-a17c-1fb1-6e70" name="Shock Assault" hidden="false" targetId="f9dd-dd4b-52b4-306d" type="rule"/>
<infoLink id="93c8-8613-1666-8394" name="Masters of the Warp" hidden="false" targetId="1ac4-804b-0cf0-0bef" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="83c5-d3a7-b4a1-8436" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="fe67-6682-1620-efe8" name="New CategoryLink" hidden="false" targetId="31b6-b037-4c7a-f850" primary="false"/>
<categoryLink id="da26-19a7-ae53-726a" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="31db-41cd-6eee-725a" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="cc38-e292-1b54-d321" name="New CategoryLink" hidden="false" targetId="15f0-19f4-d5b2-9102" primary="false"/>
<categoryLink id="bb37-9d1f-c6d6-aa9d" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="92a1-05eb-b087-56d2" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="39a1-84b9-f313-1504" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="d450-3887-a797-6ac7" name="New CategoryLink" hidden="false" targetId="2821-762a-49dc-5a17" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="6e9f-1798-d767-7367" name="New EntryLink" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3eb2-c724-82cc-df0f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db0c-db54-ce0c-3e84" type="min"/>
</constraints>
</entryLink>
<entryLink id="293b-78b4-e2e3-6f80" name="New EntryLink" hidden="false" collective="false" import="true" targetId="37bc-bbf1-18fd-7294" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c384-f909-907c-e53a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9986-f9cc-8ad8-e829" type="min"/>
</constraints>
</entryLink>
<entryLink id="bc0a-bb1f-fd2b-7008" name="Iron Halo" hidden="false" collective="false" import="true" targetId="1191-4e05-aba4-b4fc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b951-43fc-fc99-e539" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d13d-090c-7420-c26a" type="min"/>
</constraints>
</entryLink>
<entryLink id="fca5-b18b-2b0c-2450" name="Brother Captain Melee Weapons" hidden="false" collective="false" import="true" targetId="942d-b10a-8cc5-3854" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0d9e-a687-c64e-9dc5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3c1e-4ba7-22af-0a50" name="New EntryLink" hidden="false" collective="false" import="true" targetId="ae47-9014-02a8-8add" type="selectionEntryGroup"/>
<entryLink id="3a9d-11a3-7f4f-0e5a" name="Grey Knight Relics" hidden="false" collective="false" import="true" targetId="c779-4f85-7bfa-aad3" type="selectionEntryGroup"/>
<entryLink id="1757-2792-13ae-afa5" name="Warlord" hidden="false" collective="false" import="true" targetId="2516-dd30-d80e-f79a" type="selectionEntry"/>
<entryLink id="144b-83ab-b7d0-f298" name="Grey Knight Warlord Trait" hidden="false" collective="false" import="true" targetId="87f6-76b7-a0d2-6b2c" type="selectionEntryGroup"/>
<entryLink id="b53c-3531-0482-52ba" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="cba7-02ce-3959-113e" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="c8b9-d42f-d0e8-a78a" name="Grey Knight Psychic Powers" hidden="false" collective="false" import="true" targetId="7518-ba99-0fa6-4f6b" type="selectionEntryGroup">
<modifiers>
<modifier type="increment" field="ccbb-3bd3-154a-351d" value="1.0">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="923f-ee30-3c6c-42e2" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ccbb-3bd3-154a-351d" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="9.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="630a-1d50-0a37-a639" name="Lord Kaldor Draigo" publicationId="28ec-711c-pubN78977" page="182" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="2be2-fd1f-0903-8160" type="max"/>
</constraints>
<profiles>
<profile id="1d3f-632c-2f50-0b89" name="Lord Kaldor Draigo" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">7</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+/3++</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="061d-fc70-7b1d-587c" name="And They Shall Know No Fear" page="" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
<infoLink id="aa07-2073-705a-c81c" name="Daemon Hunters" hidden="false" targetId="a7db-5058-2216-4e6d" type="rule"/>
<infoLink id="1e1f-5258-17a1-a52b" name="Rites of Banishment" hidden="false" targetId="c424-f335-287f-f14c" type="rule"/>
<infoLink id="5d7e-a30a-5e24-499c" name="Smite (Rites of Banishment)" hidden="false" targetId="142a-cae9-795d-d610" type="profile"/>
<infoLink id="2ebd-3909-e123-cca4" name="Chapter Master" hidden="false" targetId="0975-04aa-4a85-ef72" type="rule"/>
<infoLink id="2341-eca1-0cfd-63d7" name="Warp Emergence" hidden="false" targetId="b9dd-60fd-2512-dc1e" type="rule"/>
<infoLink id="a2b8-0519-f7e2-fcc1" name="Bane of Evil" hidden="false" targetId="5e20-12a8-78b5-6d3f" type="rule"/>
<infoLink id="b5c4-2220-b441-8b2c" name="Psyker (Sanctic 2)" hidden="false" targetId="ab24-41ef-2542-25de" type="profile"/>
<infoLink id="e17c-13d3-7323-9969" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
<infoLink id="6aa9-7ec5-ebe0-762b" name="Shock Assault" hidden="false" targetId="f9dd-dd4b-52b4-306d" type="rule"/>
<infoLink id="86f3-2423-f6ee-d95c" name="Masters of the Warp" hidden="false" targetId="1ac4-804b-0cf0-0bef" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c0f0-9086-c653-45b0" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="5dc6-226c-5676-0803" name="New CategoryLink" hidden="false" targetId="31b6-b037-4c7a-f850" primary="false"/>
<categoryLink id="6b5b-7659-20ee-1e3b" name="New CategoryLink" hidden="false" targetId="4c7d-8833-ad8f-9b89" primary="false"/>
<categoryLink id="2f44-aa71-cfc1-9b56" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="6493-652e-ab92-de36" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="e510-d0eb-e3ea-7526" name="New CategoryLink" hidden="false" targetId="2821-762a-49dc-5a17" primary="false"/>
<categoryLink id="7408-561d-08a2-7c47" name="New CategoryLink" hidden="false" targetId="d7f3-e85c-9e30-c44c" primary="false"/>
<categoryLink id="de99-a8fe-4f4a-0a10" name="New CategoryLink" hidden="false" targetId="3a3f-d525-511f-0b7a" primary="false"/>
<categoryLink id="1a6b-a791-e1c0-7c33" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="6684-9ae1-0b79-c774" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="bbad-f3d2-fb8f-1ccb" name="The Titansword" hidden="false" collective="false" import="true" targetId="f442-9be2-7fd2-2a94" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="efec-ad3a-7642-f674" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a4db-cfa7-36a5-2bd4" type="min"/>
</constraints>
</entryLink>
<entryLink id="20b0-c86b-8b73-267d" name="Storm bolter" hidden="false" collective="false" import="true" targetId="2b03-8d64-3711-f300" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f18-df94-3729-864b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0545-4f78-31aa-fd93" type="min"/>
</constraints>
</entryLink>
<entryLink id="9d91-6a8e-2078-26b5" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5412-4c34-f06d-9bd5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="67f6-2dab-c1c4-37a5" type="min"/>
</constraints>
</entryLink>
<entryLink id="3587-a5d9-2af1-edf1" name="New EntryLink" hidden="false" collective="false" import="true" targetId="37bc-bbf1-18fd-7294" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c4d0-2ba5-7683-e67e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9dfd-b1ba-5639-c950" type="min"/>
</constraints>
</entryLink>
<entryLink id="746e-4d9e-7d7c-0f6f" name="Storm shield" hidden="false" collective="false" import="true" targetId="38b5-ef30-f87f-5275" type="selectionEntry">
<modifiers>
<modifier type="set" field="e356-c769-5920-6e14" value="0.0"/>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd4e-61c2-d803-bd5e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d5e-0c07-14b9-862f" type="max"/>
</constraints>
</entryLink>
<entryLink id="73e9-1c85-bec0-56b1" name="Warlord" hidden="false" collective="false" import="true" targetId="2516-dd30-d80e-f79a" type="selectionEntry"/>
<entryLink id="7b25-6e69-fe51-ec10" name="Grey Knight Warlord Trait" hidden="false" collective="false" import="true" targetId="87f6-76b7-a0d2-6b2c" type="selectionEntryGroup"/>
<entryLink id="e2c6-8442-d58b-64f9" name="Grey Knight Psychic Powers" hidden="false" collective="false" import="true" targetId="7518-ba99-0fa6-4f6b" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8124-119c-a203-6c3a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="12.0"/>
<cost name="pts" typeId="points" value="180.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1191-4e05-aba4-b4fc" name="Iron Halo" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="01be-cc2b-e0c9-7a4b" name="Iron Halo" hidden="false">
<description>This model has a 4+ invulnerable save.</description>
</rule>
</rules>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0db5-e1aa-6692-1f98" name="Brotherhood Ancient" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2fef-f058-37b4-6a43" name="Brotherhood Ancient" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+/5++</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e66e-ef87-220d-b515" name="New InfoLink" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
<infoLink id="8b88-70f8-b047-5b76" name="New InfoLink" hidden="false" targetId="a7db-5058-2216-4e6d" type="rule"/>
<infoLink id="1171-18a5-9d8e-8d16" name="Teleport Strike" hidden="false" targetId="a29c-ad1e-441b-2167" type="rule"/>
<infoLink id="d65c-b420-c2a6-f1c6" name="New InfoLink" hidden="false" targetId="100e-a5f5-4af4-8c40" type="profile"/>