-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathUGUIDesigner.dfm
More file actions
2551 lines (2551 loc) · 142 KB
/
UGUIDesigner.dfm
File metadata and controls
2551 lines (2551 loc) · 142 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
object FGUIDesigner: TFGUIDesigner
Left = 564
Top = 308
Caption = 'GUI designer'
ClientHeight = 563
ClientWidth = 382
Color = clBtnFace
DragMode = dmAutomatic
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Scaled = False
WindowState = wsMaximized
OnCreate = FormCreate
TextHeight = 15
object PopupMenu: TSpTBXPopupMenu
Images = vilGuiDesignerLight
OnPopup = PopupMenuPopup
Left = 48
Top = 16
object MIClose: TSpTBXItem
Caption = 'Close'
ImageIndex = 0
ImageName = 'Close1'
OnClick = MICloseClick
end
object MIToSource: TSpTBXItem
Caption = 'To source code'
ImageIndex = 1
ImageName = 'OpenSource'
OnClick = MIToSourceClick
end
object MIForeground: TSpTBXItem
Caption = 'In the foreground'
ImageIndex = 2
ImageName = 'ToFront'
OnClick = MIForegroundClick
end
object MIBackground: TSpTBXItem
Caption = 'In the background'
ImageIndex = 3
ImageName = 'ToBack'
OnClick = MIBackgroundClick
end
object MIAlign: TSpTBXSubmenuItem
Caption = 'Align'
ImageIndex = 4
ImageName = 'Left1'
object MIAlignLeft: TSpTBXItem
Tag = 1
Caption = 'Left'
ImageIndex = 9
ImageName = 'Left1'
OnClick = MIAlignClick
end
object MIAlignCentered: TSpTBXItem
Tag = 2
Caption = 'Centered'
ImageIndex = 10
ImageName = 'Centered1'
OnClick = MIAlignClick
end
object MIAlignRight: TSpTBXItem
Tag = 3
Caption = 'Right'
ImageIndex = 11
ImageName = 'Right1'
OnClick = MIAlignClick
end
object MIAlignCenteredInWindowHorz: TSpTBXItem
Tag = 4
Caption = 'Centered in the window'
ImageIndex = 12
ImageName = 'CenteredWindows'
OnClick = MIAlignClick
end
object MISameDistanceHorz: TSpTBXItem
Tag = 5
Caption = 'Equal distance'
ImageIndex = 13
ImageName = 'SameDistanceH'
OnClick = MIAlignClick
end
object MIAlignLine: TSpTBXSeparatorItem
end
object MIAlignTop: TSpTBXItem
Tag = 6
Caption = 'Top'
ImageIndex = 14
ImageName = 'Top1'
OnClick = MIAlignClick
end
object MIAlignMiddle: TSpTBXItem
Tag = 7
Caption = 'Middle'
ImageIndex = 15
ImageName = 'Middle1'
OnClick = MIAlignClick
end
object MIAlignBottom: TSpTBXItem
Tag = 8
Caption = 'Bottom'
ImageIndex = 16
ImageName = 'Bottom1'
OnClick = MIAlignClick
end
object MIAlignCenteredInWindowVert: TSpTBXItem
Tag = 9
Caption = 'Centered in the window'
ImageIndex = 17
ImageName = 'MiddleWindows'
OnClick = MIAlignClick
end
object MISameDistanceVert: TSpTBXItem
Tag = 10
Caption = 'Equal distance'
ImageIndex = 18
ImageName = 'SameDistanceV'
OnClick = MIAlignClick
end
end
object N1Sep: TSpTBXSeparatorItem
end
object MISnapToGrid: TSpTBXItem
Caption = 'Snap to grid'
Checked = True
OnClick = MISnapToGridClick
end
object N2Sep: TSpTBXSeparatorItem
end
object MIDelete: TSpTBXItem
Caption = 'Delete'
ImageIndex = 5
ImageName = 'Delete1'
OnClick = MIDeleteClick
end
object MICut: TSpTBXItem
Caption = 'Cut'
ImageIndex = 6
ImageName = 'Cut1'
ShortCut = 16472
OnClick = CutClick
end
object MICopy: TSpTBXItem
Caption = 'Copy'
ImageIndex = 7
ImageName = 'Copy1'
ShortCut = 16451
OnClick = CopyClick
end
object MIPaste: TSpTBXItem
Caption = 'Paste'
ImageIndex = 8
ImageName = 'Paste1'
ShortCut = 16470
OnClick = PasteClick
end
object N4Sep: TSpTBXSeparatorItem
end
object MIZoomOut: TSpTBXItem
Caption = 'Font zoom out'
ImageIndex = 19
ImageName = 'ZoomOut'
OnClick = MIZoomOutClick
end
object MIZoomIn: TSpTBXItem
Caption = 'Font zoom in'
ImageIndex = 20
ImageName = 'ZoomIn'
OnClick = MIZoomInClick
end
object SpTBXSeparatorItem1: TSpTBXSeparatorItem
end
object MIConfiguration: TSpTBXItem
Caption = 'Configuration'
ImageIndex = 21
ImageName = 'Configuration'
OnClick = MIConfigurationClick
end
end
object GUIDesignerTimer: TTimer
Enabled = False
Interval = 10
OnTimer = GUIDesignerTimerTimer
Left = 288
Top = 496
end
object scGuiDesigner: TSVGIconImageCollection
SVGIconItems = <
item
IconName = 'Close1'
SVGText =
'<svg viewBox="0 -960 960 960" fill="#191919">'#13#10' <path d="m291-2' +
'40-51-51 189-189-189-189 51-51 189 189 189-189 51 51-189 189 189' +
' 189-51 51-189-189-189 189Z"/>'#13#10'</svg>'
end
item
IconName = 'OpenSource'
SVGText =
'<svg viewBox="0 -0.5 14 17">'#13#10'<path stroke="#656565" d="M1 0h9M0' +
' 1h1M9 1h2M0 2h1M9 2h1M11 2h1M0 3h1M9 3h1M0 4h1M9 4h3M0 5h1M0 6h' +
'1M0 7h1M0 8h1M0 9h1M0 10h1M0 11h1M0 12h1M0 13h1M0 14h1" />'#13#10'<pat' +
'h stroke="#ffffff" d="M1 1h8M1 2h8M1 3h1M8 3h1M1 4h8M1 5h3M8 5h3' +
'M1 6h11M1 7h3M11 7h1M1 8h11M1 9h1M11 9h1M1 10h11M1 11h3M11 11h1M' +
'1 12h11M1 13h1M11 13h1" />'#13#10'<path stroke="#ffffe9" d="M10 2h1M10' +
' 3h2" />'#13#10'<path stroke="#4b4b4b" d="M2 3h6M4 5h4M4 7h7M2 9h9M4 1' +
'1h7M2 13h9M1 15h12" />'#13#10'<path stroke="#4e4e4e" d="M12 3h1M12 4h2' +
'M13 5h1M13 6h1M13 7h1M13 8h1M13 9h1M13 10h1M13 11h1M13 12h1M13 1' +
'3h1M13 14h1" />'#13#10'<path stroke="#fcfade" d="M11 5h2M12 6h1M12 7h1' +
'M12 8h1M12 9h1M12 10h1M12 11h1M12 12h1M12 13h1M1 14h12" />'#13#10'<pat' +
'h stroke="#8f8f8f" d="M0 15h1M13 15h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'ToFront'
SVGText =
'<svg viewBox="0 -0.5 18 18">'#13#10'<path stroke="#526e2e" d="M5 1h12M' +
'5 2h1M16 2h1M5 3h1M16 3h1M5 4h1M16 4h1M5 5h1M16 5h1M5 6h1M16 6h1' +
'M5 7h1M16 7h1M5 8h1M16 8h1M5 9h1M16 9h1M5 10h1M16 10h1M5 11h1M16' +
' 11h1M5 12h12" />'#13#10'<path stroke="#cedbbf" d="M6 2h1" />'#13#10'<path s' +
'troke="#b4c99e" d="M7 2h4M6 3h1M6 4h1M6 5h1M6 6h1M6 7h1M6 8h1M6 ' +
'9h1" />'#13#10'<path stroke="#bacda2" d="M11 2h1" />'#13#10'<path stroke="#b' +
'bcea3" d="M12 2h1" />'#13#10'<path stroke="#bfd2a7" d="M13 2h1" />'#13#10'<p' +
'ath stroke="#c1d4a9" d="M14 2h2" />'#13#10'<path stroke="#8faf6d" d="M' +
'7 3h3M7 4h2M7 5h2M7 6h2M7 7h2" />'#13#10'<path stroke="#93b371" d="M10' +
' 3h1" />'#13#10'<path stroke="#95b371" d="M11 3h1" />'#13#10'<path stroke="#' +
'99b675" d="M12 3h1M11 5h1" />'#13#10'<path stroke="#9ebb7a" d="M13 3h1' +
'M10 7h1" />'#13#10'<path stroke="#9dbb79" d="M14 3h1" />'#13#10'<path stroke' +
'="#a6c181" d="M15 3h1" />'#13#10'<path stroke="#91b16f" d="M9 4h1" />'#13 +
#10'<path stroke="#95b573" d="M10 4h1" />'#13#10'<path stroke="#96b472" d' +
'="M11 4h1" />'#13#10'<path stroke="#9cb879" d="M12 4h1" />'#13#10'<path stro' +
'ke="#a0be7c" d="M13 4h1" />'#13#10'<path stroke="#a5c080" d="M14 4h1M1' +
'0 11h1" />'#13#10'<path stroke="#a6c182" d="M15 4h1M14 5h1" />'#13#10'<path ' +
'stroke="#93b271" d="M9 5h1" />'#13#10'<path stroke="#96b574" d="M10 5h' +
'1M9 6h1" />'#13#10'<path stroke="#9cba78" d="M12 5h1" />'#13#10'<path stroke' +
'="#a3bf7e" d="M13 5h1" />'#13#10'<path stroke="#a8c483" d="M15 5h1" />' +
#13#10'<path stroke="#9ab676" d="M10 6h1M9 8h1" />'#13#10'<path stroke="#9d' +
'ba79" d="M11 6h1M10 9h1" />'#13#10'<path stroke="#a2bf7d" d="M12 6h1" ' +
'/>'#13#10'<path stroke="#a5c081" d="M13 6h1" />'#13#10'<path stroke="#a6c281' +
'" d="M14 6h1" />'#13#10'<path stroke="#abc586" d="M15 6h1" />'#13#10'<path s' +
'troke="#a9a9a9" d="M1 7h4M1 8h1M1 9h1M1 10h1M1 11h1M1 12h1M1 13h' +
'1M12 13h1M1 14h1M12 14h1M1 15h1M12 15h1M1 16h12" />'#13#10'<path strok' +
'e="#99b676" d="M9 7h1" />'#13#10'<path stroke="#a1bf7e" d="M11 7h1" />' +
#13#10'<path stroke="#a1bd7c" d="M12 7h1" />'#13#10'<path stroke="#a3be7f" ' +
'd="M13 7h1" />'#13#10'<path stroke="#a9c485" d="M14 7h1" />'#13#10'<path str' +
'oke="#abc786" d="M15 7h1M12 11h1" />'#13#10'<path stroke="#e3e3e3" d="' +
'M2 8h1" />'#13#10'<path stroke="#d7d7d7" d="M3 8h2M2 9h1M2 10h1M2 11h1' +
'M2 12h1M2 13h1M2 14h1M2 15h1" />'#13#10'<path stroke="#92af6d" d="M7 8' +
'h1" />'#13#10'<path stroke="#96b272" d="M8 8h1" />'#13#10'<path stroke="#a0b' +
'd7b" d="M10 8h1" />'#13#10'<path stroke="#9fbc7b" d="M11 8h1M9 10h1" /' +
'>'#13#10'<path stroke="#a4bf80" d="M12 8h1" />'#13#10'<path stroke="#a9c683"' +
' d="M13 8h1" />'#13#10'<path stroke="#acc687" d="M14 8h1M13 9h1" />'#13#10'<' +
'path stroke="#b1cc8b" d="M15 8h1M14 9h1" />'#13#10'<path stroke="#c6c6' +
'c6" d="M3 9h2M3 10h2M3 11h2M3 12h2M3 13h3M3 14h3M3 15h2" />'#13#10'<pa' +
'th stroke="#93b06e" d="M7 9h1" />'#13#10'<path stroke="#98b573" d="M8 ' +
'9h1" />'#13#10'<path stroke="#9bb777" d="M9 9h1" />'#13#10'<path stroke="#a1' +
'bd7e" d="M11 9h1" />'#13#10'<path stroke="#a7c382" d="M12 9h1" />'#13#10'<pa' +
'th stroke="#b3ce8d" d="M15 9h1" />'#13#10'<path stroke="#b5ca9f" d="M6' +
' 10h1" />'#13#10'<path stroke="#95b270" d="M7 10h1" />'#13#10'<path stroke="' +
'#99b574" d="M8 10h1" />'#13#10'<path stroke="#a3c07e" d="M10 10h1" />'#13 +
#10'<path stroke="#a4bf7f" d="M11 10h1" />'#13#10'<path stroke="#abc686" ' +
'd="M12 10h1" />'#13#10'<path stroke="#aec988" d="M13 10h1" />'#13#10'<path s' +
'troke="#b2cd8d" d="M14 10h1M13 11h1" />'#13#10'<path stroke="#b4cf8e" ' +
'd="M15 10h1M14 11h1" />'#13#10'<path stroke="#b9cba0" d="M6 11h1" />'#13#10 +
'<path stroke="#97b472" d="M7 11h1" />'#13#10'<path stroke="#99b674" d=' +
'"M8 11h1" />'#13#10'<path stroke="#9fbc7a" d="M9 11h1" />'#13#10'<path strok' +
'e="#a6c283" d="M11 11h1" />'#13#10'<path stroke="#b6d190" d="M15 11h1"' +
' />'#13#10'<path stroke="#c7c7c7" d="M6 13h1M6 14h1M5 15h1" />'#13#10'<path ' +
'stroke="#c9c9c9" d="M7 13h1" />'#13#10'<path stroke="#cacaca" d="M8 13' +
'h1M7 14h2M7 15h1" />'#13#10'<path stroke="#cbcbcb" d="M9 13h2M9 14h1M8' +
' 15h1" />'#13#10'<path stroke="#cccccc" d="M11 13h1M10 14h1M9 15h1" />' +
#13#10'<path stroke="#cdcdcd" d="M11 14h1M10 15h1" />'#13#10'<path stroke="' +
'#c8c8c8" d="M6 15h1" />'#13#10'<path stroke="#cecece" d="M11 15h1" />'#13 +
#10'</svg>'#13#10
end
item
IconName = 'ToBack'
SVGText =
'<svg viewBox="0 -0.5 18 18">'#13#10'<path stroke="#a8b697" d="M5 1h12M' +
'5 2h1M16 2h1M5 3h1M16 3h1M5 4h1M16 4h1M5 5h1M16 5h1M5 6h1M16 6h1' +
'M16 7h1M16 8h1M16 9h1M16 10h1M16 11h1M13 12h4" />'#13#10'<path stroke=' +
'"#e2e7db" d="M6 2h1" />'#13#10'<path stroke="#d5e0cc" d="M7 2h4M6 3h1M' +
'6 4h1M6 5h1M6 6h1" />'#13#10'<path stroke="#d9e2cd" d="M11 2h1" />'#13#10'<p' +
'ath stroke="#d9e2ce" d="M12 2h1" />'#13#10'<path stroke="#dbe4d0" d="M' +
'13 2h1" />'#13#10'<path stroke="#dce5d0" d="M14 2h2" />'#13#10'<path stroke=' +
'"#c5d3b5" d="M7 3h3M7 4h2M7 5h2M7 6h2" />'#13#10'<path stroke="#c7d5b7' +
'" d="M10 3h1" />'#13#10'<path stroke="#c8d5b7" d="M11 3h1M11 4h1" />'#13#10 +
'<path stroke="#c9d6b9" d="M12 3h1M11 5h1" />'#13#10'<path stroke="#ccd' +
'8bb" d="M13 3h1" />'#13#10'<path stroke="#cbd8bb" d="M14 3h1M11 6h1" /' +
'>'#13#10'<path stroke="#cfdcbf" d="M15 3h1M15 4h1M14 5h1M13 6h1" />'#13#10'<' +
'path stroke="#c6d4b6" d="M9 4h1" />'#13#10'<path stroke="#c8d6b8" d="M' +
'10 4h1M10 5h1M9 6h1" />'#13#10'<path stroke="#cbd7bb" d="M12 4h1" />'#13#10 +
'<path stroke="#ccdbbc" d="M13 4h1" />'#13#10'<path stroke="#cfdcbe" d=' +
'"M14 4h1" />'#13#10'<path stroke="#c7d4b7" d="M9 5h1" />'#13#10'<path stroke' +
'="#cbd8ba" d="M12 5h1" />'#13#10'<path stroke="#cedbbd" d="M13 5h1" />' +
#13#10'<path stroke="#d0debf" d="M15 5h1M13 8h1" />'#13#10'<path stroke="#c' +
'ad6b9" d="M10 6h1" />'#13#10'<path stroke="#cddbbc" d="M12 6h1" />'#13#10'<p' +
'ath stroke="#cfddbf" d="M14 6h1" />'#13#10'<path stroke="#d1dec1" d="M' +
'15 6h1" />'#13#10'<path stroke="#4f4f4f" d="M1 7h12M1 8h1M12 8h1M1 9h1' +
'M12 9h1M1 10h1M12 10h1M1 11h1M12 11h1M1 12h1M12 12h1M1 13h1M12 1' +
'3h1M1 14h1M12 14h1M1 15h1M12 15h1M1 16h12" />'#13#10'<path stroke="#ce' +
'dbbe" d="M13 7h1" />'#13#10'<path stroke="#d0dec0" d="M14 7h1" />'#13#10'<pa' +
'th stroke="#d1dfc1" d="M15 7h1" />'#13#10'<path stroke="#cecece" d="M2' +
' 8h1" />'#13#10'<path stroke="#b5b5b5" d="M3 8h6M2 9h1M2 10h1M2 11h1M2' +
' 12h1M2 13h1M2 14h1M2 15h1" />'#13#10'<path stroke="#b7b7b7" d="M9 8h1' +
'" />'#13#10'<path stroke="#b8b8b8" d="M10 8h1" />'#13#10'<path stroke="#b9b9' +
'b9" d="M11 8h1" />'#13#10'<path stroke="#d2dec1" d="M14 8h1M13 9h1" />' +
#13#10'<path stroke="#d4e1c3" d="M15 8h1M14 9h1" />'#13#10'<path stroke="#8' +
'f8f8f" d="M3 9h5M3 10h4M3 11h4M3 12h4M3 13h3M3 14h3M3 15h2" />'#13#10 +
'<path stroke="#919191" d="M8 9h1M7 10h1M6 14h1M5 15h1" />'#13#10'<path' +
' stroke="#939393" d="M9 9h1M8 10h1M6 15h1" />'#13#10'<path stroke="#95' +
'9595" d="M10 9h1M9 10h1" />'#13#10'<path stroke="#979797" d="M11 9h1M1' +
'0 10h1M7 14h1" />'#13#10'<path stroke="#d5e2c4" d="M15 9h1M15 10h1M14 ' +
'11h1" />'#13#10'<path stroke="#999999" d="M11 10h1M8 14h1M7 15h1" />'#13#10 +
'<path stroke="#d3e0c2" d="M13 10h1" />'#13#10'<path stroke="#d4e2c4" d' +
'="M14 10h1M13 11h1" />'#13#10'<path stroke="#929292" d="M7 11h1" />'#13#10'<' +
'path stroke="#949494" d="M8 11h1M7 12h1" />'#13#10'<path stroke="#9696' +
'96" d="M9 11h1M8 12h1M7 13h1" />'#13#10'<path stroke="#989898" d="M10 ' +
'11h1M9 12h1M8 13h1" />'#13#10'<path stroke="#9a9a9a" d="M11 11h1M10 12' +
'h1M9 13h1" />'#13#10'<path stroke="#d6e3c5" d="M15 11h1" />'#13#10'<path str' +
'oke="#9c9c9c" d="M11 12h1M9 15h1" />'#13#10'<path stroke="#909090" d="' +
'M6 13h1" />'#13#10'<path stroke="#9b9b9b" d="M10 13h1M9 14h1M8 15h1" /' +
'>'#13#10'<path stroke="#9d9d9d" d="M11 13h1M10 14h1" />'#13#10'<path stroke=' +
'"#9f9f9f" d="M11 14h1" />'#13#10'<path stroke="#9e9e9e" d="M10 15h1" /' +
'>'#13#10'<path stroke="#a0a0a0" d="M11 15h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Left1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#7e7c73" d="M1 1h1" ' +
'/>'#13#10'<path stroke="#565249" d="M2 1h1M1 2h1M1 3h1M1 4h1M1 5h1M1 6' +
'h1M1 7h1M1 8h1M1 9h1M1 10h1M1 11h1M1 12h1M1 13h1" />'#13#10'<path stro' +
'ke="#000000" d="M2 2h1M2 3h1M2 4h1M2 5h1M2 6h1M2 7h1M2 8h1M2 9h1' +
'M2 10h1M2 11h1M2 12h1M2 13h1M1 14h2" />'#13#10'<path stroke="#4f623b" ' +
'd="M4 2h12M4 3h1M15 3h1M4 4h1M15 4h1M4 5h1M15 5h1M4 6h12" />'#13#10'<p' +
'ath stroke="#cedbc1" d="M5 3h1" />'#13#10'<path stroke="#b5c7a2" d="M6' +
' 3h6M5 4h1M5 5h1" />'#13#10'<path stroke="#b7c9a4" d="M12 3h1" />'#13#10'<pa' +
'th stroke="#b8caa5" d="M13 3h1" />'#13#10'<path stroke="#b9caa7" d="M1' +
'4 3h1" />'#13#10'<path stroke="#90ab73" d="M6 4h3M6 5h2" />'#13#10'<path str' +
'oke="#92ad75" d="M9 4h1M8 5h1" />'#13#10'<path stroke="#97b17d" d="M10' +
' 4h1" />'#13#10'<path stroke="#99b37e" d="M11 4h1M10 5h1" />'#13#10'<path st' +
'roke="#9bb481" d="M12 4h1M11 5h1" />'#13#10'<path stroke="#9db683" d="' +
'M13 4h1" />'#13#10'<path stroke="#9fb786" d="M14 4h1" />'#13#10'<path stroke' +
'="#93ae78" d="M9 5h1" />'#13#10'<path stroke="#9cb582" d="M12 5h1" />'#13 +
#10'<path stroke="#9eb685" d="M13 5h1" />'#13#10'<path stroke="#a0b887" d' +
'="M14 5h1" />'#13#10'<path stroke="#344f6b" d="M4 8h7M4 9h1M10 9h1M4 1' +
'0h1M10 10h1M4 11h1M10 11h1M4 12h7" />'#13#10'<path stroke="#c2cddb" d=' +
'"M5 9h1" />'#13#10'<path stroke="#a3b4c8" d="M6 9h2M5 10h1M5 11h1" />'#13 +
#10'<path stroke="#a3b5c8" d="M8 9h1" />'#13#10'<path stroke="#a5b6c9" d=' +
'"M9 9h1" />'#13#10'<path stroke="#7a94b2" d="M6 10h1" />'#13#10'<path stroke' +
'="#7c96b3" d="M7 10h1M6 11h1" />'#13#10'<path stroke="#7e98b5" d="M8 1' +
'0h1M7 11h1" />'#13#10'<path stroke="#809ab7" d="M9 10h1M8 11h1" />'#13#10'<p' +
'ath stroke="#829cb8" d="M9 11h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Delete1'
SVGText =
'<svg viewBox="0 -960 960 960" fill="#191919">'#13#10' <path d="M280-1' +
'20q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-4' +
'0v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM360-' +
'280h80v-360h-80v360Zm160 0h80v-360h-80v360ZM280-720v520-520Z"/>'#13 +
#10'</svg>'
end
item
IconName = 'Cut1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#f9f9f9" d="M3 0h1M1' +
'2 6h1" />'#13#10'<path stroke="#f6f6f6" d="M12 0h1" />'#13#10'<path stroke="' +
'#a2a2a2" d="M13 0h1M5 4h1" />'#13#10'<path stroke="#929292" d="M2 1h1"' +
' />'#13#10'<path stroke="#a6a6a6" d="M3 1h1" />'#13#10'<path stroke="#a4a4a4' +
'" d="M12 1h1" />'#13#10'<path stroke="#959595" d="M13 1h1" />'#13#10'<path s' +
'troke="#afafaf" d="M2 2h1" />'#13#10'<path stroke="#777777" d="M3 2h1M' +
'12 2h1M3 3h1M12 3h1M4 4h1M11 4h1M4 5h2M10 5h2M5 6h1M10 6h1M6 7h1' +
'M9 7h2M7 8h2" />'#13#10'<path stroke="#cfcfcf" d="M4 2h1M6 5h1" />'#13#10'<p' +
'ath stroke="#cdcdcd" d="M11 2h1M9 5h1" />'#13#10'<path stroke="#b0b0b0' +
'" d="M13 2h1" />'#13#10'<path stroke="#dcdcdc" d="M2 3h1" />'#13#10'<path st' +
'roke="#808080" d="M4 3h1" />'#13#10'<path stroke="#f2f2f2" d="M5 3h1" ' +
'/>'#13#10'<path stroke="#f1f1f1" d="M10 3h1" />'#13#10'<path stroke="#7f7f7f' +
'" d="M11 3h1" />'#13#10'<path stroke="#d7d7d7" d="M13 3h1" />'#13#10'<path s' +
'troke="#888888" d="M3 4h1" />'#13#10'<path stroke="#a0a0a0" d="M10 4h1' +
'" />'#13#10'<path stroke="#838383" d="M12 4h1" />'#13#10'<path stroke="#fbfb' +
'fb" d="M13 4h1" />'#13#10'<path stroke="#c8c8c8" d="M3 5h1" />'#13#10'<path ' +
'stroke="#bebebe" d="M12 5h1" />'#13#10'<path stroke="#909090" d="M4 6h' +
'1" />'#13#10'<path stroke="#7e7e7e" d="M6 6h1M9 6h1" />'#13#10'<path stroke=' +
'"#ededed" d="M7 6h1" />'#13#10'<path stroke="#ececec" d="M8 6h1" />'#13#10'<' +
'path stroke="#868686" d="M11 6h1" />'#13#10'<path stroke="#e7e7e7" d="' +
'M4 7h1" />'#13#10'<path stroke="#7c7c7c" d="M5 7h1" />'#13#10'<path stroke="' +
'#919191" d="M7 7h1" />'#13#10'<path stroke="#8f8f8f" d="M8 7h1" />'#13#10'<p' +
'ath stroke="#d8d8d8" d="M11 7h1" />'#13#10'<path stroke="#d5d5d5" d="M' +
'5 8h1" />'#13#10'<path stroke="#7a7a7a" d="M6 8h1" />'#13#10'<path stroke="#' +
'767676" d="M9 8h1" />'#13#10'<path stroke="#c0c0c0" d="M10 8h1" />'#13#10'<p' +
'ath stroke="#c4d1e0" d="M6 9h1" />'#13#10'<path stroke="#90abc6" d="M7' +
' 9h2" />'#13#10'<path stroke="#adc0d4" d="M9 9h1" />'#13#10'<path stroke="#b' +
'acee3" d="M2 10h1" />'#13#10'<path stroke="#5a89bb" d="M3 10h1" />'#13#10'<p' +
'ath stroke="#4076b0" d="M4 10h1" />'#13#10'<path stroke="#457bb2" d="M' +
'5 10h1M10 14h1M13 14h1" />'#13#10'<path stroke="#5384b8" d="M6 10h1M9 ' +
'10h1" />'#13#10'<path stroke="#3f77b0" d="M7 10h2M6 11h1M9 11h1M13 11h' +
'1M6 12h1M9 12h1M6 13h1M9 13h1" />'#13#10'<path stroke="#5182b7" d="M10' +
' 10h1M12 11h1" />'#13#10'<path stroke="#4278b2" d="M11 10h1" />'#13#10'<path' +
' stroke="#5888ba" d="M12 10h1" />'#13#10'<path stroke="#b3c9e1" d="M13' +
' 10h1M8 13h1" />'#13#10'<path stroke="#c4d5e7" d="M1 11h1" />'#13#10'<path s' +
'troke="#4078b1" d="M2 11h1" />'#13#10'<path stroke="#4f81b6" d="M3 11h' +
'1M3 15h1M11 15h1" />'#13#10'<path stroke="#a1bdda" d="M4 11h1" />'#13#10'<pa' +
'th stroke="#7ba2c9" d="M5 11h1" />'#13#10'<path stroke="#4077b1" d="M7' +
' 11h1M1 13h1M14 13h1" />'#13#10'<path stroke="#497eb4" d="M8 11h1" />'#13 +
#10'<path stroke="#719ac4" d="M10 11h1" />'#13#10'<path stroke="#a1bcd7" ' +
'd="M11 11h1" />'#13#10'<path stroke="#c0d1e6" d="M14 11h1" />'#13#10'<path s' +
'troke="#6692c0" d="M1 12h1" />'#13#10'<path stroke="#4379b1" d="M2 12h' +
'1M5 14h1" />'#13#10'<path stroke="#dfe8f2" d="M3 12h1" />'#13#10'<path strok' +
'e="#e1e9f3" d="M5 12h1M6 15h1" />'#13#10'<path stroke="#5b8bbc" d="M7 ' +
'12h1M9 14h1" />'#13#10'<path stroke="#79a0c8" d="M8 12h1" />'#13#10'<path st' +
'roke="#d8e3ef" d="M10 12h1" />'#13#10'<path stroke="#dde7f1" d="M12 12' +
'h1" />'#13#10'<path stroke="#4278b1" d="M13 12h1" />'#13#10'<path stroke="#6' +
'28fbf" d="M14 12h1M1 14h1" />'#13#10'<path stroke="#6590bf" d="M2 13h1' +
'M13 13h1" />'#13#10'<path stroke="#a6c0dc" d="M5 13h1" />'#13#10'<path strok' +
'e="#8dafd1" d="M7 13h1" />'#13#10'<path stroke="#a8c1dc" d="M10 13h1M1' +
'1 14h1" />'#13#10'<path stroke="#447ab2" d="M2 14h1" />'#13#10'<path stroke=' +
'"#a9c2dd" d="M3 14h1" />'#13#10'<path stroke="#a0bbd8" d="M4 14h1" />'#13 +
#10'<path stroke="#4c7eb5" d="M6 14h1" />'#13#10'<path stroke="#e6ecf5" d' +
'="M7 14h1" />'#13#10'<path stroke="#f9fbfc" d="M8 14h1" />'#13#10'<path stro' +
'ke="#b2c8e0" d="M12 14h1" />'#13#10'<path stroke="#5f8dbd" d="M14 14h1' +
'" />'#13#10'<path stroke="#e5edf4" d="M1 15h1" />'#13#10'<path stroke="#7ba1' +
'c8" d="M2 15h1" />'#13#10'<path stroke="#5283b8" d="M4 15h1" />'#13#10'<path' +
' stroke="#80a5cb" d="M5 15h1M10 15h1" />'#13#10'<path stroke="#e9eff5"' +
' d="M9 15h1" />'#13#10'<path stroke="#4a7eb5" d="M12 15h1" />'#13#10'<path s' +
'troke="#759dc7" d="M13 15h1" />'#13#10'<path stroke="#e2eaf3" d="M14 1' +
'5h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Copy1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#a7a7a7" d="M1 0h4M0' +
' 1h1M5 1h1M0 2h1M5 2h1M0 3h1M0 4h1M0 5h1M0 6h1M0 7h1M0 8h1M0 9h1' +
'M0 10h1M1 11h4" />'#13#10'<path stroke="#b1b1b1" d="M5 0h1" />'#13#10'<path ' +
'stroke="#ececec" d="M6 0h1" />'#13#10'<path stroke="#aeaeae" d="M6 1h1' +
'M7 2h1" />'#13#10'<path stroke="#e9e9e9" d="M7 1h1" />'#13#10'<path stroke="' +
'#e6e6e6" d="M6 2h1M5 3h1" />'#13#10'<path stroke="#e4e4e4" d="M8 2h1" ' +
'/>'#13#10'<path stroke="#6ea5d7" d="M2 3h2M2 5h2M2 7h3M2 9h3" />'#13#10'<pat' +
'h stroke="#909090" d="M6 4h1" />'#13#10'<path stroke="#777777" d="M7 4' +
'h4M6 5h1M11 5h1M6 6h1M11 6h1M6 7h1M11 7h1M6 8h1M12 8h3M6 9h1M15 ' +
'9h1M6 10h1M15 10h1M6 11h1M15 11h1M6 12h1M15 12h1M6 13h1M15 13h1M' +
'6 14h1M15 14h1M7 15h8" />'#13#10'<path stroke="#858585" d="M11 4h1" />' +
#13#10'<path stroke="#e2e2e2" d="M12 4h1" />'#13#10'<path stroke="#fcfcfc" ' +
'd="M7 5h4M7 6h4M7 7h1M10 7h1M12 7h1M7 8h4M7 9h1M10 9h5M7 10h8M7 ' +
'11h1M14 11h1M7 12h8M7 13h1M14 13h1M7 14h8" />'#13#10'<path stroke="#81' +
'8181" d="M12 5h1M13 6h1" />'#13#10'<path stroke="#dcdcdc" d="M13 5h1" ' +
'/>'#13#10'<path stroke="#d8d8d8" d="M12 6h1" />'#13#10'<path stroke="#d7d7d7' +
'" d="M14 6h1" />'#13#10'<path stroke="#3f77b0" d="M8 7h2M8 9h2M8 11h6M' +
'8 13h6" />'#13#10'<path stroke="#dedede" d="M13 7h1" />'#13#10'<path stroke=' +
'"#828282" d="M14 7h1" />'#13#10'<path stroke="#d1d1d1" d="M15 7h1" />'#13 +
#10'<path stroke="#8c8c8c" d="M11 8h1" />'#13#10'<path stroke="#7e7e7e" d' +
'="M15 8h1" />'#13#10'<path stroke="#8f8f8f" d="M6 15h1M15 15h1" /></sv' +
'g>'#13#10
end
item
IconName = 'Paste1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#898989" d="M4 0h1M7' +
' 0h1" />'#13#10'<path stroke="#777777" d="M5 0h2M4 1h4M8 6h3M7 7h1M11 ' +
'7h1M7 8h1M11 8h1M7 9h1M11 9h1M7 10h1M12 10h3M7 11h1M15 11h1M7 12' +
'h1M15 12h1M7 13h1M15 13h1M7 14h1M15 14h1M8 15h7" />'#13#10'<path strok' +
'e="#e8bd78" d="M0 1h1M0 13h1" />'#13#10'<path stroke="#e5b262" d="M1 1' +
'h1M10 1h1M0 2h2M10 2h2M0 3h12M0 4h12M0 5h6M0 6h6M0 7h6M0 8h6M0 9' +
'h6M0 10h6M0 11h6M0 12h6M1 13h5" />'#13#10'<path stroke="#7f7f7f" d="M3' +
' 1h1" />'#13#10'<path stroke="#838383" d="M8 1h1" />'#13#10'<path stroke="#e' +
'8be78" d="M11 1h1" />'#13#10'<path stroke="#f8f2e6" d="M2 2h1" />'#13#10'<pa' +
'th stroke="#ffffff" d="M3 2h6" />'#13#10'<path stroke="#f7f0e7" d="M9 ' +
'2h1" />'#13#10'<path stroke="#efd5ab" d="M6 5h1" />'#13#10'<path stroke="#fc' +
'fbf9" d="M7 5h1M6 6h1" />'#13#10'<path stroke="#91908f" d="M7 6h1" />'#13 +
#10'<path stroke="#858585" d="M11 6h1" />'#13#10'<path stroke="#e2e2e2" d' +
'="M12 6h1" />'#13#10'<path stroke="#fcfcfc" d="M8 7h3M8 8h3M8 9h3M12 9' +
'h1M8 10h3M8 11h7M8 12h7M8 13h7M8 14h7" />'#13#10'<path stroke="#818181' +
'" d="M12 7h1M13 8h1" />'#13#10'<path stroke="#dcdcdc" d="M13 7h1" />'#13#10 +
'<path stroke="#d8d8d8" d="M12 8h1" />'#13#10'<path stroke="#d7d7d7" d=' +
'"M14 8h1" />'#13#10'<path stroke="#dedede" d="M13 9h1" />'#13#10'<path strok' +
'e="#828282" d="M14 9h1" />'#13#10'<path stroke="#d1d1d1" d="M15 9h1" /' +
'>'#13#10'<path stroke="#8c8c8c" d="M11 10h1" />'#13#10'<path stroke="#7e7e7e' +
'" d="M15 10h1" />'#13#10'<path stroke="#8f8f8f" d="M7 15h1M15 15h1" />' +
#13#10'</svg>'
end
item
IconName = 'Left1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#7e7c73" d="M1 1h1" ' +
'/>'#13#10'<path stroke="#565249" d="M2 1h1M1 2h1M1 3h1M1 4h1M1 5h1M1 6' +
'h1M1 7h1M1 8h1M1 9h1M1 10h1M1 11h1M1 12h1M1 13h1" />'#13#10'<path stro' +
'ke="#000000" d="M2 2h1M2 3h1M2 4h1M2 5h1M2 6h1M2 7h1M2 8h1M2 9h1' +
'M2 10h1M2 11h1M2 12h1M2 13h1M1 14h2" />'#13#10'<path stroke="#4f623b" ' +
'd="M4 2h12M4 3h1M15 3h1M4 4h1M15 4h1M4 5h1M15 5h1M4 6h12" />'#13#10'<p' +
'ath stroke="#cedbc1" d="M5 3h1" />'#13#10'<path stroke="#b5c7a2" d="M6' +
' 3h6M5 4h1M5 5h1" />'#13#10'<path stroke="#b7c9a4" d="M12 3h1" />'#13#10'<pa' +
'th stroke="#b8caa5" d="M13 3h1" />'#13#10'<path stroke="#b9caa7" d="M1' +
'4 3h1" />'#13#10'<path stroke="#90ab73" d="M6 4h3M6 5h2" />'#13#10'<path str' +
'oke="#92ad75" d="M9 4h1M8 5h1" />'#13#10'<path stroke="#97b17d" d="M10' +
' 4h1" />'#13#10'<path stroke="#99b37e" d="M11 4h1M10 5h1" />'#13#10'<path st' +
'roke="#9bb481" d="M12 4h1M11 5h1" />'#13#10'<path stroke="#9db683" d="' +
'M13 4h1" />'#13#10'<path stroke="#9fb786" d="M14 4h1" />'#13#10'<path stroke' +
'="#93ae78" d="M9 5h1" />'#13#10'<path stroke="#9cb582" d="M12 5h1" />'#13 +
#10'<path stroke="#9eb685" d="M13 5h1" />'#13#10'<path stroke="#a0b887" d' +
'="M14 5h1" />'#13#10'<path stroke="#344f6b" d="M4 8h7M4 9h1M10 9h1M4 1' +
'0h1M10 10h1M4 11h1M10 11h1M4 12h7" />'#13#10'<path stroke="#c2cddb" d=' +
'"M5 9h1" />'#13#10'<path stroke="#a3b4c8" d="M6 9h2M5 10h1M5 11h1" />'#13 +
#10'<path stroke="#a3b5c8" d="M8 9h1" />'#13#10'<path stroke="#a5b6c9" d=' +
'"M9 9h1" />'#13#10'<path stroke="#7a94b2" d="M6 10h1" />'#13#10'<path stroke' +
'="#7c96b3" d="M7 10h1M6 11h1" />'#13#10'<path stroke="#7e98b5" d="M8 1' +
'0h1M7 11h1" />'#13#10'<path stroke="#809ab7" d="M9 10h1M8 11h1" />'#13#10'<p' +
'ath stroke="#829cb8" d="M9 11h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Centered1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#7e7c73" d="M7 1h1" ' +
'/>'#13#10'<path stroke="#565249" d="M8 1h1M7 2h1M7 3h1M7 4h1M7 5h1M7 6' +
'h1M7 7h1M7 8h1M7 9h1M7 10h1M7 11h1M7 12h1M7 13h1" />'#13#10'<path stro' +
'ke="#4f623b" d="M2 2h5M9 2h5M2 3h1M13 3h1M2 4h1M13 4h1M2 5h1M13 ' +
'5h1M2 6h5M9 6h5" />'#13#10'<path stroke="#000000" d="M8 2h1M8 3h1M8 4h' +
'1M8 5h1M8 6h1M8 7h1M8 8h1M8 9h1M8 10h1M8 11h1M8 12h1M8 13h1M7 14' +
'h2" />'#13#10'<path stroke="#cedbc1" d="M3 3h1" />'#13#10'<path stroke="#b5c' +
'7a2" d="M4 3h3M9 3h1M3 4h1M3 5h1" />'#13#10'<path stroke="#b7c9a4" d="' +
'M10 3h1" />'#13#10'<path stroke="#b8caa5" d="M11 3h1" />'#13#10'<path stroke' +
'="#b9caa7" d="M12 3h1" />'#13#10'<path stroke="#90ab73" d="M4 4h3M4 5h' +
'2" />'#13#10'<path stroke="#99b37e" d="M9 4h1" />'#13#10'<path stroke="#9bb4' +
'81" d="M10 4h1M9 5h1" />'#13#10'<path stroke="#9db683" d="M11 4h1" />'#13 +
#10'<path stroke="#9fb786" d="M12 4h1" />'#13#10'<path stroke="#92ad75" d' +
'="M6 5h1" />'#13#10'<path stroke="#9cb582" d="M10 5h1" />'#13#10'<path strok' +
'e="#9eb685" d="M11 5h1" />'#13#10'<path stroke="#a0b887" d="M12 5h1" /' +
'>'#13#10'<path stroke="#344f6b" d="M4 8h3M9 8h3M4 9h1M11 9h1M4 10h1M11' +
' 10h1M4 11h1M11 11h1M4 12h3M9 12h3" />'#13#10'<path stroke="#c2cddb" d' +
'="M5 9h1" />'#13#10'<path stroke="#a3b4c8" d="M6 9h1M5 10h1M5 11h1" />' +
#13#10'<path stroke="#a3b5c8" d="M9 9h1" />'#13#10'<path stroke="#a5b6c9" d' +
'="M10 9h1" />'#13#10'<path stroke="#7a94b2" d="M6 10h1" />'#13#10'<path stro' +
'ke="#7e98b5" d="M9 10h1" />'#13#10'<path stroke="#809ab7" d="M10 10h1M' +
'9 11h1" />'#13#10'<path stroke="#7c96b3" d="M6 11h1" />'#13#10'<path stroke=' +
'"#829cb8" d="M10 11h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Right1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#7e7c73" d="M13 1h1"' +
' />'#13#10'<path stroke="#565249" d="M14 1h1M13 2h1M13 3h1M13 4h1M13 5' +
'h1M13 6h1M13 7h1M13 8h1M13 9h1M13 10h1M13 11h1M13 12h1M13 13h1" ' +
'/>'#13#10'<path stroke="#4f623b" d="M0 2h12M0 3h1M11 3h1M0 4h1M11 4h1M' +
'0 5h1M11 5h1M0 6h12" />'#13#10'<path stroke="#000000" d="M14 2h1M14 3h' +
'1M14 4h1M14 5h1M14 6h1M14 7h1M14 8h1M14 9h1M14 10h1M14 11h1M14 1' +
'2h1M14 13h1M13 14h2" />'#13#10'<path stroke="#cedbc1" d="M1 3h1" />'#13#10'<' +
'path stroke="#b5c7a2" d="M2 3h6M1 4h1M1 5h1" />'#13#10'<path stroke="#' +
'b7c9a4" d="M8 3h1" />'#13#10'<path stroke="#b8caa5" d="M9 3h1" />'#13#10'<pa' +
'th stroke="#b9caa7" d="M10 3h1" />'#13#10'<path stroke="#90ab73" d="M2' +
' 4h3M2 5h2" />'#13#10'<path stroke="#92ad75" d="M5 4h1M4 5h1" />'#13#10'<pat' +
'h stroke="#97b17d" d="M6 4h1" />'#13#10'<path stroke="#99b37e" d="M7 4' +
'h1M6 5h1" />'#13#10'<path stroke="#9bb481" d="M8 4h1M7 5h1" />'#13#10'<path ' +
'stroke="#9db683" d="M9 4h1" />'#13#10'<path stroke="#9fb786" d="M10 4h' +
'1" />'#13#10'<path stroke="#93ae78" d="M5 5h1" />'#13#10'<path stroke="#9cb5' +
'82" d="M8 5h1" />'#13#10'<path stroke="#9eb685" d="M9 5h1" />'#13#10'<path s' +
'troke="#a0b887" d="M10 5h1" />'#13#10'<path stroke="#344f6b" d="M5 8h7' +
'M5 9h1M11 9h1M5 10h1M11 10h1M5 11h1M11 11h1M5 12h7" />'#13#10'<path st' +
'roke="#c2cddb" d="M6 9h1" />'#13#10'<path stroke="#a3b4c8" d="M7 9h2M6' +
' 10h1M6 11h1" />'#13#10'<path stroke="#a3b5c8" d="M9 9h1" />'#13#10'<path st' +
'roke="#a5b6c9" d="M10 9h1" />'#13#10'<path stroke="#7a94b2" d="M7 10h1' +
'" />'#13#10'<path stroke="#7c96b3" d="M8 10h1M7 11h1" />'#13#10'<path stroke' +
'="#7e98b5" d="M9 10h1M8 11h1" />'#13#10'<path stroke="#809ab7" d="M10 ' +
'10h1M9 11h1" />'#13#10'<path stroke="#829cb8" d="M10 11h1" />'#13#10'</svg>'#13 +
#10
end
item
IconName = 'CenteredWindows'
SVGText =
'<svg viewBox="0 -0.5 20 20">'#13#10'<path stroke="#7e7e7e" d="M1 1h18M' +
'1 2h1M18 2h1M1 3h1M18 3h1M1 4h1M18 4h1M1 5h1M18 5h1M1 6h1M18 6h1' +
'M1 7h1M18 7h1M1 8h1M18 8h1M1 9h1M18 9h1M1 10h1M18 10h1M1 11h1M18' +
' 11h1M1 12h1M18 12h1M1 13h1M18 13h1M1 14h1M18 14h1M1 15h1M18 15h' +
'1M1 16h1M18 16h1M1 17h1M18 17h1M1 18h18" />'#13#10'<path stroke="#7e7c' +
'73" d="M9 3h1" />'#13#10'<path stroke="#565249" d="M10 3h1M9 4h1M9 5h1' +
'M9 6h1M9 7h1M9 8h1M9 9h1M9 10h1M9 11h1M9 12h1M9 13h1M9 14h1M9 15' +
'h1" />'#13#10'<path stroke="#4f623b" d="M4 4h5M11 4h5M4 5h1M15 5h1M4 6' +
'h1M15 6h1M4 7h1M15 7h1M4 8h5M11 8h5" />'#13#10'<path stroke="#000000" ' +
'd="M10 4h1M10 5h1M10 6h1M10 7h1M10 8h1M10 9h1M10 10h1M10 11h1M10' +
' 12h1M10 13h1M10 14h1M10 15h1M9 16h2" />'#13#10'<path stroke="#cedbc1"' +
' d="M5 5h1" />'#13#10'<path stroke="#b5c7a2" d="M6 5h3M11 5h1M5 6h1M5 ' +
'7h1" />'#13#10'<path stroke="#b7c9a4" d="M12 5h1" />'#13#10'<path stroke="#b' +
'8caa5" d="M13 5h1" />'#13#10'<path stroke="#b9caa7" d="M14 5h1" />'#13#10'<p' +
'ath stroke="#90ab73" d="M6 6h3M6 7h2" />'#13#10'<path stroke="#99b37e"' +
' d="M11 6h1" />'#13#10'<path stroke="#9bb481" d="M12 6h1M11 7h1" />'#13#10'<' +
'path stroke="#9db683" d="M13 6h1" />'#13#10'<path stroke="#9fb786" d="' +
'M14 6h1" />'#13#10'<path stroke="#92ad75" d="M8 7h1" />'#13#10'<path stroke=' +
'"#9cb582" d="M12 7h1" />'#13#10'<path stroke="#9eb685" d="M13 7h1" />'#13 +
#10'<path stroke="#a0b887" d="M14 7h1" />'#13#10'<path stroke="#344f6b" d' +
'="M6 10h3M11 10h3M6 11h1M13 11h1M6 12h1M13 12h1M6 13h1M13 13h1M6' +
' 14h3M11 14h3" />'#13#10'<path stroke="#c2cddb" d="M7 11h1" />'#13#10'<path ' +
'stroke="#a3b4c8" d="M8 11h1M7 12h1M7 13h1" />'#13#10'<path stroke="#a3' +
'b5c8" d="M11 11h1" />'#13#10'<path stroke="#a5b6c9" d="M12 11h1" />'#13#10'<' +
'path stroke="#7a94b2" d="M8 12h1" />'#13#10'<path stroke="#7e98b5" d="' +
'M11 12h1" />'#13#10'<path stroke="#809ab7" d="M12 12h1M11 13h1" />'#13#10'<p' +
'ath stroke="#7c96b3" d="M8 13h1" />'#13#10'<path stroke="#829cb8" d="M' +
'12 13h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'SameDistanceH'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#344f6b" d="M1 5h3M6' +
' 5h4M12 5h3M1 6h1M3 6h1M6 6h1M9 6h1M12 6h1M14 6h1M1 7h1M3 7h1M6 ' +
'7h1M9 7h1M12 7h1M14 7h1M1 8h1M3 8h1M6 8h1M9 8h1M12 8h1M14 8h1M1 ' +
'9h3M6 9h4M12 9h3" />'#13#10'<path stroke="#c2cddb" d="M2 6h1M7 6h2M13 ' +
'6h1" />'#13#10'<path stroke="#a3b4c8" d="M2 7h1M7 7h2M13 7h1M2 8h1M7 8' +
'h2M13 8h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Top1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#7e7c73" d="M1 1h1" ' +
'/>'#13#10'<path stroke="#565249" d="M2 1h12M1 2h1" />'#13#10'<path stroke="#' +
'000000" d="M14 1h1M2 2h13" />'#13#10'<path stroke="#4f623b" d="M3 4h5M' +
'3 5h1M7 5h1M3 6h1M7 6h1M3 7h1M7 7h1M3 8h1M7 8h1M3 9h1M7 9h1M3 10' +
'h1M7 10h1M3 11h1M7 11h1M3 12h1M7 12h1M3 13h1M7 13h1M3 14h5" />'#13#10 +
'<path stroke="#344f6b" d="M9 4h5M9 5h1M13 5h1M9 6h1M13 6h1M9 7h1' +
'M13 7h1M9 8h1M13 8h1M9 9h1M13 9h1M9 10h1M13 10h1M9 11h5" />'#13#10'<pa' +
'th stroke="#cedbc1" d="M4 5h1" />'#13#10'<path stroke="#b5c7a2" d="M5 ' +
'5h2M4 6h1M4 7h1M4 8h1M4 9h1M4 10h1" />'#13#10'<path stroke="#c2cddb" d' +
'="M10 5h1" />'#13#10'<path stroke="#a3b4c8" d="M11 5h2M10 6h1M10 7h1" ' +
'/>'#13#10'<path stroke="#90ab73" d="M5 6h2M5 7h2M5 8h1" />'#13#10'<path stro' +
'ke="#7a94b2" d="M11 6h1M11 7h1" />'#13#10'<path stroke="#7c96b3" d="M1' +
'2 6h1M12 7h1" />'#13#10'<path stroke="#92ad75" d="M6 8h1M5 9h1" />'#13#10'<p' +
'ath stroke="#a3b5c8" d="M10 8h1M10 9h1" />'#13#10'<path stroke="#7e98b' +
'5" d="M11 8h1M11 9h1" />'#13#10'<path stroke="#809ab7" d="M12 8h1M12 9' +
'h1M11 10h1" />'#13#10'<path stroke="#93ae78" d="M6 9h1" />'#13#10'<path stro' +
'ke="#99b37e" d="M5 10h1" />'#13#10'<path stroke="#9bb481" d="M6 10h1M5' +
' 11h1" />'#13#10'<path stroke="#a5b6c9" d="M10 10h1" />'#13#10'<path stroke=' +
'"#829cb8" d="M12 10h1" />'#13#10'<path stroke="#b7c9a4" d="M4 11h1" />' +
#13#10'<path stroke="#9cb582" d="M6 11h1" />'#13#10'<path stroke="#b8caa5" ' +
'd="M4 12h1" />'#13#10'<path stroke="#9db683" d="M5 12h1" />'#13#10'<path str' +
'oke="#9eb685" d="M6 12h1" />'#13#10'<path stroke="#b9caa7" d="M4 13h1"' +
' />'#13#10'<path stroke="#9fb786" d="M5 13h1" />'#13#10'<path stroke="#a0b88' +
'7" d="M6 13h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Middle1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#4f623b" d="M2 2h5M2' +
' 3h1M6 3h1M2 4h1M6 4h1M2 5h1M6 5h1M2 6h1M6 6h1M2 9h1M6 9h1M2 10h' +
'1M6 10h1M2 11h1M6 11h1M2 12h1M6 12h1M2 13h5" />'#13#10'<path stroke="#' +
'cedbc1" d="M3 3h1" />'#13#10'<path stroke="#b5c7a2" d="M4 3h2M3 4h1M3 ' +
'5h1M3 6h1M3 9h1" />'#13#10'<path stroke="#90ab73" d="M4 4h2M4 5h2M4 6h' +
'1" />'#13#10'<path stroke="#344f6b" d="M8 4h5M8 5h1M12 5h1M8 6h1M12 6h' +
'1M8 9h1M12 9h1M8 10h1M12 10h1M8 11h5" />'#13#10'<path stroke="#c2cddb"' +
' d="M9 5h1" />'#13#10'<path stroke="#a3b4c8" d="M10 5h2M9 6h1" />'#13#10'<pa' +
'th stroke="#92ad75" d="M5 6h1" />'#13#10'<path stroke="#7a94b2" d="M10' +
' 6h1" />'#13#10'<path stroke="#7c96b3" d="M11 6h1" />'#13#10'<path stroke="#' +
'7e7c73" d="M1 7h1" />'#13#10'<path stroke="#565249" d="M2 7h12M1 8h1" ' +
'/>'#13#10'<path stroke="#000000" d="M14 7h1M2 8h13" />'#13#10'<path stroke="' +
'#99b37e" d="M4 9h1" />'#13#10'<path stroke="#9bb481" d="M5 9h1M4 10h1"' +
' />'#13#10'<path stroke="#a3b5c8" d="M9 9h1" />'#13#10'<path stroke="#7e98b5' +
'" d="M10 9h1" />'#13#10'<path stroke="#809ab7" d="M11 9h1M10 10h1" />'#13 +
#10'<path stroke="#b7c9a4" d="M3 10h1" />'#13#10'<path stroke="#9cb582" d' +
'="M5 10h1" />'#13#10'<path stroke="#a5b6c9" d="M9 10h1" />'#13#10'<path stro' +
'ke="#829cb8" d="M11 10h1" />'#13#10'<path stroke="#b8caa5" d="M3 11h1"' +
' />'#13#10'<path stroke="#9db683" d="M4 11h1" />'#13#10'<path stroke="#9eb68' +
'5" d="M5 11h1" />'#13#10'<path stroke="#b9caa7" d="M3 12h1" />'#13#10'<path ' +
'stroke="#9fb786" d="M4 12h1" />'#13#10'<path stroke="#a0b887" d="M5 12' +
'h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Bottom1'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#4f623b" d="M3 1h5M3' +
' 2h1M7 2h1M3 3h1M7 3h1M3 4h1M7 4h1M3 5h1M7 5h1M3 6h1M7 6h1M3 7h1' +
'M7 7h1M3 8h1M7 8h1M3 9h1M7 9h1M3 10h1M7 10h1M3 11h5" />'#13#10'<path s' +
'troke="#cedbc1" d="M4 2h1" />'#13#10'<path stroke="#b5c7a2" d="M5 2h2M' +
'4 3h1M4 4h1M4 5h1M4 6h1M4 7h1" />'#13#10'<path stroke="#90ab73" d="M5 ' +
'3h2M5 4h2M5 5h1" />'#13#10'<path stroke="#344f6b" d="M9 4h5M9 5h1M13 5' +
'h1M9 6h1M13 6h1M9 7h1M13 7h1M9 8h1M13 8h1M9 9h1M13 9h1M9 10h1M13' +
' 10h1M9 11h5" />'#13#10'<path stroke="#92ad75" d="M6 5h1M5 6h1" />'#13#10'<p' +
'ath stroke="#c2cddb" d="M10 5h1" />'#13#10'<path stroke="#a3b4c8" d="M' +
'11 5h2M10 6h1M10 7h1" />'#13#10'<path stroke="#93ae78" d="M6 6h1" />'#13#10 +
'<path stroke="#7a94b2" d="M11 6h1M11 7h1" />'#13#10'<path stroke="#7c9' +
'6b3" d="M12 6h1M12 7h1" />'#13#10'<path stroke="#99b37e" d="M5 7h1" />' +
#13#10'<path stroke="#9bb481" d="M6 7h1M5 8h1" />'#13#10'<path stroke="#b7c' +
'9a4" d="M4 8h1" />'#13#10'<path stroke="#9cb582" d="M6 8h1" />'#13#10'<path ' +
'stroke="#a3b5c8" d="M10 8h1M10 9h1" />'#13#10'<path stroke="#7e98b5" d' +
'="M11 8h1M11 9h1" />'#13#10'<path stroke="#809ab7" d="M12 8h1M12 9h1M1' +
'1 10h1" />'#13#10'<path stroke="#b8caa5" d="M4 9h1" />'#13#10'<path stroke="' +
'#9db683" d="M5 9h1" />'#13#10'<path stroke="#9eb685" d="M6 9h1" />'#13#10'<p' +
'ath stroke="#b9caa7" d="M4 10h1" />'#13#10'<path stroke="#9fb786" d="M' +
'5 10h1" />'#13#10'<path stroke="#a0b887" d="M6 10h1" />'#13#10'<path stroke=' +
'"#a5b6c9" d="M10 10h1" />'#13#10'<path stroke="#829cb8" d="M12 10h1" /' +
'>'#13#10'<path stroke="#7e7c73" d="M1 13h1" />'#13#10'<path stroke="#565249"' +
' d="M2 13h12M1 14h1" />'#13#10'<path stroke="#000000" d="M14 13h1M2 14' +
'h13" />'#13#10'</svg>'#13#10
end
item
IconName = 'MiddleWindows'
SVGText =
'<svg viewBox="0 -0.5 20 20">'#13#10'<path stroke="#7e7e7e" d="M1 1h18M' +
'1 2h1M18 2h1M1 3h1M18 3h1M1 4h1M18 4h1M1 5h1M18 5h1M1 6h1M18 6h1' +
'M1 7h1M18 7h1M1 8h1M18 8h1M1 9h1M18 9h1M1 10h1M18 10h1M1 11h1M18' +
' 11h1M1 12h1M18 12h1M1 13h1M18 13h1M1 14h1M18 14h1M1 15h1M18 15h' +
'1M1 16h1M18 16h1M1 17h1M18 17h1M1 18h18" />'#13#10'<path stroke="#4f62' +
'3b" d="M4 4h5M4 5h1M8 5h1M4 6h1M8 6h1M4 7h1M8 7h1M4 8h1M8 8h1M4 ' +
'11h1M8 11h1M4 12h1M8 12h1M4 13h1M8 13h1M4 14h1M8 14h1M4 15h5" />' +
#13#10'<path stroke="#cedbc1" d="M5 5h1" />'#13#10'<path stroke="#b5c7a2" d' +
'="M6 5h2M5 6h1M5 7h1M5 8h1M5 11h1" />'#13#10'<path stroke="#90ab73" d=' +
'"M6 6h2M6 7h2M6 8h1" />'#13#10'<path stroke="#344f6b" d="M10 6h5M10 7h' +
'1M14 7h1M10 8h1M14 8h1M10 11h1M14 11h1M10 12h1M14 12h1M10 13h5" ' +
'/>'#13#10'<path stroke="#c2cddb" d="M11 7h1" />'#13#10'<path stroke="#a3b4c8' +
'" d="M12 7h2M11 8h1" />'#13#10'<path stroke="#92ad75" d="M7 8h1" />'#13#10'<' +
'path stroke="#7a94b2" d="M12 8h1" />'#13#10'<path stroke="#7c96b3" d="' +
'M13 8h1" />'#13#10'<path stroke="#7e7c73" d="M3 9h1" />'#13#10'<path stroke=' +
'"#565249" d="M4 9h12M3 10h1" />'#13#10'<path stroke="#000000" d="M16 9' +
'h1M4 10h13" />'#13#10'<path stroke="#99b37e" d="M6 11h1" />'#13#10'<path str' +
'oke="#9bb481" d="M7 11h1M6 12h1" />'#13#10'<path stroke="#a3b5c8" d="M' +
'11 11h1" />'#13#10'<path stroke="#7e98b5" d="M12 11h1" />'#13#10'<path strok' +
'e="#809ab7" d="M13 11h1M12 12h1" />'#13#10'<path stroke="#b7c9a4" d="M' +
'5 12h1" />'#13#10'<path stroke="#9cb582" d="M7 12h1" />'#13#10'<path stroke=' +
'"#a5b6c9" d="M11 12h1" />'#13#10'<path stroke="#829cb8" d="M13 12h1" /' +
'>'#13#10'<path stroke="#b8caa5" d="M5 13h1" />'#13#10'<path stroke="#9db683"' +
' d="M6 13h1" />'#13#10'<path stroke="#9eb685" d="M7 13h1" />'#13#10'<path st' +
'roke="#b9caa7" d="M5 14h1" />'#13#10'<path stroke="#9fb786" d="M6 14h1' +
'" />'#13#10'<path stroke="#a0b887" d="M7 14h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'SameDistanceV'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#344f6b" d="M6 1h5M6' +
' 2h1M10 2h1M6 3h5M6 6h5M6 7h1M10 7h1M6 8h1M10 8h1M6 9h5M6 12h5M6' +
' 13h1M10 13h1M6 14h5" />'#13#10'<path stroke="#a3b4c8" d="M7 2h2M7 7h2' +
'M7 8h2M7 13h2" />'#13#10'<path stroke="#c2cddb" d="M9 2h1M9 7h1M9 8h1M' +
'9 13h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'ZoomOut'
SVGText =
'<svg viewBox="100 -850 800 800" fill="#191919">'#13#10' <path d="M784' +
'-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109' +
' 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l2' +
'52 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T38' +
'0-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400ZM280-540v' +
'-80h200v80H280Z"/>'#13#10'</svg>'
end
item
IconName = 'ZoomIn'
SVGText =
'<svg viewBox="100 -850 800 800" fill="#191919">'#13#10' <path d="M784' +
'-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109' +
' 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l2' +
'52 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T38' +
'0-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Zm-40-60v-' +
'80h-80v-80h80v-80h80v80h80v80h-80v80h-80Z"/>'#13#10'</svg>'
end
item
IconName = 'Configuration'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#828282" d="M0 1h15M' +
'0 2h1M0 3h1M0 4h1M0 5h1M0 6h1M0 7h1M0 8h1M0 9h1M0 10h1M0 11h1M0 ' +
'12h1M0 13h1" />'#13#10'<path stroke="#ffffff" d="M1 2h1M11 2h1M13 2h1M' +
'2 4h1M4 4h1M6 4h1M8 4h1M10 4h1M12 4h1M1 5h1M3 5h1M5 5h1M9 5h1M11' +
' 5h1M13 5h1M2 6h1M4 6h1M8 6h1M10 6h1M12 6h1M1 7h1M7 7h1M9 7h1M11' +
' 7h1M13 7h1M2 8h1M6 8h1M8 8h1M10 8h1M12 8h1M1 9h1M3 9h1M5 9h1M9 ' +
'9h1M11 9h1M13 9h1M2 10h1M4 10h1M8 10h1M10 10h1M12 10h1M1 11h1M7 ' +
'11h1M9 11h1M11 11h1M13 11h1M2 12h1M6 12h1M8 12h1M10 12h1M12 12h1' +
'M1 13h1M3 13h1M5 13h1M7 13h1M9 13h1M11 13h1M13 13h1" />'#13#10'<path s' +
'troke="#0000ff" d="M2 2h9M12 2h1" />'#13#10'<path stroke="#000000" d="' +
'M14 2h1M1 3h14M14 4h1M6 5h2M14 5h1M3 6h1M5 6h2M14 6h1M3 7h3M14 7' +
'h1M4 8h1M14 8h1M6 9h2M14 9h1M3 10h1M5 10h2M14 10h1M3 11h3M14 11h' +
'1M4 12h1M14 12h1M14 13h1M0 14h15" />'#13#10'<path stroke="#c4c4c4" d="' +
'M1 4h1M3 4h1M5 4h1M7 4h1M9 4h1M11 4h1M13 4h1M2 5h1M4 5h1M8 5h1M1' +
'0 5h1M12 5h1M1 6h1M7 6h1M9 6h1M11 6h1M13 6h1M2 7h1M6 7h1M8 7h1M1' +
'0 7h1M12 7h1M1 8h1M3 8h1M5 8h1M7 8h1M9 8h1M11 8h1M13 8h1M2 9h1M4' +
' 9h1M8 9h1M10 9h1M12 9h1M1 10h1M7 10h1M9 10h1M11 10h1M13 10h1M2 ' +
'11h1M6 11h1M8 11h1M10 11h1M12 11h1M1 12h1M3 12h1M5 12h1M7 12h1M9' +
' 12h1M11 12h1M13 12h1M2 13h1M4 13h1M6 13h1M8 13h1M10 13h1M12 13h' +
'1" />'#13#10'</svg>'
end>
Left = 168
Top = 16
end
object icJavaControls1315: TSVGIconImageCollection
SVGIconItems = <
item
IconName = '00'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#9e9e9e" d="M0 1h12M' +
'0 2h1M0 3h1M0 4h1M0 5h1M0 6h1M0 7h1M0 8h1M0 9h1M0 10h1M0 11h1M0 ' +
'12h1" />'#13#10'<path stroke="#ffffff" d="M12 1h1M12 2h1M2 3h9M12 3h1M' +
'2 4h9M12 4h1M2 5h9M12 5h1M2 6h9M12 6h1M2 7h9M12 7h1M2 8h9M12 8h1' +
'M2 9h9M12 9h1M2 10h9M12 10h1M2 11h9M12 11h1M12 12h1M0 13h13" />'#13 +
#10'<path stroke="#686868" d="M1 2h10M1 3h1M1 4h1M1 5h1M1 6h1M1 7h1' +
'M1 8h1M1 9h1M1 10h1M1 11h1" />'#13#10'<path stroke="#e2e2e2" d="M11 2h' +
'1M11 3h1M11 4h1M11 5h1M11 6h1M11 7h1M11 8h1M11 9h1M11 10h1M11 11' +
'h1M1 12h11" />'#13#10'</svg>'#13#10
end
item
IconName = '01'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#9e9e9e" d="M0 1h12M' +
'0 2h1M0 3h1M0 4h1M0 5h1M0 6h1M0 7h1M0 8h1M0 9h1M0 10h1M0 11h1M0 ' +
'12h1" />'#13#10'<path stroke="#ffffff" d="M12 1h1M12 2h1M2 3h9M12 3h1M' +
'2 4h7M10 4h1M12 4h1M2 5h6M10 5h1M12 5h1M2 6h1M4 6h3M10 6h1M12 6h' +
'1M2 7h1M5 7h1M9 7h2M12 7h1M2 8h1M8 8h3M12 8h1M2 9h2M7 9h4M12 9h1' +
'M2 10h3M6 10h5M12 10h1M2 11h9M12 11h1M12 12h1M0 13h13" />'#13#10'<path' +
' stroke="#686868" d="M1 2h10M1 3h1M1 4h1M1 5h1M1 6h1M1 7h1M1 8h1' +
'M1 9h1M1 10h1M1 11h1" />'#13#10'<path stroke="#e2e2e2" d="M11 2h1M11 3' +
'h1M11 4h1M11 5h1M11 6h1M11 7h1M11 8h1M11 9h1M11 10h1M11 11h1M1 1' +
'2h11" />'#13#10'<path stroke="#000000" d="M9 4h1M8 5h2M3 6h1M7 6h3M3 7' +
'h2M6 7h3M3 8h5M4 9h3M5 10h1" />'#13#10'</svg>'#13#10
end
item
IconName = '02'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#798897" d="M0 1h13M' +
'0 2h1M12 2h1M0 3h1M12 3h1M0 4h1M12 4h1M0 5h1M12 5h1M0 6h1M12 6h1' +
'M0 7h1M12 7h1M0 8h1M12 8h1M0 9h1M12 9h1M0 10h1M12 10h1M0 11h1M12' +
' 11h1M0 12h1M12 12h1M0 13h13" />'#13#10'<path stroke="#e7eff6" d="M1 2' +
'h11M1 6h11" />'#13#10'<path stroke="#f3f6fa" d="M1 3h11M1 5h11" />'#13#10'<p' +
'ath stroke="#ffffff" d="M1 4h11" />'#13#10'<path stroke="#dce7f2" d="M' +
'1 7h11" />'#13#10'<path stroke="#d6e4f0" d="M1 8h11" />'#13#10'<path stroke=' +
'"#d1e0ee" d="M1 9h11" />'#13#10'<path stroke="#cbdcec" d="M1 10h11" />' +
#13#10'<path stroke="#c6d8ea" d="M1 11h11" />'#13#10'<path stroke="#c1d4e8"' +
' d="M1 12h11" />'#13#10'</svg>'#13#10
end
item
IconName = '03'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#798897" d="M0 1h13M' +
'0 2h1M12 2h1M0 3h1M12 3h1M0 4h1M12 4h1M0 5h1M12 5h1M0 6h1M12 6h1' +
'M0 7h1M12 7h1M0 8h1M12 8h1M0 9h1M12 9h1M0 10h1M12 10h1M0 11h1M12' +
' 11h1M0 12h1M12 12h1M0 13h13" />'#13#10'<path stroke="#e7eff6" d="M1 2' +
'h11M1 6h2M5 6h2M9 6h3" />'#13#10'<path stroke="#f3f6fa" d="M1 3h11M1 5' +
'h7M10 5h2" />'#13#10'<path stroke="#ffffff" d="M1 4h8M10 4h2" />'#13#10'<pat' +
'h stroke="#363636" d="M9 4h1M8 5h2M3 6h2M7 6h2M3 7h2M6 7h2M3 8h4' +
'M3 9h3M3 10h2" />'#13#10'<path stroke="#dce7f2" d="M1 7h2M5 7h1M8 7h4"' +
' />'#13#10'<path stroke="#d6e4f0" d="M1 8h2M7 8h5" />'#13#10'<path stroke="#' +
'd1e0ee" d="M1 9h2M6 9h6" />'#13#10'<path stroke="#cbdcec" d="M1 10h2M5' +
' 10h7" />'#13#10'<path stroke="#c6d8ea" d="M1 11h11" />'#13#10'<path stroke=' +
'"#c1d4e8" d="M1 12h11" />'#13#10'</svg>'#13#10
end
item
IconName = '04'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#9e9e9e" d="M4 1h4M2' +
' 2h2M8 2h2M1 3h1M1 4h1M0 5h1M0 6h1M0 7h1M0 8h1M1 9h1M1 10h1" />'#13 +
#10'<path stroke="#686868" d="M4 2h4M2 3h2M8 3h2M2 4h1M1 5h1M1 6h1M' +
'1 7h1M1 8h1M2 9h1" />'#13#10'<path stroke="#ffffff" d="M4 3h4M10 3h1M3' +
' 4h6M10 4h1M2 5h8M11 5h1M2 6h8M11 6h1M2 7h8M11 7h1M2 8h8M11 8h1M' +
'3 9h6M10 9h1M4 10h4M10 10h1M2 11h2M8 11h2M4 12h4" />'#13#10'<path stro' +
'ke="#e2e2e2" d="M9 4h1M10 5h1M10 6h1M10 7h1M10 8h1M9 9h1M2 10h2M' +
'8 10h2M4 11h4" />'#13#10'</svg>'#13#10
end
item
IconName = '05'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#9e9e9e" d="M4 1h4M2' +
' 2h2M8 2h2M1 3h1M1 4h1M0 5h1M0 6h1M0 7h1M0 8h1M1 9h1M1 10h1" />'#13 +
#10'<path stroke="#686868" d="M4 2h4M2 3h2M8 3h2M2 4h1M1 5h1M1 6h1M' +
'1 7h1M1 8h1M2 9h1" />'#13#10'<path stroke="#ffffff" d="M4 3h4M10 3h1M3' +
' 4h6M10 4h1M2 5h3M7 5h3M11 5h1M2 6h2M8 6h2M11 6h1M2 7h2M8 7h2M11' +
' 7h1M2 8h3M7 8h3M11 8h1M3 9h6M10 9h1M4 10h4M10 10h1M2 11h2M8 11h' +
'2M4 12h4" />'#13#10'<path stroke="#e2e2e2" d="M9 4h1M10 5h1M10 6h1M10 ' +
'7h1M10 8h1M9 9h1M2 10h2M8 10h2M4 11h4" />'#13#10'<path stroke="#000000' +
'" d="M5 5h2M4 6h4M4 7h4M5 8h2" />'#13#10'</svg>'#13#10
end
item
IconName = '06'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#798897" d="M4 1h4M2' +
' 2h2M8 2h2M1 3h1M10 3h1M1 4h1M10 4h1M0 5h1M11 5h1M0 6h1M11 6h1M0' +
' 7h1M11 7h1M0 8h1M11 8h1M1 9h1M10 9h1M1 10h1M10 10h1M2 11h2M8 11' +
'h2M4 12h4" />'#13#10'<path stroke="#dce7f2" d="M4 2h4M1 8h10" />'#13#10'<pat' +
'h stroke="#e7eff6" d="M2 3h8M1 7h10" />'#13#10'<path stroke="#f3f6fa" ' +
'd="M2 4h8M1 6h10" />'#13#10'<path stroke="#ffffff" d="M1 5h10" />'#13#10'<pa' +
'th stroke="#d2e1ef" d="M2 9h8" />'#13#10'<path stroke="#c9dbeb" d="M2 ' +
'10h8" />'#13#10'<path stroke="#bfd3e8" d="M4 11h4" />'#13#10'</svg>'#13#10
end
item
IconName = '07'
SVGText =
'<svg viewBox="0 -0.5 13 15">'#13#10'<path stroke="#798897" d="M4 1h4M2' +
' 2h2M8 2h2M1 3h1M10 3h1M1 4h1M10 4h1M0 5h1M11 5h1M0 6h1M11 6h1M0' +
' 7h1M11 7h1M0 8h1M11 8h1M1 9h1M10 9h1M1 10h1M10 10h1M2 11h2M8 11' +
'h2M4 12h4" />'#13#10'<path stroke="#dce7f2" d="M4 2h4M1 8h2M9 8h2" />'#13 +
#10'<path stroke="#e7eff6" d="M2 3h8M1 7h2M9 7h2" />'#13#10'<path stroke=' +
'"#f3f6fa" d="M2 4h2M8 4h2M1 6h2M9 6h2" />'#13#10'<path stroke="#363636' +
'" d="M4 4h4M3 5h6M3 6h6M3 7h6M3 8h6M4 9h4" />'#13#10'<path stroke="#ff' +
'ffff" d="M1 5h2M9 5h2" />'#13#10'<path stroke="#d2e1ef" d="M2 9h2M8 9h' +
'2" />'#13#10'<path stroke="#c9dbeb" d="M2 10h8" />'#13#10'<path stroke="#bfd' +
'3e8" d="M4 11h4" />'#13#10'</svg>'#13#10
end>
Left = 48
Top = 88
end
object icJavaControls1616: TSVGIconImageCollection
SVGIconItems = <
item
IconName = '00'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#6380bd" d="M1 0h13M' +
'0 1h1M14 1h1M0 2h1M14 2h1M0 3h1M14 3h1M0 4h1M14 4h1M0 5h1M14 5h1' +
'M0 6h1M14 6h1M0 7h1M14 7h1M0 8h1M14 8h1M1 9h1M13 9h1M2 10h1M12 1' +
'0h1M3 11h1M11 11h1M4 12h1M10 12h1M5 13h1M9 13h1M6 14h1M8 14h1M7 ' +
'15h1" />'#13#10'<path stroke="#b6cde4" d="M1 1h13M1 2h1M13 2h1M1 3h1M1' +
'3 3h1M1 4h1M13 4h1M1 5h1M13 5h1M1 6h1M13 6h1M1 7h1M13 7h1M1 8h1M' +
'13 8h1M2 9h1M12 9h1M3 10h1M11 10h1M4 11h1M10 11h1M5 12h1M9 12h1M' +
'6 13h1M8 13h1M7 14h1" />'#13#10'<path stroke="#d4e5f4" d="M2 2h11M4 10' +
'h7" />'#13#10'<path stroke="#e3edf8" d="M2 3h11M3 9h9" />'#13#10'<path strok' +
'e="#f0f6fb" d="M2 4h11M2 8h11" />'#13#10'<path stroke="#ffffff" d="M2 ' +
'5h11M2 6h11M2 7h11" />'#13#10'<path stroke="#c6dcf1" d="M5 11h5" />'#13#10'<' +
'path stroke="#c2d8ee" d="M6 12h3" />'#13#10'<path stroke="#bed4eb" d="' +
'M7 13h1" />'#13#10'</svg>'
end
item
IconName = '01'
SVGText =
'<svg viewBox="0 -0.5 16 16" >'#13#10'<path stroke="#6380bd" d="M1 0h8M' +
'0 1h1M9 1h1M0 2h1M10 2h1M0 3h1M11 3h1M0 4h1M12 4h1M0 5h1M13 5h1M' +
'0 6h1M14 6h1M0 7h1M15 7h1M0 8h1M14 8h1M0 9h1M13 9h1M0 10h1M12 10' +
'h1M0 11h1M11 11h1M0 12h1M10 12h1M0 13h1M9 13h1M1 14h8" />'#13#10'<path' +
' stroke="#b6cde4" d="M1 1h8M1 2h1M9 2h1M1 3h1M10 3h1M1 4h1M11 4h' +
'1M1 5h1M12 5h1M1 6h1M13 6h1M1 7h1M14 7h1M1 8h1M13 8h1M1 9h1M12 9' +
'h1M1 10h1M11 10h1M1 11h1M10 11h1M1 12h1M9 12h1M1 13h8" />'#13#10'<path' +
' stroke="#d4e5f4" d="M2 2h1M2 3h1M2 4h1M10 4h1M2 5h1M10 5h1M2 6h' +
'1M10 6h1M2 7h1M10 7h1M2 8h1M10 8h1M2 9h1M10 9h1M2 10h1M10 10h1M2' +
' 11h1M2 12h1" />'#13#10'<path stroke="#e3edf8" d="M3 2h1M3 3h1M9 3h1M3' +
' 4h1M9 4h1M3 5h1M9 5h1M3 6h1M9 6h1M3 7h1M9 7h1M3 8h1M9 8h1M3 9h1' +
'M9 9h1M3 10h1M9 10h1M3 11h1M9 11h1M3 12h1" />'#13#10'<path stroke="#f0' +
'f6fb" d="M4 2h1M8 2h1M4 3h1M8 3h1M4 4h1M8 4h1M4 5h1M8 5h1M4 6h1M' +
'8 6h1M4 7h1M8 7h1M4 8h1M8 8h1M4 9h1M8 9h1M4 10h1M8 10h1M4 11h1M8' +
' 11h1M4 12h1M8 12h1" />'#13#10'<path stroke="#ffffff" d="M5 2h3M5 3h3M' +
'5 4h3M5 5h3M5 6h3M5 7h3M5 8h3M5 9h3M5 10h3M5 11h3M5 12h3" />'#13#10'<p' +
'ath stroke="#c6dcf1" d="M11 5h1M11 6h1M11 7h1M11 8h1M11 9h1" />'#13 +
#10'<path stroke="#c2d8ee" d="M12 6h1M12 7h1M12 8h1" />'#13#10'<path stro' +
'ke="#bed4eb" d="M13 7h1" />'#13#10'</svg>'
end
item
IconName = '02'
SVGText =
'<svg viewBox="0 -0.5 16 16" >'#13#10'<path stroke="#e0e0e0" d="M0 0h4"' +
' />'#13#10'<path stroke="#e1e1e1" d="M4 0h12" />'#13#10'<path stroke="#e4e4e' +
'4" d="M0 1h4" />'#13#10'<path stroke="#e5e5e5" d="M4 1h5" />'#13#10'<path st' +
'roke="#e7e7e7" d="M9 1h1" />'#13#10'<path stroke="#ececec" d="M11 1h1M' +
'9 2h1M0 3h4M0 4h4M0 5h4M0 6h4M0 7h4M0 8h4M0 9h4M0 10h4M0 11h4M0 ' +
'12h4" />'#13#10'<path stroke="#efefef" d="M12 1h1M11 2h1M10 3h1M10 4h1' +
'M10 5h1M10 9h1M10 10h1M10 11h1M10 12h1M9 13h1" />'#13#10'<path stroke=' +
'"#f1f1f1" d="M13 1h1M12 2h1M5 3h1M7 3h1M12 3h1M8 4h1M12 4h1M9 5h' +
'1M12 5h1M12 6h1M12 7h1M12 8h1M9 9h1M12 9h1M8 10h1M12 10h1M5 11h1' +
'M7 11h1M12 11h1M12 12h1M11 13h1M10 14h1" />'#13#10'<path stroke="#f3f3' +
'f3" d="M14 1h1M14 2h1M6 3h1M14 3h1M5 4h1M7 4h1M14 4h1M5 5h1M8 5h' +
'1M14 5h1M5 6h1M14 6h1M5 7h1M14 7h1M5 8h1M14 8h1M5 9h1M8 9h1M14 9' +
'h1M5 10h1M7 10h1M14 10h1M6 11h1M14 11h1M14 12h1M14 13h1M13 14h2"' +
' />'#13#10'<path stroke="#eaeaea" d="M0 2h6" />'#13#10'<path stroke="#ebebeb' +
'" d="M6 2h3" />'#13#10'<path stroke="#ededed" d="M10 2h1M4 3h1M8 3h1M4' +
' 4h1M4 5h1M4 6h1M4 7h1M4 8h1M4 9h1M4 10h1M4 11h1M8 11h1M4 12h5" ' +
'/>'#13#10'<path stroke="#f2f2f2" d="M13 2h1M13 3h1M13 4h1M13 5h1M10 6h' +
'1M13 6h1M13 7h1M10 8h1M13 8h1M13 9h1M13 10h1M13 11h1M13 12h1M12 ' +
'13h2M11 14h2" />'#13#10'<path stroke="#eeeeee" d="M9 3h1M9 4h1M9 10h1M' +
'9 11h1M9 12h1M0 13h9" />'#13#10'<path stroke="#f0f0f0" d="M11 3h1M11 4' +
'h1M11 5h1M11 6h1M11 7h1M11 8h1M11 9h1M11 10h1M11 11h1M11 12h1M10' +
' 13h1M0 14h10" />'#13#10'<path stroke="#333333" d="M6 4h1" />'#13#10'<path s' +
'troke="#292929" d="M6 5h1M6 6h1" />'#13#10'<path stroke="#555555" d="M' +
'7 5h1" />'#13#10'<path stroke="#5f5f5f" d="M7 6h1" />'#13#10'<path stroke="#' +
'747474" d="M8 6h1" />'#13#10'<path stroke="#f4f4f4" d="M9 6h1M10 7h1M9' +
' 8h1" />'#13#10'<path stroke="#2c2c2c" d="M6 7h1" />'#13#10'<path stroke="#7' +
'87878" d="M7 7h1" />'#13#10'<path stroke="#a7a7a7" d="M8 7h1" />'#13#10'<pat' +
'h stroke="#aaaaaa" d="M9 7h1" />'#13#10'<path stroke="#3e3e3e" d="M6 8' +
'h1" />'#13#10'<path stroke="#a3a3a3" d="M7 8h1" />'#13#10'<path stroke="#cac' +
'aca" d="M8 8h1" />'#13#10'<path stroke="#656565" d="M6 9h1" />'#13#10'<path ' +
'stroke="#bdbdbd" d="M7 9h1" />'#13#10'<path stroke="#8a8a8a" d="M6 10h' +
'1" />'#13#10'</svg>'
end
item
IconName = '03'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#dddddd" d="M0 0h13"' +
' />'#13#10'<path stroke="#dcdcdc" d="M13 0h3" />'#13#10'<path stroke="#e1e1e' +
'1" d="M0 1h16" />'#13#10'<path stroke="#e6e6e6" d="M0 2h13" />'#13#10'<path ' +
'stroke="#e5e5e5" d="M13 2h3" />'#13#10'<path stroke="#e8e8e8" d="M0 3h' +
'4M5 3h2M10 3h6M0 4h4M5 4h1M10 4h6M0 5h4M10 5h6M0 6h4M10 6h6M0 7h' +
'4M10 7h6M0 8h4M10 8h6M0 9h4M10 9h6M0 10h4M5 10h1M10 10h6M0 11h4M' +
'5 11h2M10 11h6M0 12h4M5 12h11" />'#13#10'<path stroke="#e9e9e9" d="M4 ' +
'3h1M4 4h1M4 5h1M4 9h1M4 10h1M4 11h1M4 12h1M0 15h16" />'#13#10'<path st' +
'roke="#ededed" d="M7 3h1M9 3h1M6 4h1M5 5h1M4 6h1M4 8h1M5 9h1M6 1' +
'0h1M7 11h1M9 11h1M0 14h4M5 14h11" />'#13#10'<path stroke="#f0f0f0" d="' +
'M8 3h1M7 4h1M9 4h1M6 5h1M9 5h1M5 6h1M9 6h1M9 7h1M5 8h1M9 8h1M6 9' +
'h1M9 9h1M7 10h1M9 10h1M8 11h1" />'#13#10'<path stroke="#555555" d="M8 ' +
'4h1" />'#13#10'<path stroke="#262626" d="M7 5h1" />'#13#10'<path stroke="#76' +
'7676" d="M8 5h1" />'#13#10'<path stroke="#232323" d="M6 6h1" />'#13#10'<path' +
' stroke="#4a4a4a" d="M7 6h1" />'#13#10'<path stroke="#9b9b9b" d="M8 6h' +
'1" />'#13#10'<path stroke="#f1f1f1" d="M4 7h1" />'#13#10'<path stroke="#3030' +
'30" d="M5 7h1" />'#13#10'<path stroke="#373737" d="M6 7h1" />'#13#10'<path s' +
'troke="#787878" d="M7 7h1" />'#13#10'<path stroke="#acacac" d="M8 7h1"' +
' />'#13#10'<path stroke="#5b5b5b" d="M6 8h1" />'#13#10'<path stroke="#8a8a8a' +
'" d="M7 8h1" />'#13#10'<path stroke="#b5b5b5" d="M8 8h1" />'#13#10'<path str' +
'oke="#848484" d="M7 9h1" />'#13#10'<path stroke="#bdbdbd" d="M8 9h1" /' +
'>'#13#10'<path stroke="#b4b4b4" d="M8 10h1" />'#13#10'<path stroke="#ebebeb"' +
' d="M0 13h13" />'#13#10'<path stroke="#eaeaea" d="M13 13h3" />'#13#10'<path ' +
'stroke="#eeeeee" d="M4 14h1" />'#13#10'</svg>'
end
item
IconName = '04'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#e2e2e2" d="M0 0h1M0' +
' 1h1M0 2h1M0 3h1M0 4h1M0 5h1M0 6h1M0 7h1M0 8h1M0 9h1M0 10h1M0 11' +