-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_panel.tscn
4081 lines (3637 loc) · 188 KB
/
data_panel.tscn
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
[gd_scene load_steps=72 format=2]
[ext_resource path="res://RSRSUI/font/TBUDGothicB.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://RSRSUI/font/UDTypos512.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://RSRSUI/font/UDTypos515.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://RSRSUI/icon/tex_ui_lastparameter_icon_unchanged.png" type="Texture" id=4]
[ext_resource path="res://RSRSUI/frames/tex_ui_common_frame_simplicity_dialog.png" type="Texture" id=5]
[ext_resource path="res://RSRSUI/icon/tex_ui_lastparameter_icon_growthtrend_normal.png" type="Texture" id=6]
[ext_resource path="res://RSRSUI/icon/tex_ui_lastparameter_icon_growthtrend_strong.png" type="Texture" id=7]
[ext_resource path="res://RSRSUI/header/tex_ui_stylechange_window_subtittle.png" type="Texture" id=8]
[ext_resource path="res://RSRSUI/scrollbar/tex_ui_common_scrollbar.png" type="Texture" id=9]
[ext_resource path="res://RSRSUI/scrollbar/tex_ui_common_scrollbarhandle.png" type="Texture" id=10]
[ext_resource path="res://RSRSUI/frames/tex_ui_common_inputfield.png" type="Texture" id=11]
[ext_resource path="res://RSRSUI/icon/tex_ui_common_icon_lock_small_pict.png" type="Texture" id=12]
[ext_resource path="res://RSRSUI/buttons/tex_ui_common_button_plus.png" type="Texture" id=13]
[ext_resource path="res://RSRSUI/frames/tex_ui_ability_icon_mask.png" type="Texture" id=14]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_inn_font_gl.png" type="Texture" id=15]
[ext_resource path="res://RSRSUI/icon/jutsutekisei/tex_ui_jutsutekisei_icon_darkness.png" type="Texture" id=16]
[ext_resource path="res://RSRSUI/frames/tex_ui_skill_icon_frame.png" type="Texture" id=17]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_rai_font_gl.png" type="Texture" id=18]
[ext_resource path="res://RSRSUI/frames/tex_ui_ability_icon_frame.png" type="Texture" id=19]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_strike_font_gl.png" type="Texture" id=20]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_pierce_font_gl.png" type="Texture" id=21]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_you_font_gl.png" type="Texture" id=22]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_slash_font_gl.png" type="Texture" id=23]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_hot_font_gl.png" type="Texture" id=24]
[ext_resource path="res://RSRSUI/icon/attackattribute/tex_ui_attackattribute_icon_rei_font_gl.png" type="Texture" id=25]
[sub_resource type="DynamicFont" id=17]
outline_size = 2
outline_color = Color( 0.0235294, 0.0235294, 0.0235294, 1 )
use_mipmaps = true
use_filter = true
extra_spacing_space = -6
font_data = ExtResource( 1 )
[sub_resource type="StyleBoxFlat" id=24]
draw_center = false
border_width_left = 2
border_width_top = 2
border_width_right = 2
border_width_bottom = 2
border_color = Color( 0.478431, 0.411765, 0.294118, 1 )
corner_radius_top_left = 10
corner_radius_top_right = 10
corner_radius_bottom_right = 10
corner_radius_bottom_left = 10
[sub_resource type="StyleBoxTexture" id=21]
content_margin_left = 4.0
content_margin_right = 4.0
content_margin_top = 4.0
content_margin_bottom = 4.0
texture = ExtResource( 11 )
region_rect = Rect2( 0, 0, 32, 48 )
margin_left = 13.0505
margin_right = 13.0
margin_top = 13.0
margin_bottom = 13.1133
[sub_resource type="DynamicFont" id=6]
font_data = ExtResource( 2 )
[sub_resource type="StyleBoxTexture" id=50]
content_margin_left = 4.0
content_margin_right = 4.0
content_margin_top = 4.0
content_margin_bottom = 4.0
texture = ExtResource( 11 )
region_rect = Rect2( 0, 0, 32, 48 )
margin_left = 13.0505
margin_right = 13.0
margin_top = 13.0
margin_bottom = 13.1133
modulate_color = Color( 0.5, 0.5, 0.5, 1 )
[sub_resource type="StyleBoxTexture" id=22]
content_margin_top = 0.0
content_margin_bottom = 0.0
texture = ExtResource( 10 )
region_rect = Rect2( 0, 0, 8, 40 )
margin_left = 3.0
margin_right = 3.0
margin_top = 4.0
margin_bottom = 4.0
expand_margin_top = 1.0
expand_margin_bottom = 1.0
[sub_resource type="StyleBoxTexture" id=25]
content_margin_top = 0.0
content_margin_bottom = 0.0
texture = ExtResource( 10 )
region_rect = Rect2( 0, 0, 8, 40 )
margin_left = 3.0
margin_right = 3.0
margin_top = 4.0
margin_bottom = 4.0
expand_margin_top = 1.0
expand_margin_bottom = 1.0
modulate_color = Color( 0.788235, 0.678431, 0.682353, 1 )
[sub_resource type="StyleBoxTexture" id=23]
content_margin_top = 0.0
content_margin_bottom = 0.0
texture = ExtResource( 9 )
region_rect = Rect2( 0, 0, 8, 40 )
margin_left = 3.0
margin_right = 3.09175
margin_top = 4.26165
margin_bottom = 4.0
[sub_resource type="StyleBoxEmpty" id=26]
[sub_resource type="DynamicFont" id=18]
font_data = ExtResource( 2 )
[sub_resource type="Theme" id=19]
default_font = SubResource( 18 )
LineEdit/colors/font_color_selected = Color( 0.823529, 0.890196, 0.364706, 1 )
LineEdit/colors/selection_color = Color( 0.34902, 0.0784314, 0.0823529, 1 )
LineEdit/fonts/font = SubResource( 17 )
LineEdit/styles/focus = SubResource( 24 )
LineEdit/styles/normal = SubResource( 21 )
LineEdit/styles/read_only = null
SpinBox/icons/updown = null
TextEdit/colors/selection_color = Color( 0.34902, 0.0784314, 0.0823529, 1 )
TextEdit/fonts/font = SubResource( 6 )
TextEdit/styles/normal = SubResource( 21 )
TextEdit/styles/read_only = SubResource( 50 )
VScrollBar/styles/grabber = SubResource( 22 )
VScrollBar/styles/grabber_highlight = SubResource( 25 )
VScrollBar/styles/grabber_pressed = SubResource( 25 )
VScrollBar/styles/scroll = SubResource( 23 )
VScrollBar/styles/scroll_focus = SubResource( 26 )
[sub_resource type="StyleBoxTexture" id=2]
content_margin_left = 10.0
content_margin_right = 23.0
content_margin_top = 20.0
content_margin_bottom = 20.0
texture = ExtResource( 5 )
region_rect = Rect2( 0, 0, 78, 78 )
margin_left = 39.0
margin_right = 39.0
margin_top = 39.0
margin_bottom = 39.0
expand_margin_left = 83.0
[sub_resource type="StyleBoxEmpty" id=27]
content_margin_right = 7.0
[sub_resource type="StyleBoxTexture" id=3]
texture = ExtResource( 8 )
region_rect = Rect2( 0, 0, 96, 32 )
margin_left = 37.1217
margin_right = 43.1091
[sub_resource type="DynamicFont" id=4]
size = 20
font_data = ExtResource( 3 )
[sub_resource type="StyleBoxTexture" id=5]
[sub_resource type="StyleBoxEmpty" id=45]
[sub_resource type="StyleBoxEmpty" id=46]
[sub_resource type="StyleBoxEmpty" id=47]
[sub_resource type="StyleBoxEmpty" id=48]
[sub_resource type="GDScript" id=37]
script/source = "extends Button
func _gui_input(event):
if event is InputEventKey:
if event.scancode == KEY_ENTER and event.pressed:
get_child(0).readonly = false
get_child(0).grab_focus()
get_child(0).mouse_filter = MOUSE_FILTER_STOP
"
[sub_resource type="GDScript" id=35]
script/source = "extends TextEdit
#func _ready():
# for child in get_children():
# if child is Range:
# focus_mode = Control.FOCUS_NONE
func _gui_input(event):
if event is InputEventKey and not Input.is_key_pressed(KEY_SHIFT):
if event.scancode == KEY_ENTER and event.pressed:
readonly = true
get_parent().grab_focus()
mouse_filter = Control.MOUSE_FILTER_IGNORE
func _notification(what):
if what == NOTIFICATION_FOCUS_EXIT:
readonly = true
mouse_filter = Control.MOUSE_FILTER_IGNORE
# if event is InputEventMouseButton and readonly:
# if event.button_index == BUTTON_LEFT and not event.pressed:
# get_parent().grab_focus()
"
[sub_resource type="StyleBoxEmpty" id=41]
content_margin_left = 31.0
content_margin_right = 31.0
[sub_resource type="StyleBoxEmpty" id=42]
content_margin_left = 31.0
content_margin_right = 31.0
[sub_resource type="StyleBoxEmpty" id=43]
[sub_resource type="AtlasTexture" id=13]
[sub_resource type="StyleBoxEmpty" id=15]
[sub_resource type="StyleBoxFlat" id=16]
bg_color = Color( 0.258824, 0.156863, 0.156863, 1 )
border_width_left = 2
border_width_top = 2
border_width_right = 2
border_width_bottom = 2
border_color = Color( 0.54902, 0.509804, 0.0784314, 1 )
corner_radius_top_left = 6
corner_radius_top_right = 6
corner_radius_bottom_right = 6
corner_radius_bottom_left = 6
[sub_resource type="Theme" id=14]
PopupMenu/icons/checked = SubResource( 13 )
PopupMenu/icons/radio_checked = SubResource( 13 )
PopupMenu/icons/radio_unchecked = SubResource( 13 )
PopupMenu/icons/submenu = SubResource( 13 )
PopupMenu/icons/unchecked = SubResource( 13 )
PopupMenu/styles/hover = SubResource( 15 )
PopupMenu/styles/labeled_separator_left = SubResource( 15 )
PopupMenu/styles/labeled_separator_right = SubResource( 15 )
PopupMenu/styles/panel = SubResource( 16 )
PopupMenu/styles/panel_disabled = SubResource( 15 )
PopupMenu/styles/separator = SubResource( 15 )
[sub_resource type="AtlasTexture" id=7]
[sub_resource type="StyleBoxEmpty" id=8]
[sub_resource type="StyleBoxEmpty" id=9]
[sub_resource type="StyleBoxEmpty" id=10]
[sub_resource type="StyleBoxEmpty" id=11]
[sub_resource type="StyleBoxEmpty" id=12]
content_margin_right = 32.0
[sub_resource type="Image" id=57]
data = {
"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 136, 109, 28, 154, 134, 108, 193, 154, 136, 109, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 136, 109, 28, 154, 134, 108, 223, 154, 135, 109, 255, 154, 134, 108, 223, 158, 131, 105, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 137, 111, 39, 154, 134, 108, 223, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 153, 135, 109, 224, 158, 131, 105, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 137, 111, 39, 153, 135, 109, 219, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 153, 135, 109, 224, 158, 131, 105, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 134, 108, 174, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 153, 135, 109, 194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 136, 110, 30, 154, 134, 108, 225, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 134, 108, 225, 153, 136, 110, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 136, 110, 30, 154, 134, 108, 223, 154, 135, 109, 255, 154, 135, 109, 255, 154, 135, 109, 255, 154, 134, 108, 225, 153, 136, 110, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 136, 109, 28, 154, 134, 108, 223, 154, 135, 109, 255, 154, 134, 108, 223, 153, 136, 110, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 136, 109, 28, 154, 134, 108, 193, 154, 136, 109, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ),
"format": "RGBA8",
"height": 16,
"mipmaps": false,
"width": 16
}
[sub_resource type="ImageTexture" id=33]
image = SubResource( 57 )
size = Vector2( 24, 24 )
[sub_resource type="GDScript" id=20]
script/source = "extends SpinBox
func _ready():
connect(\"value_changed\", self, \"new_value\")
func new_value(val):
if val > 0.0:
prefix = \"+\"
get_line_edit().add_color_override(\"font_color\", Color(\"71c7f2\"))
elif val < 0.0:
print(val)
prefix = \"\"
get_line_edit().add_color_override(\"font_color\", Color(\"e86968\"))
else:
prefix = \"\"
get_line_edit().add_color_override(\"font_color\", Color.white)
"
[sub_resource type="StyleBoxEmpty" id=52]
[sub_resource type="StyleBoxEmpty" id=53]
[sub_resource type="StyleBoxEmpty" id=54]
[sub_resource type="StyleBoxFlat" id=56]
bg_color = Color( 0.133333, 0.101961, 0.054902, 1 )
border_width_left = 3
border_width_top = 1
border_width_right = 3
border_width_bottom = 5
border_color = Color( 0.8, 0.8, 0.8, 0 )
corner_radius_top_left = 10
corner_radius_top_right = 10
corner_radius_bottom_right = 10
corner_radius_bottom_left = 10
corner_detail = 3
[sub_resource type="Image" id=58]
data = {
"data": PoolByteArray( 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 84, 59, 2, 0, 84, 59, 2, 0, 81, 56, 0, 49, 81, 56, 0, 109, 85, 51, 0, 168, 85, 51, 0, 208, 85, 51, 0, 238, 85, 51, 0, 248, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 12, 84, 59, 2, 109, 84, 59, 2, 214, 117, 92, 34, 255, 159, 134, 76, 255, 198, 198, 130, 255, 221, 221, 153, 255, 244, 244, 176, 255, 244, 244, 176, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 255, 255, 187, 255, 88, 54, 3, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 79, 62, 0, 0, 79, 62, 0, 0, 79, 62, 0, 130, 79, 62, 0, 255, 179, 179, 128, 255, 234, 234, 183, 255, 255, 255, 212, 255, 255, 255, 212, 255, 255, 250, 199, 255, 255, 250, 199, 255, 255, 250, 199, 255, 255, 250, 199, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 249, 249, 198, 255, 249, 249, 198, 255, 249, 249, 198, 255, 91, 57, 6, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 79, 62, 0, 100, 79, 62, 0, 255, 125, 108, 40, 255, 255, 255, 227, 255, 255, 255, 212, 255, 255, 255, 212, 255, 234, 234, 183, 255, 179, 179, 128, 255, 163, 146, 95, 255, 107, 90, 39, 255, 107, 90, 39, 255, 107, 90, 39, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 91, 57, 6, 255, 249, 249, 198, 255, 255, 255, 210, 255, 91, 57, 6, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 141, 125, 108, 40, 255, 215, 215, 181, 255, 255, 255, 227, 255, 255, 255, 227, 255, 144, 195, 144, 255, 89, 140, 89, 255, 60, 111, 60, 255, 60, 111, 60, 255, 47, 183, 132, 255, 47, 183, 132, 255, 76, 212, 161, 255, 76, 212, 161, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 98, 234, 183, 255, 93, 229, 178, 255, 93, 229, 178, 255, 93, 229, 178, 255, 93, 229, 178, 255, 76, 229, 195, 255, 76, 229, 195, 255, 76, 229, 195, 255, 76, 229, 195, 255, 91, 57, 6, 255, 255, 255, 210, 255, 255, 255, 210, 255, 91, 57, 6, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 141, 133, 116, 65, 255, 255, 255, 227, 255, 255, 255, 227, 255, 215, 215, 181, 255, 125, 108, 40, 255, 60, 111, 60, 255, 89, 140, 89, 255, 144, 195, 144, 255, 115, 166, 115, 255, 47, 183, 132, 255, 21, 157, 106, 255, 21, 157, 106, 255, 0, 128, 77, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 4, 140, 89, 255, 9, 145, 94, 255, 9, 145, 94, 255, 9, 145, 94, 255, 9, 145, 94, 255, 0, 145, 111, 255, 0, 145, 111, 255, 21, 174, 140, 255, 47, 200, 166, 255, 91, 57, 6, 255, 255, 255, 210, 255, 255, 255, 210, 255, 91, 57, 6, 255, 85, 56, 0, 0, 86, 57, 0, 0, 87, 57, 0, 0, 88, 58, 0, 0, 64, 47, 0, 0, 64, 47, 0, 142, 137, 120, 69, 255, 255, 255, 208, 255, 200, 217, 166, 255, 200, 217, 166, 255, 72, 89, 38, 255, 136, 153, 102, 255, 45, 218, 161, 255, 25, 198, 141, 255, 0, 160, 103, 255, 0, 160, 103, 255, 0, 173, 132, 255, 0, 173, 132, 255, 0, 173, 132, 255, 0, 173, 132, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 177, 136, 255, 0, 188, 137, 255, 0, 188, 137, 255, 0, 170, 119, 255, 0, 204, 153, 255, 88, 54, 3, 255, 255, 255, 224, 255, 255, 255, 224, 255, 88, 54, 3, 255, 85, 56, 0, 0, 86, 57, 0, 0, 87, 57, 0, 0, 88, 58, 0, 0, 64, 47, 0, 142, 137, 120, 69, 255, 255, 255, 208, 255, 255, 255, 208, 255, 200, 217, 166, 255, 72, 89, 38, 255, 17, 187, 119, 255, 17, 187, 119, 255, 0, 160, 103, 255, 0, 160, 103, 255, 7, 180, 123, 255, 45, 218, 161, 255, 57, 239, 198, 255, 57, 239, 198, 255, 57, 239, 198, 255, 57, 239, 198, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 45, 235, 194, 255, 16, 220, 169, 255, 0, 204, 153, 255, 0, 170, 119, 255, 0, 204, 153, 255, 88, 54, 3, 255, 255, 255, 224, 255, 255, 255, 224, 255, 88, 54, 3, 255, 85, 56, 0, 0, 86, 57, 0, 0, 87, 57, 0, 0, 88, 58, 0, 97, 107, 107, 73, 255, 255, 255, 233, 255, 255, 255, 233, 255, 163, 163, 129, 255, 72, 89, 38, 255, 17, 187, 119, 255, 17, 187, 119, 255, 17, 187, 119, 255, 0, 193, 119, 255, 9, 231, 157, 255, 9, 231, 157, 255, 9, 231, 157, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 2, 241, 158, 255, 8, 239, 164, 255, 2, 233, 158, 255, 0, 229, 154, 255, 0, 223, 148, 255, 0, 204, 153, 255, 0, 188, 137, 255, 0, 170, 119, 255, 0, 204, 153, 255, 88, 54, 3, 255, 255, 255, 224, 255, 255, 255, 224, 255, 88, 54, 3, 255, 85, 56, 0, 0, 86, 57, 0, 0, 87, 57, 0, 7, 88, 58, 0, 255, 211, 211, 177, 255, 255, 255, 233, 255, 163, 163, 129, 255, 107, 107, 73, 255, 17, 187, 119, 255, 17, 187, 119, 255, 17, 187, 119, 255, 17, 187, 119, 255, 9, 231, 157, 255, 9, 231, 157, 255, 9, 231, 157, 255, 9, 231, 157, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 0, 237, 154, 255, 2, 233, 158, 255, 2, 233, 158, 255, 0, 229, 154, 255, 0, 223, 148, 255, 0, 188, 137, 255, 0, 188, 137, 255, 0, 170, 119, 255, 0, 188, 137, 255, 88, 54, 3, 255, 255, 255, 224, 255, 255, 255, 224, 255, 88, 54, 3, 255, 85, 51, 0, 0, 85, 51, 0, 0, 85, 51, 0, 125, 157, 140, 89, 255, 255, 255, 225, 255, 186, 203, 152, 255, 0, 73, 22, 255, 41, 177, 126, 255, 0, 176, 108, 255, 0, 125, 74, 255, 0, 176, 108, 255, 11, 198, 130, 255, 0, 208, 125, 255, 0, 213, 128, 255, 0, 219, 131, 255, 0, 224, 134, 255, 0, 232, 139, 255, 0, 232, 139, 255, 0, 233, 139, 255, 0, 233, 139, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 233, 142, 255, 0, 233, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 231, 142, 255, 0, 231, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 231, 142, 255, 0, 231, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 232, 142, 255, 0, 231, 142, 255, 0, 231, 142, 255, 0, 232, 142, 255, 0, 224, 137, 255, 0, 217, 132, 255, 0, 209, 127, 255, 0, 187, 136, 255, 0, 164, 113, 255, 0, 136, 85, 255, 0, 187, 136, 255, 88, 54, 3, 255, 255, 255, 207, 255, 255, 255, 207, 255, 88, 54, 3, 255, 85, 51, 0, 0, 85, 51, 0, 8, 85, 51, 0, 255, 255, 255, 217, 255, 255, 255, 225, 255, 120, 137, 86, 255, 41, 177, 126, 255, 41, 177, 126, 255, 0, 125, 74, 255, 11, 147, 96, 255, 0, 176, 108, 255, 0, 176, 108, 255, 0, 188, 116, 255, 0, 194, 119, 255, 0, 199, 122, 255, 0, 205, 125, 255, 0, 208, 128, 255, 0, 209, 128, 255, 0, 209, 128, 255, 0, 210, 128, 255, 0, 208, 130, 255, 0, 209, 130, 255, 0, 209, 130, 255, 0, 210, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 209, 130, 255, 0, 209, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 209, 130, 255, 0, 209, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 209, 130, 255, 0, 209, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 208, 130, 255, 0, 201, 125, 255, 0, 193, 120, 255, 0, 186, 115, 255, 0, 164, 113, 255, 0, 164, 113, 255, 0, 136, 85, 255, 0, 187, 136, 255, 88, 54, 3, 255, 255, 255, 207, 255, 255, 255, 207, 255, 88, 54, 3, 255, 85, 51, 0, 0, 85, 51, 0, 125, 157, 140, 89, 255, 255, 255, 217, 255, 186, 203, 152, 255, 47, 64, 13, 255, 41, 177, 126, 255, 0, 129, 78, 255, 0, 125, 74, 255, 11, 147, 96, 255, 11, 147, 96, 255, 0, 176, 108, 255, 0, 169, 106, 255, 0, 174, 109, 255, 0, 180, 112, 255, 0, 185, 115, 255, 0, 185, 116, 255, 0, 185, 116, 255, 0, 186, 116, 255, 0, 186, 116, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 186, 117, 255, 0, 186, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 186, 117, 255, 0, 186, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 186, 117, 255, 0, 186, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 186, 117, 255, 0, 186, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 185, 117, 255, 0, 177, 112, 255, 0, 170, 107, 255, 0, 162, 102, 255, 0, 136, 85, 255, 0, 136, 85, 255, 0, 136, 85, 255, 0, 187, 136, 255, 88, 54, 3, 255, 255, 255, 207, 255, 255, 255, 207, 255, 88, 54, 3, 255, 85, 51, 0, 0, 85, 51, 0, 216, 221, 204, 153, 255, 255, 255, 217, 255, 120, 137, 86, 255, 120, 137, 86, 255, 41, 177, 126, 255, 0, 129, 78, 255, 0, 125, 74, 255, 0, 125, 74, 255, 11, 147, 96, 255, 11, 147, 96, 255, 0, 149, 97, 255, 0, 155, 100, 255, 0, 160, 103, 255, 0, 166, 106, 255, 0, 161, 105, 255, 0, 162, 105, 255, 0, 162, 105, 255, 0, 163, 105, 255, 0, 161, 105, 255, 0, 162, 105, 255, 0, 162, 105, 255, 0, 163, 105, 255, 0, 161, 105, 255, 0, 161, 105, 255, 0, 161, 105, 255, 0, 161, 105, 255, 0, 163, 105, 255, 0, 163, 105, 255, 0, 162, 105, 255, 0, 162, 105, 255, 0, 163, 105, 255, 0, 163, 105, 255, 0, 162, 105, 255, 0, 162, 105, 255, 0, 161, 105, 255, 0, 161, 105, 255, 0, 161, 105, 255, 0, 161, 105, 255, 0, 163, 105, 255, 0, 163, 105, 255, 0, 162, 105, 255, 0, 162, 105, 255, 0, 161, 105, 255, 0, 154, 100, 255, 0, 146, 95, 255, 0, 139, 90, 255, 0, 136, 85, 255, 0, 136, 85, 255, 0, 136, 85, 255, 0, 187, 136, 255, 88, 54, 3, 255, 252, 252, 201, 255, 252, 252, 201, 255, 88, 54, 3, 255, 86, 69, 1, 47, 86, 69, 1, 255, 255, 255, 199, 255, 228, 228, 143, 255, 33, 101, 67, 255, 16, 169, 135, 255, 0, 137, 103, 255, 33, 101, 67, 255, 0, 99, 67, 255, 0, 104, 72, 255, 0, 109, 77, 255, 0, 114, 83, 255, 0, 125, 89, 255, 0, 125, 89, 255, 0, 125, 89, 255, 0, 125, 89, 255, 1, 129, 97, 255, 4, 128, 94, 255, 7, 127, 91, 255, 10, 126, 88, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 5, 124, 90, 255, 16, 118, 101, 255, 16, 118, 101, 255, 16, 118, 101, 255, 16, 118, 101, 255, 0, 126, 89, 255, 0, 126, 89, 255, 0, 126, 89, 255, 0, 126, 89, 255, 0, 125, 89, 255, 0, 121, 85, 255, 0, 117, 81, 255, 0, 113, 76, 255, 9, 94, 77, 255, 9, 94, 77, 255, 0, 129, 95, 255, 24, 177, 143, 255, 88, 54, 3, 255, 255, 255, 173, 255, 255, 255, 173, 255, 88, 54, 3, 255, 86, 69, 1, 107, 152, 135, 67, 255, 255, 255, 199, 255, 180, 180, 95, 255, 33, 101, 67, 255, 16, 169, 135, 255, 0, 137, 103, 255, 1, 69, 35, 255, 0, 83, 61, 255, 0, 88, 66, 255, 0, 93, 71, 255, 0, 98, 76, 255, 0, 105, 81, 255, 0, 105, 81, 255, 0, 105, 81, 255, 0, 105, 81, 255, 2, 107, 85, 255, 5, 106, 82, 255, 8, 105, 79, 255, 11, 104, 76, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 68, 255, 0, 102, 85, 255, 0, 102, 85, 255, 0, 102, 85, 255, 0, 102, 85, 255, 0, 106, 81, 255, 0, 106, 81, 255, 0, 106, 81, 255, 0, 106, 81, 255, 0, 106, 81, 255, 0, 102, 77, 255, 0, 98, 73, 255, 0, 94, 68, 255, 0, 76, 59, 255, 9, 94, 77, 255, 0, 129, 95, 255, 24, 177, 143, 255, 88, 54, 3, 255, 255, 255, 173, 255, 255, 255, 173, 255, 88, 54, 3, 255, 86, 69, 1, 167, 225, 208, 140, 255, 255, 255, 199, 255, 124, 124, 39, 255, 0, 137, 103, 255, 16, 169, 135, 255, 33, 101, 67, 255, 1, 69, 35, 255, 0, 68, 54, 255, 0, 73, 60, 255, 0, 78, 65, 255, 0, 83, 70, 255, 0, 84, 73, 255, 0, 84, 73, 255, 0, 84, 73, 255, 0, 84, 73, 255, 3, 84, 72, 255, 6, 83, 69, 255, 9, 82, 66, 255, 12, 81, 63, 255, 59, 59, 25, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 51, 51, 17, 255, 0, 86, 69, 255, 0, 86, 69, 255, 0, 86, 69, 255, 0, 85, 73, 255, 0, 85, 73, 255, 0, 85, 73, 255, 0, 85, 73, 255, 0, 86, 73, 255, 0, 82, 69, 255, 0, 78, 65, 255, 0, 74, 60, 255, 0, 56, 39, 255, 0, 76, 59, 255, 0, 129, 95, 255, 24, 177, 143, 255, 88, 54, 3, 255, 252, 252, 167, 255, 252, 252, 167, 255, 88, 54, 3, 255, 86, 69, 1, 212, 225, 208, 140, 255, 255, 255, 199, 255, 124, 124, 39, 255, 16, 169, 135, 255, 0, 137, 103, 255, 1, 69, 35, 255, 1, 69, 35, 255, 0, 52, 48, 255, 0, 57, 53, 255, 0, 62, 59, 255, 0, 67, 64, 255, 0, 64, 65, 255, 0, 64, 65, 255, 0, 64, 65, 255, 0, 64, 65, 255, 4, 62, 60, 255, 7, 61, 57, 255, 10, 60, 54, 255, 13, 59, 51, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 51, 51, 17, 255, 51, 51, 17, 255, 51, 51, 17, 255, 0, 86, 69, 255, 0, 64, 65, 255, 0, 64, 65, 255, 0, 64, 65, 255, 0, 64, 65, 255, 0, 66, 65, 255, 0, 62, 61, 255, 0, 58, 57, 255, 0, 54, 52, 255, 0, 56, 39, 255, 0, 76, 59, 255, 0, 129, 95, 255, 24, 177, 143, 255, 88, 54, 3, 255, 252, 252, 167, 255, 252, 252, 167, 255, 88, 54, 3, 255, 85, 68, 0, 236, 255, 237, 135, 255, 255, 237, 135, 255, 85, 68, 0, 255, 24, 177, 143, 255, 0, 129, 95, 255, 8, 59, 59, 255, 0, 43, 43, 255, 0, 51, 51, 255, 0, 51, 51, 255, 0, 57, 57, 255, 0, 57, 57, 255, 2, 59, 59, 255, 2, 59, 59, 255, 2, 59, 59, 255, 2, 59, 59, 255, 0, 60, 60, 255, 0, 60, 60, 255, 49, 49, 15, 255, 49, 49, 15, 255, 90, 73, 22, 255, 194, 177, 126, 255, 208, 191, 123, 255, 208, 191, 123, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 203, 186, 152, 255, 194, 177, 126, 255, 90, 73, 22, 255, 49, 49, 15, 255, 49, 49, 15, 255, 2, 59, 59, 255, 2, 59, 59, 255, 2, 59, 59, 255, 2, 59, 59, 255, 0, 57, 57, 255, 0, 57, 57, 255, 0, 51, 51, 255, 0, 51, 51, 255, 0, 43, 43, 255, 8, 59, 59, 255, 0, 129, 112, 255, 24, 177, 160, 255, 85, 51, 0, 255, 255, 244, 142, 255, 255, 244, 142, 255, 85, 51, 0, 255, 85, 68, 0, 249, 255, 221, 119, 255, 255, 221, 119, 255, 85, 68, 0, 255, 24, 177, 143, 255, 0, 129, 95, 255, 2, 53, 53, 255, 0, 43, 43, 255, 0, 51, 51, 255, 0, 51, 51, 255, 0, 57, 57, 255, 0, 57, 57, 255, 0, 55, 55, 255, 0, 55, 55, 255, 0, 55, 55, 255, 0, 55, 55, 255, 0, 60, 60, 255, 0, 60, 60, 255, 49, 49, 15, 255, 49, 49, 15, 255, 194, 177, 126, 255, 250, 233, 182, 255, 255, 246, 178, 255, 255, 246, 178, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 255, 254, 152, 255, 250, 233, 182, 255, 194, 177, 126, 255, 49, 49, 15, 255, 49, 49, 15, 255, 0, 55, 55, 255, 0, 55, 55, 255, 0, 55, 55, 255, 0, 55, 55, 255, 0, 57, 57, 255, 0, 57, 57, 255, 0, 51, 51, 255, 0, 51, 51, 255, 0, 43, 43, 255, 2, 53, 53, 255, 0, 129, 112, 255, 24, 177, 160, 255, 85, 51, 0, 255, 255, 221, 119, 255, 255, 221, 119, 255, 85, 51, 0, 255, 85, 68, 0, 249, 239, 205, 103, 255, 255, 221, 119, 255, 85, 68, 0, 255, 24, 177, 143, 255, 0, 129, 95, 255, 2, 53, 53, 255, 0, 43, 43, 255, 0, 51, 51, 255, 0, 51, 51, 255, 0, 57, 57, 255, 0, 57, 57, 255, 0, 58, 58, 255, 0, 58, 58, 255, 0, 58, 58, 255, 0, 58, 58, 255, 0, 60, 60, 255, 0, 60, 60, 255, 49, 49, 15, 255, 49, 49, 15, 255, 194, 177, 126, 255, 250, 233, 182, 255, 234, 217, 149, 255, 234, 217, 149, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 239, 222, 120, 255, 250, 233, 182, 255, 194, 177, 126, 255, 49, 49, 15, 255, 49, 49, 15, 255, 0, 58, 58, 255, 0, 58, 58, 255, 0, 58, 58, 255, 0, 58, 58, 255, 0, 57, 57, 255, 0, 57, 57, 255, 0, 51, 51, 255, 0, 51, 51, 255, 0, 43, 43, 255, 2, 53, 53, 255, 0, 129, 112, 255, 24, 177, 160, 255, 85, 51, 0, 255, 255, 221, 119, 255, 255, 221, 119, 255, 85, 51, 0, 255, 85, 68, 0, 236, 239, 205, 103, 255, 239, 205, 103, 255, 85, 68, 0, 255, 24, 177, 143, 255, 0, 129, 95, 255, 8, 59, 59, 255, 0, 49, 49, 255, 0, 57, 57, 255, 0, 68, 68, 255, 0, 68, 68, 255, 0, 68, 68, 255, 2, 68, 68, 255, 2, 68, 68, 255, 2, 68, 68, 255, 2, 68, 68, 255, 2, 70, 70, 255, 2, 70, 70, 255, 49, 49, 15, 255, 49, 49, 15, 255, 90, 73, 22, 255, 146, 129, 78, 255, 179, 162, 94, 255, 179, 162, 94, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 171, 154, 120, 255, 146, 129, 78, 255, 90, 73, 22, 255, 49, 49, 15, 255, 53, 53, 19, 255, 2, 68, 68, 255, 2, 68, 68, 255, 2, 68, 68, 255, 2, 68, 68, 255, 0, 68, 68, 255, 0, 68, 68, 255, 0, 68, 68, 255, 0, 57, 57, 255, 2, 53, 53, 255, 8, 59, 59, 255, 0, 129, 112, 255, 24, 177, 160, 255, 85, 51, 0, 255, 232, 198, 96, 255, 232, 198, 96, 255, 85, 51, 0, 255, 96, 55, 0, 213, 216, 175, 101, 255, 216, 175, 101, 255, 138, 97, 23, 255, 0, 159, 125, 255, 0, 159, 125, 255, 6, 91, 57, 255, 6, 91, 57, 255, 0, 69, 68, 255, 0, 74, 73, 255, 0, 79, 78, 255, 0, 84, 83, 255, 0, 80, 83, 255, 0, 81, 83, 255, 0, 81, 83, 255, 0, 82, 83, 255, 6, 78, 79, 255, 8, 75, 74, 255, 10, 73, 69, 255, 12, 70, 64, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 49, 49, 15, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 51, 51, 17, 255, 51, 51, 17, 255, 51, 51, 17, 255, 0, 96, 79, 255, 0, 81, 83, 255, 0, 81, 83, 255, 0, 81, 83, 255, 0, 81, 83, 255, 0, 82, 83, 255, 0, 78, 78, 255, 0, 73, 73, 255, 0, 69, 68, 255, 0, 73, 39, 255, 0, 73, 39, 255, 0, 128, 94, 255, 13, 183, 149, 255, 85, 51, 0, 255, 227, 176, 91, 255, 227, 176, 91, 255, 85, 51, 0, 255, 96, 55, 0, 168, 174, 133, 59, 255, 216, 175, 101, 255, 138, 97, 23, 255, 0, 159, 125, 255, 0, 159, 125, 255, 28, 113, 79, 255, 6, 91, 57, 255, 0, 85, 71, 255, 0, 90, 76, 255, 0, 96, 81, 255, 0, 101, 86, 255, 0, 101, 89, 255, 0, 101, 89, 255, 0, 102, 89, 255, 0, 102, 89, 255, 4, 102, 89, 255, 6, 99, 84, 255, 8, 97, 79, 255, 10, 94, 74, 255, 59, 59, 25, 255, 53, 53, 19, 255, 53, 53, 19, 255, 53, 53, 19, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 64, 47, 13, 255, 51, 51, 17, 255, 0, 96, 79, 255, 0, 96, 79, 255, 0, 96, 79, 255, 0, 102, 89, 255, 0, 102, 89, 255, 0, 102, 89, 255, 0, 102, 89, 255, 0, 102, 89, 255, 0, 97, 84, 255, 0, 93, 79, 255, 0, 89, 74, 255, 0, 73, 39, 255, 0, 93, 59, 255, 0, 128, 94, 255, 13, 183, 149, 255, 85, 51, 0, 255, 221, 170, 85, 255, 221, 170, 85, 255, 85, 51, 0, 255, 88, 47, 0, 108, 166, 125, 59, 255, 208, 167, 101, 255, 166, 125, 59, 255, 28, 113, 79, 255, 11, 181, 147, 255, 0, 159, 125, 255, 6, 91, 57, 255, 0, 102, 74, 255, 0, 107, 79, 255, 0, 112, 84, 255, 0, 117, 89, 255, 0, 121, 95, 255, 0, 121, 95, 255, 0, 122, 95, 255, 0, 122, 95, 255, 2, 125, 99, 255, 4, 123, 94, 255, 6, 120, 89, 255, 8, 118, 84, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 85, 255, 0, 119, 102, 255, 0, 119, 102, 255, 0, 119, 102, 255, 0, 119, 102, 255, 0, 122, 95, 255, 0, 122, 95, 255, 0, 122, 95, 255, 0, 122, 95, 255, 0, 121, 95, 255, 0, 117, 90, 255, 0, 113, 85, 255, 0, 109, 80, 255, 0, 93, 59, 255, 9, 111, 77, 255, 0, 157, 123, 255, 13, 183, 149, 255, 85, 51, 0, 255, 215, 164, 79, 255, 215, 164, 79, 255, 85, 51, 0, 255, 88, 47, 0, 48, 130, 89, 23, 255, 208, 167, 101, 255, 208, 167, 101, 255, 28, 113, 79, 255, 11, 181, 147, 255, 0, 159, 125, 255, 28, 113, 79, 255, 0, 118, 77, 255, 0, 123, 82, 255, 0, 129, 87, 255, 0, 134, 92, 255, 0, 141, 101, 255, 0, 142, 101, 255, 0, 142, 101, 255, 0, 143, 101, 255, 0, 149, 109, 255, 2, 147, 104, 255, 4, 144, 99, 255, 6, 142, 94, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 5, 141, 107, 255, 0, 119, 102, 255, 0, 119, 102, 255, 0, 119, 102, 255, 0, 119, 102, 255, 0, 143, 101, 255, 0, 143, 101, 255, 0, 143, 101, 255, 0, 143, 101, 255, 0, 141, 101, 255, 0, 137, 96, 255, 0, 133, 91, 255, 0, 128, 86, 255, 9, 111, 77, 255, 9, 111, 77, 255, 0, 157, 123, 255, 13, 183, 149, 255, 85, 51, 0, 255, 215, 164, 79, 255, 215, 164, 79, 255, 85, 51, 0, 255, 85, 51, 0, 0, 85, 51, 0, 216, 187, 153, 68, 255, 210, 176, 91, 255, 112, 78, 10, 255, 17, 187, 136, 255, 17, 187, 136, 255, 17, 187, 136, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 173, 91, 255, 0, 173, 91, 255, 0, 179, 97, 255, 0, 179, 97, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 94, 255, 0, 184, 99, 255, 3, 173, 88, 255, 3, 173, 88, 255, 0, 167, 82, 255, 0, 151, 66, 255, 0, 151, 66, 255, 0, 170, 119, 255, 17, 204, 153, 255, 88, 54, 3, 255, 218, 167, 82, 255, 218, 167, 82, 255, 88, 54, 3, 255, 85, 51, 0, 0, 85, 51, 0, 125, 164, 130, 45, 255, 210, 176, 91, 255, 194, 160, 92, 255, 112, 78, 10, 255, 17, 187, 136, 255, 17, 187, 136, 255, 0, 171, 103, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 171, 103, 255, 0, 179, 97, 255, 2, 183, 101, 255, 8, 189, 107, 255, 8, 189, 107, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 3, 190, 105, 255, 3, 190, 105, 255, 0, 184, 99, 255, 3, 173, 88, 255, 8, 161, 76, 255, 8, 161, 76, 255, 0, 182, 131, 255, 17, 204, 153, 255, 88, 54, 3, 255, 218, 167, 82, 255, 218, 167, 82, 255, 88, 54, 3, 255, 85, 51, 0, 0, 85, 51, 0, 8, 85, 51, 0, 255, 210, 176, 91, 255, 194, 160, 92, 255, 153, 119, 51, 255, 17, 187, 136, 255, 17, 187, 136, 255, 0, 187, 119, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 5, 178, 95, 255, 5, 178, 95, 255, 5, 178, 95, 255, 5, 178, 95, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 5, 194, 104, 255, 3, 190, 105, 255, 3, 190, 105, 255, 0, 184, 99, 255, 3, 173, 88, 255, 8, 161, 76, 255, 8, 161, 76, 255, 0, 182, 131, 255, 17, 204, 153, 255, 88, 54, 3, 255, 224, 173, 88, 255, 224, 173, 88, 255, 88, 54, 3, 255, 85, 51, 0, 0, 85, 51, 0, 0, 85, 51, 0, 125, 164, 130, 45, 255, 194, 160, 92, 255, 194, 160, 92, 255, 112, 78, 10, 255, 17, 187, 136, 255, 16, 203, 135, 255, 0, 171, 103, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 156, 73, 255, 0, 168, 85, 255, 0, 168, 85, 255, 0, 168, 85, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 0, 172, 82, 255, 3, 173, 88, 255, 3, 173, 88, 255, 3, 173, 88, 255, 0, 167, 82, 255, 2, 155, 70, 255, 2, 155, 70, 255, 0, 170, 119, 255, 17, 204, 153, 255, 88, 54, 3, 255, 224, 173, 88, 255, 224, 173, 88, 255, 88, 54, 3, 255, 85, 58, 0, 0, 85, 58, 0, 0, 85, 59, 0, 8, 85, 59, 0, 255, 199, 174, 100, 255, 199, 174, 100, 255, 163, 138, 64, 255, 121, 96, 22, 255, 66, 219, 168, 255, 2, 155, 104, 255, 2, 155, 104, 255, 2, 155, 104, 255, 0, 131, 63, 255, 0, 131, 63, 255, 5, 141, 73, 255, 5, 141, 73, 255, 13, 145, 79, 255, 13, 145, 79, 255, 13, 145, 79, 255, 13, 145, 79, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 0, 153, 85, 255, 17, 136, 85, 255, 17, 136, 85, 255, 0, 161, 110, 255, 29, 199, 148, 255, 85, 51, 0, 255, 222, 188, 120, 255, 222, 188, 120, 255, 85, 51, 0, 255, 85, 57, 0, 0, 85, 58, 0, 0, 85, 58, 0, 0, 85, 59, 0, 98, 121, 96, 22, 255, 241, 216, 142, 255, 241, 216, 142, 255, 163, 138, 64, 255, 121, 104, 53, 255, 66, 219, 168, 255, 2, 155, 104, 255, 2, 155, 104, 255, 5, 141, 73, 255, 0, 131, 63, 255, 0, 119, 51, 255, 0, 119, 51, 255, 0, 119, 53, 255, 0, 119, 53, 255, 0, 119, 53, 255, 0, 119, 53, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 114, 63, 255, 5, 124, 73, 255, 0, 161, 110, 255, 29, 199, 148, 255, 85, 51, 0, 255, 238, 204, 136, 255, 238, 204, 136, 255, 85, 51, 0, 255, 85, 57, 0, 0, 85, 57, 0, 0, 85, 58, 0, 0, 85, 58, 0, 0, 85, 52, 0, 142, 141, 108, 42, 255, 245, 212, 146, 255, 245, 212, 146, 255, 185, 168, 117, 255, 121, 104, 53, 255, 66, 219, 168, 255, 66, 219, 168, 255, 18, 171, 137, 255, 0, 135, 101, 255, 0, 135, 101, 255, 0, 93, 59, 255, 0, 98, 65, 255, 0, 98, 65, 255, 0, 98, 65, 255, 0, 98, 65, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 103, 52, 255, 0, 102, 51, 255, 0, 102, 51, 255, 0, 141, 90, 255, 29, 199, 148, 255, 85, 51, 0, 255, 238, 204, 136, 255, 238, 204, 136, 255, 85, 51, 0, 255, 85, 56, 0, 0, 85, 57, 0, 0, 85, 57, 0, 0, 85, 58, 0, 0, 85, 52, 0, 0, 85, 52, 0, 142, 141, 108, 42, 255, 245, 212, 146, 255, 185, 168, 117, 255, 185, 168, 117, 255, 121, 104, 53, 255, 2, 155, 104, 255, 60, 213, 179, 255, 60, 213, 179, 255, 18, 171, 137, 255, 0, 135, 101, 255, 9, 116, 83, 255, 9, 116, 83, 255, 9, 116, 83, 255, 9, 116, 83, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 119, 68, 255, 0, 114, 63, 255, 0, 114, 63, 255, 0, 141, 90, 255, 29, 199, 148, 255, 85, 51, 0, 255, 254, 220, 152, 255, 254, 220, 152, 255, 85, 51, 0, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 143, 136, 119, 51, 255, 255, 255, 176, 255, 255, 255, 176, 255, 215, 215, 130, 255, 125, 108, 40, 255, 60, 111, 60, 255, 89, 140, 89, 255, 144, 195, 144, 255, 144, 195, 144, 255, 60, 196, 162, 255, 42, 178, 144, 255, 22, 158, 124, 255, 22, 158, 124, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 9, 162, 128, 255, 38, 191, 157, 255, 88, 54, 3, 255, 252, 252, 167, 255, 252, 252, 167, 255, 88, 54, 3, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 143, 125, 108, 40, 255, 215, 215, 130, 255, 255, 255, 176, 255, 255, 255, 176, 255, 144, 195, 144, 255, 89, 140, 89, 255, 60, 111, 60, 255, 60, 111, 60, 255, 42, 178, 144, 255, 60, 196, 162, 255, 80, 216, 182, 255, 80, 216, 182, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 93, 246, 212, 255, 88, 54, 3, 255, 252, 252, 167, 255, 252, 252, 167, 255, 88, 54, 3, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 79, 62, 0, 101, 79, 62, 0, 255, 125, 108, 40, 255, 255, 255, 176, 255, 255, 255, 195, 255, 255, 255, 195, 255, 234, 234, 166, 255, 179, 179, 111, 255, 163, 146, 78, 255, 107, 90, 22, 255, 107, 90, 22, 255, 107, 90, 22, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 64, 47, 0, 255, 88, 54, 3, 255, 252, 252, 167, 255, 255, 255, 173, 255, 88, 54, 3, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 88, 54, 3, 0, 79, 62, 0, 0, 79, 62, 0, 0, 79, 62, 0, 131, 79, 62, 0, 255, 179, 179, 111, 255, 234, 234, 166, 255, 255, 255, 195, 255, 255, 255, 195, 255, 255, 250, 182, 255, 255, 250, 182, 255, 255, 250, 182, 255, 255, 250, 182, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 208, 255, 255, 255, 173, 255, 255, 255, 173, 255, 255, 255, 173, 255, 88, 54, 3, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 15, 84, 59, 2, 115, 84, 59, 2, 220, 117, 92, 34, 255, 159, 134, 76, 255, 206, 189, 138, 255, 238, 221, 170, 255, 255, 253, 202, 255, 255, 253, 202, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 255, 255, 204, 255, 88, 54, 3, 255, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 85, 56, 0, 0, 84, 59, 2, 0, 84, 59, 2, 0, 81, 56, 0, 40, 81, 56, 0, 115, 85, 51, 0, 169, 85, 51, 0, 209, 85, 51, 0, 239, 85, 51, 0, 249, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255, 88, 54, 3, 255 ),
"format": "RGBA8",
"height": 40,
"mipmaps": false,
"width": 56
}
[sub_resource type="ImageTexture" id=29]
flags = 39
flags = 39
image = SubResource( 58 )
size = Vector2( 56, 40 )
[sub_resource type="AtlasTexture" id=30]
flags = 39
atlas = SubResource( 29 )
region = Rect2( 56, 0, 56, 40 )
[sub_resource type="GDScript" id=1]
script/source = "extends TextureButton
func _toggled(button_pressed):
if button_pressed:
$Tween.interpolate_property(get_parent(), \"margin_left\", get_parent().margin_left,
$\"../PanelContainer\".rect_size.x, .75, Tween.TRANS_CUBIC, Tween.EASE_OUT)
$Tween.start()
# get_parent().margin_left = $\"../PanelContainer\".rect_size.x
else:
$Tween.interpolate_property(get_parent(), \"margin_left\", get_parent().margin_left,
0, .75, Tween.TRANS_CUBIC, Tween.EASE_OUT)
$Tween.start()
# get_parent().margin_left = 0
"
[node name="CanvasLayer" type="CanvasLayer"]
[node name="Control" type="Control" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="PanelContainer" type="PanelContainer" parent="Control"]
anchor_bottom = 1.0
margin_left = -420.0
margin_top = -7.0
margin_right = 9.0
margin_bottom = 8.0
grow_horizontal = 0
rect_min_size = Vector2( 420, 0 )
theme = SubResource( 19 )
custom_styles/panel = SubResource( 2 )
[node name="ScrollContainer" type="ScrollContainer" parent="Control/PanelContainer"]
margin_left = 10.0
margin_top = 20.0
margin_right = 406.0
margin_bottom = 1515.0
rect_min_size = Vector2( 371, 0 )
size_flags_horizontal = 3
custom_styles/bg = SubResource( 27 )
scroll_vertical = 41
[node name="VBoxContainer" type="VBoxContainer" parent="Control/PanelContainer/ScrollContainer"]
margin_top = -41.0
margin_right = 381.0
margin_bottom = 1502.0
size_flags_horizontal = 3
[node name="NameHeading" type="Panel" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
show_behind_parent = true
margin_right = 200.0
margin_bottom = 32.0
rect_min_size = Vector2( 200, 32 )
size_flags_horizontal = 0
size_flags_vertical = 0
custom_styles/panel = SubResource( 3 )
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/NameHeading"]
anchor_bottom = 1.03125
margin_left = 36.0
margin_right = 225.0
custom_fonts/font = SubResource( 4 )
custom_styles/normal = SubResource( 5 )
text = "Style Name"
valign = 1
__meta__ = {
"_edit_use_anchors_": true
}
[node name="TextureRect" type="TextureRect" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/NameHeading"]
anchor_left = 1.0
anchor_top = 0.5
anchor_right = 1.0
anchor_bottom = 0.5
margin_left = -40.0
margin_top = -20.0
margin_bottom = 20.0
texture = ExtResource( 12 )
[node name="Name" type="LineEdit" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
margin_top = 36.0
margin_right = 381.0
margin_bottom = 63.0
focus_next = NodePath("../AnotherName")
custom_fonts/font = SubResource( 6 )
custom_styles/normal = SubResource( 21 )
placeholder_text = "Character Name"
[node name="AnotherName" type="LineEdit" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
margin_top = 67.0
margin_right = 381.0
margin_bottom = 94.0
focus_next = NodePath("../CharacterName")
focus_previous = NodePath("../Name")
custom_fonts/font = SubResource( 6 )
custom_styles/normal = SubResource( 21 )
clear_button_enabled = true
placeholder_text = "Style Name"
[node name="DetailsHeading" type="Panel" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
show_behind_parent = true
margin_top = 98.0
margin_right = 200.0
margin_bottom = 130.0
rect_min_size = Vector2( 200, 32 )
size_flags_horizontal = 0
size_flags_vertical = 0
custom_styles/panel = SubResource( 3 )
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/DetailsHeading"]
anchor_bottom = 1.03125
margin_left = 36.0
margin_right = 225.0
custom_fonts/font = SubResource( 4 )
custom_styles/normal = SubResource( 5 )
text = "Details"
valign = 1
__meta__ = {
"_edit_use_anchors_": true
}
[node name="AltTitle" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
margin_top = 134.0
margin_right = 381.0
margin_bottom = 153.0
custom_fonts/font = SubResource( 6 )
text = "Unit Name"
[node name="CharacterName" type="LineEdit" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
margin_top = 157.0
margin_right = 381.0
margin_bottom = 184.0
focus_next = NodePath("../FlavorSelect")
focus_previous = NodePath("../AnotherName")
custom_fonts/font = SubResource( 6 )
custom_styles/normal = SubResource( 21 )
[node name="DescTitle" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
margin_top = 188.0
margin_right = 381.0
margin_bottom = 207.0
custom_fonts/font = SubResource( 6 )
text = "Flavor Text"
[node name="FlavorSelect" type="Button" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
margin_top = 211.0
margin_right = 381.0
margin_bottom = 286.0
rect_min_size = Vector2( 0, 75 )
focus_next = NodePath("../TabContainer/Base/Points")
focus_previous = NodePath("../CharacterName")
custom_styles/hover = SubResource( 45 )
custom_styles/pressed = SubResource( 46 )
custom_styles/focus = SubResource( 24 )
custom_styles/disabled = SubResource( 47 )
custom_styles/normal = SubResource( 48 )
script = SubResource( 37 )
[node name="FlavorText" type="TextEdit" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/FlavorSelect"]
show_behind_parent = true
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 2.0
margin_right = -2.0
rect_min_size = Vector2( 0, 75 )
focus_next = NodePath("../../TabContainer/Base/VBoxContainer/HBoxContainer/HP")
mouse_filter = 2
custom_colors/selection_color = Color( 0.34902, 0.0784314, 0.0823529, 1 )
custom_fonts/font = SubResource( 6 )
text = "The one who can help Lord Wagnas is not I, but rather my brother, Lord Noel. The one Lord Wagnas first called for was not I, but Lord Noel. One day I hope I can serve Lord Wagnas, and be the one he requests first."
readonly = true
wrap_enabled = true
script = SubResource( 35 )
[node name="StatDataHeading" type="Panel" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
show_behind_parent = true
margin_top = 290.0
margin_right = 200.0
margin_bottom = 322.0
rect_min_size = Vector2( 200, 32 )
size_flags_horizontal = 0
size_flags_vertical = 0
custom_styles/panel = SubResource( 3 )
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/StatDataHeading"]
anchor_bottom = 1.0625
margin_left = 36.0
margin_right = 225.0
custom_fonts/font = SubResource( 4 )
custom_styles/normal = SubResource( 5 )
text = "Stat Data"
valign = 1
__meta__ = {
"_edit_use_anchors_": true
}
[node name="TabContainer" type="TabContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer"]
margin_top = 326.0
margin_right = 381.0
margin_bottom = 841.0
custom_styles/tab_fg = SubResource( 41 )
custom_styles/tab_bg = SubResource( 42 )
custom_styles/panel = SubResource( 43 )
[node name="Base" type="VBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = 29.0
[node name="Points" type="Button" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base"]
margin_right = 381.0
margin_bottom = 25.0
toggle_mode = true
text = "HP/BP/LP"
align = 0
[node name="VBoxContainer" type="VBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base"]
margin_top = 29.0
margin_right = 381.0
margin_bottom = 180.0
[node name="HBoxContainer" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer"]
margin_right = 381.0
margin_bottom = 27.0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer"]
margin_top = 4.0
margin_right = 272.0
margin_bottom = 23.0
rect_min_size = Vector2( 30, 0 )
size_flags_horizontal = 3
text = "HP"
[node name="HP" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer"]
margin_left = 276.0
margin_right = 381.0
margin_bottom = 27.0
rect_min_size = Vector2( 105, 0 )
focus_next = NodePath("../../HBoxContainer2/LP")
max_value = 999999.0
value = 999999.0
align = 2
[node name="HBoxContainer2" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer"]
margin_top = 31.0
margin_right = 381.0
margin_bottom = 58.0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer2"]
margin_top = 4.0
margin_right = 272.0
margin_bottom = 23.0
rect_min_size = Vector2( 30, 0 )
size_flags_horizontal = 3
text = "LP"
[node name="LP" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer2"]
margin_left = 276.0
margin_right = 381.0
margin_bottom = 27.0
rect_min_size = Vector2( 105, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="HBoxContainer3" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer"]
margin_top = 62.0
margin_right = 381.0
margin_bottom = 151.0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3"]
margin_top = 35.0
margin_right = 188.0
margin_bottom = 54.0
rect_min_size = Vector2( 30, 0 )
size_flags_horizontal = 3
text = "BP"
[node name="VBoxContainer" type="VBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3"]
margin_left = 192.0
margin_right = 381.0
margin_bottom = 89.0
size_flags_horizontal = 3
[node name="HBoxContainer" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer"]
margin_right = 189.0
margin_bottom = 27.0
rect_min_size = Vector2( 72, 0 )
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer/HBoxContainer"]
margin_top = 4.0
margin_right = 80.0
margin_bottom = 23.0
size_flags_horizontal = 3
text = "Starting"
[node name="BPS" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer/HBoxContainer"]
margin_left = 84.0
margin_right = 189.0
margin_bottom = 27.0
rect_min_size = Vector2( 105, 0 )
focus_next = NodePath("../../HBoxContainer2/BPM")
max_value = 99.0
value = 99.0
align = 2
[node name="HBoxContainer2" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer"]
margin_top = 31.0
margin_right = 189.0
margin_bottom = 58.0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer/HBoxContainer2"]
margin_top = 4.0
margin_right = 80.0
margin_bottom = 23.0
size_flags_horizontal = 3
text = "Max"
[node name="BPM" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer/HBoxContainer2"]
margin_left = 84.0
margin_right = 189.0
margin_bottom = 27.0
rect_min_size = Vector2( 105, 0 )
focus_next = NodePath("../../HBoxContainer3/BPR")
focus_previous = NodePath("../../HBoxContainer/BPS")
max_value = 99.0
value = 99.0
align = 2
[node name="HBoxContainer3" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer"]
margin_top = 62.0
margin_right = 189.0
margin_bottom = 89.0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer/HBoxContainer3"]
margin_top = 4.0
margin_right = 80.0
margin_bottom = 23.0
size_flags_horizontal = 3
text = "Recover"
[node name="BPR" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer/HBoxContainer3/VBoxContainer/HBoxContainer3"]
margin_left = 84.0
margin_right = 189.0
margin_bottom = 27.0
rect_min_size = Vector2( 105, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="Base" type="Button" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base"]
margin_top = 184.0
margin_right = 381.0
margin_bottom = 209.0
toggle_mode = true
text = "Attributes"
align = 0
[node name="VBoxContainer2" type="VBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base"]
margin_top = 213.0
margin_right = 381.0
margin_bottom = 333.0
size_flags_horizontal = 3
[node name="HBoxContainer" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2"]
margin_right = 381.0
margin_bottom = 27.0
[node name="OptionButton" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer"]
visible = false
margin_right = 26.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer"]
margin_top = 4.0
margin_right = 84.0
margin_bottom = 23.0
rect_min_size = Vector2( 40, 0 )
size_flags_horizontal = 3
text = "STR"
[node name="SpinBox" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer"]
margin_left = 88.0
margin_right = 188.0
margin_bottom = 27.0
rect_min_size = Vector2( 100, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="OptionButton2" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer"]
visible = false
margin_left = 174.0
margin_right = 200.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
flat = true
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0
[node name="Label2" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer"]
margin_left = 192.0
margin_top = 4.0
margin_right = 277.0
margin_bottom = 23.0
rect_min_size = Vector2( 40, 0 )
size_flags_horizontal = 3
text = "INT"
[node name="SpinBox2" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer"]
margin_left = 281.0
margin_right = 381.0
margin_bottom = 27.0
rect_min_size = Vector2( 100, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="HBoxContainer5" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2"]
margin_top = 31.0
margin_right = 381.0
margin_bottom = 58.0
[node name="OptionButton" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer5"]
visible = false
margin_right = 26.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
flat = true
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer5"]
margin_top = 4.0
margin_right = 84.0
margin_bottom = 23.0
rect_min_size = Vector2( 40, 0 )
size_flags_horizontal = 3
text = "END"
[node name="SpinBox" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer5"]
margin_left = 88.0
margin_right = 188.0
margin_bottom = 27.0
rect_min_size = Vector2( 100, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="OptionButton2" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer5"]
visible = false
margin_left = 174.0
margin_right = 200.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
flat = true
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0
[node name="Label2" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer5"]
margin_left = 192.0
margin_top = 4.0
margin_right = 277.0
margin_bottom = 23.0
rect_min_size = Vector2( 40, 0 )
size_flags_horizontal = 3
text = "WIL"
[node name="SpinBox2" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer5"]
margin_left = 281.0
margin_right = 381.0
margin_bottom = 27.0
rect_min_size = Vector2( 100, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="HBoxContainer6" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2"]
margin_top = 62.0
margin_right = 381.0
margin_bottom = 89.0
[node name="OptionButton" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer6"]
visible = false
margin_right = 26.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
flat = true
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer6"]
margin_top = 4.0
margin_right = 84.0
margin_bottom = 23.0
rect_min_size = Vector2( 40, 0 )
size_flags_horizontal = 3
text = "DEX"
[node name="SpinBox" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer6"]
margin_left = 88.0
margin_right = 188.0
margin_bottom = 27.0
rect_min_size = Vector2( 100, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="OptionButton2" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer6"]
visible = false
margin_left = 174.0
margin_right = 200.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
flat = true
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0
[node name="Label2" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer6"]
margin_left = 192.0
margin_top = 4.0
margin_right = 277.0
margin_bottom = 23.0
rect_min_size = Vector2( 40, 0 )
size_flags_horizontal = 3
text = "LOV"
[node name="SpinBox2" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer6"]
margin_left = 281.0
margin_right = 381.0
margin_bottom = 27.0
rect_min_size = Vector2( 100, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="HBoxContainer7" type="HBoxContainer" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2"]
margin_top = 93.0
margin_right = 381.0
margin_bottom = 120.0
[node name="OptionButton" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer7"]
visible = false
margin_right = 26.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
flat = true
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0
[node name="Label" type="Label" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer7"]
margin_top = 4.0
margin_right = 84.0
margin_bottom = 23.0
rect_min_size = Vector2( 40, 0 )
size_flags_horizontal = 3
text = "AGI"
[node name="SpinBox" type="SpinBox" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer7"]
margin_left = 88.0
margin_right = 188.0
margin_bottom = 27.0
rect_min_size = Vector2( 100, 0 )
max_value = 99.0
value = 99.0
align = 2
[node name="OptionButton2" type="OptionButton" parent="Control/PanelContainer/ScrollContainer/VBoxContainer/TabContainer/Base/VBoxContainer2/HBoxContainer7"]
visible = false
margin_left = 174.0
margin_right = 200.0
margin_bottom = 27.0
rect_min_size = Vector2( 20, 0 )
theme = SubResource( 14 )
custom_constants/hseparation = -7
custom_constants/arrow_margin = 0
custom_icons/arrow = SubResource( 7 )
custom_styles/hover = SubResource( 8 )
custom_styles/pressed = SubResource( 9 )
custom_styles/focus = SubResource( 10 )
custom_styles/disabled = SubResource( 11 )
custom_styles/normal = SubResource( 12 )
icon = SubResource( 33 )
flat = true
expand_icon = true
items = [ "", SubResource( 33 ), false, 0, null, "", ExtResource( 6 ), false, 1, null, "", ExtResource( 7 ), false, 2, null ]
selected = 0