-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsri.amx
13592 lines (13592 loc) · 578 KB
/
sri.amx
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
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<a1:AnimDoc id="ref-1" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<Bitmaps href="#ref-3"/>
<Strips href="#ref-4"/>
<FrameRate>80</FrameRate>
<TileSize>32</TileSize>
</a1:AnimDoc>
<a1:XBitmapSet id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<_x0030_ href="#ref-5"/>
<_x0031_ href="#ref-6"/>
<_x0032_ href="#ref-7"/>
<_x0033_ href="#ref-8"/>
<_x0034_ href="#ref-9"/>
<_x0035_ href="#ref-10"/>
<_x0036_ href="#ref-11"/>
<_x0037_ href="#ref-12"/>
<_x0038_ href="#ref-13"/>
<_x0039_ href="#ref-14"/>
<_x0031_0 href="#ref-15"/>
<_x0031_1 href="#ref-16"/>
<_x0031_2 href="#ref-17"/>
<_x0031_3 href="#ref-18"/>
<_x0031_4 href="#ref-19"/>
<_x0031_5 href="#ref-20"/>
<_x0031_6 href="#ref-21"/>
<_x0031_7 href="#ref-22"/>
<_x0031_8 href="#ref-23"/>
<_x0031_9 href="#ref-24"/>
<_x0032_0 href="#ref-25"/>
<_x0032_1 href="#ref-26"/>
<_x0032_2 href="#ref-27"/>
<_x0032_3 href="#ref-28"/>
<_x0032_4 href="#ref-29"/>
<_x0032_5 href="#ref-30"/>
<_x0032_6 href="#ref-31"/>
<_x0032_7 href="#ref-32"/>
<_x0032_8 href="#ref-33"/>
<_x0032_9 href="#ref-34"/>
<_x0033_0 href="#ref-35"/>
<_x0033_1 href="#ref-36"/>
<_x0033_2 href="#ref-37"/>
<_x0033_3 href="#ref-38"/>
<_x0033_4 href="#ref-39"/>
<_x0033_5 href="#ref-40"/>
<_x0033_6 href="#ref-41"/>
<_x0033_7 href="#ref-42"/>
<_x0033_8 href="#ref-43"/>
<_x0033_9 href="#ref-44"/>
<_x0034_0 href="#ref-45"/>
<_x0034_1 href="#ref-46"/>
<_x0034_2 href="#ref-47"/>
<_x0034_3 href="#ref-48"/>
<_x0034_4 href="#ref-49"/>
<_x0034_5 href="#ref-50"/>
<_x0034_6 href="#ref-51"/>
<_x0034_7 href="#ref-52"/>
<_x0034_8 href="#ref-53"/>
<_x0034_9 href="#ref-54"/>
<_x0035_0 href="#ref-55"/>
<_x0035_1 href="#ref-56"/>
<_x0035_2 href="#ref-57"/>
<_x0035_3 href="#ref-58"/>
<_x0035_4 href="#ref-59"/>
<_x0035_5 href="#ref-60"/>
<_x0035_6 href="#ref-61"/>
<_x0035_7 href="#ref-62"/>
<_x0035_8 href="#ref-63"/>
<_x0035_9 href="#ref-64"/>
<_x0036_0 href="#ref-65"/>
<_x0036_1 href="#ref-66"/>
<_x0036_2 href="#ref-67"/>
<_x0036_3 href="#ref-68"/>
<_x0036_4 href="#ref-69"/>
<_x0036_5 href="#ref-70"/>
<_x0036_6 href="#ref-71"/>
<_x0036_7 href="#ref-72"/>
<_x0036_8 href="#ref-73"/>
<_x0036_9 href="#ref-74"/>
<_x0037_0 href="#ref-75"/>
<_x0037_1 href="#ref-76"/>
<_x0037_2 href="#ref-77"/>
<_x0037_3 href="#ref-78"/>
<_x0037_4 href="#ref-79"/>
<_x0037_5 href="#ref-80"/>
<_x0037_6 href="#ref-81"/>
<_x0037_7 href="#ref-82"/>
<_x0037_8 href="#ref-83"/>
<_x0037_9 href="#ref-84"/>
<_x0038_0 href="#ref-85"/>
<_x0038_1 href="#ref-86"/>
<_x0038_2 href="#ref-87"/>
<_x0038_3 href="#ref-88"/>
<_x0038_4 href="#ref-89"/>
<_x0038_5 href="#ref-90"/>
<_x0038_6 href="#ref-91"/>
<_x0038_7 href="#ref-92"/>
<_x0038_8 href="#ref-93"/>
<_x0038_9 href="#ref-94"/>
<_x0039_0 href="#ref-95"/>
<_x0039_1 href="#ref-96"/>
<_x0039_2 href="#ref-97"/>
<_x0039_3 href="#ref-98"/>
<_x0039_4 href="#ref-99"/>
<_x0039_5 href="#ref-100"/>
<_x0039_6 href="#ref-101"/>
<_x0039_7 href="#ref-102"/>
<_x0039_8 href="#ref-103"/>
<_x0039_9 href="#ref-104"/>
<_x0031_00 href="#ref-105"/>
<_x0031_01 href="#ref-106"/>
<_x0031_02 href="#ref-107"/>
<_x0031_03 href="#ref-108"/>
<_x0031_04 href="#ref-109"/>
<_x0031_05 href="#ref-110"/>
<_x0031_06 href="#ref-111"/>
<_x0031_07 href="#ref-112"/>
<_x0031_08 href="#ref-113"/>
<_x0031_09 href="#ref-114"/>
<_x0031_10 href="#ref-115"/>
<_x0031_11 href="#ref-116"/>
<_x0031_12 href="#ref-117"/>
<_x0031_13 href="#ref-118"/>
<_x0031_14 href="#ref-119"/>
<_x0031_15 href="#ref-120"/>
<_x0031_16 href="#ref-121"/>
<_x0031_17 href="#ref-122"/>
<_x0031_18 href="#ref-123"/>
<_x0031_19 href="#ref-124"/>
<_x0031_20 href="#ref-125"/>
<_x0031_21 href="#ref-126"/>
<_x0031_22 href="#ref-127"/>
<_x0031_23 href="#ref-128"/>
<_x0031_24 href="#ref-129"/>
<_x0031_25 href="#ref-130"/>
<_x0031_26 href="#ref-131"/>
<_x0031_27 href="#ref-132"/>
<_x0031_28 href="#ref-133"/>
<_x0031_29 href="#ref-134"/>
<_x0031_30 href="#ref-135"/>
<_x0031_31 href="#ref-136"/>
<_x0031_32 href="#ref-137"/>
<_x0031_33 href="#ref-138"/>
<_x0031_34 href="#ref-139"/>
<_x0031_35 href="#ref-140"/>
<_x0031_36 href="#ref-141"/>
<_x0031_37 href="#ref-142"/>
<_x0031_38 href="#ref-143"/>
<_x0031_39 href="#ref-144"/>
<_x0031_40 href="#ref-145"/>
<_x0031_41 href="#ref-146"/>
<_x0031_42 href="#ref-147"/>
<_x0031_43 href="#ref-148"/>
<_x0031_44 href="#ref-149"/>
<_x0031_45 href="#ref-150"/>
<_x0031_46 href="#ref-151"/>
<_x0031_47 href="#ref-152"/>
<_x0031_48 href="#ref-153"/>
<_x0031_49 href="#ref-154"/>
<_x0031_50 href="#ref-155"/>
<_x0031_51 href="#ref-156"/>
<_x0031_52 href="#ref-157"/>
<_x0031_53 href="#ref-158"/>
<_x0031_54 href="#ref-159"/>
<_x0031_55 href="#ref-160"/>
<_x0031_56 href="#ref-161"/>
<_x0031_57 href="#ref-162"/>
<_x0031_58 href="#ref-163"/>
<_x0031_59 href="#ref-164"/>
<_x0031_60 href="#ref-165"/>
<_x0031_61 href="#ref-166"/>
<_x0031_62 href="#ref-167"/>
<_x0031_63 href="#ref-168"/>
<_x0031_64 href="#ref-169"/>
<_x0031_65 href="#ref-170"/>
<_x0031_66 href="#ref-171"/>
<_x0031_67 href="#ref-172"/>
<_x0031_68 href="#ref-173"/>
<_x0031_69 href="#ref-174"/>
<_x0031_70 href="#ref-175"/>
<_x0031_71 href="#ref-176"/>
<_x0031_72 href="#ref-177"/>
<_x0031_73 href="#ref-178"/>
<_x0031_74 href="#ref-179"/>
<_x0031_75 href="#ref-180"/>
<_x0031_76 href="#ref-181"/>
<_x0031_77 href="#ref-182"/>
<_x0031_78 href="#ref-183"/>
<_x0031_79 href="#ref-184"/>
<_x0031_80 href="#ref-185"/>
<_x0031_81 href="#ref-186"/>
<_x0031_82 href="#ref-187"/>
<_x0031_83 href="#ref-188"/>
<_x0031_84 href="#ref-189"/>
<_x0031_85 href="#ref-190"/>
<_x0031_86 href="#ref-191"/>
<_x0031_87 href="#ref-192"/>
<_x0031_88 href="#ref-193"/>
<_x0031_89 href="#ref-194"/>
<_x0031_90 href="#ref-195"/>
<_x0031_91 href="#ref-196"/>
<_x0031_92 href="#ref-197"/>
<_x0031_93 href="#ref-198"/>
<_x0031_94 href="#ref-199"/>
<_x0031_95 href="#ref-200"/>
<_x0031_96 href="#ref-201"/>
<_x0031_97 href="#ref-202"/>
<_x0031_98 href="#ref-203"/>
<_x0031_99 href="#ref-204"/>
<_x0032_00 href="#ref-205"/>
<_x0032_01 href="#ref-206"/>
<_x0032_02 href="#ref-207"/>
<_x0032_03 href="#ref-208"/>
<_x0032_04 href="#ref-209"/>
<_x0032_05 href="#ref-210"/>
<_x0032_06 href="#ref-211"/>
<_x0032_07 href="#ref-212"/>
<_x0032_08 href="#ref-213"/>
<_x0032_09 href="#ref-214"/>
<_x0032_10 href="#ref-215"/>
<_x0032_11 href="#ref-216"/>
<_x0032_12 href="#ref-217"/>
<_x0032_13 href="#ref-218"/>
<_x0032_14 href="#ref-219"/>
<_x0032_15 href="#ref-220"/>
<_x0032_16 href="#ref-221"/>
<_x0032_17 href="#ref-222"/>
<_x0032_18 href="#ref-223"/>
<_x0032_19 href="#ref-224"/>
<_x0032_20 href="#ref-225"/>
<_x0032_21 href="#ref-226"/>
<_x0032_22 href="#ref-227"/>
<_x0032_23 href="#ref-228"/>
<_x0032_24 href="#ref-229"/>
<_x0032_25 href="#ref-230"/>
<_x0032_26 href="#ref-231"/>
<_x0032_27 href="#ref-232"/>
<_x0032_28 href="#ref-233"/>
<_x0032_29 href="#ref-234"/>
<_x0032_30 href="#ref-235"/>
<_x0032_31 href="#ref-236"/>
<_x0032_32 href="#ref-237"/>
<_x0032_33 href="#ref-238"/>
<_x0032_34 href="#ref-239"/>
<_x0032_35 href="#ref-240"/>
<_x0032_36 href="#ref-241"/>
<_x0032_37 href="#ref-242"/>
<_x0032_38 href="#ref-243"/>
<_x0032_39 href="#ref-244"/>
<_x0032_40 href="#ref-245"/>
<_x0032_41 href="#ref-246"/>
<_x0032_42 href="#ref-247"/>
<_x0032_43 href="#ref-248"/>
<_x0032_44 href="#ref-249"/>
<_x0032_45 href="#ref-250"/>
<_x0032_46 href="#ref-251"/>
<_x0032_47 href="#ref-252"/>
<_x0032_48 href="#ref-253"/>
<_x0032_49 href="#ref-254"/>
<_x0032_50 href="#ref-255"/>
<_x0032_51 href="#ref-256"/>
<_x0032_52 href="#ref-257"/>
<_x0032_53 href="#ref-258"/>
<_x0032_54 href="#ref-259"/>
<_x0032_55 href="#ref-260"/>
<_x0032_56 href="#ref-261"/>
<_x0032_57 href="#ref-262"/>
<_x0032_58 href="#ref-263"/>
<_x0032_59 href="#ref-264"/>
<_x0032_60 href="#ref-265"/>
<_x0032_61 href="#ref-266"/>
<_x0032_62 href="#ref-267"/>
<_x0032_63 href="#ref-268"/>
<_x0032_64 href="#ref-269"/>
<_x0032_65 href="#ref-270"/>
<_x0032_66 href="#ref-271"/>
<_x0032_67 href="#ref-272"/>
<_x0032_68 href="#ref-273"/>
<_x0032_69 href="#ref-274"/>
<_x0032_70 href="#ref-275"/>
<_x0032_71 href="#ref-276"/>
<_x0032_72 href="#ref-277"/>
<_x0032_73 href="#ref-278"/>
<_x0032_74 href="#ref-279"/>
<_x0032_75 href="#ref-280"/>
<_x0032_76 href="#ref-281"/>
<_x0032_77 href="#ref-282"/>
<_x0032_78 href="#ref-283"/>
<_x0032_79 href="#ref-284"/>
<_x0032_80 href="#ref-285"/>
<_x0032_81 href="#ref-286"/>
<_x0032_82 href="#ref-287"/>
<_x0032_83 href="#ref-288"/>
<_x0032_84 href="#ref-289"/>
<_x0032_85 href="#ref-290"/>
<_x0032_86 href="#ref-291"/>
<_x0032_87 href="#ref-292"/>
<_x0032_88 href="#ref-293"/>
<_x0032_89 href="#ref-294"/>
<_x0032_90 href="#ref-295"/>
<_x0032_91 href="#ref-296"/>
<_x0032_92 href="#ref-297"/>
<_x0032_93 href="#ref-298"/>
<_x0032_94 href="#ref-299"/>
<_x0032_95 href="#ref-300"/>
<_x0032_96 href="#ref-301"/>
<_x0032_97 href="#ref-302"/>
<_x0032_98 href="#ref-303"/>
<_x0032_99 href="#ref-304"/>
<_x0033_00 href="#ref-305"/>
<_x0033_01 href="#ref-306"/>
<_x0033_02 href="#ref-307"/>
<_x0033_03 href="#ref-308"/>
<_x0033_04 href="#ref-309"/>
<_x0033_05 href="#ref-310"/>
<_x0033_06 href="#ref-311"/>
<_x0033_07 href="#ref-312"/>
<_x0033_08 href="#ref-313"/>
<_x0033_09 href="#ref-314"/>
<_x0033_10 href="#ref-315"/>
<_x0033_11 href="#ref-316"/>
<_x0033_12 href="#ref-317"/>
<_x0033_13 href="#ref-318"/>
<_x0033_14 href="#ref-319"/>
<_x0033_15 href="#ref-320"/>
<_x0033_16 href="#ref-321"/>
<_x0033_17 href="#ref-322"/>
<_x0033_18 href="#ref-323"/>
<_x0033_19 href="#ref-324"/>
<_x0033_20 href="#ref-325"/>
<_x0033_21 href="#ref-326"/>
<_x0033_22 href="#ref-327"/>
<_x0033_23 href="#ref-328"/>
<_x0033_24 href="#ref-329"/>
<_x0033_25 href="#ref-330"/>
<_x0033_26 href="#ref-331"/>
<_x0033_27 href="#ref-332"/>
<_x0033_28 href="#ref-333"/>
<_x0033_29 href="#ref-334"/>
<_x0033_30 href="#ref-335"/>
<_x0033_31 href="#ref-336"/>
<_x0033_32 href="#ref-337"/>
<_x0033_33 href="#ref-338"/>
<_x0033_34 href="#ref-339"/>
<_x0033_35 href="#ref-340"/>
<_x0033_36 href="#ref-341"/>
<_x0033_37 href="#ref-342"/>
<_x0033_38 href="#ref-343"/>
<_x0033_39 href="#ref-344"/>
<_x0033_40 href="#ref-345"/>
<_x0033_41 href="#ref-346"/>
<_x0033_42 href="#ref-347"/>
<_x0033_43 href="#ref-348"/>
<_x0033_44 href="#ref-349"/>
<_x0033_45 href="#ref-350"/>
<_x0033_46 href="#ref-351"/>
<_x0033_47 href="#ref-352"/>
<_x0033_48 href="#ref-353"/>
<_x0033_49 href="#ref-354"/>
<_x0033_50 href="#ref-355"/>
<_x0033_51 href="#ref-356"/>
<_x0033_52 href="#ref-357"/>
<_x0033_53 href="#ref-358"/>
<_x0033_54 href="#ref-359"/>
<_x0033_55 href="#ref-360"/>
<_x0033_56 href="#ref-361"/>
<_x0033_57 href="#ref-362"/>
<_x0033_58 href="#ref-363"/>
<_x0033_59 href="#ref-364"/>
<_x0033_60 href="#ref-365"/>
<_x0033_61 href="#ref-366"/>
<_x0033_62 href="#ref-367"/>
<_x0033_63 href="#ref-368"/>
<_x0033_64 href="#ref-369"/>
<_x0033_65 href="#ref-370"/>
<_x0033_66 href="#ref-371"/>
<_x0033_67 href="#ref-372"/>
<_x0033_68 href="#ref-373"/>
<_x0033_69 href="#ref-374"/>
<_x0033_70 href="#ref-375"/>
<_x0033_71 href="#ref-376"/>
<_x0033_72 href="#ref-377"/>
<_x0033_73 href="#ref-378"/>
<_x0033_74 href="#ref-379"/>
<_x0033_75 href="#ref-380"/>
<_x0033_76 href="#ref-381"/>
<_x0033_77 href="#ref-382"/>
<_x0033_78 href="#ref-383"/>
<_x0033_79 href="#ref-384"/>
<_x0033_80 href="#ref-385"/>
<_x0033_81 href="#ref-386"/>
<_x0033_82 href="#ref-387"/>
<_x0033_83 href="#ref-388"/>
<_x0033_84 href="#ref-389"/>
<_x0033_85 href="#ref-390"/>
<_x0033_86 href="#ref-391"/>
<_x0033_87 href="#ref-392"/>
<_x0033_88 href="#ref-393"/>
<_x0033_89 href="#ref-394"/>
<_x0033_90 href="#ref-395"/>
<_x0033_91 href="#ref-396"/>
<_x0033_92 href="#ref-397"/>
<_x0033_93 href="#ref-398"/>
<_x0033_94 href="#ref-399"/>
<_x0033_95 href="#ref-400"/>
<_x0033_96 href="#ref-401"/>
<_x0033_97 href="#ref-402"/>
<_x0033_98 href="#ref-403"/>
<_x0033_99 href="#ref-404"/>
<_x0034_00 href="#ref-405"/>
<_x0034_01 href="#ref-406"/>
<_x0034_02 href="#ref-407"/>
<_x0034_03 href="#ref-408"/>
<_x0034_04 href="#ref-409"/>
<_x0034_05 href="#ref-410"/>
<_x0034_06 href="#ref-411"/>
<_x0034_07 href="#ref-412"/>
<_x0034_08 href="#ref-413"/>
<_x0034_09 href="#ref-414"/>
<_x0034_10 href="#ref-415"/>
<_x0034_11 href="#ref-416"/>
<_x0034_12 href="#ref-417"/>
<_x0034_13 href="#ref-418"/>
<_x0034_14 href="#ref-419"/>
<_x0034_15 href="#ref-420"/>
<_x0034_16 href="#ref-421"/>
<_x0034_17 href="#ref-422"/>
<_x0034_18 href="#ref-423"/>
<_x0034_19 href="#ref-424"/>
<_x0034_20 href="#ref-425"/>
<_x0034_21 href="#ref-426"/>
<_x0034_22 href="#ref-427"/>
<_x0034_23 href="#ref-428"/>
<_x0034_24 href="#ref-429"/>
<_x0034_25 href="#ref-430"/>
<_x0034_26 href="#ref-431"/>
<_x0034_27 href="#ref-432"/>
<_x0034_28 href="#ref-433"/>
<_x0034_29 href="#ref-434"/>
<_x0034_30 href="#ref-435"/>
<_x0034_31 href="#ref-436"/>
<_x0034_32 href="#ref-437"/>
<_x0034_33 href="#ref-438"/>
<_x0034_34 href="#ref-439"/>
<_x0034_35 href="#ref-440"/>
<_x0034_36 href="#ref-441"/>
<_x0034_37 href="#ref-442"/>
<_x0034_38 href="#ref-443"/>
<_x0034_39 href="#ref-444"/>
<_x0034_40 href="#ref-445"/>
<_x0034_41 href="#ref-446"/>
<_x0034_42 href="#ref-447"/>
<_x0034_43 href="#ref-448"/>
<_x0034_44 href="#ref-449"/>
<_x0034_45 href="#ref-450"/>
<_x0034_46 href="#ref-451"/>
<_x0034_47 href="#ref-452"/>
<_x0034_48 href="#ref-453"/>
<_x0034_49 href="#ref-454"/>
<_x0034_50 href="#ref-455"/>
<_x0034_51 href="#ref-456"/>
<_x0034_52 href="#ref-457"/>
<_x0034_53 href="#ref-458"/>
<_x0034_54 href="#ref-459"/>
<_x0034_55 href="#ref-460"/>
<_x0034_56 href="#ref-461"/>
<_x0034_57 href="#ref-462"/>
<_x0034_58 href="#ref-463"/>
<_x0034_59 href="#ref-464"/>
<_x0034_60 href="#ref-465"/>
<_x0034_61 href="#ref-466"/>
<_x0034_62 href="#ref-467"/>
<_x0034_63 href="#ref-468"/>
<_x0034_64 href="#ref-469"/>
<_x0034_65 href="#ref-470"/>
<_x0034_66 href="#ref-471"/>
<_x0034_67 href="#ref-472"/>
<_x0034_68 href="#ref-473"/>
<_x0034_69 href="#ref-474"/>
<_x0034_70 href="#ref-475"/>
<_x0034_71 href="#ref-476"/>
<_x0034_72 href="#ref-477"/>
<_x0034_73 href="#ref-478"/>
<_x0034_74 href="#ref-479"/>
<_x0034_75 href="#ref-480"/>
<_x0034_76 href="#ref-481"/>
<_x0034_77 href="#ref-482"/>
<_x0034_78 href="#ref-483"/>
<_x0034_79 href="#ref-484"/>
<_x0034_80 href="#ref-485"/>
<_x0034_81 href="#ref-486"/>
<_x0034_82 href="#ref-487"/>
<_x0034_83 href="#ref-488"/>
<_x0034_84 href="#ref-489"/>
<_x0034_85 href="#ref-490"/>
<_x0034_86 href="#ref-491"/>
<_x0034_87 href="#ref-492"/>
<_x0034_88 href="#ref-493"/>
<_x0034_89 href="#ref-494"/>
<_x0034_90 href="#ref-495"/>
<_x0034_91 href="#ref-496"/>
<_x0034_92 href="#ref-497"/>
<_x0034_93 href="#ref-498"/>
<_x0034_94 href="#ref-499"/>
<_x0034_95 href="#ref-500"/>
<_x0034_96 href="#ref-501"/>
<_x0034_97 href="#ref-502"/>
<_x0034_98 href="#ref-503"/>
<_x0034_99 href="#ref-504"/>
<_x0035_00 href="#ref-505"/>
<_x0035_01 href="#ref-506"/>
<_x0035_02 href="#ref-507"/>
<_x0035_03 href="#ref-508"/>
<_x0035_04 href="#ref-509"/>
<_x0035_05 href="#ref-510"/>
<_x0035_06 href="#ref-511"/>
<_x0035_07 href="#ref-512"/>
<_x0035_08 href="#ref-513"/>
<_x0035_09 href="#ref-514"/>
<_x0035_10 href="#ref-515"/>
<_x0035_11 href="#ref-516"/>
<_x0035_12 href="#ref-517"/>
<_x0035_13 href="#ref-518"/>
<_x0035_14 href="#ref-519"/>
<_x0035_15 href="#ref-520"/>
<_x0035_16 href="#ref-521"/>
<_x0035_17 href="#ref-522"/>
<_x0035_18 href="#ref-523"/>
<_x0035_19 href="#ref-524"/>
<_x0035_20 href="#ref-525"/>
<_x0035_21 href="#ref-526"/>
<_x0035_22 href="#ref-527"/>
<_x0035_23 href="#ref-528"/>
<_x0035_24 href="#ref-529"/>
<_x0035_25 href="#ref-530"/>
<_x0035_26 href="#ref-531"/>
<_x0035_27 href="#ref-532"/>
<_x0035_28 href="#ref-533"/>
<_x0035_29 href="#ref-534"/>
<_x0035_30 href="#ref-535"/>
<_x0035_31 href="#ref-536"/>
<_x0035_32 href="#ref-537"/>
<_x0035_33 href="#ref-538"/>
<_x0035_34 href="#ref-539"/>
<_x0035_35 href="#ref-540"/>
<_x0035_36 href="#ref-541"/>
<_x0035_37 href="#ref-542"/>
<_x0035_38 href="#ref-543"/>
<_x0035_39 href="#ref-544"/>
<_x0035_40 href="#ref-545"/>
<_x0035_41 href="#ref-546"/>
<_x0035_42 href="#ref-547"/>
<_x0035_43 href="#ref-548"/>
<_x0035_44 href="#ref-549"/>
<_x0035_45 href="#ref-550"/>
<_x0035_46 href="#ref-551"/>
<_x0035_47 href="#ref-552"/>
<_x0035_48 href="#ref-553"/>
<_x0035_49 href="#ref-554"/>
<_x0035_50 href="#ref-555"/>
<_x0035_51 href="#ref-556"/>
<_x0035_52 href="#ref-557"/>
<_x0035_53 href="#ref-558"/>
<_x0035_54 href="#ref-559"/>
<_x0035_55 href="#ref-560"/>
<_x0035_56 href="#ref-561"/>
<_x0035_57 href="#ref-562"/>
<_x0035_58 href="#ref-563"/>
<_x0035_59 href="#ref-564"/>
<_x0035_60 href="#ref-565"/>
<_x0035_61 href="#ref-566"/>
<_x0035_62 href="#ref-567"/>
<_x0035_63 href="#ref-568"/>
<_x0035_64 href="#ref-569"/>
<_x0035_65 href="#ref-570"/>
<_x0035_66 href="#ref-571"/>
<_x0035_67 href="#ref-572"/>
<_x0035_68 href="#ref-573"/>
<_x0035_69 href="#ref-574"/>
<_x0035_70 href="#ref-575"/>
<_x0035_71 href="#ref-576"/>
<_x0035_72 href="#ref-577"/>
<_x0035_73 href="#ref-578"/>
<_x0035_74 href="#ref-579"/>
<_x0035_75 href="#ref-580"/>
<_x0035_76 href="#ref-581"/>
<_x0035_77 href="#ref-582"/>
<_x0035_78 href="#ref-583"/>
<_x0035_79 href="#ref-584"/>
<_x0035_80 href="#ref-585"/>
<_x0035_81 href="#ref-586"/>
<_x0035_82 href="#ref-587"/>
<_x0035_83 href="#ref-588"/>
<_x0035_84 href="#ref-589"/>
<_x0035_85 href="#ref-590"/>
<_x0035_86 href="#ref-591"/>
</a1:XBitmapSet>
<a1:StripSet id="ref-4" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<_x0030_ href="#ref-592"/>
<_x0031_ href="#ref-593"/>
<_x0032_ href="#ref-594"/>
<_x0033_ href="#ref-595"/>
<_x0034_ href="#ref-596"/>
<_x0035_ href="#ref-597"/>
<_x0036_ href="#ref-598"/>
<_x0037_ href="#ref-599"/>
<_x0038_ href="#ref-600"/>
<_x0039_ href="#ref-601"/>
<_x0031_0 href="#ref-602"/>
<_x0031_1 href="#ref-603"/>
<_x0031_2 href="#ref-604"/>
<_x0031_3 href="#ref-605"/>
<_x0031_4 href="#ref-606"/>
<_x0031_5 href="#ref-607"/>
<_x0031_6 href="#ref-608"/>
<_x0031_7 href="#ref-609"/>
<_x0031_8 href="#ref-610"/>
<_x0031_9 href="#ref-611"/>
<_x0032_0 href="#ref-612"/>
<_x0032_1 href="#ref-613"/>
<_x0032_2 href="#ref-614"/>
<_x0032_3 href="#ref-615"/>
<_x0032_4 href="#ref-616"/>
<_x0032_5 href="#ref-617"/>
<_x0032_6 href="#ref-618"/>
<_x0032_7 href="#ref-619"/>
<_x0032_8 href="#ref-620"/>
<_x0032_9 href="#ref-621"/>
<_x0033_0 href="#ref-622"/>
<_x0033_1 href="#ref-623"/>
<_x0033_2 href="#ref-624"/>
<_x0033_3 href="#ref-625"/>
<_x0033_4 href="#ref-626"/>
<_x0033_5 href="#ref-627"/>
<_x0033_6 href="#ref-628"/>
<_x0033_7 href="#ref-629"/>
<_x0033_8 href="#ref-630"/>
<_x0033_9 href="#ref-631"/>
<_x0034_0 href="#ref-632"/>
<_x0034_1 href="#ref-633"/>
<_x0034_2 href="#ref-634"/>
<_x0034_3 href="#ref-635"/>
<_x0034_4 href="#ref-636"/>
<_x0034_5 href="#ref-637"/>
<_x0034_6 href="#ref-638"/>
<_x0034_7 href="#ref-639"/>
<_x0034_8 href="#ref-640"/>
<_x0034_9 href="#ref-641"/>
</a1:StripSet>
<a1:XBitmap id="ref-5" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-642">sri\sri_die_0_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-6" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-643">sri\sri_die_0_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-7" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-644">sri\sri_die_0_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-8" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-645">sri\sri_die_0_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-9" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-646">sri\sri_die_0_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-10" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-647">sri\sri_die_0_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-11" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-648">sri\sri_die_0_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-12" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-649">sri\sri_die_0_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-13" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-650">sri\sri_die_0_8.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-14" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-651">sri\sri_die_0_9.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-15" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-652">sri\sri_die_0_10.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-16" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-653">sri\sri_die_0_11.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-17" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-654">sri\sri_die_0_12.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-18" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-655">sri\sri_jog_0_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-19" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-656">sri\sri_jog_0_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-20" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-657">sri\sri_jog_0_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-21" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-658">sri\sri_jog_0_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-22" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-659">sri\sri_jog_0_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-23" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-660">sri\sri_jog_0_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-24" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-661">sri\sri_jog_0_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-25" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-662">sri\sri_jog_0_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-26" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-663">sri\sri_jog_1_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-27" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-664">sri\sri_jog_1_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-28" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-665">sri\sri_jog_1_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-29" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-666">sri\sri_jog_1_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-30" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-667">sri\sri_jog_1_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-31" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-668">sri\sri_jog_1_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-32" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-669">sri\sri_jog_1_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-33" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-670">sri\sri_jog_1_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-34" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-671">sri\sri_jog_2_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-35" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-672">sri\sri_jog_2_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-36" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-673">sri\sri_jog_2_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-37" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-674">sri\sri_jog_2_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-38" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-675">sri\sri_jog_2_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-39" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-676">sri\sri_jog_2_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-40" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-677">sri\sri_jog_2_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-41" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-678">sri\sri_jog_2_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-42" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-679">sri\sri_jog_3_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-43" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-680">sri\sri_jog_3_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-44" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-681">sri\sri_jog_3_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-45" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-682">sri\sri_jog_3_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-46" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-683">sri\sri_jog_3_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-47" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-684">sri\sri_jog_3_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-48" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-685">sri\sri_jog_3_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-49" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-686">sri\sri_jog_3_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-50" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-687">sri\sri_jog_4_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-51" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-688">sri\sri_jog_4_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-52" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-689">sri\sri_jog_4_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-53" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-690">sri\sri_jog_4_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-54" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-691">sri\sri_jog_4_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-55" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-692">sri\sri_jog_4_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-56" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-693">sri\sri_jog_4_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-57" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-694">sri\sri_jog_4_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-58" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-695">sri\sri_jog_5_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-59" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-696">sri\sri_jog_5_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-60" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-697">sri\sri_jog_5_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-61" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-698">sri\sri_jog_5_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-62" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-699">sri\sri_jog_5_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-63" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-700">sri\sri_jog_5_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-64" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-701">sri\sri_jog_5_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-65" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-702">sri\sri_jog_5_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-66" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-703">sri\sri_jog_6_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-67" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-704">sri\sri_jog_6_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-68" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-705">sri\sri_jog_6_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-69" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-706">sri\sri_jog_6_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-70" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-707">sri\sri_jog_6_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-71" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-708">sri\sri_jog_6_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-72" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-709">sri\sri_jog_6_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-73" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-710">sri\sri_jog_6_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-74" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-711">sri\sri_jog_7_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-75" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-712">sri\sri_jog_7_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-76" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-713">sri\sri_jog_7_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-77" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-714">sri\sri_jog_7_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-78" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-715">sri\sri_jog_7_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-79" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-716">sri\sri_jog_7_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-80" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-717">sri\sri_jog_7_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-81" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-718">sri\sri_jog_7_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-82" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-719">sri\sri_jog_8_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-83" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-720">sri\sri_jog_8_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-84" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-721">sri\sri_jog_8_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-85" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-722">sri\sri_jog_8_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-86" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-723">sri\sri_jog_8_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-87" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-724">sri\sri_jog_8_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-88" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-725">sri\sri_jog_8_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-89" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-726">sri\sri_jog_8_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-90" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-727">sri\sri_jog_9_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-91" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-728">sri\sri_jog_9_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-92" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-729">sri\sri_jog_9_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-93" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-730">sri\sri_jog_9_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-94" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-731">sri\sri_jog_9_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-95" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-732">sri\sri_jog_9_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-96" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-733">sri\sri_jog_9_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-97" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-734">sri\sri_jog_9_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-98" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-735">sri\sri_jog_10_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-99" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-736">sri\sri_jog_10_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-100" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-737">sri\sri_jog_10_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-101" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-738">sri\sri_jog_10_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-102" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-739">sri\sri_jog_10_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-103" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-740">sri\sri_jog_10_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-104" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-741">sri\sri_jog_10_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-105" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-742">sri\sri_jog_10_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-106" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-743">sri\sri_jog_11_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-107" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-744">sri\sri_jog_11_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-108" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-745">sri\sri_jog_11_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-109" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-746">sri\sri_jog_11_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-110" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-747">sri\sri_jog_11_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-111" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-748">sri\sri_jog_11_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-112" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-749">sri\sri_jog_11_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-113" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-750">sri\sri_jog_11_7.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-114" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-751">sri\sri_jog_12_0.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-115" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-752">sri\sri_jog_12_1.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-116" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-753">sri\sri_jog_12_2.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-117" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-754">sri\sri_jog_12_3.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-118" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-755">sri\sri_jog_12_4.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-119" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-756">sri\sri_jog_12_5.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-120" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-757">sri\sri_jog_12_6.png</FileName>
</a1:XBitmap>
<a1:XBitmap id="ref-121" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/SpiffCode/AniMax">
<FileName id="ref-758">sri\sri_jog_12_7.png</FileName>
</a1:XBitmap>