-
Notifications
You must be signed in to change notification settings - Fork 1
/
Batik Art Mod.ffxml
1617 lines (1617 loc) · 51.7 KB
/
Batik Art Mod.ffxml
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"?>
<Filter>
<Components>
<Result id="result">
<Source source="blend3 09"/>
<FilterType value="0"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
</Result>
<AssembleHLS id="assemblehls 01">
<H source="extracthls 01" value="0.25"/>
<L source="extracthls 02" value="0.5"/>
<S value="1"/>
</AssembleHLS>
<AssembleHLS id="assemblehls 02">
<H source="extracthls 01" value="0.25"/>
<L value="0.5"/>
<S value="1"/>
</AssembleHLS>
<Blend3 id="blend3 01">
<Mode value="2"/>
<Foreground source="perlinnoise 02" red="1" green="1" blue="1" alpha="1"/>
<Background source="perlinnoise 03" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="1"/>
</Blend3>
<Blend3 id="blend3 03">
<Mode value="3"/>
<Foreground source="blend3 16" red="1" green="1" blue="1" alpha="1"/>
<Background source="levels 04" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="1"/>
</Blend3>
<Blend3 id="blend3 04">
<Mode value="5"/>
<Foreground source="blend3 03" red="1" green="1" blue="1" alpha="1"/>
<Background source="blend3 05" red="0" green="0" blue="0" alpha="1"/>
<Opacity source="intslidercontrol 01" value="0.5">
<Minimum value="0"/>
<Maximum value="1"/>
</Opacity>
</Blend3>
<Blend3 id="blend3 05">
<Mode value="0"/>
<Foreground red="1" green="1" blue="1" alpha="1"/>
<Background source="huesaturation 01" red="0" green="0" blue="0" alpha="1"/>
<Opacity source="intslidercontrol 07" value="0">
<Minimum value="0"/>
<Maximum value="1"/>
</Opacity>
</Blend3>
<Blend3 id="blend3 06">
<Mode value="3"/>
<Foreground source="setalpha 01" red="1" green="1" blue="1" alpha="1"/>
<Background source="blend3 15" red="0" green="0" blue="0" alpha="1"/>
<Opacity source="intslidercontrol 06" value="1">
<Minimum value="0"/>
<Maximum value="1"/>
</Opacity>
</Blend3>
<Blend3 id="blend3 07">
<Mode value="7"/>
<Foreground source="blur 01" red="1" green="1" blue="1" alpha="1"/>
<Background source="image 01" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="1"/>
</Blend3>
<Blend3 id="blend3 08">
<Mode value="2"/>
<Foreground source="blend3 11" red="1" green="1" blue="1" alpha="1"/>
<Background red="1" green="1" blue="1" alpha="1"/>
<Opacity source="intslidercontrol 02" value="0.5">
<Minimum value="0"/>
<Maximum value="1"/>
</Opacity>
</Blend3>
<Blend3 id="blend3 09">
<Mode value="2"/>
<Foreground source="blend3 12" red="1" green="1" blue="1" alpha="1"/>
<Background source="blend3 06" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="1"/>
</Blend3>
<Blend3 id="blend3 10">
<Mode value="17"/>
<Foreground source="tonecurve 01" red="1" green="1" blue="1" alpha="1"/>
<Background source="blend3 01" red="0" green="0" blue="0" alpha="1"/>
<Opacity source="intslidercontrol 04" value="1">
<Minimum value="0"/>
<Maximum value="1"/>
</Opacity>
</Blend3>
<Blend3 id="blend3 11">
<Mode value="2"/>
<Foreground source="perlinnoise 01" red="1" green="1" blue="1" alpha="1"/>
<Background source="perlinnoise 01" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="1"/>
</Blend3>
<Blend3 id="blend3 12">
<Mode value="2"/>
<Foreground source="blend3 14" red="1" green="1" blue="1" alpha="1"/>
<Background source="setalpha 02" red="0" green="0" blue="0" alpha="1"/>
<Opacity source="intslidercontrol 08" value="0.5">
<Minimum value="0"/>
<Maximum value="1"/>
</Opacity>
</Blend3>
<Blend3 id="blend3 13">
<Mode value="2"/>
<Foreground source="blend3 08" red="1" green="1" blue="1" alpha="1"/>
<Background source="huesaturation 01" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="1"/>
</Blend3>
<Blend3 id="blend3 14">
<Mode value="3"/>
<Foreground source="assemblehls 01" red="1" green="1" blue="1" alpha="1"/>
<Background source="noisedistortion 01" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="1"/>
</Blend3>
<Blend3 id="blend3 15">
<Mode value="2"/>
<Foreground source="blend3 03" red="1" green="1" blue="1" alpha="1"/>
<Background source="blend3 04" red="0" green="0" blue="0" alpha="1"/>
<Opacity source="intslidercontrol 10" value="0.5">
<Minimum value="0"/>
<Maximum value="1"/>
</Opacity>
</Blend3>
<Blend3 id="blend3 16">
<Mode value="0"/>
<Foreground source="assemblehls 02" red="1" green="1" blue="1" alpha="1"/>
<Background source="assemblehls 01" red="0" green="0" blue="0" alpha="1"/>
<Opacity value="0.25"/>
</Blend3>
<Blocks id="blocks 01">
<Noise red="0" green="0" blue="0" alpha="1"/>
<Background red="1" green="1" blue="1" alpha="1"/>
<Roughness value="0.80000000000000004"/>
<Contrast value="0"/>
<Formula value="0"/>
<Scale value="2.3999999999999999"/>
<Stretch value="0"/>
<VerticalStretch value="false"/>
<Flat value="false"/>
<SolidFill value="false"/>
<Details value="1"/>
<Variation source="intslidercontrol 09" value="1">
<Step value="1"/>
<Offset value="0"/>
<Flip value="false"/>
</Variation>
<OctaveCurve value="2"/>
</Blocks>
<Blur id="blur 01">
<Source source="invert 02"/>
<Radius value="0.0025000000000000001"/>
<Gaussian value="true"/>
</Blur>
<Blur id="blur 02">
<Source source="brightnesscontrast 01"/>
<Radius value="0.002"/>
<Gaussian value="true"/>
</Blur>
<Blur id="blur 03">
<Source source="image 01"/>
<Radius value="0.01"/>
<Gaussian value="true"/>
</Blur>
<Blur id="blur 04">
<Source source="threshold 01"/>
<Radius value="0.0050000000000000001"/>
<Gaussian value="true"/>
</Blur>
<BrightnessContrast id="brightnesscontrast 01">
<Source source="desaturate 01"/>
<Brightness value="0"/>
<Contrast value="1"/>
<PreserveColor value="false"/>
</BrightnessContrast>
<Desaturate id="desaturate 01">
<Source source="levels 03"/>
<Method value="0"/>
</Desaturate>
<ExtractHLS id="extracthls 01">
<Source source="blur 03" red="0.36470588235294099" green="0.062745098039215699" blue="0.70588235294117696" alpha="1"/>
<Channel value="0"/>
<Invert value="false"/>
</ExtractHLS>
<ExtractHLS id="extracthls 02">
<Source source="levels 02" red="0.36470588235294099" green="0.062745098039215699" blue="0.70588235294117696" alpha="1"/>
<Channel value="1"/>
<Invert value="false"/>
</ExtractHLS>
<ExtractHLS id="extracthls 03">
<Source source="levels 02" red="0.36470588235294099" green="0.062745098039215699" blue="0.70588235294117696" alpha="1"/>
<Channel value="2"/>
<Invert value="false"/>
</ExtractHLS>
<ExtractHSB id="extracthsb 01">
<Source source="image 01" red="0.36470588235294099" green="0.062745098039215699" blue="0.70588235294117696" alpha="1"/>
<Channel value="2"/>
<Invert value="false"/>
</ExtractHSB>
<HueSaturation id="huesaturation 01">
<Source source="blend3 10"/>
<Hue source="slidercontrol 01" value="0">
<Minimum value="-1.8"/>
<Maximum value="1.8"/>
</Hue>
<Saturation source="slidercontrol 02" value="0">
<Minimum value="-1"/>
<Maximum value="1"/>
</Saturation>
<Lightness value="0"/>
</HueSaturation>
<Image id="image 01"/>
<IntSliderControl id="intslidercontrol 01">
<Name value-en="LightCrackle Opacity"/>
<UseRemapping value="false"/>
<Value value="35"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Name value-en="Shadow Opacity"/>
<UseRemapping value="false"/>
<Value value="50"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Name value-en="Shadow Level"/>
<UseRemapping value="false"/>
<Value value="50"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Name value-en="Normalize Base Color"/>
<UseRemapping value="false"/>
<Value value="1"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Name value-en="Crackle Amount"/>
<UseRemapping value="false"/>
<Value value="60"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 06">
<Name value-en="Color Overlay"/>
<UseRemapping value="false"/>
<Value value="50"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 07">
<Name value-en="Fade Background"/>
<UseRemapping value="false"/>
<Value value="1"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 08">
<Name value-en="Detail Opacity"/>
<UseRemapping value="false"/>
<Value value="25"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 09">
<Name value-en="Crackle Variation"/>
<UseRemapping value="false"/>
<Value value="1"/>
<RangeMax value="1000"/>
<ClampRange value="false"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 10">
<Name value-en="Dark Crackle Opacity"/>
<UseRemapping value="false"/>
<Value value="50"/>
<RangeMax value="100"/>
<ClampRange value="false"/>
</IntSliderControl>
<Invert id="invert 02">
<Source source="image 01"/>
<Invert value="true"/>
</Invert>
<Levels id="levels 02">
<Source source="blur 03"/>
<BlackPoint value="0"/>
<Gamma value="0"/>
<WhitePoint value="1"/>
<PreserveColor value="false"/>
</Levels>
<Levels id="levels 03">
<Source source="blend3 07"/>
<BlackPoint value="0.90000000000000002"/>
<Gamma value="0"/>
<WhitePoint value="1"/>
<PreserveColor value="true"/>
</Levels>
<Levels id="levels 04">
<Source source="perlinnoise 04"/>
<BlackPoint value="0"/>
<Gamma source="intslidercontrol 05" value="0">
<Minimum value="-1"/>
<Maximum value="1"/>
</Gamma>
<WhitePoint value="1"/>
<PreserveColor value="false"/>
</Levels>
<NoiseDistortion id="noisedistortion 01">
<Source source="blur 02"/>
<Distortion value="0.01"/>
<Roughness value="0"/>
<Scale value="0.33000000000000002"/>
<Stretch value="0"/>
<Angle value="0"/>
<Details value="1"/>
<Variation value="1"/>
</NoiseDistortion>
<PerlinNoise id="perlinnoise 01">
<Noise red="1" green="1" blue="1" alpha="1"/>
<Background source="tonecurve 01" red="0" green="0" blue="0" alpha="1"/>
<Roughness value="0.76000000000000001"/>
<Scale value="1.5"/>
<Stretch value="0.25"/>
<Angle value="0"/>
<Details value="1"/>
<Contrast value="0.5"/>
<Variation value="1"/>
<OctaveCurve value="0"/>
</PerlinNoise>
<PerlinNoise id="perlinnoise 02">
<Noise red="1" green="1" blue="1" alpha="1"/>
<Background source="assemblehls 01" red="0" green="0" blue="0" alpha="1"/>
<Roughness value="0.80000000000000004"/>
<Scale value="2"/>
<Stretch value="0.25"/>
<Angle value="0"/>
<Details value="1"/>
<Contrast value="0.25"/>
<Variation value="1"/>
<OctaveCurve value="2"/>
</PerlinNoise>
<PerlinNoise id="perlinnoise 03">
<Noise red="1" green="1" blue="1" alpha="1"/>
<Background source="tonecurve 01" red="0" green="0" blue="0" alpha="1"/>
<Roughness value="0.80000000000000004"/>
<Scale value="2"/>
<Stretch value="0.25"/>
<Angle value="90"/>
<Details value="1"/>
<Contrast value="0.25"/>
<Variation value="1"/>
<OctaveCurve value="2"/>
</PerlinNoise>
<PerlinNoise id="perlinnoise 04">
<Noise source="blocks 01" red="1" green="1" blue="1" alpha="1"/>
<Background source="stones 02" red="0" green="0" blue="0" alpha="1"/>
<Roughness value="0.75"/>
<Scale value="1.8"/>
<Stretch value="0"/>
<Angle value="0"/>
<Details value="1"/>
<Contrast value="0.75"/>
<Variation value="1"/>
<OctaveCurve value="2"/>
</PerlinNoise>
<SetAlpha id="setalpha 01">
<Source source="assemblehls 01" red="1" green="0" blue="0" alpha="1"/>
<NewAlpha source="extracthls 03" value="1.2749999999999999"/>
<InvertAlpha value="false"/>
</SetAlpha>
<SetAlpha id="setalpha 02">
<Source source="blend3 13" red="1" green="0" blue="0" alpha="1"/>
<NewAlpha source="blur 04" value="1.2749999999999999"/>
<InvertAlpha value="true"/>
</SetAlpha>
<SliderControl id="slidercontrol 01">
<Name value-en="Hue"/>
<UseRemapping value="false"/>
<Value value="0.5"/>
</SliderControl>
<SliderControl id="slidercontrol 02">
<Name value-en="Saturation"/>
<UseRemapping value="false"/>
<Value value="0.5"/>
</SliderControl>
<StairsCurve id="stairscurve 01">
<Threshold value="0.5"/>
<Smooth value="0.5"/>
<Start value="0"/>
<End value="1"/>
<Minimum value="0"/>
<Maximum value="1"/>
<Steps value="5"/>
<Linear value="false"/>
<Invert value="false"/>
</StairsCurve>
<Stones id="stones 02">
<Noise red="0.0116279069767442" green="0.0116279069767442" blue="0.0116279069767442" alpha="1"/>
<Background red="1" green="1" blue="1" alpha="1"/>
<Roughness value="0.84999999999999998"/>
<Contrast value="0"/>
<Formula value="0"/>
<Scale value="2.3999999999999999"/>
<Stretch value="0"/>
<VerticalStretch value="false"/>
<Flat value="false"/>
<SolidFill value="false"/>
<Details value="0.5"/>
<Variation source="intslidercontrol 09" value="1">
<Step value="1"/>
<Offset value="0"/>
<Flip value="false"/>
</Variation>
<OctaveCurve value="2"/>
</Stones>
<Threshold id="threshold 01">
<Source source="extracthsb 01"/>
<Threshold source="intslidercontrol 03" value="0.5">
<Minimum value="0"/>
<Maximum value="1"/>
</Threshold>
<Smooth value="0.25"/>
<Low red="0" green="0" blue="0" alpha="1"/>
<High red="1" green="1" blue="1" alpha="1"/>
</Threshold>
<ToneCurve id="tonecurve 01">
<Source source="blur 03"/>
<Curve source="stairscurve 01"/>
<PreserveColor value="true"/>
</ToneCurve>
</Components>
<GroupNames/>
<SettingsOverride>
<Size value="0"/>
<Variation value="0"/>
<Seamless value="0"/>
<ResultBlending value="0"/>
</SettingsOverride>
<Presets>
<DefaultPreset preview_image="LIFESAVER_OPAQUE">
<Settings size_factor="2.037282265457879" variation="15807" seamless="true" antialiasing="0" map_type="0" edges_only="true" clip_hdr_for_result="true"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
<Controls>
<IntSliderControl id="intslidercontrol 01">
<Value value="62"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Value value="57"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Value value="25"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Value value="36"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Value value="68"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 06">
<Value value="29"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 07">
<Value value="16"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 08">
<Value value="78"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 09">
<Value value="817"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 10">
<Value value="39"/>
</IntSliderControl>
<SliderControl id="slidercontrol 01">
<Value value="0.5"/>
</SliderControl>
<SliderControl id="slidercontrol 02">
<Value value="0.5"/>
</SliderControl>
</Controls>
</DefaultPreset>
<Preset preview_image="LIFESAVER_OPAQUE">
<Settings size_factor="1" variation="1" seamless="false" antialiasing="0" map_type="0" edges_only="true" clip_hdr_for_result="true"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
<Controls>
<IntSliderControl id="intslidercontrol 01">
<Value value="35"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Value value="65"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Value value="100"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Value value="60"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 06">
<Value value="75"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 07">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 08">
<Value value="25"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 09">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 10">
<Value value="50"/>
</IntSliderControl>
<SliderControl id="slidercontrol 01">
<Value value="0.5"/>
</SliderControl>
<SliderControl id="slidercontrol 02">
<Value value="0.5"/>
</SliderControl>
</Controls>
</Preset>
<Preset preview_image="LIFESAVER_OPAQUE">
<Settings size_factor="1" variation="1" seamless="false" antialiasing="0" map_type="0" edges_only="true" clip_hdr_for_result="true"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
<Controls>
<IntSliderControl id="intslidercontrol 01">
<Value value="25"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Value value="10"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Value value="60"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 06">
<Value value="75"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 07">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 08">
<Value value="35"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 09">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 10">
<Value value="35"/>
</IntSliderControl>
<SliderControl id="slidercontrol 01">
<Value value="0.5"/>
</SliderControl>
<SliderControl id="slidercontrol 02">
<Value value="0.5"/>
</SliderControl>
</Controls>
</Preset>
<Preset preview_image="LIFESAVER_OPAQUE">
<Settings size_factor="1" variation="1" seamless="false" antialiasing="0" map_type="0" edges_only="true" clip_hdr_for_result="true"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
<Controls>
<IntSliderControl id="intslidercontrol 01">
<Value value="71"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Value value="94"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 06">
<Value value="100"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 07">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 08">
<Value value="100"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 09">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 10">
<Value value="52"/>
</IntSliderControl>
<SliderControl id="slidercontrol 01">
<Value value="0.5"/>
</SliderControl>
<SliderControl id="slidercontrol 02">
<Value value="0.5"/>
</SliderControl>
</Controls>
</Preset>
<Preset preview_image="LIFESAVER_OPAQUE">
<Settings size_factor="1" variation="1" seamless="false" antialiasing="0" map_type="0" edges_only="true" clip_hdr_for_result="true"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
<Controls>
<IntSliderControl id="intslidercontrol 01">
<Value value="40"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Value value="25"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 06">
<Value value="100"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 07">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 08">
<Value value="15"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 09">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 10">
<Value value="10"/>
</IntSliderControl>
<SliderControl id="slidercontrol 01">
<Value value="0.40000000000000002"/>
</SliderControl>
<SliderControl id="slidercontrol 02">
<Value value="0.23999999999999999"/>
</SliderControl>
</Controls>
</Preset>
<Preset preview_image="LIFESAVER_OPAQUE">
<Settings size_factor="1" variation="1" seamless="false" antialiasing="0" map_type="0" edges_only="true" clip_hdr_for_result="true"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
<Controls>
<IntSliderControl id="intslidercontrol 01">
<Value value="55"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Value value="10"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Value value="90"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Value value="100"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Value value="45"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 06">
<Value value="100"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 07">
<Value value="50"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 08">
<Value value="25"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 09">
<Value value="1"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 10">
<Value value="35"/>
</IntSliderControl>
<SliderControl id="slidercontrol 01">
<Value value="0.5"/>
</SliderControl>
<SliderControl id="slidercontrol 02">
<Value value="0.5"/>
</SliderControl>
</Controls>
</Preset>
<Preset preview_image="LIFESAVER_OPAQUE">
<Settings size_factor="1" variation="4043" seamless="false" antialiasing="0" map_type="0" edges_only="true" clip_hdr_for_result="true"/>
<Lighting>
<Height value="0.20000000000000001"/>
<Environment>
<Source value="Church"/>
<Brightness value="1"/>
<Saturation value="1"/>
<Rotation value="0"/>
<RotationAxis x="0" y="0" z="0"/>
</Environment>
<Ambience>
<AmbientLight red="0" green="0" blue="0"/>
<Shadowing value="0"/>
<CurrentOcclusionSettings>
<RayDirections value="4"/>
<TraceDistance value="0.20000000000000001"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="0"/>
<ROQuality value="3"/>
</CurrentOcclusionSettings>
<CustomOcclusionSettings>
<RayDirections value="16"/>
<TraceDistance value="0.29999999999999999"/>
<RayJittering value="true"/>
<RayBounce value="true"/>
<AvoidStreaks value="true"/>
<DirectSamples value="1"/>
<ROQuality value="10"/>
</CustomOcclusionSettings>
<ArtisticSettings>
<BlackPoint value="0"/>
<Midtones value="0.5"/>
<WhitePoint value="1"/>
</ArtisticSettings>
</Ambience>
</Lighting>
<Controls>
<IntSliderControl id="intslidercontrol 01">
<Value value="86"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 02">
<Value value="83"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 03">
<Value value="92"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 04">
<Value value="37"/>
</IntSliderControl>
<IntSliderControl id="intslidercontrol 05">
<Value value="9"/>
</IntSliderControl>