-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLightField Automation.lvclass
More file actions
1085 lines (1080 loc) · 233 KB
/
LightField Automation.lvclass
File metadata and controls
1085 lines (1080 loc) · 233 KB
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'?>
<LVClass LVVersion="20008000">
<Property Name="NI.Lib.Icon" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!+5!!!*Q(C=\:7PLF."%)>`%!3W#EP[#!QB/56Q21W;6.9V9WIBF=8>"E'Q]QLN%U!&$]!)6*-L_AL6#-,BW_WWO;A;<A,*H4VT`PRG>_<L\JZ4K>JD[:([3T;@TW?TU7DUP(AZD7:(GR@L?R&8E@7S2-E\5YU4G+P%O?`)I/-R/^GN/%0+-;LH]FC0_5?>YOD>/6;[8_F;/RLR7F#;VMMJLMV'OVU:8]J0OU\46P:K>LWJ^HW(V8DXL&-X`3/)\9\R#[:\O\@`W^Z@X/2XPN=@F$?VRR-0X('L<X?@[)G?[)G?[)E?[)%?[)%?[)(O[)\O[)\O[)ZO[):O[):O[):?'\L1B3ZUE*,C3;%E;:)A[1S+EF0#E`!E0!E0DUJY%J[%*_&*?/CCB#@B38A3HI3(95JY%J[%*_&*?%B63<)W>(A3(N)LY!FY!J[!*_#BJ!+?!#!I&C1/EI#B)"D="$Q"4]$$L1+?A#@A#8A#(M)+?!+?A#@A#8A95G=F+EVJ[0#12A[0Q_0Q/$Q/$[HF]$A]$I`$Y`"14A[0Q_.!/!7>Z#$)'?2U="Y=(I?(CRQ?B]@B=8A=(E*VB<T/4+%J$2U?A]@A-8A-(I/(&$*Y$"[$R_!R?%ALA]@A-8A-(I/(5D*Y$"[$RQ!RCF*?2D*DI.(*%!Q?DLJ<L+Z36"+L47K<6WV4KGUWN5WENDH5&FVN->5737XSV3:6<<,5*E(NR[F"K]'I&6%<8$LKQ(G0<`%VPM)8_!1@YU.]5)<_Z9[(QU(\`6\<\6<L^6KLV5K,R5+4S54D]6D$Y6#$Q?$]'8B+/X]1DN_F8XL6<T]^W8`^NNR`?@XCZP/<>Z-0E\=X0Z>^`W.ZZ``"`]#X51^V/T^T^"PL\GRH!!!!!!</Property>
<Property Name="NI.Lib.SourceVersion" Type="Int">536903680</Property>
<Property Name="NI.Lib.Version" Type="Str">1.0.0.11</Property>
<Property Name="NI.LV.All.SourceOnly" Type="Bool">false</Property>
<Property Name="NI.LVClass.ClassNameVisibleInProbe" Type="Bool">true</Property>
<Property Name="NI.LVClass.CoreWirePen" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6(0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D%W.T9X-4%S0#^797Q_$1I],V5T-DY.#DR6-T)_$1I]4G&N:4Z#97.L:X*P>7ZE)%.P<'^S0#^/97VF0AU+0&:B<$YR.D=R-49Y-4QP6G&M0AU+0#^6-T)_$1I]1WRV=X2F=DY.#DR/97VF0E:J<'QA5'&U>'6S<DQP4G&N:4Y.#DR/>7V&<(2T0DA],UZV<56M>(-_$1I]64A_$1I]4G&N:4Z3<X=A-$QP4G&N:4Y.#DR797Q_-4=Q0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$%],UZB<75_$1I]6G&M0DAV0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$)],UZB<75_$1I]6G&M0D%X-$QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!T0#^/97VF0AU+0&:B<$YY.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!U0#^/97VF0AU+0&:B<$YR.T!],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.4QP4G&N:4Y.#DR797Q_/$5],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.DQP4G&N:4Y.#DR797Q_-4=Q0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$=],UZB<75_$1I]6G&M0DAV0#^797Q_$1I],V5Y0AU+0#^$<(6T>'6S0AU+0%ER.DY.#DR/97VF0F>J:(2I0#^/97VF0AU+0&:B<$YR0#^797Q_$1I],UER.DY.#DR&6TY.#DR/97VF0EVP:'5],UZB<75_$1I]1WBP;7.F0E.P=(E],U.I<WFD:4Y.#DR$;'^J9W5_4X)],U.I<WFD:4Y.#DR$;'^J9W5_28BD<(6T;8:F)%^S0#^$;'^J9W5_$1I]1WBP;7.F0E*J>#"$<'6B=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1W^Q?4QP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A4X)],U.I<WFD:4Y.#DR$;'^J9W5_4G^S)%6Y9WRV=WFW:3"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1GFU)%.M:7&S0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP26=_$1I]25Q_$1I]4G&N:4Z4>(FM:4QP4G&N:4Y.#DR$;'^J9W5_5W^M;71],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;$QP1WBP;7.F0AU+0%.I<WFD:4Z%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1A2'^U0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP25Q_$1I]25Q_$1I]4G&N:4Z';7RM)&*V<'5],UZB<75_$1I]1WBP;7.F0E6W:7YA4W2E0#^$;'^J9W5_$1I]1WBP;7.F0F>J<G2J<G=],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DR&4$Y.#DR/97VF0E6O:#"$98"T0#^/97VF0AU+0%.I<WFD:4Z%:7:B>7RU0#^$;'^J9W5_$1I]1WBP;7.F0E:M981],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DQP1WRV=X2F=DY.#A!!!!!</Property>
<Property Name="NI.LVClass.DataValRefToSelfLimitedLibFlag" Type="Bool">true</Property>
<Property Name="NI.LVClass.EdgeWirePen" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6+0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D-Q-41Z-4%],V:B<$Y.#DQP64-S0AU+0&5T-DY.#DR/97VF0E*B9WNH=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D%W.T-U/4EU0#^797Q_$1I],V5T-DY.#DR$<(6T>'6S0AU+0%ZB<75_2GFM<#"1982U:8*O0#^/97VF0AU+0%ZV<56M>(-_/$QP4H6N27RU=TY.#DR6/$Y.#DR/97VF0F*P>S!Q0#^/97VF0AU+0&:B<$YS.45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-4QP4G&N:4Y.#DR797Q_-D5V0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$)],UZB<75_$1I]6G&M0D)V.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!T0#^/97VF0AU+0&:B<$YS.45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.$QP4G&N:4Y.#DR797Q_-D5V0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$5],UZB<75_$1I]6G&M0D)V.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!W0#^/97VF0AU+0&:B<$YS.45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.TQP4G&N:4Y.#DR797Q_-D5V0#^797Q_$1I],V5Y0AU+0#^$<(6T>'6S0AU+0%ER.DY.#DR/97VF0F>J:(2I0#^/97VF0AU+0&:B<$YT0#^797Q_$1I],UER.DY.#DR&6TY.#DR/97VF0EVP:'5],UZB<75_$1I]1WBP;7.F0E.P=(E],U.I<WFD:4Y.#DR$;'^J9W5_4X)],U.I<WFD:4Y.#DR$;'^J9W5_28BD<(6T;8:F)%^S0#^$;'^J9W5_$1I]1WBP;7.F0E*J>#"$<'6B=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1W^Q?4QP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A4X)],U.I<WFD:4Y.#DR$;'^J9W5_4G^S)%6Y9WRV=WFW:3"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1GFU)%.M:7&S0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP26=_$1I]25Q_$1I]4G&N:4Z4>(FM:4QP4G&N:4Y.#DR$;'^J9W5_5W^M;71],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;$QP1WBP;7.F0AU+0%.I<WFD:4Z%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1A2'^U0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP25Q_$1I]25Q_$1I]4G&N:4Z';7RM)&*V<'5],UZB<75_$1I]1WBP;7.F0E6W:7YA4W2E0#^$;'^J9W5_$1I]1WBP;7.F0F>J<G2J<G=],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DR&4$Y.#DR/97VF0E6O:#"$98"T0#^/97VF0AU+0%.I<WFD:4Z%:7:B>7RU0#^$;'^J9W5_$1I]1WBP;7.F0E:M981],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DQP1WRV=X2F=DY.#A!!!!!</Property>
<Property Name="NI.LVClass.FlattenedPrivateDataCTL" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!'%+5F.31QU+!!.-6E.$4%*76Q!!8+A!!!2C!!!!)!!!8)A!!!!C!!!!!2V-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!!!!!!I#!!A!!!-!!!+!!!!!!!!!1!!Q!]!,Q!(U#!!A!!!!!"!!%!"P````]!!!!!!!!!!!!!!!!J=@NV4LQ?1Z&P[]QCN];L!!!!$!!!!"!!!!!!XC>/9IHP%%;3S?2$TU<$J.1>D.G0!,)%[9!*G/TY1HY!!!!!!!!!!,<XNP'$D,"-IO4E3$)Q>_!"!!!!`````^1>D.G0!,)%[9!*G/TY1HY!!!!1/(4L0&$`+=)2D0VEC0DXP1!!!!1!!!!!!!!#KQ!"4&:$1Q!!!!-!!F:*4%)!!!!!5&2)-!!!!!5!!1!"!!!!!!)!!E2/6E%!!!!!"#61=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T"T%O-#YQ,D!(<G6V>(*B<""C.$)W.'*F971W.G%U94-W!&"53$!!!!"K!!!!"A&$$6"S<W>S97UA2GFM:8-65(*J<G.F>'^O)%FO=X2S>7VF<H2T#ERJ:WBU2GFF<'1+172E37Z7;76X=SF1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,G2M<!!!!!"16%AQ!!!!=1!"!!U!!!!!!!!!!5-.5(*P:X*B<3"';7RF=R61=GFO9W6U<WYA37ZT>(*V<76O>(-+4'FH;(2';76M:!J":'2*<F:J:8>T+6"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-O:'RM!!*%4F:"!!!!!!!!"#R1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-Q=R,D!O-#YQ"WZF>82S97Q19D1S.D2C:7&E.D:B.'%T.F"53$!!!!"G!!!!"1&$$6"S<W>S97UA2GFM:8-65(*J<G.F>'^O)%FO=X2S>7VF<H2T#ERJ:WBU2GFF<'1Q5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z">82P<7&U;7^O6D-O:'RM!!!!!&"53$!!!!"N!!%!$!!!!!!!!!!"1QV1=G^H=G&N)%:J<'6T&6"S;7ZD:82P<C"*<H.U=H6N:7ZU=QJ-;7>I>%:J:7RE-&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<F9T,G2M<!!$!!!!!!)!!1!!!!!!+1!!!#ZYH'0A9W"K9,D!!-3-1-T5Q01$S0Y!YD-)=%")''2A!!!6Z!I?!!!!!!!!2Q!!!2BYH'.AQ!4`A1")-4)QM"A!;29U=4!.9V-4Y$)8FVV1=7;I'VEBIIR!-?981!943![K2A)CRS+"Z"UY9-.C.A#]E#:1!!!!!!Q!!6:*2&-!!!!!!!-!!!'Q!!!%)(C=+W"C9#CP-$-29':A9':E9&"A;'")TE^*Z7)!]BE1Y!]SBQT1!$60#UX=]-$B.#$1YZ>P!@-^GN^I?$<`9#I6^.A"5`0`AE@T%9X$(NW.)+(D$AFAB>W-BJ>=$1`]HX!"L!WIA&`?!;S`I>+;I94>]!"9](DD&U;)-2A'AN4\>$9WM$!!K=Y/)/89,7"YQ.&;E(`+)@\7\U#6HLU/,"Y1*:[^DC!G2&E!#UB>)!N9Y57A1J^OK+)!I++*)+:(^U317I^?*ZAWVWY(I$98;S?)NLHE;#P.*6W,,4&;(,M^A&KMP9![$BTOO)##U/,(Y_!D&E^Y9(LVMD"Z*9MQ?83[="E=>_%+%!-J[R8BQBL?95!$&$Q[TS%E>T&#6(4T)=1]/BU$5(A;S,T'#SCR#24YA#\Q!*)G&/)/YU_7''$N[XO\1/G5$5H-A1'3@M%*'!HL-4!SA"Q0)H/B;GW!<#;IG!R5$-3_#UW%'EB[@D%CT)?*A5*$!WI@+V3-DQH#"ZM*:!>!W6J!^A:'#.M;S";!CPM!W2]9'2!:'!@N\/`CSI!F8S0H>1#$5]()!!!!$C!"A!!!!!9S-#YQ,D%!!!!!!!!-)!#!!!!!"$)Q,D!!!!!!$C!"A!!!!!9S-#YQ,D%!!!!!!!!-)!#!!!!!"$)Q,D!!!!!!$C!"A!!!!!9S-#YQ,D%!!!!!!!!5!1!!!068.9*Z*K+-,H.34A:*/:U!!!!.!!!!!!!!!!!!!!!!!!!!!!!!!)$`````_!!0``Q!(`_Y!"@>P1"`X<J".NGZ%X66CF6UW@R````Q@```Q$````````_!!!!"A!!!!9!!!!'#!`_"A_1!190](%'$^!""A`1!190U!%'$^)2"A`Q!190``]'$Z`_"A!(`!9!!!!'!!!!"A!!!!9!!!!'!!!!"`````Q!!"!$```````````````````````````````````````````^L;WNF/DI[/D1U.$1U.$1[/DI[:'2E:'2E;WNL;WP``WNL;W2E/DI[.$I[/D1U/DI[/G2E:'2E:'2L;WNL;```!'NL:!![/DI[!$MU/DI[!!!!:!"E:'2E:!"L;WM!``]!;W2E:$FE/DI!/DI!/DI!:'2E:'2E:'2E!'NL;Q$``Q"L:'1!:!!!:!!!/A!!:!!!:'1!:'1!:'1!;YY!!0``!'NE:!!!:!!Z!'1!!'2E!'2E:!"E!%!!BQ$7!.9!``]!!!"E!'1!!&U!:!"E!'1!:'2E!'1!!+OL!.<7!!$``WNE:'2>/4E!872E:'2E:'2!:)?LK[OLK[P1VN<7VP``;W2E/4)Z!$F>:'2E:%"EB[OLK[OLK[OLK^<7VN<7``^E/4EZ/4EZ/4FE1%"E`+OLK[OLK[OLK[OLVN<7VN<`````````````````````````````````````````````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!$`!!!!!!!!!0``````````````!!!!!!!!``]!!!!!^P``````!!$`!!!!!!!!!!!!!!$`!!!!!!$``Q!!!!!L``````````]L+SML+````SML+``W!!!!!0``!!!!!#P```````]L`SML+SML+SML+SML`SM!!!!!``]!!!!!+````````SP`+SML+SML+SML+SP`+Q!!!!$``Q!!!!!L````````+`]L+SML+SML_#ML+`]L!!!!!0``!!!!!#P```````]L`SML`SML+SP`+SML`SM!!!!!``]!!!!!+```````````+SML+SML+SML+SP`+Q!!!!$``Q!!!!!L``````_"A@_"A9'"A9'"A9'"A@]L!!!!!0``!!!!!#P`A9'"A@DY_P``````````````_P9!!!!!``]!!!!!^PDY+SML!!!L_PL[_PL[_PL[_PIL!!!!!!$``Q!!!!!!!!!!!!!!!!$W+SML+SML+SML^A!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!````````````````````````````````````````````!!!#NQ!"2F")5!!!!!)!!E2/2%%!!!!%*6"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-(-3YQ,D!O-!>O:86U=G&M%')U-D9U9G6B:$9W942B-T9!5&2)-!!!!'I!!!!'!5-.5(*P:X*B<3"';7RF=R61=GFO9W6U<WYA37ZT>(*V<76O>(-+4'FH;(2';76M:!J":'2*<F:J:8>T+6"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-O:'RM!!!!!!!!AA!!!!!!!!!$!!!!4Q!!"O%!!!#3!&"53$!!!!"R!!%!$1!!!!!!!!!"1QV1=G^H=G&N)%:J<'6T&6"S;7ZD:82P<C"*<H.U=H6N:7ZU=QJ-;7>I>%:J:7RE#E&E:%FO6GFF>X-J5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SZE<'Q!!E2/2%%!!!!!!!!%,&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<F9T"T%O-#YQ,D!(<G6V>(*B<""C.$)W.'*F971W.G%U94-W5&2)-!!!!'9!!!!&!5-.5(*P:X*B<3"';7RF=R61=GFO9W6U<WYA37ZT>(*V<76O>(-+4'FH;(2';76M:$"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SZE<'Q!!!!!!!##!!!!!!!!!!%!!!$O!&"53$!!!!"N!!%!$!!!!!!!!!!"1QV1=G^H=G&N)%:J<'6T&6"S;7ZD:82P<C"*<H.U=H6N:7ZU=QJ-;7>I>%:J:7RE-&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<F9T,G2M<!!$!!!!!!Q!!!!#!!!!!!!!!!!!!!H+!!!IY8C=T6J\5&48'@`/MLP=82;YCSSQSG.:,RNV*+('0$3G#8IBI;.'12*VJIELORAG0#Q#4@-(/I6BBD9W%UWUV>BG_D#>3;LJU'H[=*L7-(<3<>IUE]<'F&GR;7N4K\94#T[7W__?OX@P=R^1'5(XT*XF@/>]^`@\H?^R,Q#,RNA3SR4URY#Q6`"C<1S=I1A"'+VG)0Y4'!+WG6Q(5OAF-8C1;79`MES2UBCY1J%!5]-0QW7=,:Q6^FG?*1&W(+@;73]OZIR"@CB3\0Y=&W7ZY[8=M%V?V1VF\&YS:>H-65QQ?Q?\=%-98#3/\GIS"93PN&I(`2O#H?&"4PT75=VY[:+/',"]*,?<C^['+_,7*_G3:-"SG,QA,QGYZ#)9'2F2D.S359#[=3`;7!Y$7&YD!SFM#PB)W3YOOJ4;/+E.\P/;P!^@-<6@^&UUUJP/YS-MGK,>U`&<&GVFO^C$V/\=O8.IBW0=\ME9&(,2V9S8'1_>M?6O((Q$#*$">[%%]E?@9)3NQMO7!>,D8C^S13U+E)[KF92NQOOG'#TB)F9:Y=OEE$*BF:F9B5S1?MK%AR^G1;&C@RIK?/OIPWR.?__OHH#XL[P6V^)?X,8,N\/\L3`9%`;&ADV")UHX]R((03)!YG:5(_!"+VQAL"LQ,DB[^#BCA+.C_FEU,?;C#4NX`'ZEU%-+[/+O#HA0)(D]Z+9>)I"6+SWS</V5NI`1];)YWM@J^4Y[LK0D1YKIF['IX;T?;9WI\\LZILY<N>;P&\5,4J/S&!+^2T*32!WH=>HTR*8#ZF[UW;U7.?\B1JOS^+*?92#V;+M4^9%$"T2WS-P+B+CNB-CC&GY).U22PS_]48,*'CJK#?"GJ)/0_+B!$])!P!5XN%L?;+JEAPB`+?(-C]GF\!HXB4N\@#X"^P<NQ:;H@.XBVM\?$C-FD8S%_1Q8*<C,O%-J:-%3+*"XG(D(C'W4*(K(L.KFY%GA?M%5652H%[*4N17KNA)`G@O5J.UMV'Z]"K+R4E<DS]!A'KU5D7Q:D?V*U8A]AX/>P\%XX"PW.9:<Q^XBTB94:<9K--3V8IB),)?&]KV^P.K)R&@1[#YO'F3-FG)57Q8VS:3:%Y/PRN&4H`N;7+N'T6W">WZBP1F-P@+VQ$*?2Y8CQ,.]R(O@.PY5A1U^?%BW7X!HU`F?0F+SAIN[&?@>QN_A"D?//X]R':>@5X/Z4?,3+M9B-5!XRO"Z0%'L60Y10\R/W84)<,YABJ<V'D;&`]"C2*T0),<QRFC])19PBC)O<R]@L6D.(3`HBJ@,B\=5&N0.<84CW2A=$%7MXDYO[F3BFIU]F%#6$L6LV[\BP?-I\4Z9#8OMFE&/`-:20>B4>8N.;XR`6QS_DFQMY[*:>&5@%6@.I^PHY5IH4JT!F8"5O-XSD6:)(O<B&"_>5CG/L$^/`(<',V'PHSJ'HUJRV%Z.+!/^_9<ED96[5Z.)AXET^[9F=W^;..[AVL[*XHR2*@IMS+7]J%VWXV**<6/<*$6<9-CC,0VN80IR,FKOS&AC@;EW!ZM=A/^)4J6K:&".'(B&*Q/4\0X>2#*TS)EM'QYINJ*_>2N_,Z()(0&%.K(?T^4G;#+2/?+*<%+\TZ6EN`=+XF[T"P0&G!*@49`Z^^790SFB<A]-:=HVV[OBS$<7KI>-E\O/+;6$YHR@IM1M3HO_2`X:]3L-'+70YTX>K;8-CP^CU*?WXHI>4??JY"#T"Y&HUM0R1T5=];IL7[[[,,3OGK4DGUJV^3/ROCL5O[CJLHZ]][OL.USK+_C'KZ#K`0_*I<K[CMAYI4O&T5].V>66[%;<A@46V=_-V>66?;^5V>80%SQEL<(7#C@&$[WR,.1/=^%E\C>LF=YY"MMJ%4ES%>>%)AS6R7*E9FU'7L5V>!2X[,H!<(2>S5:H,5J#KM>JW`5*+49\#7FK4C5E93YF*!)T4%C%G#1E2EF)'W,%KG+?+-QPQ78K>=Q4_[QQ4\,H%P/%G60-/W<+P./%?9?'_6S4#F4%@9G?^PT:I:W>5\3\ZR4N"4/F@:Y*\5ZV"5K+$"6I(IXS;3N15GSM1$V1$8>!:^I+F*19+V!0@&[R.;MGC>>1A:;L^T/VG7_I1-OV_S3L1-E#818KRKR[JZ,MEW.?;F+"ZMA6+"[UCF$%TN<L)6-`,S#6*B8I:=D"CG&6*B8I_N[/=(><CS[PY^(VCU>XG@<IWC!@W^T\JXFU&T[R1TEM#]U0CQN=[1[,/#8$QS*.48>9U"N/(5AE<U2*TZ_Z.S;"**EXWE#3%S.6[-V+,JIP-@F,"8%0?P0BG4_D.\V$,V.P<0+$EME;Z;(*Z"WK[^N6V^8+^=1@N/%CI/M7#%JH0N3GF_ZN+OEWZED3>7'Y//54^5>`4F5SO_6,@_,V!^-5W!0WZQM]?"N:H"?E`UZ01:(WC[+#9OU8R@(.M4.\5^W:#=?%EV#(>;[G-`O6?#Z7GTU@PS_$=_'M\QZWB(V.<=_9N"]HD=W:_&RZ0^3F<=\?UM%N0B1\#!XJG\.2E_9M6W\/MGB<>J[/9X2]4WH2@KVJU72(.3X;WT?`2@O.79N7#`X1G+,>CBB;N([U?E[7I[H.<QUN7D`O]ZS]4[I7\2VDC^;P3$^ZC`;\^#X;)<T!$WX2MO27[<Q[GAP$/'5%A[HG[?]HJKL.13I+UV,"_?M.92T_;2,'02B5!N-/YZK7[Y)RD,/U!LM692T_:1TDZ<1=P26B(#Y:Q\C%_/S&=<BMC#MZ?0PJQTD]WS3-ZW%9(`,NQ8F$F<M&11DY:1-5]:B'R#-IYD'^C+.*2?T*1-2<D#)_/TMC(J^4)DYXJU4]FVMAYI^H+O+`GIAY0Z7)X^/)?%SYA6WJ4M4P`V]CXGQ5]2^H2]1@T#E2HZZ4)P\4,2$RBT-6]2E4%<.G)H;M6Z6$T%?H?BHB9?%8YM@U>UX#*@'D,LO*5H!4J>1G5J(>J,SJXB>`5SV]CD?2$\SWQDZE]K<;BNV+%;R)]^\?:Q(J><7N.B2K[$27DY?F^]XR>`8#F(!>:<1A]9:[G<%-@%HVLF\]7:$*O`ID[P?\8Z!A>[P@V>P(Z8@V,3!7FNMU#.D`HB3"T:ECE..1^`2/\-!\QJU^"BTMZ[?,A`U@-]$"`IE*$A7;PVGY+//Q!('Y'Y*;*8S;&)=NG?,AL/XN[?I)^L2VG=DBSL4F]._:S/%(*D$-U]$QC!T$!QD$6HB=#U.T5BA?T6A/N4NXNL?V*-(BU7HD].B-=.BMAE-BR=%98J3OHO/&6"09/FR]>QQ]`*K#X\-.C*O,;7$KW#09J7,$7M1=9;[-@J$YM]02N1H,Q8?BTXK)/V4"F0Q0?;`0-Q!!!!!!"!!!!-9!!!!%!!!!!!!!!!Q!!5*%3&!!!!!!!!-!!!!%!!!!!!!!!')!!!"S?*RD9'$)%Z"A_M>1^Z?"3?!LE#(^FY&:U)`R.Q-$JZ`!93$.+#!*&*<^S]!OK!U7VD[CS]%!";JMD"S3()=&/=!S(#U;$0```_@Y?O1;8-52(TB4::9]BQ1!&'):!!!!!!!!"!!!!!=!!%%O!!!!#!!!!#&@<GF@4'&T>%NO<X>O4X>O;7ZH4&:$<'&T=U.M>8.U:8)!!!0*)!#!!!!!!!%!#!!Q`````Q!"!!!!!!/N!!!!$A$"1(!!'!!!!!%!!!#H5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35RJ:WBU2GFF<'2"=("M;7.B>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,18"Q<'FD982J<WY!Q%"Q!"A!!!!"!!!!JF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<CZ">82P<7&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9+186U<WVB>'FP<A!!NE"Q!"A!!!!"!!!!H&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF&?("F=GFN:7ZU,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN*28BQ:8*J<76O>!#O1(!!'!!!!!%!!!#;5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O172E37Z#98.F,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.A6":'2*<A!.1!I!"UZV<76S;7-!'E"!!!0```````````````]!"!6*<7&H:1!(1!-!!59!"U!$!!&:!!>!!Q!"7!!91&!!!Q!'!!=!#!J'=G&N:3"4;8JF!!!31&!!!A!&!!E(1WRV=X2F=A!31%!!!@````]!#A2%982B!!!;1(!!%A!"!!M0586F>75A5G6G:8*F<G.F!#Z!5!!&!!!!!1!#!!-!$"V-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!"!!U!!!!!!!!!$5Z*8UFD<WZ&:'FU<X)!!$0))!#!!!!!!!%!$E!Q`````Q2%982B!!!"!!!!!$/G-4-Q-4AQ-4A.!!!!!!%8&5RP971A*C"6<GRP971O<(:D<'&T=Q!!!1!!!!!!#1!!-X1":!&E5&2)-!!!!!1!!!!!!!!-HA!I!!!-G!!!$!!!!!!!!#!!)!!9!!!!!!$```]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!0```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```@```1!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````!!!!!Q!!!!%0$5RB?76S,GRW9WRB=X-!!!%!!!!!!!=!!!S]!!!!!!!!!!!!!!S?!#A!!!S9!!!-!!!!!!!!)!!A!"A!!!!!!0```Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!G1!!G1!!G1!!G4-!T'9TT'9TT'9TT'9TT*ETT*ETT*ETT*ETT*ETT*ETT*ETT'9TT'9TT'9TT'9TG4-TG4-TG4-TG4-TG4-TG4-TG1!!G1!!G1!!G1!!G1!!!!!!!!!!G1!!G1!!G1!!G4-TG4-TT'9TT'9TT'9TT*ETT'9TT'9TT'9TT*ETT*ETT'9TT'9TT'9TT'9TG4-TG4-TG4-TG4-TG4-TG4-TG4-TG1!!G1!!G1!!G1!!G1!!!!!!!!!!```^G1!!G1!!G4-T```^T'9TT'9TT'9TT'9T```^T'9!T*ETT'9TT'9TT'9T```^```^```^G4-T```^G4-TG4-TG4-TG4-TG4-T```^G1!!G1!!G1!!```^!!!!!!!!```^G1!!G4-TG4-TG4-TT':GG4-TT'9TT'9T```^T'9TT'9T```^T'9TT'9T```^G4-TG4-TG4-TG4-TG4-TG4-TG4-TG4-TG4-T```^G1!!G1!!G1!!```^!!!!!!!!```^G1!!G4-TG4-T```^G4-T```^```^G4-T```^```^T'9T```^```^G4-T```^```^G4-TG4-T```^G4-TG4-T```^G4-TG4-T```^G1!!:A!T```^```^!!!!!!!!```^G1!!G4-TG4-T```^```^G4-T```^T':G```^G4-T```^```^G4-TG4-T```^G4-TG4-TG4-T```^G4-T```^T$-T```^:D.G```^!!!T```^!!!T```^!!!!!!!!```^```^```^G4-T```^G4-T```^```^G7:G```^G4-T```^G4-T```^G4-T```^G4-TG4-TG4-T```^G4-T```^```^-T.G-T.G```^!!!T!!!T```^```^!!!!!!!!G1!!G4-TG4-TG4-TG7:GT':GT':G```^G7:GG4-TG4-TG4-TG4-TG4-TG4-TG4-TT$-TG4-T:D.G-T.G-T.G-T.G-T.G-T.G-T.G!$-T!!!T!!!T!!!T!!!T!!!!!!!!G1!!G4-TG4-TT':GT*G:T':G```^T':GG7:GG4-TG4-TG4-TG4-TT$-TG4-T:D.G-T.G-T.G-T.G-T.G-T.G-T.G-T.G-T.G-T.G!!!T!!!T!!!T!!!T!!!T!!!!!!!!G4-TT':GT':GT':GT':GT':GT':GT':GT':GG4-TT$-TT$-TG4-T2%2%-T.G-T.G-T.G-T.G-T.G-T.G-T.G-T.G-T.G-T.G-T.G!!!T!!!T!!!T!!!T!!!T!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!+4EF@4'FC=G&S?71"!!!!!!!"$QV-98FF=CZM>G.M98.T!!!"!!!!!!!(!!!-O0````P````R!!!-HA!I!!!-G!!!$!!!!!!!!#!!)!!9!!!!!!$```]!!0```Q=("````````````````````````````Q1%"!1%"!1%"!1%"!1%"!1%"!1%"!1%"!1%"!1%"!1%"0```````````````````````````````````````````````^T=X!-$!Q!!!!!!!!!!!!!!!0```````Q1%"0\_`PT]`0T]`0T]`0```@```@```@```@X^`@L[_P```11%"0```````````````````````````````````````````^$1U!)#!A!!!!!!!!!!!!!!!!1%"!1%"!!!!-X.T=`0T]`0T]`0T]`0TQ1%"!1%"!1%"-`0T]`0T]`0TQ1%".P<W````````````````````````````````````````^$1U!)#!A!!!!!!!!!!!!!!!!!!!-`0TQ!!!-`0T]`0T]`0T]`0T]`0T]`0T]`0T]`0T]`0T]T-T-`0TQ1%"-`0T````````````````````````````````````````^$1U!)#!A!!!!!!!!!!!!!!!!!!!-`0TQ!!!-`0T]P,S^$1U-X.T=`0T]`0T]`0T]`0T]`0T]T-T-`0TQ1%"-`0T````````````````````````````````````````^$1U!)#!A!!!!!!!!!!!!!!!!!!!-`0TQ!!!-`0T^$1U-`0T]`0T]X.T=T-T-`0T[KKKM`0T]T-T-`0TQ1%"-`0T````````````````````````````````````````^$1U!)#!A!!!!!!!!!!!!!!!!!!!-`0TQ!!!-`0T]`0TQ1%"-`0T^$1U-T-T.<7VA1%"-`0T]`0T]`0TQ1%"-`0T````````````````````````````````````````^$1U!)#!A!!!!!!!!!!!!!!!!1%"!1%"!!!!-`0T]`0T]`0T]`0T]`0T]`0T]`0T]`0T]`0T]`0T]`0TQ1%"-`0T````````````````````````````````````````^$1U!)#!A!!!!!!!!!!!!!!!'2E:'2E:!!!!'>H:W>H:W>H:W>H:W>H:W>H:W>H:W>H:W>H:W>H:W>H:Q1%"-`0T````````````````````````````````````````^$1U!1%"'6F:7ZO<FN<7W^P<[SML,?XNXR]@!5&"15&"15&"15&"15&"15&"15&"15&"11%"!E*#1-$!YC)C.P<W````````````````````````````````````````^T=X+WNL<GZO=T-T-8&R>$1U0```````]4%R)K+CH.T=X.T=X.T=X.T=X.T=X.T=X.T=X.T=X.T=YK+CM4%R0```````````````````````````````````````````````````````````````````````````````^X>X>(2U>(2U>(2U>(2U>(2U>(2U>(2U>(2U>(2U>X>X@```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````U"`]!$]``A!```]!0```!$```Q!```]!0```!$```Q!```]!0```!$]``A!!(`Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"G.B<76S971"!!!!!!!"$QV-98FF=CZM>G.M98.T!!!"!!!!!!!(!!!-NA!!!!!!!!!!!!!-HA!I!!!-G!!!$!!!!!!!!#!!)!!9!!!!!!$```]!!!-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!Q-$!`````_!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!(`````!!!!"&2P<WRE!1!#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!,5WVB<'QA2G^O>(-!!1A"!1!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B6'&C4X*E:8)!!!!^)!#!!!!!!!)!"1!(!!!-!%!!!@````]!!!!"!!%!!!!'!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!!!!!!"N-6E.M98.T5(*J>G&U:52B>'&5;7VF=X2B<8!!!!!:)!#!!!!!!!%!"1!(!!!"!!$1J25'!!!!!!!!!#:-6E.M98.T5(*J>G&U:52B>'&-98.U18"Q<'FF:&2J<76T>'&N=!!!!"EA!)!!!!!!!1!&!!=!!!%!!.#F&19!!!!!!!!!'ER71WRB=X.1=GFW982F2'&U962Z='6%:8.D!!!$_3!!A!!!!!!"!!A!-0````]!!1!!!!!$X1!!!!]!Q5"Q!"A!!!!"!!!!JV"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF-;7>I>%:J:7RE18"Q<'FD982J<WYM)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#U&Q='RJ9W&U;7^O!-"!=!!9!!!!!1!!!+:1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WYO186U<WVB>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z">82P<7&U;7^O6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#E&V>'^N982J<WY!!,:!=!!9!!!!!1!!!*R1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*28BQ:8*J<76O>#QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,356Y='6S;7VF<H1!LE"Q!"A!!!!"!!!!GF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,E&E:%FO1G&T:3QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9&172E37Y!$5!+!!>/>7VF=GFD!"J!1!!$````````````````!!1&37VB:W5!"U!$!!&'!!>!!Q!"71!(1!-!!6A!'%"1!!-!"A!(!!A+2H*B<75A5WF[:1!!%E"1!!)!"1!*"U.M>8.U:8)!%E"!!!(`````!!I%2'&U91!!'E"Q!")!!1!,$V&V:86F)&*F:G6S:7ZD:1!O1(!!'QZ&>G6O>#"$97RM9G&D;Q!!!"6F>G6O>#"D97RM9G&D;S"S:7:O>7U!-%"1!!9!!!!"!!)!!Q!-!!U>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!!1!/!!!!!!!!!"Z-6E.M98.T5(*J>G&U:52B>'&%:GRU2'&U96.J?G5!!!!:)!#!!!!!!!%!"1!$!!!"!!!!!!!9!!!!!!!!!"J-6E.M98.T5(*J>G&U:52B>'&%:GRU2'&U91!!!`UA!)!!!!!!$Q$"1(!!'!!!!!%!!!#H5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35RJ:WBU2GFF<'2"=("M;7.B>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,18"Q<'FD982J<WY!Q%"Q!"A!!!!"!!!!JF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<CZ">82P<7&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9+186U<WVB>'FP<A!!NE"Q!"A!!!!"!!!!H&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF&?("F=GFN:7ZU,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN*28BQ:8*J<76O>!#O1(!!'!!!!!%!!!#;5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O172E37Z#98.F,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.A6":'2*<A!.1!I!"UZV<76S;7-!'E"!!!0```````````````]!"!6*<7&H:1!(1!-!!59!"U!$!!&:!!>!!Q!"7!!91&!!!Q!'!!=!#!J'=G&N:3"4;8JF!!!31&!!!A!&!!E(1WRV=X2F=A!31%!!!@````]!#A2%982B!!!;1(!!%A!"!!M0586F>75A5G6G:8*F<G.F!#Z!=!!<$E6W:7ZU)%.B<'RC97.L!!!!&76W:7ZU)'.B<'RC97.L)(*F:GZV<1!Q1&!!"A!!!!%!!A!$!!Q!$2V-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!"!!Y!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%!"1!%!!!!!1!!!<K!!!!+!!!!!)!!!1!!!!!'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!+$!!!)DXC=V62<4^21%0ZWSVYI>R4E)HI5P,*MC'TWD;3)<%)U".%1@@.M/YM.X8<4HC,[Z/]QPHK*$T[JT`I0`#P_!JW?8</.EI#*)>F/WN._=W<GG_G:!6$'.[O&+1!:PN^NB[ZPEQL]44^39>QE8U8F?_\?5V6TS80+;Y\$GP*G&VJLN4T8FMI.`*)YRHT8J7?\+S7R3W(%_V?8SVJ+9DXW6"T3KE_R#K8(DO)[?\V,TR]'__3PVCOXKJ5[3;>;F27Z5BV)2=886!*PDUUA6E&4W[6?DS7?WPN@_*N>@]#8&0`8*`U"'Y=N#NV%@9J64U8&RR4L6S>EL:@<-K,4YZT4-4&EG3BM=:D1N4&D74"_JC\UZ4;<=I^1M!RE;OXF=8NZB#FL'Q<S++"IVE,:*0(!@5(!//.:Z."@70@C3&()C)7->GDWX:&+AE/V--YV'BCZ(V.-9I=;&"*HDD*L:I=X$DBRM3Y^LS\N@3\F"'H%\C!CJ)9@.[(QY`O<C4RPS-ZVKS23J^E\M$U:2>.(;WXFI=*]]`K0:4G@11T.>8C,I#'UM7C&\I&5**S%@)Y&*BT!G-))@RC>4[RA$0V7!5<$WU02?GE%/[I.5.$!K+\8':T&B"%\$8R'\QU9@%,0$26]1)]-%LR(4QQ00P-G_"T`/3ZGO8O3-T[GR51S"]ZDDN(@`8_"U8<H8_2%D_RU4/J_0-@[;=R!Y*+B$JW/NUF=RP)`^WM7`-AH$SZM%5`9O!]V>CBQ"6?ZBR/ZVK'>S%B(`E;[GON;WIW@Q1V_MZ&Y,\,P*&1"G-=Q2DH<?3TA*B9:8OSS2IH2"6Y(M91".F`3EG0T`P:5Z8X:B0%P(,6`_1!!!!"F!!%!!A!$!!1!!!")!!]%!!!!!!]!W1$5!!!!51!0"!!!!!!0!.E!V!!!!&I!$Q1!!!!!$Q$:!.1!!!"DA!#%!)!!!!]!W1$5#&.F:W^F)&6*#&.F:W^F)&6*#&.F:W^F)&6*!4!!!!"35V*$$1I!!UR71U.-1F:8!!"=K!!!"')!!!!A!!"=C!!!!!!!!!!!!!!!)!!!!$1!!!2)!!!!(5R*1EY!!!!!!!!"<%R75V)!!!!!!!!"A&*55U=!!!!!!!!"F%.$5V1!!!!!!!!"K%R*>GE!!!!!!!!"P%.04F!!!!!!!!!"U&2./$!!!!!!!!!"Z%2'2&-!!!!!!!!"_%R*:(-!!!!!!!!#$&:*1U1!!!!!!!!#)(:F=H-!!!!%!!!#.&.$5V)!!!!!!!!#G%>$5&)!!!!!!!!#L%F$4UY!!!!!!!!#Q'FD<$A!!!!!!!!#V%R*:H!!!!!!!!!#[%:128A!!!!!!!!#`%:13')!!!!!!!!$%%:15U5!!!!!!!!$*&:12&!!!!!!!!!$/%R*9G1!!!!!!!!$4%*%28A!!!!!!!!$9%*%3')!!!!!!!!$>%*%5U5!!!!!!!!$C&:*6&-!!!!!!!!$H%253&!!!!!!!!!$M%V6351!!!!!!!!$R%B*5V1!!!!!!!!$W&:$6&!!!!!!!!!$\%:515)!!!!!!!!%!!!!!!$`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!`````Q!!!!!!!!$-!!!!!!!!!!$`````!!!!!!!!!/!!!!!!!!!!!0````]!!!!!!!!![!!!!!!!!!!!`````Q!!!!!!!!/9!!!!!!!!!!$`````!!!!!!!!![!!!!!!!!!!!0````]!!!!!!!!$U!!!!!!!!!!!`````Q!!!!!!!!1=!!!!!!!!!!$`````!!!!!!!!"#Q!!!!!!!!!"0````]!!!!!!!!&Y!!!!!!!!!!(`````Q!!!!!!!!8U!!!!!!!!!!D`````!!!!!!!!"A1!!!!!!!!!#@````]!!!!!!!!''!!!!!!!!!!+`````Q!!!!!!!!9I!!!!!!!!!!$`````!!!!!!!!"DQ!!!!!!!!!!0````]!!!!!!!!'6!!!!!!!!!!!`````Q!!!!!!!!:I!!!!!!!!!!$`````!!!!!!!!"OQ!!!!!!!!!!0````]!!!!!!!!+]!!!!!!!!!!!`````Q!!!!!!!!WM!!!!!!!!!!$`````!!!!!!!!$<Q!!!!!!!!!!0````]!!!!!!!!8D!!!!!!!!!!!`````Q!!!!!!!"?5!!!!!!!!!!$`````!!!!!!!!&ZQ!!!!!!!!!!0````]!!!!!!!!8L!!!!!!!!!!!`````Q!!!!!!!"?U!!!!!!!!!!$`````!!!!!!!!'"Q!!!!!!!!!!0````]!!!!!!!!9*!!!!!!!!!!!`````Q!!!!!!!&F9!!!!!!!!!!$`````!!!!!!!!77!!!!!!!!!!!0````]!!!!!!!":;!!!!!!!!!!!`````Q!!!!!!!&G5!!!!!!!!!)$`````!!!!!!!!8"Q!!!!!'5RJ:WBU2GFF<'1A186U<WVB>'FP<CZD>'Q!!!!!</Property>
<Property Name="NI.LVClass.Geneology" Type="Xml"><String>
<Name></Name>
<Val>!!!!!2V-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=V"53$!!!!!!!!!!!!!!!!!!$!!"!!!!!!!!!!!!!!%!"A"1!!!!!1!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!4!)!!!!!!!!!!!!!!!!!!!1!!!!!!!1!!!!!0!":!=!!9!!!!!!J">82P<7&U;7^O!!!71(!!'!!!!!!,356Y='6S;7VF<H1!'%"Q!"A!!!!!$%F';7RF47&O97>F=A!!$5!+!!>/>7VF=GFD!"J!1!!$````````````````!!-&37VB:W5!"U!$!!&9!!>!!Q!"71!(1!-!!59!'%"1!!-!"1!'!!=+2H*B<75A5WF[:1!!%E"1!!)!"!!)"U.M>8.U:8)!%E"!!!(`````!!E%2'&U91!!&U!+!"&&?("P=X6S:3"5;7VF)#BT+1!41!-!$5&D9X6N>7RB>'FP<H-!$U!$!!F&?("P=X6S:8-!?!$RT\5OVA!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-:4'FH;(2';76M:#"">82P<7&U;7^O,G.U<!!Y1&!!#!!!!!!!!1!#!!I!#Q!-!!U>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!/!!!!#0``````````````````````````````````````````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!4!)!!!!!!!!!!!!!!!!!!!1!!!!!!!A!!!!!3!-&!=!!9!!!!!1!!!+>1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*4'FH;(2';76M:%&Q='RJ9W&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN"=("M;7.B>'FP<A$!1(!!'!!!!!%!!!#G5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z">82P<7&U;7^O,E&V>'^N982J<WYM)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<F9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AJ">82P<7&U;7^O!!#W1(!!'!!!!!%!!!#=5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O356Y='6S;7VF<H1M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#UF&?("F=GFN:7ZU!,F!=!!9!!!!!1!!!*V1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*2GFM:5VB<G&H:8)M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W$%F';7RF47&O97>F=A!!$5!+!!>/>7VF=GFD!"J!1!!$````````````````!!1&37VB:W5!"U!$!!&9!!>!!Q!"71!(1!-!!59!'%"1!!-!"A!(!!A+2H*B<75A5WF[:1!!%E"1!!)!"1!*"U.M>8.U:8)!%E"!!!(`````!!I%2'&U91!!&U!+!"&&?("P=X6S:3"5;7VF)#BT+1!81!-!%%ZV<7*F=C"P:C"'=G&N:8-!!"F!!Q!428BQ<X.V=G6T)("F=C"'=G&N:1!F1"9!!A.4>7U(18:F=G&H:1!21W^N9GFO:3"&?("P=X6S:8-!&5!7!!%!!!!,28BQ:8*J<76O>(-!@!$RT\6E$A!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-:4'FH;(2';76M:#"">82P<7&U;7^O,G.U<!!]1&!!#A!!!!%!!A!$!!M!$!!.!!Y!$Q!1(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!%1!!!!I!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!5!!!!'!!!!"```````````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!%Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!-!!!!!%Q$"1(!!'!!!!!%!!!#H5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35RJ:WBU2GFF<'2"=("M;7.B>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,18"Q<'FD982J<WY!Q%"Q!"A!!!!"!!!!JF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<CZ">82P<7&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9+186U<WVB>'FP<A!!NE"Q!"A!!!!"!!!!H&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF&?("F=GFN:7ZU,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN*28BQ:8*J<76O>!#Z1(!!'!!!!!%!!!#>5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35:J<'6.97ZB:W6S,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AR*2GFM:5VB<G&H:8)!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!%"5FN97>F!!>!!Q!"7!!(1!-!!6E!"U!$!!&'!"B!5!!$!!9!"Q!)#E:S97VF)&.J?G5!!"*!5!!#!!5!#1>$<(6T>'6S!"*!1!!"`````Q!+"%2B>'%!!">!#A!228BQ<X.V=G5A6'FN:3!I=SE!&U!$!""/>7VC:8)A<W9A2H*B<76T!!!:1!-!%U6Y='^T>8*F=S"Q:8)A2H*B<75!*5!7!!)$5X6N"U&W:8*B:W5!%5.P<7*J<G5A28BQ<X.V=G6T!""!-0````]'5X2S;7ZH!!!91%!!!@````]!%!N&?("F=GFN:7ZU=Q"]!0(0N79R!!!!!BV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=RF-;7>I>%:J:7RE)%&V>'^N982J<WYO9X2M!$R!5!!+!!!!!1!#!!-!#Q!-!!U!$A!0!"%>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!3!!!!#A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#0````]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!%Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!1!!!!!$A$"1(!!'!!!!!%!!!#H5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35RJ:WBU2GFF<'2"=("M;7.B>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,18"Q<'FD982J<WY!Q%"Q!"A!!!!"!!!!JF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<CZ">82P<7&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9+186U<WVB>'FP<A!!$5!+!!>/>7VF=GFD!"J!1!!$````````````````!!)&37VB:W5!"U!$!!&'!!>!!Q!"71!(1!-!!6A!'%"1!!-!"!!&!!9+2H*B<75A5WF[:1!!%E"1!!)!!Q!("U.M>8.U:8)!%E"!!!(`````!!A%2'&U91!!%%!Q`````Q:4>(*J<G=!!"B!1!!"`````Q!+#U6Y='6S;7VF<H2T!,:!=!!9!!!!!1!!!*R1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*28BQ:8*J<76O>#QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,356Y='6S;7VF<H1!=A$RT]6581!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-:4'FH;(2';76M:#"">82P<7&U;7^O,G.U<!!S1&!!"1!!!!%!#1!,!!Q>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!.!!!!"1!!!!!!!!!"!!!!"!!!!!H`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"-!A!!!!!!!!!!!!!!!!!!"!!!!!!!&!!!!!!]!Q5"Q!"A!!!!"!!!!JV"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF-;7>I>%:J:7RE18"Q<'FD982J<WYM)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#U&Q='RJ9W&U;7^O!-"!=!!9!!!!!1!!!+:1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WYO186U<WVB>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z">82P<7&U;7^O6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#E&V>'^N982J<WY!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!#"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!1!"1!'#E:S97VF)&.J?G5!!"*!5!!#!!-!"Q>$<(6T>'6S!"*!1!!"`````Q!)"%2B>'%!!""!-0````]'5X2S;7ZH!!!91%!!!@````]!#AN&?("F=GFN:7ZU=Q#W1(!!'!!!!!%!!!#=5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O356Y='6S;7VF<H1M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#UF&?("F=GFN:7ZU!+Z!=!!9!!!!!1!!!*J1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ":'2*<E*B=W5M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W"5&E:%FO!(1!]>""`!A!!!!#(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T'5RJ:WBU2GFF<'1A186U<WVB>'FP<CZD>'Q!.%"1!!9!!!!"!!E!#Q!-!!U>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!/!!!!"A!!!!!!!!!"!!!!!A!!!!-!!!!%`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!%Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!9!!!!!%!$"1(!!'!!!!!%!!!#H5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35RJ:WBU2GFF<'2"=("M;7.B>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,18"Q<'FD982J<WY!Q%"Q!"A!!!!"!!!!JF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<CZ">82P<7&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9+186U<WVB>'FP<A!!$5!+!!>/>7VF=GFD!"J!1!!$````````````````!!)&37VB:W5!"U!$!!&'!!>!!Q!"71!(1!-!!6A!'%"1!!-!"!!&!!9+2H*B<75A5WF[:1!!%E"1!!)!!Q!("U.M>8.U:8)!%E"!!!(`````!!A%2'&U91!!%%!Q`````Q:4>(*J<G=!!"B!1!!"`````Q!+#U6Y='6S;7VF<H2T!,:!=!!9!!!!!1!!!*R1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*28BQ:8*J<76O>#QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,356Y='6S;7VF<H1!LE"Q!"A!!!!"!!!!GF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,E&E:%FO1G&T:3QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9&172E37Y!?U"Q!"A!!!!"!!!!:6.Z=X2F<3Z%;7&H<G^T>'FD=SZ1=G^D:8.T,#"4?8.U:7UM)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.T>B.7-V.D%Z-T2F-$AZ"V"S<W.F=X-!>A$RU&B]TA!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-:4'FH;(2';76M:#"">82P<7&U;7^O,G.U<!!W1&!!"Q!!!!%!#1!,!!Q!$1!/(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!$Q!!!!=!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!8`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!4!)!!!!!!!!!!!!!!!!!!!1!!!!!!"Q!!!!!1!-&!=!!9!!!!!1!!!+>1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*4'FH;(2';76M:%&Q='RJ9W&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN"=("M;7.B>'FP<A$!1(!!'!!!!!%!!!#G5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z">82P<7&U;7^O,E&V>'^N982J<WYM)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<F9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AJ">82P<7&U;7^O!!!.1!I!"UZV<76S;7-!'E"!!!0```````````````]!!A6*<7&H:1!(1!-!!59!"U!$!!&:!!>!!Q!"7!!91&!!!Q!%!!5!"AJ'=G&N:3"4;8JF!!!31&!!!A!$!!=(1WRV=X2F=A!31%!!!@````]!#!2%982B!!!11$$`````"F.U=GFO:Q!!'%"!!!(`````!!I,28BQ:8*J<76O>(-!NE"Q!"A!!!!"!!!!H&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF&?("F=GFN:7ZU,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN*28BQ:8*J<76O>!#O1(!!'!!!!!%!!!#;5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O172E37Z#98.F,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.A6":'2*<A!.1!-!"V"S<W.F=X-!>A$RU&C1L1!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-:4'FH;(2';76M:#"">82P<7&U;7^O,G.U<!!W1&!!"Q!!!!%!#1!,!!Q!$1!/(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!$Q!!!!=!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!8`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"-!A!!!!!!!!!!!!!!!!!!"!!!!!!!)!!!!!!5!Q5"Q!"A!!!!"!!!!JV"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF-;7>I>%:J:7RE18"Q<'FD982J<WYM)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#U&Q='RJ9W&U;7^O!-"!=!!9!!!!!1!!!+:1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WYO186U<WVB>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z">82P<7&U;7^O6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#E&V>'^N982J<WY!!,:!=!!9!!!!!1!!!*R1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*28BQ:8*J<76O>#QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,356Y='6S;7VF<H1!LE"Q!"A!!!!"!!!!GF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,E&E:%FO1G&T:3QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9&172E37Y!=!$RU'N'9!!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-:4'FH;(2';76M:#"">82P<7&U;7^O,G.U<!!Q1&!!"!!!!!%!!A!$(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!"!!!!!1!!!!!!!!!!1!!!!1!!!!&!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!%Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!E!!!!!"Q$"1(!!'!!!!!%!!!#H5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35RJ:WBU2GFF<'2"=("M;7.B>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,18"Q<'FD982J<WY!Q%"Q!"A!!!!"!!!!JF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<CZ">82P<7&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9+186U<WVB>'FP<A!!NE"Q!"A!!!!"!!!!H&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF&?("F=GFN:7ZU,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN*28BQ:8*J<76O>!#O1(!!'!!!!!%!!!#;5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O172E37Z#98.F,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.A6":'2*<A#[1(!!'!!!!!%!!!#?5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35FN97>F2'&U96.F>#QA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9.35FN97>F2'&U96.F>!!;1(!!%A!"!!10586F>75A5G6G:8*F<G.F!()!]>#F$U!!!!!#(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T'5RJ:WBU2GFF<'1A186U<WVB>'FP<CZD>'Q!-E"1!!5!!!!"!!)!!Q!&(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!"A!!!!5!!!!!!!!!!1!!!!)!!!!$`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!%Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!I!!!!!$A$"1(!!'!!!!!%!!!#H5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O35RJ:WBU2GFF<'2"=("M;7.B>'FP<CQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9,18"Q<'FD982J<WY!Q%"Q!"A!!!!"!!!!JF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<CZ">82P<7&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&V>'^N982J<WZ7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9+186U<WVB>'FP<A!!NE"Q!"A!!!!"!!!!H&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF&?("F=GFN:7ZU,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN*28BQ:8*J<76O>!#O1(!!'!!!!!%!!!#;5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O172E37Z#98.F,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.A6":'2*<A!.1!I!"UZV<76S;7-!'E"!!!0```````````````]!"!6*<7&H:1!(1!-!!59!"U!$!!&:!!>!!Q!"7!!91&!!!Q!'!!=!#!J'=G&N:3"4;8JF!!!31&!!!A!&!!E(1WRV=X2F=A!31%!!!@````]!#A2%982B!!!;1(!!%A!"!!M0586F>75A5G6G:8*F<G.F!()!]>#F%I!!!!!#(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T'5RJ:WBU2GFF<'1A186U<WVB>'FP<CZD>'Q!-E"1!!5!!!!"!!)!!Q!-(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!$1!!!!5!!!!!!!!!!1!!!!)!!!!$`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!4!)!!!!!!!!!!!!!!!!!!!1!!!!!!#Q!!!!!0!-&!=!!9!!!!!1!!!+>1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*4'FH;(2';76M:%&Q='RJ9W&U;7^O,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN"=("M;7.B>'FP<A$!1(!!'!!!!!%!!!#G5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z">82P<7&U;7^O,E&V>'^N982J<WYM)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O186U<WVB>'FP<F9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AJ">82P<7&U;7^O!!#W1(!!'!!!!!%!!!#=5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:#Z":'2*<H-O356Y='6S;7VF<H1M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W#UF&?("F=GFN:7ZU!+Z!=!!9!!!!!1!!!*J1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ":'2*<E*B=W5M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W"5&E:%FO!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!%"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!9!"Q!)#E:S97VF)&.J?G5!!"*!5!!#!!5!#1>$<(6T>'6S!"*!1!!"`````Q!+"%2B>'%!!"J!=!!3!!%!#Q^2>76V:3"3:7:F=G6O9W5!,E"Q!"M/28:F<H1A1W&M<'*B9WM!!!!6:8:F<H1A9W&M<'*B9WMA=G6G<H6N!(1!]>#F&19!!!!#(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T'5RJ:WBU2GFF<'1A186U<WVB>'FP<CZD>'Q!.%"1!!9!!!!"!!)!!Q!-!!U>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!/!!!!"A!!!!!!!!!"!!!!!A!!!!-!!!!%`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!%Q#!!!!!!!!!!!!!!!!</Val>
</String>
</Property>
<Property Name="NI.LVClass.IsTransferClass" Type="Bool">false</Property>
<Property Name="NI.LVClass.LowestCompatibleVersion" Type="Str">1.0.0.11</Property>
<Property Name="NI_IconEditor" Type="Str">49 51 48 49 56 48 49 56 13 0 0 0 0 1 23 21 76 111 97 100 32 38 32 85 110 108 111 97 100 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 9 0 0 51 166 1 100 1 100 80 84 72 48 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 182 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 84 111 111 108 100 1 0 2 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 182 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 250 250 250 250 250 250 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 250 250 250 250 250 250 255 255 255 250 250 250 250 250 250 255 255 255 250 250 250 250 250 250 255 255 255 250 250 250 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 250 250 250 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 250 250 250 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 250 250 250 250 250 250 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 250 250 250 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 250 250 250 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 68 32 232 34 64 36 128 34 69 182 201 38 70 172 138 170 117 170 139 38 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 84 111 111 108 100 1 0 2 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 182 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 84 111 111 108 100 1 0 2 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 184 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 101 9 9 155 14 14 149 13 13 147 7 8 169 60 61 176 71 56 184 85 52 198 111 64 198 108 48 208 129 59 199 106 29 201 109 29 207 122 40 214 140 59 209 129 53 204 121 52 199 110 50 192 98 50 184 85 51 176 70 55 169 60 61 169 60 61 170 61 61 170 61 61 170 61 61 172 66 66 152 19 19 149 12 12 150 14 14 150 14 14 150 14 14 150 14 14 101 9 9 155 14 14 149 12 12 154 25 25 171 65 66 169 59 58 185 91 73 183 81 49 190 95 50 197 109 55 184 75 15 187 82 17 207 129 63 201 115 50 199 111 51 195 104 50 190 95 50 184 85 52 177 73 55 170 61 60 169 60 61 170 61 61 170 61 61 170 61 61 170 61 61 171 64 64 157 31 31 149 11 11 150 14 14 150 14 14 150 13 13 154 13 12 101 9 9 155 14 14 148 9 9 164 47 47 170 62 62 168 57 57 180 84 84 174 67 54 181 80 54 184 83 47 168 44 2 195 107 61 191 97 50 191 97 50 189 93 51 185 87 51 181 79 53 175 69 56 169 60 60 169 60 61 170 61 61 170 61 61 170 61 61 170 61 61 170 61 61 171 63 63 160 38 38 150 10 10 157 13 11 162 13 9 165 13 8 116 15 25 101 9 9 155 14 14 148 10 10 172 65 65 169 59 59 175 73 73 173 68 68 168 58 60 171 64 60 164 45 32 179 77 56 181 81 56 180 79 53 180 78 53 178 74 54 175 69 56 171 63 58 169 59 61 169 60 61 170 61 61 170 61 61 170 61 61 170 61 61 170 60 60 172 60 60 178 63 61 177 40 35 149 10 10 98 16 31 44 18 49 0 20 68 0 20 70 101 9 9 154 12 12 154 25 25 171 65 65 169 58 58 179 82 82 168 58 58 169 58 59 167 56 57 182 90 92 169 60 60 170 60 59 170 61 59 170 61 60 169 60 61 169 59 61 169 60 61 169 60 61 170 61 61 170 61 61 170 61 61 172 60 60 177 60 58 184 60 56 161 61 64 111 65 84 40 44 79 0 17 68 0 20 69 0 20 67 0 20 65 0 20 65 101 9 9 154 11 11 160 38 38 171 63 63 169 59 59 178 80 80 166 53 53 173 70 70 193 116 116 176 77 77 168 58 58 169 60 61 169 60 61 169 60 61 169 60 61 169 60 61 170 61 61 170 61 60 172 60 60 177 60 58 184 60 55 161 61 63 109 63 81 55 65 100 35 66 106 46 69 107 16 38 80 0 17 63 0 20 65 0 20 65 0 20 65 0 20 65 101 9 9 153 10 10 165 51 51 170 61 61 167 54 54 177 79 79 184 96 96 191 110 110 187 101 101 176 77 77 169 58 58 170 61 61 170 61 61 170 61 61 170 61 61 171 60 60 177 60 58 184 60 56 160 61 64 109 63 81 57 65 99 35 66 106 42 66 104 47 66 102 49 66 102 54 70 105 9 28 72 0 18 63 0 20 65 0 20 65 0 20 65 0 20 65 101 9 9 151 6 6 167 55 55 169 59 59 183 94 94 198 128 128 185 96 96 185 96 96 188 102 102 177 78 78 168 58 58 170 61 61 170 60 60 175 60 59 182 60 56 170 60 60 112 63 80 59 65 98 35 66 107 42 66 104 47 66 102 49 66 102 50 66 102 50 66 102 50 66 102 56 71 106 0 18 63 0 19 64 0 20 65 0 20 65 0 20 65 0 20 65 120 53 53 178 68 68 187 102 102 185 96 96 185 96 96 193 114 114 185 96 96 186 98 98 186 99 99 185 90 89 139 58 67 85 64 89 39 66 105 39 66 105 45 66 103 49 66 102 50 66 102 50 66 102 50 66 102 50 66 102 50 66 102 50 66 102 50 66 102 50 66 102 52 68 103 29 47 87 0 16 62 0 20 65 0 20 65 0 20 65 0 20 65 0 20 65 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 98 97 110 110 101 114 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 83 109 97 108 108 32 70 111 110 116 115 0 1 8 1 1
</Property>
<Item Name="LightField Automation.ctl" Type="Class Private Data" URL="LightField Automation.ctl">
<Property Name="NI.LibItem.Scope" Type="Int">2</Property>
</Item>
<Item Name="Methods" Type="Folder">
<Property Name="NI.LibItem.Scope" Type="Int">1</Property>
<Item Name="Advanced" Type="Folder">
<Item Name="Adv_Callback_Event.vi" Type="VI" URL="../VIs/Advanced/Adv_Callback_Event.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!,8!!!!#Q!%!!!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!=%"Q!"A!!!!"!!!!7F.Z=X2F<3Z09GJF9X1M)'VT9W^S<'FC,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D=X946D.49R/4-U:4!Y/1:T:7ZE:8)!!,Z!=!!9!!!!!1!!!+Z1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE,E&E:%FO=SZ*<7&H:52B>'&4:823:7.F;8:F:%6W:7ZU18*H=SQA5(*J<G.F>'^O37ZT>(*V<76O>(-O4'FH;(2';76M:&:J:8>7-SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)U-D9U9G6B:$9W942B-T9":1!71&!!!A!#!!-+28:F<H1A2'&U91!!NE"Q!"A!!!!"!!!!H&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF&?("F=GFN:7ZU,#"1=GFO9W6U<WZ*<H.U=H6N:7ZU=SZ-;7>I>%:J:7RE6GFF>V9T,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D1S.D2C:7&E.D:B.'%T.AN$<WZU=G^M)&*F:A!41!-!$%6W:7ZU)&.P>8*D:1!!%5!(!!J&>G6O>#"5?8"F!!!21!=!#F2J<75A5X2B<8!!!"Z!5!!$!!9!"Q!)%56W:7ZU)%.P<7VP<C"%982B!$Q!]!!)!!!!!!!!!!!!!1!%!!5!#1-!!'!!!!!!!!!!!!!!!!!!!!!!!!!+!!!!#!!!!!A!!!!)!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">1073741856</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082143248</Property>
</Item>
<Item Name="Adv_Close_Image.vi" Type="VI" URL="../VIs/Advanced/Adv_Close_Image.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!))!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!OE"Q!"A!!!!"!!!!HF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF*<7&H:52B>'&4:81M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W$%FN97>F2'&U96.F>!!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!(!!A$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="Adv_CompareProcesses.vi" Type="VI" URL="../VIs/Advanced/Adv_CompareProcesses.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'Y!!!!$1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"&!!Q!,4G6X)&"S<W.F=X-!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!*1!-!!EFE!!!I1%!!!@````]!#"J":'2*<F"S<W.F=X-A5(*P9W6T=W6T)%ZF>Q!!+%"!!!(`````!!A;172E37Z1=G^D:8.T)&"S<W.F=X.F=S"0<'1!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!&!!9!"!!%!!1!"!!(!!E!#A!,!A!!?!!!$1A!!!!!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!)!!!##!!!!AA!!!!1!!!.!!!!$!!!!!!!!!!!!!!"!!Q!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="Adv_Deregister_for_Callback.vi" Type="VI" URL="../VIs/Advanced/Adv_Deregister_for_Callback.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&/!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=#!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821056</Property>
</Item>
<Item Name="Adv_GetControlCurrentCapabilities_native.vi" Type="VI" URL="../VIs/Advanced/Adv_GetControlCurrentCapabilities_native.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(Z!!!!$1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!"R!-0````]34'FH;(2';76M:#"4:82U;7ZH!!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!(2!=!!9!!!!!1!!!&J4?8.U:7UO4W*K:7.U,#"N=W.P=GRJ9CQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)X.W%V9T5W-4ET.'5Q/$E+27ZV<3"$<'&T=Q!!"1!$!!!71(!!#!!"!!E!)A!!"U.P<H2S<WQ!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"A!%!!=!#!!+!!M$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!%+!!!!!!!!!!I!!!!+!!!!#!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!$!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="Adv_GetData.vi" Type="VI" URL="../VIs/Advanced/Adv_GetData.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!+!!!!!%A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!&"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!=!#!!*#E:S97VF)&.J?G5!!"*!5!!#!!9!#A>$<(6T>'6S!"*!1!!"`````Q!,"%2B>'%!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!OE"Q!"A!!!!"!!!!HF"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'1O172E37ZT,EF*<7&H:52B>'&4:81M)&"S;7ZD:82P<EFO=X2S>7VF<H2T,ERJ:WBU2GFF<'27;76X6D-M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC.$)W.'*F971W.G%U94-W$5F*<7&H:52B>'&4:81!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!Q!$1!%!!1!"!!%!!Y!"!!0!"!$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!%1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="Adv_GetWindowsProcesses.vi" Type="VI" URL="../VIs/Advanced/Adv_GetWindowsProcesses.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&\!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!F!!Q!#371!!#2!1!!"`````Q!&&E&E:%FO5(*P9W6T=S"1=G^D:8.T:8-!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!9!"Q!%!!1!"!!%!!A!"!!%!!E$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710290</Property>
</Item>
<Item Name="Adv_GetXMLFromLightField.vi" Type="VI" URL="../VIs/Advanced/Adv_GetXMLFromLightField.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&_!!!!$!!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!%%!Q`````Q>945QA2EZ4!""!-0````](7%V-)%:%5Q"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!:4'FH;(2';76M:#"">82P<7&U;7^O)'^V>!!%!!!!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!11$,`````"V"B>'AA37Y!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!(!!=!"Q!(!!A!"Q!*!!I$!!"Y!!!.#!!!#1!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!!A!!!U!!!!-!!!!!!!!!!!!!!%!#Q!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Adv_GetXMLFromSPE.vi" Type="VI" URL="../VIs/Advanced/Adv_GetXMLFromSPE.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!$L!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!R!-0````]$7%V-!"*!=!!##F.123"3:7:O>7U!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!%%!S`````Q>1982I)%FO!&1!]!!-!!-!"!!&!!9!"!!%!!1!"!!(!!1!"!!)!Q!!?!!!$1A!!!!!!!!*!!!!#1!!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!!!!!)!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="Adv_KillProcessByID.vi" Type="VI" URL="../VIs/Advanced/Adv_KillProcessByID.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&>!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!$U!$!!F1=G^D:8.T351!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!(!!A$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="Adv_Obtain_Queue.vi" Type="VI" URL="../VIs/Advanced/Adv_Obtain_Queue.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(A!!!!%A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!&"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!=!#!!*#E:S97VF)&.J?G5!!"*!5!!#!!9!#A>$<(6T>'6S!"*!1!!"`````Q!,"%2B>'%!!"J!=!!3!!%!$!^2>76V:3"3:7:F=G6O9W5!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!$1!/!!1!"!!%!!1!$Q!%!!1!%!)!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!!!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!2!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710272</Property>
</Item>
<Item Name="Adv_ReadLightFieldProperty.vi" Type="VI" URL="../VIs/Advanced/Adv_ReadLightFieldProperty.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(-!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!'Z!=!!9!!!!!1!!!&J4?8.U:7UO4W*K:7.U,#"N=W.P=GRJ9CQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)X.W%V9T5W-4ET.'5Q/$E&>G&M>75!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!11$$`````"X.F>(2J<G=!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!%!!1!"!!%!!=!"!!)!!E$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!"#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1074274832</Property>
</Item>
<Item Name="Adv_ReadQueueReference.vi" Type="VI" URL="../VIs/Advanced/Adv_ReadQueueReference.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'$!!!!$1!%!!!!$5!+!!>/>7VF=GFD!"J!1!!$````````````````!!%&37VB:W5!"U!$!!&'!!>!!Q!"71!(1!-!!6A!'%"1!!-!!Q!%!!5+2H*B<75A5WF[:1!!%E"1!!)!!A!'"U.M>8.U:8)!%E"!!!(`````!!=%2'&U91!!'E"Q!")!!1!)$V&V:86F)&*F:G6S:7ZD:1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!:4'FH;(2';76M:#"">82P<7&U;7^O)'^V>!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!!!!!!#1!+!!!!!!!!!!!!!!!!!!!!#Q)!!(A!!!!!!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%!!!$1!!!!Q!!!!!!!!!!!!!!1!-!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">16777216</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107820544</Property>
</Item>
<Item Name="Adv_Register_for_Callback.vi" Type="VI" URL="../VIs/Advanced/Adv_Register_for_Callback.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&/!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=#!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821056</Property>
</Item>
<Item Name="Adv_Send_Queue.vi" Type="VI" URL="../VIs/Advanced/Adv_Send_Queue.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!('!!!!%1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!$5!+!!>/>7VF=GFD!"J!1!!$````````````````!!=&37VB:W5!"U!$!!&'!!>!!Q!"71!(1!-!!6A!'%"1!!-!#1!+!!M+2H*B<75A5WF[:1!!%E"1!!)!#!!-"U.M>8.U:8)!%E"!!!(`````!!U%2'&U91!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!/!!]$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#A!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!%!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="Adv_Support_ParseXML.vi" Type="VI" URL="../VIs/Advanced/Adv_Support_ParseXML.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(%!!!!&1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"1!$!!!91%!!!@````]!"!J34UEA3'6J:WBU!!!71%!!!@````]!"!F34UEA6WFE>'A!'%"!!!(`````!!1+5E^*)&.U=GFE:1!!"1!%!!!71%!!!@````]!#!B34UEA5WF[:1!!'%"1!!1!"1!'!!=!#1B34UEA37ZG<Q!!&E!Q`````QR1;8BF<#"'<X*N981!!">!!Q!14H6N9G6S)'^G)%:S97VF=Q!!%5!$!!J'=G&N:3"4;8JF!!!41!1!$%:S97VF)&.U=GFE:1!!'E"1!!1!#Q!-!!U!$AJ'=G&N:3"*<G:P!!!31(!!!AJ45%5A5G6G<H6N!!!%!!!!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!-1$$`````!VB.4!"5!0!!$!!$!!I!$Q!1!"%!%1!2!"%!%A!2!"-!%!-!!(A!!!U)!!!*!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!%+!!!!#!!!!!!"!"1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="Adv_Support_SPEtoDataArray.vi" Type="VI" URL="../VIs/Advanced/Adv_Support_SPEtoDataArray.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!*%!!!!(1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!&"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!=!#!!*#E:S97VF)&.J?G5!!"*!5!!#!!9!#A>$<(6T>'6S!"*!1!!"`````Q!,"%2B>'%!!"2!=!!#$&.123"3:7:O>7UA-A!!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!&!!-!!"B!1!!"`````Q!0#F*033"):7FH;(1!!":!1!!"`````Q!0#6*033"8;72U;!!91%!!!@````]!$QJ34UEA5X2S;72F!!!&!!1!!":!1!!"`````Q!4#&*033"4;8JF!!!91&!!"!!1!"%!%A!5#&*033"*<G:P!!!71$$`````$&"J?'6M)%:P=GVB>!!!&U!$!""/>7VC:8)A<W9A2H*B<76T!!!21!-!#E:S97VF)&.J?G5!!".!"!!-2H*B<75A5X2S;72F!!!;1&!!"!!7!"=!'!!:#E:S97VF)%FO:G]!!"*!=!!##F.123"3:7:O>7U!!&1!]!!-!!-!"!!-!!U!"!!%!!1!"!!/!"5!'A!<!Q!!?!!!$1A!!!!!!!!*!!!!#1!!!!!!!!!!!!!!!!!!!!!!!!!+!!!!#!!!!!A!!!!)!!!!!!%!(!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="Adv_WriteLightFieldProperty.vi" Type="VI" URL="../VIs/Advanced/Adv_WriteLightFieldProperty.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(-!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!<E"Q!"A!!!!"!!!!7F.Z=X2F<3Z09GJF9X1M)'VT9W^S<'FC,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D=X946D.49R/4-U:4!Y/16W97RV:1!11$$`````"X.F>(2J<G=!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"Q!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!+!!!"#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082143248</Property>
</Item>
</Item>
<Item Name="DataSlice" Type="Folder">
<Item Name="Parse Data Object Simple.vi" Type="VI" URL="../VIs/DataSlice/Parse Data Object Simple.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%@!!!!$1!&!!I!!#*!1!!"`````Q!!&6*033!R,#"'=G&N:3!R,#"3<X=A-1!%!!!!)%"!!!,``````````Q!!$F*033!R,#"'=G&N:3!R!!!.1!I!"UZV<76S;7-!'E"!!!0```````````````]!"!6*<7&H:1!(1!-!!59!"U!$!!&:!!>!!Q!"7!!91&!!!Q!'!!=!#!J'=G&N:3"4;8JF!!!31&!!!A!&!!E(1WRV=X2F=A!31%!!!@````]!#A2%982B!!"5!0!!$!!"!!)!!A!$!!)!!A!#!!)!!A!#!!)!#Q)!!(A!!!E!!!!!!!!!!!!!!!E!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!##!!!!!!"!!Q!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082143232</Property>
</Item>
</Item>
<Item Name="Experiment" Type="Folder">
<Item Name="CCD" Type="Folder">
<Item Name="Exp_CCD_GetExposureTime.vi" Type="VI" URL="../VIs/Experiment/CCD/Exp_CCD_GetExposureTime.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&F!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!">!#A!228BQ<X.V=G5A6'FN:3!I=SE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"1!'!!1!"!!%!!1!"Q!%!!1!#!-!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#!!!!!!!!!!!!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_CCD_SetExposureTime.vi" Type="VI" URL="../VIs/Experiment/CCD/Exp_CCD_SetExposureTime.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&F!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!&U!+!"&&?("P=X6S:3"5;7VF)#BT+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"!!&!!1!"!!%!!1!"A!%!!=!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!+!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
</Item>
<Item Name="EMCCD" Type="Folder">
<Item Name="EMCCD_SetEMGain.vi" Type="VI" URL="../VIs/Experiment/EMCCD/EMCCD_SetEMGain.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&<!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!$5!$!!>&43"(97FO!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!"Q!)!Q!!?!!!$1A!!!!!!!!!!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!I!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
</Item>
<Item Name="ICCD" Type="Folder">
<Item Name="Exp_ICCD_GetAuxOutProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetAuxOutProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&_!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!'5!+!"*">8AA4X6U)&>J:(2I)#BO=SE!!">!#A!2186Y4X6U)%2F<'&Z)#BO=SE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!"!!!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!(!!=!"Q!(!!A!"Q!(!!E$!!"Y!!!.#!!!#1!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetGateMode.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetGateMode.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&A!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"*!-0````]*2W&U:3".<W2F!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!%!!1!"!!%!!=!"!!%!!A$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetIntensifierGain.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetIntensifierGain.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&/!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetIntensifierState.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetIntensifierState.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&C!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"2!)1^*<H2F<H.J:GFF=C"0<D]!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"1!'!!1!"!!%!!1!"Q!%!!1!#!-!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!!!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetInternalTriggerFrequency.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetInternalTriggerFrequency.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&P!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!#&!!Q!;37ZU:8*O97QA6(*J:W>F=C"'=G6R>76O9XE!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!%!!1!"!!%!!=!"!!%!!A$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetOnChipAccumulations.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetOnChipAccumulations.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&J!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"N!!Q!64WYA1WBJ=#""9W.V<86M982J<WZT!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!%!!1!"!!%!!=!"!!%!!A$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetRepetitiveGateProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetRepetitiveGateProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'1!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!)5!+!"J3:8"F>'FU;8:F)%>B>'5A6WFE>'AA+'ZT+1!!)5!+!"J3:8"F>'FU;8:F)%>B>'5A2'6M98EA+'ZT+1!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!"!!!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!(!!=!"Q!(!!A!"Q!(!!E$!!"Y!!!.#!!!#1!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetSequentialEndGateProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetSequentialEndGateProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'9!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!*5!+!"Z4:8&V:7ZU;7&M)%6O:#"(982F)&>J:(2I)#BO=SE!!#6!#A!?5W6R>76O>'FB<#"&<G1A2W&U:3"%:7RB?3!I<H-J!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!:4'FH;(2';76M:#"">82P<7&U;7^O)'^V>!!%!!!!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"1!'!!=!"Q!(!!=!#!!(!!=!#1-!!(A!!!U)!!!*!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!!!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!+!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetSequentialStartingGateProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetSequentialStartingGateProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'A!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!+5!+!#.4:8&V:7ZU;7&M)&.U98*U;7ZH)%>B>'5A6WFE>'AA+'ZT+1!J1!I!)V.F=86F<H2J97QA5X2B=H2J<G=A2W&U:3"%:7RB?3!I<H-J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!!1!!!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!&!!9!"Q!(!!=!"Q!)!!=!"Q!*!Q!!?!!!$1A!!!E!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!I!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_GetTemplate.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_GetTemplate.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&D!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"6!!Q!037ZU:7ZT;7:J:8)A4WY`!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!5!"A!%!!1!"!!%!!=!"!!%!!A$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_ICCD_SetAuxOutProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetAuxOutProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'%!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!'U!+!"6">8AA4X6U=(6U)&>J:(2I)#BO=SE!'U!+!"6">8AA4X6U=(6U)%2F<'&Z)#BO=SE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"Q!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!+!!!!#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetGateMode.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetGateMode.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&A!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!%E!Q`````QF(982F)%VP:'5!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!(!!A$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!##!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetIntensifierGain.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetIntensifierGain.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&F!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!&U!$!""*<H2F<H.J:GFF=C"(97FO!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"!!&!!1!"!!%!!1!"A!%!!=!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!+!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetInternalTriggerFrequency.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetInternalTriggerFrequency.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&P!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!)5!$!"J*<H2F=GZB<#"5=GFH:W6S)%:S:8&V:7ZD?1!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!(!!A$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetOnChipAccumulations.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetOnChipAccumulations.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&J!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!'U!$!"60<C"$;'FQ)%&D9X6N>7RB>'FP<H-!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!(!!A$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetRepetitiveGateProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetRepetitiveGateProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'1!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!)5!+!"J3:8"F>'FU;8:F)%>B>'5A6WFE>'AA+'ZT+1!!)5!+!"J3:8"F>'FU;8:F)%>B>'5A2'6M98EA+'ZT+1!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"Q!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!+!!!!#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetSequentialEndingGateProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetSequentialEndingGateProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'=!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!*U!+!#&4:8&V:7ZU;7&M)%6O:'FO:S"(982F)&>J:(2I)#BO=SE!*U!+!#&4:8&V:7ZU;7&M)%6O:'FO:S"(982F)%2F<'&Z)#BO=SE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"Q!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!+!!!!#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetSequentialStartingGateProperties.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetSequentialStartingGateProperties.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'A!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!+5!+!#.4:8&V:7ZU;7&M)&.U98*U;7ZH)%>B>'5A6WFE>'AA+'ZT+1!J1!I!)V.F=86F<H2J97QA5X2B=H2J<G=A2W&U:3"%:7RB?3!I<H-J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!=!#!!*!Q!!?!!!$1A!!!!!!!!!!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!#A!!!!I!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!I!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_ICCD_SetTemplate.vi" Type="VI" URL="../VIs/Experiment/ICCD/Exp_ICCD_SetTemplate.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'%!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!'U!+!"6">8AA4X6U=(6U)&>J:(2I)#BO=SE!'U!+!"6">8AA4X6U=(6U)%2F<'&Z)#BO=SE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"Q!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!+!!!!#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
</Item>
<Item Name="Exp_GetExposuresPerFrame.vi" Type="VI" URL="../VIs/Experiment/Exp_GetExposuresPerFrame.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&H!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"F!!Q!428BQ<X.V=G6T)&"F=C"'=G&N:1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!:4'FH;(2';76M:#"">82P<7&U;7^O)'^V>!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!&!!9!"!!%!!1!"!!(!!1!"!!)!Q!!?!!!$1A!!!!!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_GetFrames.vi" Type="VI" URL="../VIs/Experiment/Exp_GetFrames.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&<!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!!Q!'2H*B<76T!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!:4'FH;(2';76M:#"">82P<7&U;7^O)'^V>!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!&!!9!"!!%!!1!"!!(!!1!"!!)!Q!!?!!!$1A!!!!!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_GetSavedExperiments.vi" Type="VI" URL="../VIs/Experiment/Exp_GetSavedExperiments.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&_!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"*!-0````]):W6U8UFU:7U!!"Z!1!!"`````Q!&%6.B>G6E)%6Y='6S;7VF<H2T!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!9!"Q!%!!1!"!!%!!A!"!!%!!E#!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1084236288</Property>
</Item>
<Item Name="Exp_GetTemplate.vi" Type="VI" URL="../VIs/Experiment/Exp_GetTemplate.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&<!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!!Q!(5W6U>'FO:Q"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!:4'FH;(2';76M:#"">82P<7&U;7^O)'^V>!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!&!!9!"!!%!!1!"!!(!!1!"!!)!Q!!?!!!$1A!!!!!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782544</Property>
</Item>
<Item Name="Exp_PopulateADCQualityControl.vi" Type="VI" URL="../VIs/Experiment/Exp_PopulateADCQualityControl.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&J!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!"1!$!!!71(!!#!!"!!=!)A!!"U.P<H2S<WQ!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="Exp_PopulateExposureMethodControl.vi" Type="VI" URL="../VIs/Experiment/Exp_PopulateExposureMethodControl.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&J!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!"1!$!!!71(!!#!!"!!=!)A!!"U.P<H2S<WQ!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342972432</Property>
</Item>
<Item Name="Exp_SetADCQuality.vi" Type="VI" URL="../VIs/Experiment/Exp_SetADCQuality.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'9!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!3A$R!!!!!!!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-/152$586B<'FU?3ZD>'Q!&5!$!!J"2%.2>7&M;82Z!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"!!&!!1!"!!%!!1!"A!%!!=!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!+!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="Exp_SetExperiment.vi" Type="VI" URL="../VIs/Experiment/Exp_SetExperiment.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&G!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!'%!Q`````QZ&?("F=GFN:7ZU4G&N:1!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!(!!A#!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!"#A!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="Exp_SetExposuresPerFrame.vi" Type="VI" URL="../VIs/Experiment/Exp_SetExposuresPerFrame.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&H!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!'5!$!".&?("P=X6S:8-A5'6S)%:S97VF!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!"Q!)!Q!!?!!!$1A!!!!!!!!!!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!I!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_SetFrames.vi" Type="VI" URL="../VIs/Experiment/Exp_SetFrames.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&F!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!&U!$!""/>7VC:8)A<W9A2H*B<76T!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"!!&!!1!"!!%!!1!"A!%!!=!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!+!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
<Item Name="Exp_SetTemplate.vi" Type="VI" URL="../VIs/Experiment/Exp_SetTemplate.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&<!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!$5!$!!>4:82U;7ZH!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!"Q!)!Q!!?!!!$1A!!!!!!!!!!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!I!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130960</Property>
</Item>
</Item>
<Item Name="SpecializedAcquire" Type="Folder">
<Item Name="LFA_AcquireAltSPEMethod.vi" Type="VI" URL="../VIs/SpecializedAcquire/LFA_AcquireAltSPEMethod.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(9!!!!%A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!&"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!=!#!!*#E:S97VF)&.J?G5!!"*!5!!#!!9!#A>$<(6T>'6S!"*!1!!"`````Q!,"%2B>'%!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!%E!B$%2F<'6U:3"';7RF0Q!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!Q!$1!%!!1!"!!%!!Y!"!!0!"!$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!%1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082925584</Property>
</Item>
<Item Name="LFA_Capture.vi" Type="VI" URL="../VIs/SpecializedAcquire/LFA_Capture.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(4!!!!%A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!&"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!=!#!!*#E:S97VF)&.J?G5!!"*!5!!#!!9!#A>$<(6T>'6S!"*!1!!"`````Q!,"%2B>'%!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!$5!$!!:'=G&N:8-!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!-!!U!"!!%!!1!"!!/!!1!$Q!1!Q!!?!!!$1A!!!!!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!I!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!"%!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1350574608</Property>
</Item>
<Item Name="LFA_PreviewRun.vi" Type="VI" URL="../VIs/SpecializedAcquire/LFA_PreviewRun.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&/!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=#!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821056</Property>
</Item>
<Item Name="LFA_Stop.vi" Type="VI" URL="../VIs/SpecializedAcquire/LFA_Stop.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&/!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=#!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821056</Property>
</Item>
</Item>
<Item Name="Spectrometer" Type="Folder">
<Item Name="spec_getCalibration.vi" Type="VI" URL="../VIs/Spectrometer/spec_getCalibration.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&R!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!5!#A!!(E"!!!(`````!!521W^M>7VO1W&M;7*S982J<WY!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"A!(!!1!"!!%!!1!#!!%!!1!#1)!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!!!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!+!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821056</Property>
</Item>
<Item Name="spec_GetCenterWavelength.vi" Type="VI" URL="../VIs/Spectrometer/spec_GetCenterWavelength.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&F!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!">!#A!21W6O>'6S)&>B>G6M:7ZH;(1!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"1!'!!1!"!!%!!1!"Q!%!!1!#!-!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!!!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="spec_GetGratings.vi" Type="VI" URL="../VIs/Spectrometer/spec_GetGratings.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'5!!!!$!!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!'%!Q`````Q^$>8*S:7ZU)%>S982J<G=!'%!Q`````Q^(=G&U;7ZH5W6M:7.U:71!&E"!!!(`````!!5)2X*B>'FO:X-!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!!1!!!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!'!!=!#!!)!!A!#!!*!!A!#!!+!Q!!?!!!$1A!!!E!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!M!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="spec_GetOpticalEntrancePort.vi" Type="VI" URL="../VIs/Spectrometer/spec_GetOpticalEntrancePort.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'N!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!&]!]1!!!!!!!!!#(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T&U^Q>'FD97R1<X*U4'^D982J<WYO9X2M!#&!!Q!727ZU=G&O9W5A5'^S>#"-<W.B>'FP<A!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"1!'!!1!"!!%!!1!"Q!%!!1!#!-!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!!!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="spec_GetOpticalExitPort.vi" Type="VI" URL="../VIs/Spectrometer/spec_GetOpticalExitPort.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'J!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!&M!]1!!!!!!!!!#(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T&U^Q>'FD97R1<X*U4'^D982J<WYO9X2M!"V!!Q!328BJ>#"1<X*U)%RP9W&U;7^O!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!:4'FH;(2';76M:#"">82P<7&U;7^O)'^V>!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!&!!9!"!!%!!1!"!!(!!1!"!!)!Q!!?!!!$1A!!!!!!!!*!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!!!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="spec_ParseGratingSelectedString.vi" Type="VI" URL="../VIs/Spectrometer/spec_ParseGratingSelectedString.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!()!!!!$A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!"2!-0````],5'&S=W6E)&2F?(1!'%!Q`````Q^(=G&U;7ZH5W6M:7.U:71!#A"1!!)!"1!'!#:!1!!"`````Q!('&.U=GFO:X-A97ZE)&:B<(6F=S""=H*B?1!!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'5RJ:WBU2GFF<'1A186U<WVB>'FP<C"P>81!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!?1%!!!@````]!"B"(=G&U;7ZH=V.F<'6D>'6E!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!#!!*!!1!"!!%!!1!#A!%!!M!$!)!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#!!!!!!!!!)+!!!!%!!!$1!!!!Q!!!!!!!!!!!!!!1!.!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1117782528</Property>
</Item>
<Item Name="spec_PopulateComboBoxControl.vi" Type="VI" URL="../VIs/Spectrometer/spec_PopulateComboBoxControl.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&O!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!)%"Q!!A!!!!>!!!41W^N9G]A1G^Y)&*F:G6S:7ZD:1"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"!!&!!1!"!!%!!1!"A!%!!=!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!)!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="spec_PopulateEntrancePortControl.vi" Type="VI" URL="../VIs/Spectrometer/spec_PopulateEntrancePortControl.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&J!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!"1!$!!!71(!!#!!"!!=!)A!!"U.P<H2S<WQ!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342972432</Property>
</Item>
<Item Name="spec_PopulateExitPortControl.vi" Type="VI" URL="../VIs/Spectrometer/spec_PopulateExitPortControl.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&J!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!"1!$!!!71(!!#!!"!!=!)A!!"U.P<H2S<WQ!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!)!!E$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!#!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#A!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342972432</Property>
</Item>
<Item Name="spec_SetCenterWavelength.vi" Type="VI" URL="../VIs/Spectrometer/spec_SetCenterWavelength.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&F!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!&U!+!"&$:7ZU:8)A6W&W:7RF<G>U;!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"!!&!!1!"!!%!!1!"A!%!!=!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!)!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="spec_SetGrating.vi" Type="VI" URL="../VIs/Spectrometer/spec_SetGrating.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&G!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!'%!Q`````Q^(=G&U;7ZH5W6M:7.U:71!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!(!!A$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!##!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="spec_SetGratingByIndex.vi" Type="VI" URL="../VIs/Spectrometer/spec_SetGratingByIndex.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&N!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!(U!$!"B(=G&U;7ZH)%FO:'6Y)#AQ)#U_)'YN-3E!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!"Q!)!Q!!?!!!$1A!!!!!!!!!!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!A!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="spec_SetOpticalEntrancePort.vi" Type="VI" URL="../VIs/Spectrometer/spec_SetOpticalEntrancePort.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'N!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!8Q$R!!!!!!!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-84X"U;7.B<&"P=H2-<W.B>'FP<CZD>'Q!)5!$!":&<H2S97ZD:3"1<X*U)%RP9W&U;7^O!!"#1(!!(A!!(RV-;7>I>%:J:7RE)%&V>'^N982J<WYO<(:D<'&T=Q!94'FH;(2';76M:#"">82P<7&U;7^O)'FO!!"B!0!!$!!$!!1!"!!&!!1!"!!%!!1!"A!%!!=!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!)!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
<Item Name="spec_SetOpticalExitPort.vi" Type="VI" URL="../VIs/Spectrometer/spec_SetOpticalExitPort.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'J!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!7Q$R!!!!!!!!!!)>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-84X"U;7.B<&"P=H2-<W.B>'FP<CZD>'Q!(5!$!"*&?'FU)&"P=H1A4'^D982J<WY!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"B-;7>I>%:J:7RE)%&V>'^N982J<WYA;7Y!!'%!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!"Q!)!Q!!?!!!$1A!!!!!!!!!!!!!$1M!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!A!!!!3!!!.!!!!$!!!!!!!!!!!!!!"!!E!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710288</Property>
</Item>
</Item>
<Item Name="LFA_AcquireWithAutosave.vi" Type="VI" URL="../VIs/LFA_AcquireWithAutosave.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!('!!!!%1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!!V!#A!(4H6N:8*J9Q!;1%!!!````````````````Q!&"5FN97>F!!>!!Q!"2A!(1!-!!6E!"U!$!!&9!"B!5!!$!!=!#!!*#E:S97VF)&.J?G5!!"*!5!!#!!9!#A>$<(6T>'6S!"*!1!!"`````Q!,"%2B>'%!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!Q!$1!%!!1!"!!%!!Y!"!!%!!]$!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!%!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1107821072</Property>
</Item>
<Item Name="LFA_Close.vi" Type="VI" URL="../VIs/LFA_Close.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&/!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!1E"Q!"Y!!"]>4'FH;(2';76M:#"">82P<7&U;7^O,GRW9WRB=X-!'%RJ:WBU2GFF<'1A186U<WVB>'FP<C"J<A!!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342972432</Property>
</Item>
<Item Name="LFA_Initialize.vi" Type="VI" URL="../VIs/LFA_Initialize.vi">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%0!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!%*!=!!?!!!@(5RJ:WBU2GFF<'1A186U<WVB>'FP<CZM>G.M98.T!"F-;7>I>%:J:7RE)%&V>'^N982J<WYA<X6U!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!%%!B#UFT)&:J=WFC<'5`!&1!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!"Q!%!Q!!?!!!$1A!!!!!!!!!!!!!#1!!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!!I!!!!!!!!!!!%!#!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1342710290</Property>
</Item>
</Item>
<Item Name="TypeDefs" Type="Folder">
<Item Name="ADCGain.ctl" Type="VI" URL="../VIs/TypeDefs/ADCGain.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!6!!!!!1!.1!9!"U&%1U>B;7Y!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="ADCQuality.ctl" Type="VI" URL="../VIs/TypeDefs/ADCQuality.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!-!!!!!1!%!!!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">4194304</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1074541056</Property>
</Item>
<Item Name="CalibrationLightSource.ctl" Type="VI" URL="../VIs/TypeDefs/CalibrationLightSource.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!F!!!!!1!>1!9!&E.B<'FC=G&U;7^O4'FH;(24<X6S9W5!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="CalibrationMode.ctl" Type="VI" URL="../VIs/TypeDefs/CalibrationMode.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!>!!!!!1!61!9!$U.B<'FC=G&U;7^O47^E:1!"!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="CCDCharacteristics.ctl" Type="VI" URL="../VIs/TypeDefs/CCDCharacteristics.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%E.$2%.I98*B9X2F=GFT>'FD=Q!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="CosmicRayCorrectionMethod.ctl" Type="VI" URL="../VIs/TypeDefs/CosmicRayCorrectionMethod.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!-!!!!!1!%!!!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">4194304</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1074541056</Property>
</Item>
<Item Name="DateFormat.ctl" Type="VI" URL="../VIs/TypeDefs/DateFormat.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!:!!!!!1!21!9!#E2B>'&'<X*N981!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="EMIccdGainControlMode.ctl" Type="VI" URL="../VIs/TypeDefs/EMIccdGainControlMode.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!D!!!!!1!<1!9!&56.37.D:%>B;7Z$<WZU=G^M47^E:1!"!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="FeatureProvider.ctl" Type="VI" URL="../VIs/TypeDefs/FeatureProvider.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!>!!!!!1!61!9!$U:F982V=G61=G^W;72F=A!"!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="FileFormatLocation.ctl" Type="VI" URL="../VIs/TypeDefs/FileFormatLocation.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%E:J<'6'<X*N982-<W.B>'FP<A!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="FrameCombinationMethod.ctl" Type="VI" URL="../VIs/TypeDefs/FrameCombinationMethod.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!F!!!!!1!>1!9!&E:S97VF1W^N9GFO982J<WZ.:82I<W1!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="GateTracking.ctl" Type="VI" URL="../VIs/TypeDefs/GateTracking.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!<!!!!!1!41!9!$%>B>'65=G&D;WFO:Q!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="GatingMode.ctl" Type="VI" URL="../VIs/TypeDefs/GatingMode.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!:!!!!!1!21!9!#E>B>'FO:UVP:'5!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="GatingSpeed.ctl" Type="VI" URL="../VIs/TypeDefs/GatingSpeed.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!:!!!!!1!21!9!#U>B>'FO:V.Q:76E!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="Generic.ctl" Type="VI" URL="../VIs/TypeDefs/Generic.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!4!!!!!1!,1!9!"&*J<G=!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="ImageOrientation.ctl" Type="VI" URL="../VIs/TypeDefs/ImageOrientation.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!@!!!!!1!81!9!%%FN97>F4X*J:7ZU982J<WY!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="IntensifierOptions.ctl" Type="VI" URL="../VIs/TypeDefs/IntensifierOptions.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%EFO>'6O=WFG;76S4X"U;7^O=Q!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="IntensifierStatus.ctl" Type="VI" URL="../VIs/TypeDefs/IntensifierStatus.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!@!!!!!1!81!9!%5FO>'6O=WFG;76S5X2B>(6T!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="ModulationTracking.ctl" Type="VI" URL="../VIs/TypeDefs/ModulationTracking.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%EVP:(6M982J<WZ5=G&D;WFO:Q!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="OpticalPortLocation.ctl" Type="VI" URL="../VIs/TypeDefs/OpticalPortLocation.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%U^Q>'FD97R1<X*U4'^D982J<WY!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="OpticalPortShutterType.ctl" Type="VI" URL="../VIs/TypeDefs/OpticalPortShutterType.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!F!!!!!1!>1!9!&E^Q>'FD97R1<X*U5WBV>(2F=F2Z='5!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="OpticalPortType.ctl" Type="VI" URL="../VIs/TypeDefs/OpticalPortType.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!>!!!!!1!61!9!$U^Q>'FD97R1<X*U6(FQ:1!"!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="OutputSignal.ctl" Type="VI" URL="../VIs/TypeDefs/OutputSignal.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!<!!!!!1!41!9!$%^V>("V>&.J:WZB<!!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="PhosphorType.ctl" Type="VI" URL="../VIs/TypeDefs/PhosphorType.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!<!!!!!1!41!9!$&"I<X.Q;'^S6(FQ:1!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="PhotocathodeSensitivity.ctl" Type="VI" URL="../VIs/TypeDefs/PhotocathodeSensitivity.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!F!!!!!1!>1!9!&V"I<X2P9W&U;'^E:6.F<H.J>'FW;82Z!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="PhotonDetectionMode.ctl" Type="VI" URL="../VIs/TypeDefs/PhotonDetectionMode.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%V"I<X2P<E2F>'6D>'FP<EVP:'5!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="PixelDataFormat.ctl" Type="VI" URL="../VIs/TypeDefs/PixelDataFormat.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!>!!!!!1!61!9!$V"J?'6M2'&U95:P=GVB>!!"!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="PixelFormat.ctl" Type="VI" URL="../VIs/TypeDefs/PixelFormat.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!:!!!!!1!21!9!#V"J?'6M2G^S<7&U!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="ReadoutControlMode.ctl" Type="VI" URL="../VIs/TypeDefs/ReadoutControlMode.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%F*F972P>82$<WZU=G^M47^E:1!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="ReadoutOrientation.ctl" Type="VI" URL="../VIs/TypeDefs/ReadoutOrientation.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!B!!!!!1!:1!9!%F*F972P>820=GFF<H2B>'FP<A!!!1!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="RegionsOfInterestSelection.ctl" Type="VI" URL="../VIs/TypeDefs/RegionsOfInterestSelection.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!J!!!!!1!B1!9!'F*F:WFP<H.0:EFO>'6S:8.U5W6M:7.U;7^O!!!"!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="SensorTemperatureStatus.ctl" Type="VI" URL="../VIs/TypeDefs/SensorTemperatureStatus.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!F!!!!!1!>1!9!&V.F<H.P=F2F<8"F=G&U>8*F5X2B>(6T!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>
<Property Name="NI.ClassItem.State" Type="Int">1082130944</Property>
</Item>
<Item Name="SensorType.ctl" Type="VI" URL="../VIs/TypeDefs/SensorType.ctl">
<Property Name="NI.ClassItem.ConnectorPane" Type="Bin">)!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!:!!!!!1!21!9!#F.F<H.P=F2Z='5!!!%!!!!!!!!</Property>
<Property Name="NI.ClassItem.ExecutionSystem" Type="Int">-1</Property>
<Property Name="NI.ClassItem.Flags" Type="Int">0</Property>
<Property Name="NI.ClassItem.IsStaticMethod" Type="Bool">true</Property>
<Property Name="NI.ClassItem.MethodScope" Type="UInt">1</Property>
<Property Name="NI.ClassItem.Priority" Type="Int">1</Property>