generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Imperium - Adeptus Arbites 8th.cat
5331 lines (5331 loc) · 410 KB
/
Imperium - Adeptus Arbites 8th.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="15e0-c8e4-ca16-cd08" name="Imperium - Adeptus Arbites" revision="6" battleScribeVersion="2.03" library="false" gameSystemId="5335-9d49-c85e-4817" gameSystemRevision="130" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="4156-221d-8681-cbce" name="Codex: Adeptus Arbites"/>
</publications>
<profileTypes>
<profileType id="6ef4-70b2-b0a2-7a3d" name="Desperadoes">
<characteristicTypes>
<characteristicType id="c631-031f-15f0-6179" name="Ability"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="6d56-ccd0-549e-bfdb" name="Faction: Adeptus Arbites" hidden="false"/>
<categoryEntry id="64ed-6aa6-ddfd-ec20" name="Faction: <PRECINCT>" hidden="false"/>
<categoryEntry id="7734-046b-7da6-0d48" name="Judge" publicationId="4156-221d-8681-cbce" page="63" hidden="false"/>
<categoryEntry id="fc26-4e19-5b4d-0a9c" name="Cyber" hidden="false"/>
<categoryEntry id="3904-8ccb-f8a6-22de" name="Cyber-Mastiff" hidden="false"/>
<categoryEntry id="0190-42b9-ebeb-53f0" name="Marshal" hidden="false"/>
<categoryEntry id="28fd-e0fb-479f-2861" name="Patrol Team" hidden="false"/>
<categoryEntry id="2727-ec3b-df1b-717b" name="Enforcer Team" hidden="false"/>
<categoryEntry id="1029-d1c3-dc17-8e4f" name="Penal Legionnaires" hidden="false"/>
<categoryEntry id="1bd6-b357-390b-c1a1" name="Penal Custodian" hidden="false"/>
<categoryEntry id="097b-d5bc-876d-01c1" name="Faction: Scintilla" hidden="false"/>
<categoryEntry id="0df2-47a5-d29d-7e56" name="Luthir Goreman" hidden="false"/>
<categoryEntry id="9f43-db21-526a-2954" name="Faction: Mandos" hidden="false"/>
<categoryEntry id="425c-e288-d2aa-6aa9" name="Faction: Triton" hidden="false"/>
<categoryEntry id="4693-74a5-f38c-a6f9" name="Catarina Igazi" hidden="false"/>
<categoryEntry id="e972-d1c2-f6b9-0a1f" name="Stanley Bartlett" hidden="false"/>
<categoryEntry id="8c5e-1647-6ae2-16af" name="Finn" hidden="false"/>
<categoryEntry id="9a87-91f1-e9e1-b857" name="Godwyn Fischig" hidden="false"/>
<categoryEntry id="6a72-40b9-bb49-3744" name="Shira Calpurnia" hidden="false"/>
<categoryEntry id="1c9d-b8e8-67ca-f696" name="Faction: Inquisition" hidden="false"/>
<categoryEntry id="766a-d20f-7239-a9ef" name="Faction: Ordo Xenos" hidden="false"/>
<categoryEntry id="76f1-3ee4-aed5-6e87" name="Faction: Hydraphur" hidden="false"/>
<categoryEntry id="6012-7644-5ca4-c17c" name="Shock Team" hidden="false"/>
<categoryEntry id="6134-7031-2aed-baa0" name="Mortiurge" hidden="false"/>
<categoryEntry id="5cfc-eaec-60dd-3e22" name="Cyber-Mastiffs" hidden="false"/>
<categoryEntry id="8379-81f6-13a4-5421" name="Suppression Servitors" hidden="false"/>
<categoryEntry id="5d0a-9236-e5e3-d7ef" name="Cyber-construct Handler" hidden="false"/>
<categoryEntry id="1d11-8a5e-5614-86c6" name="Arbites Chirurgeon" hidden="false"/>
<categoryEntry id="ea0d-7675-15ad-12bc" name="Rapid Pursuit Team" hidden="false"/>
<categoryEntry id="5a8e-f457-cd4d-9b82" name="Arbites Sentinel" hidden="false"/>
<categoryEntry id="8f36-f4aa-2756-7a3b" name="Arbites Tarantula" hidden="false"/>
<categoryEntry id="2b82-52c8-9cb7-a19c" name="Gun Emplacement" hidden="false"/>
<categoryEntry id="3c7e-6f53-42ab-4070" name="Arbites Chimadon" hidden="false"/>
<categoryEntry id="be02-2c09-35de-ac12" name="Arbites Rhino" hidden="false"/>
<categoryEntry id="377a-4387-0149-1542" name="Arbites Repressor" hidden="false"/>
<categoryEntry id="a181-feb3-879d-0729" name="Arbites Chimera" hidden="false"/>
<categoryEntry id="58ca-c40c-266c-be06" name="Arbites Valkyrie" hidden="false"/>
<categoryEntry id="fa07-4517-0011-c46e" name="Lord Marshal" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="6ec2-6309-4699-d08d" name="Penal Custodian - Use entry from No Force Org Slot group" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="74b8-6f36-6a62-86b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3990-ac8c-e794-5309" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" 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="d58e-50a1-63b5-e87e" name="Judge" hidden="false" collective="false" import="true" targetId="2616-6bcf-738c-5029" type="selectionEntry"/>
<entryLink id="2dc3-c603-1028-5c76" name="Judge on Bike" hidden="false" collective="false" import="true" targetId="bf9a-ebe5-880b-535b" type="selectionEntry"/>
<entryLink id="b032-caaa-913b-0102" name="Marshal" hidden="false" collective="false" import="true" targetId="0022-b753-588b-5023" type="selectionEntry"/>
<entryLink id="4a7c-fc04-54b1-5c42" name="Patrol Team" hidden="false" collective="false" import="true" targetId="023e-cf30-db4f-2da2" type="selectionEntry"/>
<entryLink id="e687-a1ed-a54f-5c73" name="Enforcer Cadre" hidden="false" collective="false" import="true" targetId="9262-6c07-d95f-983e" type="selectionEntry"/>
<entryLink id="f62e-752a-7bb7-c413" name="Penal Legionnaires" hidden="false" collective="false" import="true" targetId="74b8-6f36-6a62-86b7" type="selectionEntry"/>
<entryLink id="15ff-6b4d-ce25-ba8f" name="Penal Custodian" hidden="false" collective="false" import="true" targetId="93e1-069e-ce40-8216" type="selectionEntry"/>
<entryLink id="b713-91fa-ca2f-f36a" name="Luthir Goreman" hidden="false" collective="false" import="true" targetId="cb96-b1eb-0686-03bb" 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="true" includeChildForces="false" childId="1aee-6ebb-1727-fb26" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cf11-a20d-7ebf-2abc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="ee3c-f0cd-3163-8aa8" name="Catarina Igazi" hidden="false" collective="false" import="true" targetId="a257-b3d5-91b3-4bc5" 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="true" includeChildForces="false" childId="c614-5f5e-a936-4df9" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cf11-a20d-7ebf-2abc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f82b-941d-5655-6d15" name="Stanley Bartlett" hidden="false" collective="false" import="true" targetId="fa96-7128-7a94-6e94" 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="true" includeChildForces="false" childId="7ac7-891b-385e-95f2" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cf11-a20d-7ebf-2abc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9262-688c-f090-a217" name="Godwyn Fishig" hidden="false" collective="false" import="true" targetId="d381-13d0-d358-074a" type="selectionEntry"/>
<entryLink id="4de7-dc28-aae6-f984" name="Shira Calpurnia" hidden="false" collective="false" import="true" targetId="661c-33d9-1893-3eb2" 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="true" includeChildForces="false" childId="2c55-d5d4-eaaf-08f7" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cf11-a20d-7ebf-2abc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="60f4-2ab8-d60e-d769" name="Execution Team" hidden="false" collective="false" import="true" targetId="2772-d813-f79d-8f33" type="selectionEntry"/>
<entryLink id="2e7f-8359-2b90-cc49" name="Shock Team" hidden="false" collective="false" import="true" targetId="38eb-74d4-5fa3-497b" type="selectionEntry"/>
<entryLink id="e48f-4530-63db-8824" name="Mortiurge" hidden="false" collective="false" import="true" targetId="584a-95a4-a8d2-0206" type="selectionEntry"/>
<entryLink id="106a-47d5-17ca-ec51" name="Cyber-mastiffs" hidden="false" collective="false" import="true" targetId="21f6-0464-73be-c0ac" type="selectionEntry"/>
<entryLink id="1a69-1270-565a-184b" name="Suppression Servitors" hidden="false" collective="false" import="true" targetId="8f6f-f331-7eaf-c9ee" type="selectionEntry"/>
<entryLink id="c9f3-7fa5-ba84-5bce" name="Cyber-construct Handler" hidden="false" collective="false" import="true" targetId="a569-6b94-f96e-dede" type="selectionEntry"/>
<entryLink id="8c19-6883-8cbf-4d33" name="Arbites Chirurgeon" hidden="false" collective="false" import="true" targetId="b7da-18d9-a9be-f423" type="selectionEntry"/>
<entryLink id="1bcb-4abe-c455-3092" name="Rapid Pursuit Team" hidden="false" collective="false" import="true" targetId="c5fa-f304-5b80-2ddf" type="selectionEntry"/>
<entryLink id="01ef-7c7a-178c-d18d" name="Arbites Sentinel Squadron" hidden="false" collective="false" import="true" targetId="e77c-de23-5b8d-3f4e" type="selectionEntry"/>
<entryLink id="b05d-53dd-553b-35ac" name="Arbites Tarantula Battery" hidden="false" collective="false" import="true" targetId="daaa-c121-1b68-9444" type="selectionEntry"/>
<entryLink id="77b0-7607-ef42-a2da" name="Arbites Chimadon" hidden="false" collective="false" import="true" targetId="81e5-0237-d0b6-efdc" type="selectionEntry"/>
<entryLink id="29af-51d0-ee6a-3fd9" name="Arbites Rhino" hidden="false" collective="false" import="true" targetId="877d-f837-773d-053f" type="selectionEntry"/>
<entryLink id="71e4-84a7-43af-68f9" name="Arbites Repressor" hidden="false" collective="false" import="true" targetId="d650-b138-6b10-bf4b" type="selectionEntry"/>
<entryLink id="a652-90a0-3a60-0ae8" name="Arbites Chimera" hidden="false" collective="false" import="true" targetId="f0a1-9924-e092-9196" type="selectionEntry"/>
<entryLink id="e20d-b61b-f1bd-48e0" name="Arbites Valkyrie" hidden="false" collective="false" import="true" targetId="3205-7893-0b46-3fa7" type="selectionEntry"/>
<entryLink id="5f4d-112b-ccf3-5f31" name="Precinct Choice" hidden="false" collective="false" import="true" targetId="8432-91c2-e6c7-8f6f" type="selectionEntry"/>
<entryLink id="8df7-3fe8-11fe-52f3" name="Artifacts of Righteousness" hidden="false" collective="false" import="true" targetId="c775-96d9-1ced-bc2c" type="selectionEntry"/>
<entryLink id="d71e-569e-d09b-fd75" name="Inquisitor Greyfax" hidden="false" collective="false" import="true" targetId="9d0c-6df4-8f5d-5a34" type="selectionEntry">
<categoryLinks>
<categoryLink id="0d44-fcd8-0126-2749" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4ef0-d074-fd69-6306" name="Inquisitor Coteaz" hidden="false" collective="false" import="true" targetId="81d1-1b5f-e97c-35ba" type="selectionEntry">
<categoryLinks>
<categoryLink id="7196-e22e-a4d3-2382" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="50ef-caa2-7172-587d" name="Inquisitor Eisenhorn" hidden="false" collective="false" import="true" targetId="86b2-7c8b-a051-60ca" type="selectionEntry">
<categoryLinks>
<categoryLink id="c5c9-1c60-5a22-2399" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1d02-f272-a685-8743" name="Inquisitor" hidden="false" collective="false" import="true" targetId="0b13-8c12-cbea-300f" type="selectionEntry">
<categoryLinks>
<categoryLink id="ffec-2e75-784b-b109" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c676-bdec-e5d4-907c" name="Inquisitor Karamazov" hidden="false" collective="false" import="true" targetId="59d5-160c-f21d-6e49" type="selectionEntry">
<categoryLinks>
<categoryLink id="d0a7-7aa9-bc7a-b646" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1759-17fe-56ac-631c" name="Inquisitor-Lord Hector Rex" hidden="false" collective="false" import="true" targetId="f34a-e3be-53b1-d783" type="selectionEntry">
<categoryLinks>
<categoryLink id="7470-5ecf-7f27-02b0" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="50ea-63c1-0fc1-7732" name="Inquisitor-Lord Solomon Lok" hidden="false" collective="false" import="true" targetId="027b-c552-db2c-f5f0" type="selectionEntry">
<categoryLinks>
<categoryLink id="f336-70de-0f20-97bf" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3269-3a9f-6a0c-479f" name="Ordo Malleus Inquisitor in Terminator Armour" hidden="false" collective="false" import="true" targetId="ba53-1df7-404e-e9c9" type="selectionEntry">
<categoryLinks>
<categoryLink id="546d-c62b-9d91-b323" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="2616-6bcf-738c-5029" name="Judge" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="332a-7b66-5e3a-3269" name="Judge" 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">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</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">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="48a9-1bc3-8ee5-90d6" name="Rapid Response" hidden="false" targetId="274b-2036-d019-4007" type="rule"/>
<infoLink id="1342-4607-dd69-b446" name="Refractor Field" hidden="false" targetId="033d-ca8b-f6f0-5a35" type="profile"/>
<infoLink id="318e-4b83-5376-126a" name="Hammer of Heretics" hidden="false" targetId="fbb5-4489-b842-db80" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="50f9-64d3-eb06-ef22" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="06c0-d328-090d-b6a2" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="8e21-1d83-c9b8-af33" name="Faction: Adeptus Arbites" hidden="false" targetId="6d56-ccd0-549e-bfdb" primary="false"/>
<categoryLink id="1aea-352a-59b5-4b75" name="Faction: <PRECINCT>" hidden="false" targetId="64ed-6aa6-ddfd-ec20" primary="false"/>
<categoryLink id="efb9-7283-0537-aaa5" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="38b4-5706-6694-974c" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="b294-87d2-40ae-09f3" name="Judge" hidden="false" targetId="7734-046b-7da6-0d48" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="e1e9-8338-339e-3735" name="Ranged weapons" hidden="false" collective="false" import="true" targetId="3723-9cba-dd83-f135" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f6ab-75ee-c66a-30d1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b71-ce7c-1142-ea23" type="min"/>
</constraints>
<entryLinks>
<entryLink id="430f-302b-1b30-6494" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<modifiers>
<modifier type="set" field="46a0-2c46-f8c0-00fe" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="46a0-2c46-f8c0-00fe" type="min"/>
</constraints>
</entryLink>
<entryLink id="7abd-f61d-be34-fcc1" name="Arbites shotgun" hidden="false" collective="false" import="true" targetId="1113-9c65-91c6-a3b7" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="278f-20a9-e45c-65e0" name="Melee weapons (Judge)" hidden="false" collective="false" import="true" targetId="a6e2-4988-1dd6-072b" type="selectionEntryGroup"/>
<entryLink id="ebe0-6441-a59b-7492" name="Shields" hidden="false" collective="false" import="true" targetId="b9cf-f10d-dbaa-43c6" type="selectionEntryGroup"/>
<entryLink id="f55d-fb39-f561-e4c6" name="Grapplehawk" hidden="false" collective="false" import="true" targetId="6e1e-4a3a-3ab1-a40b" type="selectionEntry"/>
<entryLink id="5175-3aa0-cfbb-bf81" name="Cyber-mastiff" hidden="false" collective="false" import="true" targetId="1860-c840-d475-bbcf" type="selectionEntry"/>
<entryLink id="b293-5080-b9a6-49e1" name="Choke grenades" hidden="false" collective="false" import="true" targetId="e0aa-5ca8-1754-1997" type="selectionEntry"/>
<entryLink id="ffbb-3a35-6e44-df12" name="Warlord" hidden="false" collective="false" import="true" targetId="fe23-f1e4-987b-e436" type="selectionEntry"/>
<entryLink id="982e-fefb-34bb-f347" name="Antiquities of Justice" hidden="false" collective="false" import="true" targetId="2e4b-1bc2-d9ef-c97f" type="selectionEntryGroup"/>
<entryLink id="0c7c-7d84-b266-cfc4" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="aef2-52f8-759d-3943" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="40.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1113-9c65-91c6-a3b7" name="Arbites shotgun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3df0-2274-7bb9-8119" name="Arbites shotgun" 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">Assault 2</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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If the target is within half range, add 1 to this weapon's Strength.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="1.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="446a-11e0-452a-4927" name="Command baton" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0170-a2da-99b8-ad37" name="Command baton" 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">+1</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 the bearer fights, it can make 1 additional attack with this weapon. In addition, increase the range of this model's abilities by 3".</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="5.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="3677-cadb-0b14-e7f9" name="Power ram" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b6c7-c228-675a-0c22" name="Power ram" 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">When attacking a VEHICLE, MONSTER or BUILDING, this weapon has a Damage of D6. When attacking with this weapon, you must subtract 1 from the hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="10.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="6e1e-4a3a-3ab1-a40b" name="Grapplehawk" 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="74b2-dded-c22b-de5b" type="max"/>
</constraints>
<profiles>
<profile id="4ff0-e99c-d821-6acf" name="Grapplehawk" 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">Assault D6</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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon can target units that are not visible to the bearer.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="5.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="1860-c840-d475-bbcf" name="Cyber-mastiff" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e08-648c-8c67-6e17" type="max"/>
</constraints>
<profiles>
<profile id="4475-8e58-9721-7fd2" name="Loyalty Unto Death" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When resolving an attack made against a <PRECINCT> INFANTRY unit whilst that unit is within 3" of a friendly <PRECINCT> CYBER-MASTIFF unit, if the wound roll is successful, you can roll one D6; on a 2+ that CYBER-MASTIFF unit suffers 1 mortal wound and the attack sequence ends.</characteristic>
</characteristics>
</profile>
<profile id="77ae-09c3-d23c-8623" name="Cyber-mastiff" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</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">2</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bc40-35fe-dc3b-d87c" name="Rapid Response" hidden="false" targetId="274b-2036-d019-4007" type="rule"/>
<infoLink id="e307-2332-df47-0c9f" name="Servo-Support" hidden="false" targetId="90b8-5d04-baf5-536c" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a7cc-679c-30a1-fc89" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="0236-3c80-7978-c30f" name="Faction: Adeptus Arbites" hidden="false" targetId="6d56-ccd0-549e-bfdb" primary="false"/>
<categoryLink id="7b6a-1548-9f6b-aea2" name="Faction: <PRECINCT>" hidden="false" targetId="64ed-6aa6-ddfd-ec20" primary="false"/>
<categoryLink id="2c42-ee17-3a8f-7a01" name="Beast" hidden="false" targetId="7892-58f7-e769-4d87" primary="false"/>
<categoryLink id="3619-75dd-b3d3-0d2a" name="Cyber" hidden="false" targetId="fc26-4e19-5b4d-0a9c" primary="false"/>
<categoryLink id="0cd9-0c14-a126-0fd2" name="Cyber-Mastiff" hidden="false" targetId="3904-8ccb-f8a6-22de" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="df2e-32e9-5d15-89df" name="Teeth" hidden="false" collective="false" import="true" targetId="623d-5c26-d20e-09bf" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="pts" typeId="points" value="18.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e0aa-5ca8-1754-1997" name="Choke grenades" 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="a4df-8eff-f0d2-ab10" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e177-b87c-1e1b-245d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c022-604b-1fdb-f578" name="Choke Weapon" hidden="false" targetId="d599-c32a-9ed1-8fc0" type="rule"/>
<infoLink id="089a-c6eb-a71c-c5bd" name="Choke grenade" hidden="false" targetId="fe40-43ff-fcf7-ae44" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="30c5-bd8e-0841-5863" name="Choke grenades" 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="70a5-5aeb-ed1a-43bd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d497-b285-eed1-81f0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="54e1-7d5e-a604-632c" name="Choke Weapon" hidden="false" targetId="d599-c32a-9ed1-8fc0" type="rule"/>
<infoLink id="5810-4f32-346c-206f" name="Choke grenade" hidden="false" targetId="fe40-43ff-fcf7-ae44" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bf9a-ebe5-880b-535b" name="Judge on Bike" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="38d1-dbba-5451-b3d4" name="Judge on Bike" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">14"</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">3</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">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ebc3-00d6-cf78-3cea" name="Refractor Field" hidden="false" targetId="033d-ca8b-f6f0-5a35" type="profile"/>
<infoLink id="b3e0-3b39-6001-8f72" name="Hammer of Heretics" hidden="false" targetId="fbb5-4489-b842-db80" type="profile"/>
<infoLink id="0b63-8be5-68f6-80e2" name="Rapid Response" hidden="false" targetId="274b-2036-d019-4007" type="rule"/>
<infoLink id="4f20-575c-e69c-523d" name="Turbo-boost" hidden="false" targetId="2243-43c8-0765-fb39" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6651-2501-aeba-590c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="067d-8fd8-db61-9a10" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="06f9-2111-37d8-862c" name="Faction: Adeptus Arbites" hidden="false" targetId="6d56-ccd0-549e-bfdb" primary="false"/>
<categoryLink id="5adc-70c3-6b0b-c7d9" name="Faction: <PRECINCT>" hidden="false" targetId="64ed-6aa6-ddfd-ec20" primary="false"/>
<categoryLink id="9ad3-02f1-bd7f-6bd6" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="15d8-6914-104c-e719" name="Biker" hidden="false" targetId="1c6f-0311-3eba-3180" primary="false"/>
<categoryLink id="0f8c-2319-a87d-e54a" name="Judge" hidden="false" targetId="7734-046b-7da6-0d48" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="fd75-9290-89e1-95bb" name="Ranged weapons" hidden="false" collective="false" import="true" targetId="3723-9cba-dd83-f135" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d31-b8ab-a893-3752" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87dd-b5be-261b-fd8d" type="min"/>
</constraints>
<entryLinks>
<entryLink id="8b8c-aaef-5042-f7a1" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<modifiers>
<modifier type="set" field="ae2e-3b77-42fb-5f62" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae2e-3b77-42fb-5f62" type="min"/>
</constraints>
</entryLink>
<entryLink id="6e8b-3615-1de0-edd8" name="Arbites shotgun" hidden="false" collective="false" import="true" targetId="1113-9c65-91c6-a3b7" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="03e1-179a-4f8d-6805" name="Melee weapons (Judge)" hidden="false" collective="false" import="true" targetId="a6e2-4988-1dd6-072b" type="selectionEntryGroup"/>
<entryLink id="62dd-011e-3579-4e4c" name="Laud hailer" hidden="false" collective="false" import="true" targetId="c9fa-b58e-2fd1-cd52" type="selectionEntry"/>
<entryLink id="47a4-81b7-7a40-60b8" name="Grapplehawk" hidden="false" collective="false" import="true" targetId="6e1e-4a3a-3ab1-a40b" type="selectionEntry"/>
<entryLink id="ed91-de91-119f-b6f7" name="Warlord" hidden="false" collective="false" import="true" targetId="fe23-f1e4-987b-e436" type="selectionEntry"/>
<entryLink id="24da-1e39-116c-e786" name="Antiquities of Justice" hidden="false" collective="false" import="true" targetId="2e4b-1bc2-d9ef-c97f" type="selectionEntryGroup"/>
<entryLink id="e2c1-9ec6-ccff-0371" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="aef2-52f8-759d-3943" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="54.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c9fa-b58e-2fd1-cd52" name="Laud hailer" 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="fca3-f211-fb07-c800" type="max"/>
</constraints>
<profiles>
<profile id="3bdb-05e1-80b0-5188" name="Laud hailer" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to the Leadership characteristic of ADEPTUS ARBITES units whilst they are within 6” of any friendly models with this ability.</characteristic>
</characteristics>
</profile>
</profiles>
<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="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0022-b753-588b-5023" name="Marshal" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="name" value="Lord Marshal">
<conditions>
<condition field="selections" scope="0022-b753-588b-5023" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824e-af07-a3af-dc88" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="0022-b753-588b-5023" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824e-af07-a3af-dc88" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="remove" field="category" value="0190-42b9-ebeb-53f0"/>
<modifier type="add" field="category" value="fa07-4517-0011-c46e"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="4f7b-6104-3534-fde7" name="Marshal" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="0022-b753-588b-5023" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824e-af07-a3af-dc88" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<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">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</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">4+</characteristic>
</characteristics>
</profile>
<profile id="d50e-f8c9-d90b-b53b" name="Lord Marshal" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="0022-b753-588b-5023" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824e-af07-a3af-dc88" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll any failed hit rolls for friendly <PRECINCT> units within 6" of this model.</characteristic>
</characteristics>
</profile>
<profile id="9662-be22-3d0c-61a5" name="Imperial Authority" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="0022-b753-588b-5023" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824e-af07-a3af-dc88" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">All friendly <PRECINCT> units within 6” of this model re-roll failed hit rolls of 1.</characteristic>
</characteristics>
</profile>
<profile id="0392-cf7d-3e0a-332f" name="Lord Marshal" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="0022-b753-588b-5023" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824e-af07-a3af-dc88" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<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">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</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">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7fda-9a94-764f-6d21" name="Rapid Response" hidden="false" targetId="274b-2036-d019-4007" type="rule"/>
<infoLink id="d377-c3fe-65c2-876f" name="Refractor Field" hidden="false" targetId="033d-ca8b-f6f0-5a35" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="08d1-749b-8983-75fa" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="dc28-2e11-215f-766e" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="64db-6104-1832-52d5" name="Faction: Adeptus Arbites" hidden="false" targetId="6d56-ccd0-549e-bfdb" primary="false"/>
<categoryLink id="3fb0-ade4-2070-059b" name="Faction: <PRECINCT>" hidden="false" targetId="64ed-6aa6-ddfd-ec20" primary="false"/>
<categoryLink id="354b-dcf2-6f6b-57e9" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="a1a4-2f39-96c1-e904" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="23c5-2fc7-c16e-d677" name="Marshal" hidden="false" targetId="0190-42b9-ebeb-53f0" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="4a2f-f11c-f064-13c6" name="Ranged weapons" hidden="false" collective="false" import="true" targetId="3723-9cba-dd83-f135" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1def-c32c-9127-8c2b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6756-d1f4-1b05-ae80" type="min"/>
</constraints>
<entryLinks>
<entryLink id="5fa8-a1f8-00b9-abe3" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<modifiers>
<modifier type="set" field="e9bb-31cf-6d6d-f5b1" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e9bb-31cf-6d6d-f5b1" type="min"/>
</constraints>
</entryLink>
<entryLink id="bcce-2c85-38bb-f7fd" name="Arbites shotgun" hidden="false" collective="false" import="true" targetId="1113-9c65-91c6-a3b7" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="73ef-3724-ad79-d610" name="Melee weapons (Marshal)" hidden="false" collective="false" import="true" targetId="1d3c-f762-5d26-ec1a" type="selectionEntryGroup"/>
<entryLink id="0bcd-e11a-7b40-2a54" name="Shields" hidden="false" collective="false" import="true" targetId="b9cf-f10d-dbaa-43c6" type="selectionEntryGroup"/>
<entryLink id="9ae0-4629-927d-4c1c" name="Grapplehawk" hidden="false" collective="false" import="true" targetId="6e1e-4a3a-3ab1-a40b" type="selectionEntry"/>
<entryLink id="81f8-9c8e-86a7-4e6f" name="Cyber-mastiff" hidden="false" collective="false" import="true" targetId="1860-c840-d475-bbcf" type="selectionEntry"/>
<entryLink id="3640-9633-3c11-395a" name="Choke grenades" hidden="false" collective="false" import="true" targetId="e0aa-5ca8-1754-1997" type="selectionEntry"/>
<entryLink id="8162-202f-008d-624d" name="Laud hailer" hidden="false" collective="false" import="true" targetId="c9fa-b58e-2fd1-cd52" type="selectionEntry"/>
<entryLink id="b7be-e549-0dcf-0bcf" name="Warlord" hidden="false" collective="false" import="true" targetId="fe23-f1e4-987b-e436" type="selectionEntry"/>
<entryLink id="f35e-5cb1-f7bd-0052" name="Antiquities of Justice" hidden="false" collective="false" import="true" targetId="2e4b-1bc2-d9ef-c97f" type="selectionEntryGroup"/>
<entryLink id="3658-1feb-b533-5693" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="aef2-52f8-759d-3943" type="selectionEntryGroup"/>
<entryLink id="2b3b-2b10-8dcc-53cd" name="Lord Marshal" hidden="false" collective="false" import="true" targetId="824e-af07-a3af-dc88" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="25.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="023e-cf30-db4f-2da2" name="Patrol Team" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="2.0">
<conditions>
<condition field="selections" scope="023e-cf30-db4f-2da2" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="1ddb-c8b4-e9c5-28ac" name="Arbitrator" 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">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</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">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="48ff-b7a9-62a8-ad4c" name="Rapid Response" hidden="false" targetId="274b-2036-d019-4007" type="rule"/>
<infoLink id="f749-9c40-f8cd-2471" name="Guardians of the Law" hidden="false" targetId="db57-6880-50c1-159e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="683d-6a13-a5e2-7d3f" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="9941-1780-e240-166a" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="11de-5868-6492-db89" name="Faction: Adeptus Arbites" hidden="false" targetId="6d56-ccd0-549e-bfdb" primary="false"/>
<categoryLink id="b031-9f06-7376-70be" name="Faction: <PRECINCT>" hidden="false" targetId="64ed-6aa6-ddfd-ec20" primary="false"/>
<categoryLink id="f02a-c9f7-dee5-30b0" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="c365-6212-9f26-a5ad" name="Patrol Team" hidden="false" targetId="28fd-e0fb-479f-2861" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="94c2-1937-8a7d-4196" name="Proctor" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e85a-2b96-1f12-1d43" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0641-9d8b-112c-1a24" type="max"/>
</constraints>
<profiles>
<profile id="c53c-0435-c1e4-6221" name="Proctor" 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">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</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">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="2f9a-5765-3495-caa5" name="Weapon option" hidden="false" collective="false" import="true" defaultSelectionEntryId="3685-69e6-1a85-d884">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e79d-5f00-2268-fdef" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="234f-9b57-63ad-e5ed" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c5f7-2143-837d-10e2" name="Melee weapons" hidden="false" collective="false" import="true" targetId="c70d-f450-e9cf-6780" type="selectionEntryGroup"/>
<entryLink id="bb06-0792-1c0f-9e7e" name="Ranged weapons" hidden="false" collective="false" import="true" targetId="3723-9cba-dd83-f135" type="selectionEntryGroup"/>
<entryLink id="3685-69e6-1a85-d884" name="Arbites shotgun" hidden="false" collective="false" import="true" targetId="1113-9c65-91c6-a3b7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ea89-47f5-e2f6-43de" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e550-bba2-d7b7-d02d" name="Choke grenades" hidden="false" collective="false" import="true" targetId="30c5-bd8e-0841-5863" type="selectionEntry"/>
<entryLink id="67ee-2046-4ba9-5e78" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9994-71a2-37d8-236c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0e16-0d2b-83c9-6808" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="6.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="e329-1db6-b445-5002" name="4 - 9 Arbitrators" hidden="false" collective="false" import="true" defaultSelectionEntryId="6eac-db02-387e-5149">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa64-0ea2-c2b6-d5f0" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="767f-75b1-7f21-3f60" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="b235-4925-5683-9d0b" name="Arbitrator w/ boltgun" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb78-f1fb-b851-b09f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="04a1-8a1d-b86f-f66a" name="Boltgun" hidden="false" collective="false" import="true" targetId="ca06-ac13-d02f-6f9a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="680c-40e5-d421-74d9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8dbf-4212-4942-1e09" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="1.0"/>
</costs>
</entryLink>
<entryLink id="947f-0099-8af8-0356" name="Choke grenades" hidden="false" collective="false" import="true" targetId="30c5-bd8e-0841-5863" type="selectionEntry"/>
<entryLink id="72d4-b0d0-2bb9-0a81" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b26-e6a4-adf7-8344" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2833-cd66-249b-051b" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="6.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="a274-c25a-4ebb-4754" name="Arbitrator w/ shock maul and shield" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d6d-b38b-209e-82b3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7aee-f7ab-95c9-4ed8" name="Shock maul" hidden="false" collective="false" import="true" targetId="6d15-6391-5629-f8f9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b95-e160-324d-28d6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aff4-b6e0-83d3-2881" type="max"/>
</constraints>
</entryLink>
<entryLink id="1c87-6499-3abb-36cc" name="Choke grenades" hidden="false" collective="false" import="true" targetId="30c5-bd8e-0841-5863" type="selectionEntry"/>
<entryLink id="6a42-a2cd-a510-fcc3" name="Assault shield" hidden="false" collective="false" import="true" targetId="ff16-40b6-1163-5f98" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c97-6207-4227-2c0a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2769-7745-027b-7bb4" type="max"/>
</constraints>
</entryLink>
<entryLink id="7491-4499-9731-d8b4" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e2ea-e031-1762-e5fd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57aa-907b-dc3c-a855" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="6.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="6eac-db02-387e-5149" name="Arbitrator w/ shotgun" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58f9-31a1-dec8-9cdb" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c06a-c84c-d593-1ea6" name="Arbites shotgun" hidden="false" collective="false" import="true" targetId="ca3f-f044-1537-2f1e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae2e-a2e0-823c-dd16" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2756-3b4b-ebe9-f4a8" type="max"/>
</constraints>
</entryLink>
<entryLink id="6c94-4c2e-5534-324c" name="Choke grenades" hidden="false" collective="false" import="true" targetId="30c5-bd8e-0841-5863" type="selectionEntry"/>
<entryLink id="6e52-bf15-8ed1-4d91" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d6cd-41c8-a190-e72c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ab36-8668-dc97-aa2f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="6.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="d57e-73dc-b448-f49e" name="Arbitrator w/ shock maul" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e493-576d-18dd-32f3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="08c8-f0a1-2dad-05d6" name="Choke grenades" hidden="false" collective="false" import="true" targetId="30c5-bd8e-0841-5863" type="selectionEntry"/>
<entryLink id="f79a-00f1-0255-c0ac" name="Shock maul" hidden="false" collective="false" import="true" targetId="6d15-6391-5629-f8f9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c1bd-8625-3221-dc33" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="338f-a0b3-749a-788e" type="max"/>
</constraints>
</entryLink>
<entryLink id="88ab-3785-6598-2f60" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dd4e-afc3-7241-e52e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="40be-cd56-dc92-e3b3" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="6.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>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ca3f-f044-1537-2f1e" name="Arbites shotgun" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="8de4-7858-6320-1cd5" name="Arbites shotgun" 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">Assault 2</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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If the target is within half range, add 1 to this weapon's Strength.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="1.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="6d15-6391-5629-f8f9" name="Shock maul" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="e03c-d3d2-4e16-5eab" name="Shock maul" 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">+1</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 the bearer fights, it can make 1 additional attack with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="1.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="ff16-40b6-1163-5f98" name="Assault shield" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="37e8-2a70-5e37-f27e" name="Assault shield" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to all armour saves for this model.</characteristic>
</characteristics>
</profile>
</profiles>
<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="4.0"/>
</costs>
</selectionEntry>
<selectionEntry id="388f-87c3-e1bc-6f69" name="Assault shield" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="17d3-7e98-1197-b0c3" name="Assault shield" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to all armour saves for this model.</characteristic>
</characteristics>
</profile>
</profiles>
<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="4.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9262-6c07-d95f-983e" name="Enforcer Cadre" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="9262-6c07-d95f-983e" value="10.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c424-87f1-a1b8-2090" name="Covering Ground" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the start of any of your Movement phases, you may split this unit into two separate units, each containing the same number of models. This ability may be used multiple times, but no unit cannot be split into fewer than 5 models.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="db13-185f-3114-8e8b" name="Rapid Response" hidden="false" targetId="274b-2036-d019-4007" type="rule"/>
<infoLink id="5e62-ce36-55c9-9bda" name="Guardians of the Law" hidden="false" targetId="db57-6880-50c1-159e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4169-31e3-55aa-6813" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="8f38-247a-d6b9-5221" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="61ca-75b0-7c6c-70dc" name="Faction: Adeptus Arbites" hidden="false" targetId="6d56-ccd0-549e-bfdb" primary="false"/>
<categoryLink id="9d2f-16e0-a097-5edd" name="Faction: <PRECINCT>" hidden="false" targetId="64ed-6aa6-ddfd-ec20" primary="false"/>
<categoryLink id="9c7c-5f50-2409-009a" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="c092-c997-e143-ac13" name="Enforcer Team" hidden="false" targetId="2727-ec3b-df1b-717b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8e5a-93db-a30f-ee59" name="Regulator" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c9a6-ff27-0e8f-3bcf" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dbdd-a524-a893-a92f" type="max"/>
</constraints>
<profiles>
<profile id="9075-5918-3333-fc78" name="Regulator" 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">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</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">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="e480-9446-5ba2-ec0c" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="95c6-2a3c-f47c-bd50">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="03dd-a3ea-d1f9-53a3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="56ce-7c79-b467-f0ac" type="max"/>
</constraints>
<entryLinks>
<entryLink id="95c6-2a3c-f47c-bd50" name="Shotgun" hidden="false" collective="false" import="true" targetId="2094-c9a6-a426-0970" type="selectionEntry"/>
<entryLink id="8a07-8d60-61d1-49d4" name="Boltgun" hidden="false" collective="false" import="true" targetId="b61f-a3c1-827d-c5b6" type="selectionEntry"/>
<entryLink id="1778-d86c-e9a3-0f1a" name="Lasgun" hidden="false" collective="false" import="true" targetId="fd87-854b-d284-184a" type="selectionEntry"/>
<entryLink id="9fb4-f4e2-5ca9-82ac" name="Shock maul" hidden="false" collective="false" import="true" targetId="6d15-6391-5629-f8f9" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d1f8-7686-cb94-7626" name="Assault shield" hidden="false" collective="false" import="true" targetId="388f-87c3-e1bc-6f69" type="selectionEntry">
<modifiers>
<modifier type="set" field="b107-12fd-db3d-cca8" value="0.0">
<conditions>
<condition field="selections" scope="8e5a-93db-a30f-ee59" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6d15-6391-5629-f8f9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b107-12fd-db3d-cca8" type="max"/>
</constraints>
</entryLink>
<entryLink id="d767-3c50-85f5-b6ba" name="Choke grenades" hidden="false" collective="false" import="true" targetId="e0aa-5ca8-1754-1997" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="4.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="6361-6c65-ba82-908c" name="9 -19 Enforcers" hidden="false" collective="false" import="true" defaultSelectionEntryId="3485-ebd2-7561-3127">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6208-3d4f-7f2c-b7aa" type="min"/>
<constraint field="selections" scope="parent" value="19.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d7d-e175-e8d5-6479" type="max"/>
</constraints>
<profiles>
<profile id="e21c-9066-3629-3793" name="Enforcer" 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">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>