-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFF_Files.py
976 lines (900 loc) · 74.7 KB
/
FF_Files.py
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
# This source file is a part of File Find made by Pixel-Master
#
# Copyright 2022- 2025 Pixel-Master
#
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html
# This file contains file operations and global variables
# Imports
import os
import logging
from json import load, dump, JSONDecodeError
from sys import platform
from time import time
import hashlib
# Versions
VERSION: str = "12-mar-2025"
VERSION_SHORT: str = "1.2.1"
# Versions of file formats
FF_FILTER_VERSION = 1
FF_SEARCH_VERSION = 2
FF_SETTINGS_VERSION = 1
FF_CACHE_VERSION = 2
# Defining folder variables and font sizes
USER_FOLDER = os.path.expanduser("~")
# On macOS
if platform == "darwin":
FF_LIB_FOLDER = os.path.join(USER_FOLDER, "Library", "Application Support", "File-Find")
DEFAULT_FONT_SIZE = 15
# On Windows
elif platform == "win32" or platform == "cygwin":
FF_LIB_FOLDER = os.path.join(USER_FOLDER, "AppData", "Roaming", "File-Find")
DEFAULT_FONT_SIZE = 12
# On Linux
else:
FF_LIB_FOLDER = os.path.join(USER_FOLDER, ".file-find")
DEFAULT_FONT_SIZE = 12
CACHED_SEARCHES_FOLDER = os.path.join(FF_LIB_FOLDER, "Cached Searches")
CACHE_METADATA_FOLDER = os.path.join(FF_LIB_FOLDER, "Cache Metadata")
ASSETS_FOLDER = os.path.join(FF_LIB_FOLDER, "assets")
SELECTED_DIR = USER_FOLDER
# If app is sandboxed on macOS
IS_SANDBOXED = False
# Default font is Arial
DEFAULT_FONT = "Arial"
# Hash for the assets folder in the library dir
TARGET_ASSETS_FOLDER_HASH = "eb391462d1d9ad75cc63f8eca37a01abc3bbb3bd7af90b6eb86a7fee6eec9cc8"
# Time
SECONDS_OF_A_DAY = 86400
SECONDS_OF_A_WEEK = 604800
# File formats
FILE_FORMATS = {"Image": ("png", "jpeg", "webp", "heic", "tiff", "gif", "tif", "bmp", "jpg", "tga"),
"Video": ("mov", "avi", "mkv", "mp4", ".swf", "mpg", "flv", "m4v", "vob", "wmv", "ts"),
"Audio": ("mp3", "mscz", "midi", "m4a", "wav", "wma", "m3u", "flac", "aif", "aiff"),
"Text": ("txt", "rtx", "ttf", "tex", "eml"),
"Developer": (
"py", "pyc", "pyi", "c", "cpp", "js", "qml", "xcodeproj", "xcworkspace", "sqlite", "m", "json",
"sql", "toml", "fo", "java", "f", "cs", "sh", "command", "csh", "zsh", "qm", "npy", "yml", "rs",
"csv", "php", "html", "kt", "lua", "pl", "swift", "unity", "vcxproj", "yaml", "plist", "r", "ts",
"inl", "db", "car", "ui", "md", "playground", "mlmodelc", "storyboardc", "storyboard", "h", "css"),
"Office": (
"docx", "doc", "pptx", "ppt", "key", "pages", "numbers", "odt", "wpd", "ods", "xls", "xlsx", "pdf"),
"Graphical": (
"svg", "blend", "icns", "psd", "max", "fbx", "obj", "ai", "ps", "indd",
"pub", "ico", "cur", "cpl", "deskthemepack", "xcf"),
"Archive": (
"zip", "tar", "7z", "gzip", "iso", "dmg", "xz", "zstd", "wim", "bzip2", "rar", "gz", "zipx"),
"Executable": (
"app", "exe", "bin", "jar", "apk", "bat", "cmd", "command",
"ipa", "run", "pkg", "deb", "luac", "so"),
"Other": tuple("*")}
# Standard content of Settings File
# The Structure of the settings File
DEFAULT_SETTINGS = {"settings_version": FF_SETTINGS_VERSION,
"first_version": f"{VERSION_SHORT}[{VERSION}]",
"version": f"{VERSION_SHORT}[{VERSION}]",
"cache_version": FF_CACHE_VERSION,
"excluded_files": [],
"cache": "after two hours",
"popup":
{"FF_ver_welcome": False,
"FF_welcome": True,
"delete_question": False,
"last_update_notice": time()},
"filter_preset_name": "Default",
"display_menu_bar_icon": True,
"double_click_action": "View file in Finder/File Explorer"}
# Color schemes
RED_LIGHT_THEME_COLOR = "#b1100c"
RED_DARK_THEME_COLOR = "#f27171"
GREEN_LIGHT_THEME_COLOR = "#008200"
GREEN_DARK_THEME_COLOR = "#1ae087"
GREY_DISABLED_COLOR = "#7f7f7f"
# Remove Search cache
def remove_cache():
logging.debug("Starting cleaning Cache..")
for file in os.listdir(CACHED_SEARCHES_FOLDER):
os.remove(os.path.join(CACHED_SEARCHES_FOLDER, file))
for file in os.listdir(CACHE_METADATA_FOLDER):
os.remove(os.path.join(CACHE_METADATA_FOLDER, file))
logging.info("Cleared Cache successfully!\n")
# Convert a file path to the corresponding cache file or metadata
def path_to_cache_file(path, metadata=False):
if not metadata:
return os.path.join(CACHED_SEARCHES_FOLDER, path.replace(os.sep, "-") + ".FFCache")
# If instead ask for metadata
elif metadata:
return os.path.join(CACHE_METADATA_FOLDER, path.replace(os.sep, "-") + ".FFCache")
else:
logging.fatal("Wrong arguments used with the convert_path_to_cache_file() function in FF_Files.py")
# Takes a path to a cache file and returns the path to the metadata file
def get_metadata_file_from_cache_file(cache_file):
return CACHE_METADATA_FOLDER + (cache_file.removeprefix(CACHED_SEARCHES_FOLDER))
# Test if Cache should be deleted
def cache_test(is_launching):
logging.debug("Testing if cache should be deleted..")
allowed_time_difference = None
# Loading Settings File
with open(os.path.join(FF_LIB_FOLDER, "Settings")) as settings_file:
# Taking the item four because it is the Cache Setting
cache_settings = load(settings_file)["cache"]
logging.debug(f"{cache_settings=}")
# Deleting Cache on Launch
if cache_settings.lower() == "on launch" and is_launching:
logging.debug("Deleting Cache!")
remove_cache()
elif cache_settings.lower() == "after two hours":
# Two hours are 7'200 seconds
allowed_time_difference = 7200
# Deleting Cache after a Day
elif cache_settings == "after a Day":
allowed_time_difference = SECONDS_OF_A_DAY
# Deleting Cache after a Week
elif cache_settings == "after a Week":
allowed_time_difference = SECONDS_OF_A_WEEK
# Skipping
else:
logging.debug("Skipping deleting...")
if cache_settings.lower() in ("after a Week", "after a Day", "after two hours"):
# Looping through every file in CACHED_SEARCHES_FOLDER and getting separately stored creation tie
# Iterating through all files in the cache folder
for file in os.listdir(CACHED_SEARCHES_FOLDER):
try:
with open(os.path.join(CACHE_METADATA_FOLDER, file)) as time_file:
# Load creation time
cache_created_time = load(time_file)["c_time"]
except (JSONDecodeError, KeyError, FileNotFoundError):
try:
os.remove(os.path.join(CACHE_METADATA_FOLDER, file))
except FileNotFoundError:
pass
try:
os.remove(os.path.join(CACHED_SEARCHES_FOLDER, file))
except FileNotFoundError:
pass
continue
if cache_created_time < time() - allowed_time_difference:
logging.debug(f"Deleting Cache and it's metadata for dir: {file} because it's older than the allowed"
f" time difference, {allowed_time_difference=}sec.")
# Remove cache
os.remove(os.path.join(CACHED_SEARCHES_FOLDER, file))
# Remove cache Metadata
os.remove(os.path.join(CACHE_METADATA_FOLDER, file))
logging.debug("Finished Cache Testing!\n")
# Function to get the File Size of a directory
def get_file_size(input_file: str) -> int:
if os.path.isdir(input_file):
file_size_list_obj = 0
# Gets the size if the path is a folder with recursively searching th director<
for root, _dirs, files in os.walk(input_file):
for file in files:
try:
if not os.path.islink(file):
file_size_list_obj += os.path.getsize(os.path.join(root, file))
except (FileNotFoundError, ValueError):
continue
elif os.path.isfile(input_file):
try:
file_size_list_obj = os.path.getsize(input_file)
except (FileNotFoundError, ValueError):
return -1
else:
# Error code
return -1
if os.path.islink(input_file):
return -2
else:
return file_size_list_obj
# Convert File Size to a String
def conv_file_size(byte_size: int, decimal_places=2) -> str:
if byte_size == -1:
return "ERROR! (File does not exist or isn't valid)"
elif byte_size == -2:
return "ERROR! (File is a Link to an other File)"
elif byte_size > 1000000000:
return f"{round(byte_size / 1000000000, decimal_places)} GB"
elif byte_size > 1000000:
return f"{round(byte_size / 1000000, decimal_places)} MB"
elif byte_size > 1000:
return f"{round(byte_size / 1000, decimal_places)} KB"
elif byte_size >= 1:
return f"{byte_size} Bytes"
else:
return f"{byte_size} Byte"
# Function for nicely displaying Paths
def display_path(path: str, length_of_first_part_of_string: int = 40):
if len(path) >= length_of_first_part_of_string + 13:
return f"{path[0:length_of_first_part_of_string]}...{path[len(path) - 20:len(path)]}"
else:
return path
# Setup File-Find dir
def setup():
logging.info("Setting up Library Folder...\n")
# Creating necessary directories
os.makedirs(CACHED_SEARCHES_FOLDER, exist_ok=True)
os.makedirs(CACHE_METADATA_FOLDER, exist_ok=True)
os.makedirs(ASSETS_FOLDER, exist_ok=True)
# Setting up Settings File
try:
# Debug
logging.info("Loading Settings...")
with open(os.path.join(FF_LIB_FOLDER, "Settings")) as settings_load_file:
settings: dict = load(settings_load_file)
# Testing if an update was performed
if settings["version"] != f"{VERSION_SHORT}[{VERSION}]":
updated = True
else:
updated = False
# Checking cache version
try:
if settings["cache_version"] != FF_CACHE_VERSION:
remove_cache()
except KeyError:
remove_cache()
# Checking if all settings exist and updating version numbers
settings["settings_version"] = FF_SETTINGS_VERSION
settings["version"] = f"{VERSION_SHORT}[{VERSION}]"
# Replace missing popup settings
for pop_up_setting in DEFAULT_SETTINGS["popup"]:
try:
settings["popup"][pop_up_setting] = settings["popup"][pop_up_setting]
# If a new setting was added
except KeyError:
settings["popup"][pop_up_setting] = DEFAULT_SETTINGS["popup"][pop_up_setting]
# Debug
logging.info(f"Resetting {pop_up_setting}"
f" setting to {DEFAULT_SETTINGS[pop_up_setting]} because it didn't exist")
for settings_key in DEFAULT_SETTINGS:
try:
settings[settings_key] = settings[settings_key]
# If a new setting was added
except KeyError:
settings[settings_key] = DEFAULT_SETTINGS[settings_key]
# Debug
logging.info(f"Resetting {settings_key}"
f" setting to {DEFAULT_SETTINGS[settings_key]} because it didn't exist")
if updated:
settings["popup"]["FF_ver_welcome"] = True
logging.info(f"Settings: {settings}")
# If the settings file doesn't exist or is too old or broken, replace it
except (JSONDecodeError, UnicodeDecodeError, EOFError, FileNotFoundError, KeyError) as file_error:
# Replacing the settings var
settings = DEFAULT_SETTINGS
# Debug
logging.info(f"Resetting settings to: {DEFAULT_SETTINGS}\n because of:\n{file_error}")
with open(os.path.join(FF_LIB_FOLDER, "Settings"), "w") as excluded_dump_file:
dump(settings, excluded_dump_file)
# Byte-Encoded Images
# Calculate hash of file-find assets folder to test if assets must be replaced
logging.debug("Calculating assets folder hash...")
file_content = b""
for file in os.listdir(ASSETS_FOLDER):
with open(os.path.join(ASSETS_FOLDER, file), "rb") as hash_file:
file_content = hash_file.read() + file_content + file.encode()
assets_folder_hash = hashlib.sha256(file_content).hexdigest()
logging.debug(f"{assets_folder_hash=}")
# Check if calculated hash and target hash are equal
if assets_folder_hash != TARGET_ASSETS_FOLDER_HASH:
# Debug
logging.info("Replacing assets...")
# Write the File Find Logo in an Image
open(os.path.join(ASSETS_FOLDER, "FFlogo_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00w\x00\x00\x00w\x08\x06\x00\x00\x0099\xdf\x8a\x00\x00\x01'
b'\xabiCCPICC Profile\x00\x00(\x91}\x91;H\x1cQ\x14\x86\xbf]\x8d\x8a\xacXh!('
b'8\x85\xb1R\x11\xb5\x10+]A\x11\x14\x86U\xc1W\xe1\xec\xecK\xd8\x1d/\xb3+"\xa4\x8b`+('
b'\x886>\xc1V\x8b\xa8\xa5\x85m \x98\x08b\xabE\xaaH\xd2\x04\x99\x9c\xbbc\xd8U\xd1\x03\x87\xfb\xf1\xcf\xf9'
b'\xcf=s.\x04\xcf,\xa5\xd2\xa5\xed\x90qrnd0lLLN\x19\xe5w\x04h\xa4\x862\x82\x96\x9dU}\xa69\x8c\xc4\xff'
b'\xf3y\xfc\xb9\x92j\x89\xcbV\xddkk\xfd\xf3\xc1u\xcf\xfd\xf9\x80wz\xec}\xa97_\xd7?\x8b\xaaX<kC\xc0\x10'
b'\xee\xb5\x95\x9b\x13\x9e\x156\x17sJ\xf3\x91p\xad+C\t_hN\xfa\xfcCs\xd4\xe7\x9f\xf9\x9a\xb1H?\x04uO'
b'\xc3NY1a\xdd\xb3\xc5N\xb9\x19a=wS,'
b'\x13\xd3\xba\xf2\xd9\xd1\xbc\xae9Z\xe4M\x16q&\xbd`?\xcd\xa9\xff0\x14w\xc6Gu\xbdd\x03\x83\x0c1\x82\x89A'
b'\x94\x05\xe6H\x93\xa3UNG\x94,'
b'\x11\xf9\x1e~\xc3\xdf\x95\xf7\xf73\x8fb\tW<IR\xe26\xe8\x13EI\xa7\xb8\xf0\x90t\xb2i\xa3E\xb8\x83v\xc9N'
b'\xfd6/w^\xd0\xe6w\xa0\xfb7\x94\xac\x16\xb4\xe8\x06\x9c\xae@\xdduAk\xda\x86\xeae8\xb9P\x96k\xe5\xa5\x12'
b'\xc9`"\x01\xbf\x0e\xe5I&\xa1\xe6\x1bTNg\x13\x9d\x1d\xfe\xf4\xa10|\xb8\xf5\xbc\x87\x8fP\xbe\x06\x8f\xab'
b'\x9e\xf7w\xd7\xf3\x1e\xf7\xc4|\x03\xe7\x8e\xbf\xe7\xa7^\xec\x7f\x87\xb1O0\xfc\x156\xb7\xa09)w\xce\xbc'
b'\xb1\x8f\x8a\xfc>\xde\xdfYE\xf1\xce\xff\x01\n\x8d\x81\x97\x8c\x05\xc8m\x00\x00\x00xeXIfMM\x00*\x00\x00'
b'\x00\x08\x00\x05\x01\x12\x00\x03\x00\x00\x00\x01\x00\x01\x00\x00\x01\x1a\x00\x05\x00\x00\x00\x01\x00'
b'\x00\x00J\x01\x1b\x00\x05\x00\x00\x00\x01\x00\x00\x00R\x01('
b'\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x87i\x00\x04\x00\x00\x00\x01\x00\x00\x00Z\x00\x00\x00\x00\x00'
b'\x00\x00H\x00\x00\x00\x01\x00\x00\x00H\x00\x00\x00\x01\x00\x02\xa0\x02\x00\x04\x00\x00\x00\x01\x00\x00'
b'\x00w\xa0\x03\x00\x04\x00\x00\x00\x01\x00\x00\x00w\x00\x00\x00\x00\xf0\xc2\x14['
b'\x00\x00\x00\tpHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x01YiTXtXML:com.adobe'
b'.xmp\x00\x00\x00\x00\x00<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 6.0.0">\n <rdf:RDF '
b'xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">\n <rdf:Description rdf:about=""\n '
b' xmlns:tiff="http://ns.adobe.com/tiff/1.0/">\n <tiff:Orientation>1</tiff:Orientation>\n '
b'</rdf:Description>\n </rdf:RDF>\n</x:xmpmeta>\n\x19^\xe1\x07\x00\x00\r^IDATx\x01\xed]{'
b'\xac\x1dE\x19\x9f\xfb(\xb7\xbdm\xa1\x80-\xd2b\x9a\\\x11\xc4J1`K\x11\x1b\xadB*!&\xa0\xf2\x08\xa2\x96\x98'
b'\x94\x18\x1f\xf1\x0fEc\xa2\x12\x0c\xf8@\r\xd1\x98j\xd4HL('
b'\xb4\x95R\xc5\xa0\xc6G\x8b\x1aDcI\xac\x90\x9aH\xa0-m\x15\xc1?\xb4\xb4\xd2\x9e{'
b'\xef\xf1\xf7\xdbs\xe6\xdc9svfg\xcf\xee\x9c\x9d\xbd\x9d/\x9d\xce\xee<\xbe\xf9\xe6\xfb\xed\xf7\xcdcg\xcf'
b'\x15\xa2|\xda\x02\x96\xcd\x18r\xeb\x80z+\x95\x86J\xe2F0#\x95\xab\x81\xc2\xd8\x0c\x17\x90\xe7"\xd4\x95'
b'\x16Z\x80M\xacj\xd0\x80\xd4-\xf5\xdc\x17\xf5\xf3t\xbc\x02-\xbd\xd0Wk\xb1R\x11\r,'
b'F\xe5\x17\xf30\xc8\x0bnt\xbfy\xb4\xeb\xa7\xac3f\xce\x05!g\x04\xd6\x0fX\xfdpu\xc2\xcde\xcc]\x1a\x81\xedG'
b'\xff^\xeb\xd0\xd0\x88\x8b\x95\xb2\xc0\xbd\x13\xb5\x0fY9\xc4\xcc\xaa4@\\\x88\x8f\x91l\xe6\xcd\'#\x02kT]0'
b'\x19\xcb \xc9\xe14il\xe0\xc616Mca\xa6\xa5\xe2\x98\x9a\x08\xf9#\xb0a\x82h\x93\xaa\x07\xcb\x9e\x84\x08'
b'\xacM\x7f\xc1\xe7u\xe1\xa9O\xa8\xb8A\x11\xa9\xbe\x1a\xe8\xc2\xaf\x0bi\xf4)\xba\xe3\xfa\x02+%\xef`\xaaZn'
b'\xdf{\x98\x92k\x8c\x83\xd0@\x07\xc7\x0e\xca\x10\xcb\xd9j\x87\xde\xe5\\\xd4{'
b'o\x9b\xdb\xd5.xo\xae.\r$JQ-\xd7I\xf0\x90\x80\xa5\xc0\xa1\xc9\xe3\xa4\xc4\x01\x15\x92\xe0\xba\x99\xe2'
b'\xf2\xdb\x07$V\xbef"\xc0=\xfaJ\xf0\x94\xe0\xf6\xe4\xc6\x84\xfak \x82['
b'\x7f\x0c\x8d=\x18E\xceVc\xaeCF\xf3\xe1K\x85h\xfc\xc9\xa1dyE\xa2\x1bv\xd2\xe5\x16Z\xeeuNEM\x85\x16\xac0'
b'\xe5\xc4\xf4j5p}t\xcb\xd5\x02\xe0\xb5\xf5\x08\xaeW\xf5V\xcb<\x82['
b'\xad\xfe\xbd\xb6\xce\tU!\x1aZ\xf3%\xd4g\xa8\x96\x86\xaez\xde\xbb\x00\xdc\xf69\x03\xe14\x84\x85\xed0\x8e'
b'\xc4y\x08c\xb8\x9f\x870\x07\xe1\x14\x06\xa4\xcdE\xa0\x82\xc7\x10\x8f\xb4\xf3\x92\xb8\x9d>\xa7\x1d#\xcbH'
b'\x1bv,\xc3\xd6\xe1\xa41\xdf\x96Q\x18\\1o\x89\x8d\xff\xe0\xf2<\xcb\x01\x1c\x04\xcf\x96\x9e\x89p*n\x16'
b'!\x1eG\x98\x8fk\xc6\x04\x97 \x12\xd4\xe4\x1a\xf7\xbc&\xd0\xa3\x88\t*c*\x9c\xd7\xc9=\xe2a\xa4\xd9\xe8'
b'\xa1\x9b\x1aI\xf65\x9b3\n\xa60)\x0en\n\xd3\xd9\x98DPi\xb1\x04v\x01\xe2\xb9\x08\x12\xd8\x8e\xe5"/\xb1Z'
b'\xe4I\xa0\xa9`Z(\xc7?\x02J\x88:\xd7\xbc\xf1H\x11\\\x07\xe5\xd27\x11\\\x828\x1f1\xc1]\xd8\xbe\x96n\x99'
b'.\x99\xc0\x12TZ.\xad\x96\xa0v,\x14i$9\xc9\x19B\x1e\xfey\xa5\x08n\x86z\t\x00\xdd.-\x95\xe3,'
b'\x81\xa5\xc5\x12L\x82\x9d\x04\\\x13P\x8e\xb1\x0c\x04\x98c/\x03\xc1\xccr\xbd('
b'\xe2\x85\n\x83\xdb\xfc\xe9\xe5B\x9cx\xcc\x8bp!0\xe5\x0e\xfc\xb3\xed0('
b'y~rSSL\x97\xd0\x98\xf4\x12\xfd\xb3\x9a\x7f~\xffuc\xcdT\r\x94\x01,'
b'\x19\x17\x077U\xbc\x98\x18\x82\x06"\xb8!\xa0\xe0I\x86\x12\xc0u{'
b'\xcf\xefI\xfe\xc8\xd6\xa2\x81\x12\xc0\xb5p\x8fY\x95j\xa0\xf0l\xb9R\xe9\xd5\xc6w~N\x88\xd5\x13j\x8a\x10'
b'\x93\\\xc0\xb4i\xff\xbf\x84X\xf91ywR\xc4\xf5\x05\xf7\x03o\x14b\xd3Gqf\xd30,'
b'\xa8\xc0\x12\xca\xe5\xd8\x8a\xf8\xcf\x033\xa0\x1e}\x19\x1fAn\x98\xb9\x9f\x85W\xf5\x03\xf7\xc8\x0f\xb0'
b'\xeds\x02\xa0b\xdb\xc0\x15\xd84\xe0\xe6b;\xe2\x85\x1d\xb0\xee)!\xce~wZ\x89\xda\xa7\xd5g\xcc\xbd\xed\n'
b'!\x8e}\xa7\x05l\xb2\xfdn\xd0\xfd\x14\xf7\x852\xe8\x04\xdc\xf5T\xfb\xb9\x1e\xc5\x06!A\xdevGF\xa5\xfae'
b'\xd7\xc3r\t\xaaJM\xee\xd8\x1a\xc8\x96\xc7*\x046\x8d\xde\xba\xb2\x05\xf2\xe2k\xd2rk\x99\x16\xbe\xe5\xea'
b'\xc0\xda\xd4\xdc\xc4\xa6\xae\x8d\x1a\xdc\x01\xce '
b'ZqU\x9b\xc1\x19\xa2\xe5\xcd\x0e\x1b\xdc<\xc0\xb2\xe7|\xd5b\xa3,'
b'\xf0e\xdd\x7f\x02\xe0_}U\xde\xd56.\xc1-g('
b'\xb4_\xd5\xe4\x05\x96\xed\x98&X\xcc\x9b\xcex\x8e\t|2^\xb7\xfb\xb3\x02\xa7:G\x98f\x98\x8d\x93g\xe0\x94'
b'\xd1\xe3\x8a\xa4?z\xaf\xbd\xe1!\x83\xc2M\xe9\xe4\xd6\xb4u\x95 \xf2ml\x1bX\xd9\xfa\xc1G\xe4U-c['
b'\x8f\xab\xe9P\x07X\x9bSi\x1d=\xe9\x11\xf0\xbf\xc7\x84\xf8&\\\xeai7\xce\x84\x8b>\x08\x0b\xe4\x0c\xda\xf0'
b'\xae\x85\x16;I`\r\xf4\x8f\x9f\x192\xc2O\xb6ip\xf0\xd2\xbf\x845lBP8g\xbdC\xa6\x83a\xb0\xdc!\xacO\x932'
b'\xe8\xc2\xf8\xcdfY\xf7\x1d\xc5\x1bve\x1d\xfb\xcc}x\xeb\xce\xf3\x14mJ,'
b'V\xde\x18b\x02|\xf6U\x86\xccp\x93\xc3\x02w\x8a\xe7\x1b\x14\x1a\x81x\xc3\x00\'\x95\x00\xfc|Xe^\x9ax/\xce'
b'\xc0\xc0a\x1d\xda\x9e\xaf&=\xb6a4\xc8\xc7hp\xa5\xc3q\xcb\xea\xd6\xa0\xec?7\x1a\x9a\x1a\xe0I\x1e4=~\xab,'
b'\x95?>\x01\x17\xcd\xf5\xec\x11lA\xba\xd2\xe1\xfa\xb9\xe7p\xc05)\x99\xe3a\xe3\xd4\xee\xdc\xf1\x8d\xdd'
b'\xf7\xfd\xdeM`l\x1e6\xa8`\x1a\xc3\x02\xd7\xc5\xdc\xf4\x90\xe1\xdau\xfd\xb6TI=C\xcf\x06,'
b'K\x9a\xd5v\x89\x00Km\xe0`)C\x11\x8b\xed\xe2\xd9\xbe9k=&\\\x9a\x1a\x08\xe6$&a\xfa\xba\xf8\x1e\xbcy\xaa'
b'\x11i\xbd\n\\r\xce\x82}\xd0\x12\x00,'
b'\xc9\xb4=)\xf3k\x14\xd7\x07\xdc\x97<k\xf5S_o\xb9\xe1\xacf\x9e|8\xabD0\xf9\xd5\x83\x9b\xe9\x92\xdb\xbaZ'
b'\xe6\xc9j%\x14?\xfce\xaf\x1b\x96yj\xbc\x90\'\x97\xebA\xd5\x83\x1b\x92\x9e\xbe\xf8\xad\x90\xa4),'
b'K\x18\xe0rF,g\xa4\x9d\x183U\xb9\xae\xf45\xd6\xea\xea\xfb\xf6\x8f\xf4\x94Z\xdfW\xbf\x89a\x9c\xc0p\x86'
b'\x8cY\xabm\xbf\xd8\xa7\xea\x93\xd9\xb2\xf2\xec\x8f`\xd3d\x18\xbbb5"E\xfa\n\xa4>\xd3\xb2\xa7+\xc5\xd1'
b'\x97#2\xddW\x9c\xac\xab\xe954\xd5pC\x85\xeb^\xca\xf3\x87\x07|\xb5^*_\xad\x07\xa5\xf2\xcef\xb6b"\xbb\xcc'
b'\xa0Kd=L\x04\xffx\xb5jsUI=\xa4t\xed\xcd\xa0\xcae=\x00\x83\x92#\xa3\x9dj\xc1\x85\x87\x8b\xe4O\x03\xd5'
b'\x82\xfb\xe8\xdf\xfc\xf5\xcc\'\xe7u\xd7\xf9\xe4^\x1a\xef\xeag\xcb\xb2+<\xe2\xa2Ob\x86\xf0\xf6f\xc4\xf0b'
b'^\xd6\x8b\xb1Q\x03\xd5Z.\xc5"\xa0\x93)\xb3S5o\xdf\x16c\x07J\xcdX\x7fEkF\xccY\xb1\x0c5\x19_\xd3\xf4P'
b'=\xb8.\x87\xc8\xc7\xb4W~i=)#\xed\x9e/\xf7rI\x96F\x0eK\xb6\xde\x9a\x95\xa7T\x0f\xee\xf6_\xdb\x95\xc0'
b']*\x9e\\\\\xfdZ{9\xaf\xb9\x98\xf9M\xb7G\xb0\xb9\xd8X\xa9\tU\x0f\xee\x87\r\xe7\x83i\xd1\xdc\xbd\xe2.\x15'
b'\xadg\xdb&\xbf*\xdd\xbb\xdb\xce\x7f\n/\xefI\xe7\\\xdc\x8ak\xf0\x7fap\xbd\xacf8\xdeIe\xaaJ<\xb8K\xbd'
b'+\xefz\xcf\xe3n\xbc(W\x8d\xa80\xb8\xa5\xf4U=Y\xd8\x80\x95\x9a&1< ~\xe8\xd1R\x9a\xec0\xd9\xfd{'
b'\xfc\xa6\x10\xbc\x84\x0b\x1d8\xe0R*\x982\x85\xc1\x95/nJ\xeb\x91\xbe\x1c\xd2\x19\xff\x0f@<\xfbG=\xb5\xbf'
b'\xfb\xdd\x8f\xe1\xd8\x8ev\x00\x8f\xc7e\xe5LY\x8d\xd9\xc2\xfak\xfbk\xa7\xa2Z\x85\xc1-M\xee\xa5W\xb7'
b'\x94jc(\xdd\xe2\x14\xde\xce<\r`\x8a\xd0\xde?\x03X\xcd\xcd\xd2kL\x1a\x96\xfew|\xadHk\x95\xd4\r\x07\xdc'
b'&6,L\xee\x98\xaa\x91\xc0\xaaj"\xc0O\xedTS\xb2\xaf\xbf\x7f\xaf\x10\x7fy\xaa\xfd]\x90R<\xe1o\x99A\xbc'
b'\xfdJ\xa5p=.\xc3\x01\x97\xfaZ\xbe.]k6W=\x06\xeb#\xc8\x0c\x9f\xffxz\xfdO|\x12\x80\xfeU\x88=O\n\xb1\n'
b'?\xb7\x90\xbc\xd9Q\x964|w\x9bE\xabW\tq\xff\xd6\xacRA\xe5\x1b|P\x852~\xe8.\xfc\xd6\xc5g\xba\x05pQ>k\xdc'
b'\xf8\xbeVPk\x13\xc8T\x8f\x80\xe7\x9ak\xd7a\xbc\x84\xb7=<*\xaf\x15\xaf\x13\xe2\xe7\xbf\x10\xe2\x1d\xeb'
b'\xd5\xd4`\xaf\x0b[\xae\xc5\x91\xf5\xd7\xe9GpP\xed\xd3_\xc9_7\xcdm\x93\x8b\x0e\xac\xfa\x99\xe7\xcb\xe3'
b'\xb0b\x07\xab\xedH\x83\xde.\xc5\x1f\x04\xdf\x03\xb7^\x03*\x0c\xae\x97>\xde\x8fO7\xf6=\xe7\xce\xda\x04l'
b'\x1a\x07\xfd\x03\xed\xb4\xf5\xb4^\x8f\xfc\x93\x00/\xc0M\x15N\xbc\x9exZ/\x15\xdc}apK\xb7\\\xa9\xa2\xb7'
b'\xbc_\x88/|C\xde\x99c\xebZ\xcc\xa5{\x962\xc7\xe0\xb2M\x0f\x0e=\xc0\xee\xbf\x9b\xe5\n '
b'\xc7\xd2\xb3\x00\xa4\xfb\xdeC\xadI\x16?\xd74\x91\xcb\'\x98z\xdd&@\x93\x84Iz:\xe1\xb1\x9d\xa3|\xea\x99^('
b'h\x80\x0b\x83[\x98\x81Iij\xfa\xab\xd7b\xf2c@A\x1fS\xd5z\xa6\x0f\xae\xe7(\xe06\rsJ\xba^\x1bq=,'
b'\xdd\xf5\xe3\x07\x84\xb8\x10\xb3\xe9\xc0h \xd8\x94\xd2\xe7\xf3\xde,'
b'\xc4\xb9o2\x7f\x95\x97\xa7\x11\x8e\xbb\xa3\xc7gj\xac|=~:\x10AR\xd6\xefg$['
b'\xa4\xed\x17\t\xb2\xcew\x1f\x14b3&\x83\x01Qap\x0b3\xc8\xab\x8c\x895-\x90\xa7\xad\x83\xed\x0c\xd7Q\xfc'
b'\xda\\\x1a\xf1\xd3\xcdK^\xd3\n2_\x02l\xda\xa5b\xb9\xc4\xa2\r3\x8d\x89\xf3\x85\xb8\xf56\xc9\xad\xf2x\xe0'
b'\xd8\x94\xd6\xe3\xf3.o\x81|\xc1%B\\\xf9N\xb05\x80\xcdC\xed<L\xce\t\xd0\xddw\xb7,'
b'\x94 ^\x885k\x1a1O\x9fQ\xcbr\xea\xaf\xdd\xc84=\xbe\xe5#B\xfcf\xaf\x9eZ\xe8\xde\xd0\xb3L\x9e\x86\x01'
b'\'\xb3^\xa7\x80\xe6\x9c:\xe9\x03\xbd8xX\x88\x0b\xb0\xf3T\x16\xd1\xa2\xd3f\xc2Y\xeeZ\xb6?\xee0\x11\x93e'
b'\x1db\x83\x9f\xc8\xac\x99\xdbr\xb1\xe2K\xfeB\xc7\xe9\x88\xf1;\xa8\xfa\x8f\xfbd6X\x9b\x02\x04X\xa5)\x07'
b'\x15\xcb\xaf\x128\xd1\xfa\xdd\xf38\xdc\x971)S\xf9{'
b'\xb8\xce\x05.\xbb\xc7\xfd\x1c\xec\xeb$\x7fz\x85\x00\x176}\xf0\x08\x96\x08p\xa3\xd1\x12o\xd20v\'\xb9\xd0'
b'\x0c\x01\xe5O-\xa8\xb4+\xc7F\x8cZ\xaf\xa4\xeb\\\xe0\xb2M)>\x9fIZ\xb1\xbcg\xde\xac\xa45\x18\x9b\x93\xd9'
b'\xb5\xc5\n\x1b|\xe4\rD\x0b\xae\x88r\x83\xcbn\xb4\x9f\xe5\xd6\x9f1s\xf0V\x15\xf5\xad\xbcf/>\x17O\xb1aZ'
b'\x93Xk\x86\x12*\x0287\xb8\xac@\x80\xb9\r@\xab\xe5\xcf#\x9e\x14D\x17\x9d6\x8b\x96\xbf\xdb\x9c\xa5\x84'
b'\xdf\x1e\xcd*Qz~np\x13@!\x06G \xcb\xa6`\xe9\x82\x06\xc1\xf0\xd2W\xb5\x96Ty\x84\x99l\x8f\xc7\x93\xd2\xdf'
b'\xe5\xa9\\\xaclnpi\xa8\x0c\x9cHq\x1fa\xd6\x8f\xb9\xba~/['
b'\x8eW~O\xe8\xa9\xe9\xf7\x93Po\xd32V\xa7\xd7*-57\xb8j\xcb\xca\x06\x9e\x9a<\xfb\xaf7\xe2\xd7\xe7F\xb2'
b'\x1ek\x98@\xd32\xd1\x1a\x80\x96r\x81\xab\x17\xa6[\xa6\x15\x9f\x94\xb4j\x99\x10{'
b'-3\xe1F\x16\xf8\xfe\xb5\xa6\xe3\x95\xd9"+\xc8\x90Yx\xb6\x17\xb8\x05o\x826\xdd\x99\xdeK\xd7\xa3;\xe9'
b'\xb5KI\xcd\r\xae\xdaj\xa1\xca*\xa3:_o\xc6\x81\x82\xfd\xcf\xf4\xf6@\x9fY\xbfmQo\x19\xcf)\x85\xf0\xa9vD'
b'\xf1\xac\x99<\xeco\xbeL\x88\xb5\xaf4\xd7\xa8\x00X\nS\x08\\\xfeI\xefHR\x03X:\xac=K\x88]8\xff5\x04\xb52'
b'\xec\xdc!DE\xc0R\xaaB[\xc3\xdcc\xae~\xda '
b'\x95\x1bH\xfc\xd9\r\x81\x08R\xc0r\xf994\x8fu?\xf7\xef\xfb\x82\xe9\xccl\x11\xa4\x90;U\x94@\xcb\xdd\x8ap'
b'\xbd\x92\xe6t\xb9\x18.y\x01Jn|\xcfq\xb1\x08\xd7t\xd1\xf2e\xc2)\xb8\xe6x<\x8a\x98\x96\xcd-J\n\x9c\\3\x1d'
b'\xc1\xe7\xdfej\xc0C\xca\x13Wl\x93r\xf8 '
b'4\x93P\xd9\xec\xa5\xec\x05e\xdeJ\x9d\xdf\x90\x97\xc99\xe8\r\xe7~s\x11\x13D2I\x00C\xcc\x8e\x9a:+\x95!c'
b'\x14-\x9d\xc8[\xe5o\x92\xa5\x8c\x86m}-\x83\x7fA\x1e7\xe4\xf6\x00K\xd0\xa33\xd0\xea|\xc4\xfc\xf8q\x0c1'
b'-\x13\xffZ\xeb\xdf\xf6\xb5\\\t\xe8\xca\xd6\xef\x0bv\xa0\xa7:O\xd3\xf8n\xa3\xa7\xd1@\x13r\x81;\xb5\xffv'
b'\xc1\t\xff\xe9\x00\x90\x07Ih\xb9t\xc5\x0cd$\x03\x81\xd6I*\\\xc6\xae\xe7\xdbt>Y\xf7\xdc5\x93md\x95\xadK'
b'~.\x90\x94N\xa98P\'\x8e\xa4Vs\xac\x12\x8b\xf5\xa9\x81\x1c\xb0\xcc\xb4\x90\x00\xd4\xe7R\xa8\xaf\x06g\x9a'
b'\x8eW\x03\xd1\x80j\xf1o\x18H\x8b\xb1\x11\xdf\x1a\xe8\xe0\xa8\xfb\xd7h\x92\xbeU\xef\x9f\x7f\x07S\xd5r'
b'\xd9\xecb\xffm\xc7\x16<j\xa0\x0b\xbf\x0e\xcaJ\x83\xd1z\x15e\xd4\xec\xb2\x0b\xcf\xae\x1b\xa5#\x11`E\x195'
b'\xb9\xec\xc1\xb2\'A\xe9H\x04XQF\xe0\x97\xa98\xeac\xae\xda\x07\x9c#\x89T\x03\r\x18q\xb2\xbd\xb1;\x82'
b'\x8eq\xf3im\r:x\xb2\x8ax\x17:\xfecS\xe7S\xcdY+\xbc\x14\xf7\x87\xb4\xb4x['
b'\xbd\x06h\xb1\x87mb\xb8\x80+\xeb\xc71Xj\xa2\xfa\xd8\t7\xa7BJ_"\xc0\x8a2*\xbat\xc6\xcc6\xa1J\x93\x9d\x8c'
b'\xbb\x16\xcai\x85b\x9a\x17\rP\xef\xce\xc0R\x82\xbc\xe0\xb2\xce\x8b\x08l\xa4\xb3\x87\xc9\xc4H\xde4@=S'
b'\xdf\xd4{.\xca\xf5$X8GwmQN\x9fY\x85\xb1\xe9\xc7r\xd3d\xa5 '
b'2lK+\x10\xd325@\xbdI\x1d\x16\x06\x96\xad\xfd\x1f\xd20sKq\xd7\x9bv\x00\x00\x00\x00IEND\xaeB`\x82'
)
# The menu-bar icon
open(os.path.join(ASSETS_FOLDER, "Menubar_icon_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x002\x00\x00\x00-\x08\x06\x00\x00\x00\xec\xbf8\xff\x00\x00'
b'\x00\tpHYs\x00\x00.#\x00\x00.#\x01x\xa5?v\x00\x00\x01\x03IDATh\xde\xedW\xcb\x0e\xc3 '
b'\x0c#)\xda\x9f\xef\xd6\xaf\xe3\x87\xbc\xeb\xa4i\xa5@B\x1ej\xa4J= '
b'\x14\xc7\xb1\x13JI\x12\xf4\xf5\x0f\xe1\xfb\xb6\x06\x0b\xdf\x87,@\xcc\xa2\n\xb6\x07,'
b'\x81\xf0#vg\xf9k0b^\x10\x04a\xe5\xd5\xcb\x15\x81\xda\xeb\'\xd7\xd4\xf6\xab\xa5\x11\x8a\x00\x04\x03gT'
b'\x00\xf1&\x10\xeaZ\xe4\xcd \xd4l\x9a\xbd$b\x02\xa4\xb5v\\\x08\xfa\xdf\xa7Z\x0c\x9a\x14#&]I\xca\xd1'
b'\xb0cE1yx\xb1\x906\xc8\x1aL\x9a\xc9\xce\x9e\xdb%\x1c#\xe7\xf9\xae\x92\xd5\xbc\xebZ\x10`\x05\xd1]\xcbUk'
b'\xadj\x02\x9e5\x82Lb\xc7\xe4\x19\xb2\x04B\x83+\xba\xfa3z\xc5\xf6\xe8"9\x0c2I\x9eZ\xcbTc\xab@Hp\xb2\xc3'
b'\x03#w\x01\xf5\xce\xc1B#+3\xa6\xa7/\x8a\xa4\x11Qf\xac\xc5.\x06\xc6\x83k\x89\x80\xf1b\xbfi\xe6\xc82'
b'\x18ok<\xcd\x82\xab\xc5_L1S=\xae\xe4\x19Z\xeb\x894\xf1\x01\xd7-8u\xc2\xfc\\\x84\x00\x00\x00\x00IEND'
b'\xaeB`\x82'
)
# The Find Button Image
open(os.path.join(ASSETS_FOLDER, "Find_button_img_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x002\x00\x00\x002\x08\x06\x00\x00\x00\x1e?\x88\xb1\x00\x00'
b'\x01\rIDATh\xde\xed\x98\xc1\x0e\xc30\x08C\xedl\xff\xff\xc5['
b'\xbd\xcb\x0e;LU\x93\x00!\x15>\xb7D\x8f\x00\x11\x06J\xa5\xd2\x998\xf1\xaf\x9c\xe3\xbb\x82h\xf0\x9c\x03'
b'\xc0\xc3\x13\xa4\x05@\x00@#yd\x00\xd1\xecA\x92HR\x00^\xabJ\xab\xb7\x17N\xbf\'\tIo\x00\xcfH\x10y$\xe1'
b'\x0b\xc3(\x10\x19N"\xfd\x81\x91\xa4\xe6\rb\tq\x16S\x9d\x03\xc7dj\xd1!if\xe5\xd5\xb0^\x87Wi\xc9\xf9\x85v'
b'\x89\x9f\xe1F\xb6--\xae\x02a\xddH\x81\xf8\x80\xa8n$01\xb7.-\xeeX^-AY1\x1aD\x19{'
b'c\xf9>b\xfd\xd8zo\x88V1\\A\xac\x86\x03#@\xa2&\x16#\x03(3L\x94\xd3\xf8{'
b'\x96K\xcf\x8c\xfe8\xdb\x03\xe60+w\rS\x98\xd5K\x93\x19L\x86\xed\xcf\x04&\xcb\x1a;\r\x93i\x1f\x9f\x82'
b'\xc9f,\x0c\xc3dtH\x86`\xb2Z=\xdd0\x99=\xab.\x98\xec\xe6\xdbe\x98\xec\xe6\xc3\xe5D\xef\xe0\xa2\xf0. '
b';\xb4@\xa9\x94^\x1f%\xc5><\x8c\xf8\xf8\xe8\x00\x00\x00\x00IEND\xaeB`\x82'
)
# The Image of the Button on the search results window
open(os.path.join(ASSETS_FOLDER, "More_button_img_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00d\x08\x06\x00\x00\x00p\xe2\x95T\x00\x00\x01'
b'\x84iCCPICC profile\x00\x00(\x91}\x91=H\xc3@\x1c\xc5_[E)\x15\x073\x888\x04Z\x9d,'
b'\x88\x8a8j\x15\x8aP!\xd4\n\xad:\x98\\\xfa\x05M\x1a\x92\x14\x17G\xc1\xb5\xe0\xe0\xc7b\xd5\xc1\xc5YW'
b'\x07WA\x10\xfc\x00qtrRt\x91\x12\xff\x97\x14Z\xc4xp\xdc\x8fw\xf7\x1ew\xef\x80`\xa3\xc24\xabk\x1c\xd0t'
b'\xdbL\'\x13b6\xb7*\xf6\xbc"\x8c\x10\x04D\x11\x95\x99e\xccIR\n\xbe\xe3\xeb\x1e\x01\xbe\xde\xc5y\x96\xff'
b'\xb9?G\x9f\x9a\xb7\x18\x10\x10\x89g\x99a\xda\xc4\x1b\xc4\xd3\x9b\xb6\xc1y\x9fX`%Y%>\'\x1e3\xe9\x82\xc4'
b'\x8f\\W<~\xe3\\t9\xc83\x053\x93\x9e\'\x16\x88\xc5b\x07+\x1d\xccJ\xa6F<E\x1cS5\x9d\xf2\x83Y\x8fU\xce['
b'\x9c\xb5J\x8d\xb5\xee\xc9_\x18\xc9\xeb+\xcb\\\xa79\x8c$\x16\xb1\x04\t"\x14\xd4PF\x056\xe2\xb4\xea\xa4XH'
b'\xd3~\xc2\xc7?\xe4\xfa%r)\xe4*\x83\x91c\x01Uh\x90]?\xf8\x1f\xfc\xee\xd6*LNxI\x91\x04\xd0\xfd\xe28\x1f'
b'#@\xcf.\xd0\xac;\xce\xf7\xb1\xe34O\x80\xd03p\xa5\xb7\xfd\xd5\x060\xf3Iz\xbd\xad\xc5\x8e\x80\xfem\xe0'
b'\xe2\xba\xad){\xc0\xe5\x0e0\xf8d\xc8\xa6\xecJ!\x9a\xc1B\x01x?\xa3o\xca\x01\x03\xb7@x\xcd\xeb\xad\xb5'
b'\x8f\xd3\x07 C]\xa5n\x80\x83C`\xb4H\xd9\xeb>\xef\xee\xed\xec\xed\xdf3\xad\xfe~\x00ppr\xa6\x9d\xdf\xe4'
b'\xa4\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\tpHYs\x00\x00.#\x00\x00'
b'.#\x01x\xa5?v\x00\x00\x00\x07tIME\x07\xe6\n\x03\x14-(Z|\x1c\xc9\x00\x00\x00\x19tEXtComment\x00Created '
b'with GIMPW\x81\x0e\x17\x00\x00\x01zIDATx\xda\xed\xd7\xbf+Ea\x1c\x80\xf1\xc7\x8f\xa4\x0ct\x8b('
b'\x83E\xdd\xb2\xc9d\xb2\xdc\x0c&\x7f\x006\x83;\x9a\xe4_p\xb3Y0\x99\x18\x95\x9d,'
b'\x06\x9bD\x12\x19\x14\x19n\x14ap\x0c\xder\xd39\xe7\xbd&\xea<\x9f\xba\xcb\xe9<\x9dz\xdf\xd3\xf7\xbc'
b'\x17$I\x92$I\x92$I\x92$I\x92$I\x92$I\x92$I\x92$I\x92$I\x85\xd3\xf2\xc7\xcf\x1f\x04\x96\x812\x90\x00\x07'
b'\xc0*\xf0\x14\xe9&\x81y\xa0\x04<\x03['
b'\xc0v\xa4\xe9\x00\xaa\xc0\x14\xd0\x06\xdc\x005\xe0\xc4\xd7\xe0\xcb\x18P\x0f\x1b\xd1\xf8;\x07\xfar\xba'
b'\xa5\x94&\x016s\x9a.\xe0(\xa5y\x03\xa6\xdd\nh\x07\xae2\x166\x01v3\xba\xf1\x9c&\x01f2\xbaZN\xf3\x18y\x01'
b'\na"\xb2\xb0\x1f@oJ\xb7\x11\xe9\xf63\xc6r=\xd2U\xff\xcb\xc2\xb4\xfe\xd1s\xcbM|\xdbFR\xae\x0fE\xba\x81'
b'\x8coGO\xa4\xeb/\xfa\x86\\6q\xcfE\xca\xb5\xdbH\xf3\x90r\xed\x1dx\x89t\xf5\xa2\x8f\xacN\xe0\xee\x97\xa3'
b'\x07\xa0\x12\x19=\x0b\x19\xddzN\xf3\x1aN{\x85W\t\x8b\xf1s\x81\xee\x81\xe1\x9cn-\xe7 '
b'\x90u\x8c/\x01\xa7\x19\xdd\x9c[\xf1m\x14\xd8\t\xa3\xe6:|\xb4\x9b\x99\xe7\xb3\xc0a\x18E\xc7\xc0b\xf8o'
b'\x91\xa7\x1bX\x01\xce\xc2\xc9j/\x1c.$I\x92$I\x92$I\x92$I\x92$I\x92$I\x92$I\x92$I\x92$I\x92\x1a|\x025'
b'>\x86\xd0\xdb\x17S\x8d\x00\x00\x00\x00IEND\xaeB`\x82'
)
# The Image for the Help Button
open(os.path.join(ASSETS_FOLDER, "Info_button_img_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00d\x08\x06\x00\x00\x00p\xe2\x95T\x00\x00\x01'
b'\xaeiCCPICC Profile\x00\x00(\x91}\x91=H[Q\x14\xc7\x7fF\xeb\x17Q\x0738\x08>\x8a\xed\xa4Eb\x07GM\x06\x11,'
b'\x84hA\xabC_^\xbe\x84\xe4yy\x89\x88 '
b'-H\xa1\xab\xa0Xt\xf0s\xe8\xeaT]\x04\x11WA\x10j\x05qtr\xea\x87\x8b\xc8\xf3\xdc<%\x89E\x0f\x1c\xee\x8f'
b'\xff;\xffs\xcf;\x17|\xbb\xa6R\x99\xaa.\xc8\xday\'\xda\x1f2FF?\x185\x97\xf8\xa9\xa0\x99\x974\x9aVN\xf5E'
b'"\x83H<\x9c\xe5q\xfdSj%N:u\xaf\xd3\xa5\x83\xd5\xba\xb9\xed\xbd\xea\xcf\x7f\x8f\xda\x02\xcb\x9f\xfe\xaf'
b'/\x8b\x86x"gA\x85!\xdck)\'/\xfcQ82\x9dW\x9a\xb7\x85\x03\x8e\x0c%|\xa89\xe5\xf1/\xcd1\x8f\xaf\n5\xc3'
b'\xd10\xf8tO\xc3J\x9bqa\xdd\xb3\xc3J;Ya=w{'
b'<\x1b\xd7\xba\xf2\xd8\xd6\xbc\xa89V\xe2M\x95p63e\xdd\xcf\xa9\xff\xd0\x9f\xb0\xdf\x0f\xe9z\xc9V\xfa\x19'
b'\xe0\x1d\x11\x0cbL1A\x86<\x9dr\xda\xa2\xe4\x88\xca\xf7\xd0\x13\xfe\xb7\x05\x7f\x98I\x1438\xe2I\x91\x16'
b'\xb7A\x9f(J:%\x84\x07\xa4\x93\xc5\x1b:\x84\x83tI\x06\xf5\xdb<\xdeyQ\x9b\\\x87\x9e\x7fP9_\xd4b\xdf`\xe7'
b'+\xb4\x9c\x15\xb5\xf65h\xfa\x02?\x0e\x95\xe9\x98\x05\xa9R\xd2\x97L\xc2\xef\xef\xf2$\xa3\xd0|\x0c\xf5c'
b'\xb9dw\xd0\x9b\xde\x1f\x82\x17\x17\xae\xfb\xe7\x15\xd4,'
b'\xc0\xed\xbc\xeb\xdel\xb8\xee\xed\xa6\x98\xcfa\xdf\xf6\xf6|\xdf\x8b\xadS\x18\x9e\x85\xc1#X^\x81\xd7'
b')\xb9s\xfc\x89}\xd4\x16\xf6\xf1\xfc\xcejKw~\x07\xa4\xd2\x80#\x95\x1b\x85\x18\x00\x00\x00xeXIfMM\x00'
b'*\x00\x00\x00\x08\x00\x05\x01\x12\x00\x03\x00\x00\x00\x01\x00\x01\x00\x00\x01\x1a\x00\x05\x00\x00\x00'
b'\x01\x00\x00\x00J\x01\x1b\x00\x05\x00\x00\x00\x01\x00\x00\x00R\x01('
b'\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x87i\x00\x04\x00\x00\x00\x01\x00\x00\x00Z\x00\x00\x00\x00\x00'
b'\x00\x01,\x00\x00\x00\x01\x00\x00\x01,'
b'\x00\x00\x00\x01\x00\x02\xa0\x02\x00\x04\x00\x00\x00\x01\x00\x00\x00d\xa0\x03\x00\x04\x00\x00\x00\x01'
b'\x00\x00\x00d\x00\x00\x00\x00Rl\xd6\xc5\x00\x00\x00\tpHYs\x00\x00.#\x00\x00.#\x01x\xa5?v\x00\x00'
b'\x01YiTXtXML:com.adobe.xmp\x00\x00\x00\x00\x00<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core '
b'6.0.0">\n <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">\n <rdf:Description '
b'rdf:about=""\n xmlns:tiff="http://ns.adobe.com/tiff/1.0/">\n '
b'<tiff:Orientation>1</tiff:Orientation>\n </rdf:Description>\n '
b'</rdf:RDF>\n</x:xmpmeta>\n\x19^\xe1\x07\x00\x00\x08PIDATx\x01\xed][l\x14U\x18.\x16B\x89h\xd4\x14['
b'\xb0\xad\xc6\xa0\xa0\xb1\xd0*x\xa9('
b'5\xa1Q\xde\xc4\x07c\xbc\xc5\xbb1\xd1\x18\xa3B\x82\x89F\x135\xc6\x170j\x82\x17.\x05\xad\x97\xf8\xe2%Q'
b'\xe1\xc1\x8a\x8a\x9a\xa8@%\xa2\x95\x16+\xd0*\x8a\xdc\x0c\x16\x0b\xfa}\xdbN9;\xbb3\xbb\xb3s\xe6\x9c\x7ff'
b'\xf6O\xbe\xee\xdc\xce\xf9\xbf\xff|;g\xfe9gv:\xa6B\xbe\x9d\n\x8a3\x81&\xa0\x16h\x04\xaa\x80\xfa\x11T'
b'\xe2S\xb5#X\xd9\t\xfc\x02\x0c\x02]\xc0\x00\xb0qd\xb9\x1f\x9fbm\x8c@f\xd3\xc0\xa9\r\x98\x0b\xb4\x00S\x00'
b'\x9d\xb6\x0b\x95m\x00:\x81\xb5\xc0V\xa0l\xae\x16\xb8\x00\xebK\x80m\xc0\x7f\x86\xd1\x03\x7fK\x01rH\xb5'
b'\xb1+Z\x08t\x03\xa6E\xf0\xf2G.\x0f\x03\x93\x80\xd4\xd8tD\xba\x02`\xff\xee\xd50\xb6\xb7\x93\xdbr\x80'
b'\xddgb\xed\x1cD\xf6\x16`\xbb\xb1\x83\xfa\x7f\x03\x9c\x13%\x0c\xbb\xa6e\xc0\xd1\x18\x8a\xe1\x88G\xee'
b'/\x02\xd5@l\x8d\x19\xdc}\xc0_\x80\x13X\xdc?\xf7 \x96{'
b'\x80\xd8\xd9\xd9`\xfc\x19\x10w\x01\xbc\xf83e>3.\xaa\xdc\x0e\xa2\x07\x12,'
b'\x86#\xd2>\xc4x\x93dQ&\x82\xdck)\x10\xc2\x11\xc4\xf9\\\x89\x98\'\x00\xa2\xac\x0el\xbe\x03\x1c\x92i\xfb'
b'\xfc\x16\xb1sX\'\xb4\xe9\x18:i\x06\x8b\x8f\x00\xd37SC\xf0\xb9\x0e\xf8\n\xd8\r\xd0\xc8\xe1B\x80C/c\x01'
b'\x93\xd6\x0fg\xf3\x81M&\x9d\xba}]\x8a\r\xecKM\x9e\x11\x14\xe2i\x80\xe9\xb4\x97Q\x98\xa7\x00\x1ek\x92'
b'\x1b3\xca\xd9\x80\x15\x9b\x07\xaf\x07\x01\x93\x01s\xd46\xc8\x98\xd3\xf98\x9e\xdf\\\x93\x1c\xf7\xc3\x1f'
b'\xbf\xa8Fm\x0e\xbc\x99\x16\xe3O\xf8,'
b'\xe5\x8e\x99)8\xcb\x9a\x16e\x16|\x1a1^3LwSlL\xf6\xcf\xa5\x1a\xcb\x9a\x14\x84\xbe\xd8}\xcd('
b'\x95p\xb1\xe58)\xc4\x0b\xa8\xe9\xe0>,'
b'\x96\xa0\xcfq\xac\xc34oN\x94\xd5\xf8p\n\xb5\x8b\xf7\x19\x9cu3\x1d\x14\xfd-\x08\xc5|\xb8\xf05\x96\xb8'
b'\x7f\x03\xbfU\x1a\xf8\xe7T\xd1a) '
b'N\xc9\x8e\xcba\x13|\x03\xeb\xb05\xc0\xc9\xa1|\xadv\x17j\xb3qf\xd0\'\xcfJ]\xd6\x85\x8al\xc5q\xa3\xae '
b'8\xa1d:\xa3R\x1b\xed\x13]\x81\xa0\x1e\x0e\n\xaau\x9b\\f"t\x06\xe0k\xc7\xf9\xee\xad\xa8\xe0\x9d<O\xb7'
b'\xe3\x0b\x1c\x17\xe5\xee\t\x1a+\xe7u\xd0\x96\x9d\x08\xc7\xab\xc2:\x7f\x00\x15\x98\xfc\x16\xe5\xf3\xf5'
b'\x0f8\xf0\x8b\x11\xd6X\xc7a \x9f\x0f\x93\xdb\xee.5\x10\xa6k{\x05\x04\xc0\xc6\x9a['
b'j\x10J\xb9+\x84\xc4\xc2\x9b\xd4j\x85W\xd1\x8b\xaf\x08\t\x80\x82\xac.\x9a\xb5\xf7\x81k\x04\xc5\xf3\xbc7'
b'\xcd\xfc{\xce\x13D\x9e\x820]\r3\x14\xc11-['
b')/\xf9\xbbA.g\x01E\xdb;8\xd2]\x89\xed\xf5\x1f\xc0\xe9\xe4\xa2#8v\xe0IX\xdc\x02\xd8\xe6\xef\xf6\xff\xfa1'
b'\x8a\xfeK\xd2\xce\x0e5\x10N\x04\x05\xe9\x7fO\xc1\xf1\xbcSV\xeb\x90\xb4\\\xd4Y\xd2.8\x006\xe6\xef\xc0'
b'\xf5@!\xbb\x16\x07\x98\x1ez\x0f*6\xaf\xd3Y\xe6N\'9\r\xf9+`z\xb6-\x8bT\x91+=8\x8e\x0f\xb1\xad\x078\xb2Jc'
b'\xf7\xc4\xa9\x81\xeb\x80\xa9\x80t\xe3\x13\x92u\xc0\x1f^D\x17cGP\x95\xcb\xc7\x87k\xb3\x87T1\xdcg\x08\x9f'
b'>\x8f\xcd\xf3Fj 1^\xfe\t\xdcG\'\xde\xd4\xa1\x93\x8b\xcbbX\x91\x953\x9a\xcd\x8eg\xf5Zq\x83\xb31&\x9f\x1c'
b'\x06\xf9\x00\xf8\x12\xd8\x0c\xb0?n\x00.\x01\x16\x00~\x0fA`\xb7('
b'\xbb\x19l\xf8\x18U\x96\xf5b-\x0e\xd7\x03\xce\x8f<\t0\xa5\xf5\xb2\xf1\xd8\xb1\x088\x08\xc4!\xa6\x9f\xdd'
b'\x81\x9c\x1b\x13\xe2\xcc\xa6Z\xdc\xe4}\xd69\xa7\xbd\x03\x88\x83('
b'\xec\xba*\x9ck\xc8<\xae\x0876\xea\xd5\xc0\x17\x01x\xb2+\xe3\xa0\xa2\x93\x16\x07('
b'j\xfc\xd06zt\x04i5\xee>\xb8\xc3\xe7P\xa43x\xb1\xccO\xe68\x8d '
b'\xddZU\x82\x03X\x91|Z\xf3\xba1Y%\x1cp\x99\xe9\xfdv@r\x8c\xecZ3g\x08\x03\x8d\xecQ\x15:\xd1`\x9f\xa3\x0e'
b'\x0e\x83\x94j\x14\xe2\xddR\x0b\x1b*w\x1a\xfc\xd4\xb0\xcbj4\xe40\x8c\x9b '
b'\xd7\r/?\xbd^;\x04m\x9fAA\x9a\x04\x11\xf2\xa2r\xc8kG\x80\xed\x1c\xa3\x93nM\x14$L\xdf,'
b'=@\x95\x1f\xbb-\xe9VKA8\xff\x91\x06s\x8f\xdbI\x8c\xb9\x91\x82\xf0\xae6\r\x16\x07A\xaa('
b'\xc8\xe91PCGc\xea\xa8#\xea\xa6\xaa\xa7 '
b'L\xb7\xa4\x9b\x8e\xfe?6\x82TJW#E\xfc*y\x86\xa4\xc5\xe2p\x86\x8c\x8ee\xa5A\x94\xb2 \xc2T\x8e\x8d '
b'\x1c\xb8+\x9b\x8c\x16\x18\xe25$3\xca('
b'\x83O\xeaY\xf4Q\x90\xbe\xd47\x83\x9c\x06\xd8IA\x06\xe5\xf0\x89\x94\x89\x8e{'
b'\x99H\t\xa2\xf2C\x14\x84\xbf\xbb+\x9b\x8c\x16\xe8\xa2 \x9c-,\x9b\x8c\x16\xe8\xa7 '
b'\x1bep)\xb3\xa0\x16\x14\x84Of\x94MF\x0blv\xba\xac]2\xf8\xa4\x9a\x05g4wS\x10\xda\x86\xe1\x8fD\xff\x95'
b'~\xa7\x9e\xd1\xc0\x11\xa43\xd1R\x0c\x07\']\x90\x8c\x06\x8e \xebR '
b'\x88\x13\xab\xd4P?&1\x87$\x7fP\xb9\x9d\x1b\x12lN\xac\x12C\xec\x06\xa9\xcc\x03\xd7*\xc9\xf7$2\xd5\xc8I'
b'\x8dUc\xb5Z\xaa\x1am{\x95\xe4\x1a-U\xcb\xadD\x8dU\x1a\xcbv\x87\x90J\xf2kl\xe4O\xda\x92jR\xa7\xaa\x7fD'
b'\x83or\x1a]\x15\x84\xdb^uv$\xf0S\xaa '
b'/\xa9m\xed\x16d9v\xfe\xab\x1e\x90\xa0ew\xac\x12B\xe3\x9b\x8e\xdaU"n\x92\xbfag\x87z@\x82\x96\xdd\xb1J'
b'\x08\x8d\xd7\xed\xac\xdf\xa8\xe7#\xf9\xac\x04\xa6\x11p\x90xc\xf8\x8c;\xce|\x82|\x8f\x83\xf8\xf2\x99'
b'\xb2E\xdb\x02\xec\x89r~\xec\x99O\x10\xd2x,'
b'Z.Vj?j\xc5k~\xa7\x9c\xbd|4\xdf./A\xf8:\xa3\xa4e\\\x92\x04y\x01\xed\x9bsvP '
b'/A\xb8\xef\x11`\x1f\x17\x12bR\xb2\xc7=h\xcf\xc7\xbd\xda\xd4O\x10f\\\x9e\x05\xbd*\x14\xbc]\x8a '
b'\x8b\xd1FY\x99\x95\xdaf~\x82\xf0\xb8%@f\x9c^-\x14\xd3e\xe6\xfc\xb6\xedS\x10X\xe6G\xa2\x90 '
b'\xbc\xf8\xdc\x06\xfc\xedW\x89\x81}:RV\x1d\xbfS\x0c\x13\xea~\x14\xbe\xa5P\x05\x85\x04a\xf9\xad\xc0\x83'
b'\x85*\x8a\xc1~\xdb\xcfe\xdd\x8b6\xea-\xd4N\xc5\x08\xc2:x\x9a\xf1\xedm\xb6L\xc78\xd44['
b'\xe4\xe1w\x15\xb0Z\xb7\xff\x89\xa8\x90\x8f\x0c\xf1\x9bf\x1a\xefk\x08\xa6\xdd\x02o\xb6\x13_\xdc\xa9\xf3u'
b'\xe9YM\xd1\x805\x1b\xff\xd0e/\xfc\x8e\xcbb\x12l\xe5\x04\x1c\xce\x14\xde\xf4\x17\xa9\x1f>k\x83Q\r~t3\x8a'
b'\xd8\x08\xee\x8e\xe0TGK0}7-\x06\xdf@4s\x94A\xc4\x0b\x97\xa1~f^&\x83d\xee^WB\\sPf\xc80WfT\x17\x95\xc05T'
b'\x91+Q\xda\xb4([\xe03\xc8\xc5y>\x8egwg\xf2\x8bC1.\x07\xac\x18\xcf\x14\xd3\xdd\xd7\x01\xf8|\x02\xf0\xeb'
b'\x9b\xeb\xb1\x9f\x99\xa1I!\xe8\x8b\xddT\xa83C\xc7\r\x17\xaf)|\xa6\xa8\x1a0i\x1c,'
b'\xe4s\x00|S\x10E\xa2\x8d\x05Z\x81\x16@Gl\xa8\xa6h\xe3P\xd3U\x003Q\xeb\xc6o\xa4\xad\x94\xd8\xf4Y\x90\xcf'
b'\x1fS\xdb\xc9\xd6Up\x11\xe0}J\x07\x90\x8fp\x92\xb7\xf1\x86\xcf\xe6\xbf\x84r\xc9\x90\xbbz\'6\xc5\xe5\xf5'
b'\xaca\xbe(\xbcx\xdf\x9a\x1b\xbe\xcc-\xcc\x84\xf8Z\xbe0\x01K.\xbb\x1e\xb1M\x95\xd9\xf4\xde\xacxQ\xbd'
b'\x1f0\x9dvF)$\xb3(\x0e\x12\x9aN\x18\xe0R\x9f\xf1\x95\xdf/\x03Q6T\xd4u3\xa3c\x1a=\tH\x8c\xf1\xed\xd9o'
b'\x03Q7\x9e\xee\xfa\xdf\x04\xe7\xe9\x89Q!O '
b'\x14f%p\x18\xd0\xddx\xba\xea\x1b\x04\xb7\x15@\xa2\x85@|YV\x83\xb5E@7\xa0\xab!\xc3\xd6C.\x0b\x818\xfdg'
b'\x05\xd0\xd5o\xb3Q\xe5R`\x1b\x10\xb6Q\x83\x96\xef\x19\xf1=\x0b\x9f\xd6Mb\xb6\xc0n\xa2\r\xe0\x00\x1d\x87'
b'@\xa6\x00:\xad\x1f\x95q\xb8\xa5\x13X\x0bp\x8aZ\x8cI\x14\xc4\xdd8\xec\xda\xf8o\'\x9a\x00\x0eO\xf0M\xdc'
b'\xe3\x81\x06\x80\xc3\xf1\xee\xe9\xdd#\xd8\xb6\x03\xe8\x03x-\xe8\x02('
b'\x02\x87v\xb8<\x00\x88\xb5\xff\x01]\xbaO\x9b\xc9\xbb\x12c\x00\x00\x00\x00IEND\xaeB`\x82'
)
# The Image for the Time Button
open(os.path.join(ASSETS_FOLDER, "Time_button_img_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00d\x08\x06\x00\x00\x00p\xe2\x95T\x00\x00\x01'
b'\x84iCCPICC profile\x00\x00(\x91}\x91=H\xc3@\x1c\xc5_[E)\x15\x073\x888\x04Z\x9d,'
b'\x88\x8a8j\x15\x8aP!\xd4\n\xad:\x98\\\xfa\x05M\x1a\x92\x14\x17G\xc1\xb5\xe0\xe0\xc7b\xd5\xc1\xc5YW'
b'\x07WA\x10\xfc\x00qtrRt\x91\x12\xff\x97\x14Z\xc4xp\xdc\x8fw\xf7\x1ew\xef\x80`\xa3\xc24\xabk\x1c\xd0t'
b'\xdbL\'\x13b6\xb7*\xf6\xbc"\x8c\x10\x04D\x11\x95\x99e\xccIR\n\xbe\xe3\xeb\x1e\x01\xbe\xde\xc5y\x96\xff'
b'\xb9?G\x9f\x9a\xb7\x18\x10\x10\x89g\x99a\xda\xc4\x1b\xc4\xd3\x9b\xb6\xc1y\x9fX`%Y%>\'\x1e3\xe9\x82\xc4'
b'\x8f\\W<~\xe3\\t9\xc83\x053\x93\x9e\'\x16\x88\xc5b\x07+\x1d\xccJ\xa6F<E\x1cS5\x9d\xf2\x83Y\x8fU\xce['
b'\x9c\xb5J\x8d\xb5\xee\xc9_\x18\xc9\xeb+\xcb\\\xa79\x8c$\x16\xb1\x04\t"\x14\xd4PF\x056\xe2\xb4\xea\xa4XH'
b'\xd3~\xc2\xc7?\xe4\xfa%r)\xe4*\x83\x91c\x01Uh\x90]?\xf8\x1f\xfc\xee\xd6*LNxI\x91\x04\xd0\xfd\xe28\x1f'
b'#@\xcf.\xd0\xac;\xce\xf7\xb1\xe34O\x80\xd03p\xa5\xb7\xfd\xd5\x060\xf3Iz\xbd\xad\xc5\x8e\x80\xfem\xe0'
b'\xe2\xba\xad){\xc0\xe5\x0e0\xf8d\xc8\xa6\xecJ!\x9a\xc1B\x01x?\xa3o\xca\x01\x03\xb7@x\xcd\xeb\xad\xb5'
b'\x8f\xd3\x07 C]\xa5n\x80\x83C`\xb4H\xd9\xeb>\xef\xee\xed\xec\xed\xdf3\xad\xfe~\x00ppr\xa6\x9d\xdf\xe4'
b'\xa4\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\tpHYs\x00\x00.#\x00\x00'
b'.#\x01x\xa5?v\x00\x00\x00\x07tIME\x07\xe6\n\x04\x120!E\x96\x8cz\x00\x00\x0b4IDATx\xda\xed\x9di\x8c\x1c'
b'\xc5\x15\x80\xebUwuu\xf51=g\x8fgvgvg\xd8\x0b\x8c\x17{}@\x16\x1bac\x91('
b'&\x96\x16C\xb0\x88\x14CNA\x10!QH\x1c)\x12\x91\x13#E\x1c\x8e\x81@,'
b'\xe1\xdcJ\x10D$\x10\x85\x04\x0b\x0c\x11\x180$\x868\xc4\x98\x18cl\x13\x1c\xaf\xf7\xb0\xf7\x9c\xbb\xf3'
b'##\xdb\xd9\xed\x9e\xbdz\xa6gv\xfaI\xfd\xa7\xa4\x99\xf7\xba\xbe\xaaW\xefU\xd7\x81\x90+\xae\xb8b-\\\xad'
b'\x19\xdc\xdd\xdd\xed\x1d\x1e\x1e\xfeX\xa1PX\x9b\xcf\xe7W\x00\xc0RQ\x14\x13\xf1x<788\xd8\xef"\xad\x80'
b'\xe8\xba~\x01!\xe4.A\x10\xfe\x86\x102\xac\x1e\x9e\xe7O\x12B~\xc9\x18['
b'\xb7i\xd3&\xec\xd6\\\x19D\x14\xc5G\x11B\x85R ,\xe0|\xa8\xebz\xbc\xd6\xde\xb7\xea['
b'Q:\x9d^\x82\x10\x82\x99\xfe.\x97\xcb5\xe4r\xb9\xa0\x0b\xc4\x15\x17\x88\x0b\xc4\x15\x17\x88\x0b\xc4\x15'
b'\x17\x88+.\x10\x17\x88+.\x90\xf2T\x1c\xc6['
b'\x04A\xb8/\x16\x8b%\xea\xea\xc5\x01\xa0\xe4\xfcU\xa9\xc7\xef\xf7w\x95\xc9\xac{'
b'\xce\xd3\x93\'\x84\xfc4\x16\x8b5\xcc[\x08\xb1X,'
b'\xa2i\xda\r\x8c\xb1\xfb\x01`p\xb6@\x08!\x7f\x90e\xf9\xeb\xc1`p\xc5\xd6\xad['
b'\xc1&\xf3\xee3\xd3\x05\x00\xc3\x8c\xb1\xaf\xce\x1b\x08\x91H\xe4\x12J\xe9\xf7$I\xfa\xc7l\x01\x94z\x00'
b'`\x80\x10\xf2\xb8\xaa\xaa\xd7uuuI\xb34s\xdbTz8\x8e{'
b'R\x96eV\x93\x10\x12\x89\x84&\x08\xc2\xed<\xcf\xef/\x07\x84\x12p\x86('
b'\xa5\x8f\xfa|\xbee3p\x9d?\x9c\xc1\xff\xefnmm\x15j\x06D8\x1c^ '
b'\x8a\xe26\x8c\xf1P%A\x98=\x18\xe3\x974M\xfb\xc4\x14\x03\xf8\x03\xb3\xf8\xdfG\xaa\x1e\x84$I\x1a\xc7q\xf7'
b'"\x84F\x9d\x06\x81&\x7f?yM\x96\xe5\x95&=\xe3\xc1\xd9\xfe\xa7\xcf\xe7[7\xe3 \xa6R0\x08!7e\xb3\xd9{'
b'\x11B\x81\x99\xfc\x8eR\xda\'\x08\xc2['
b'\xb9\\\xee\xa0a\x18\xef0\xc6\xfau]?z\xf2\xe4\xc9l*\x95\x02\x9e\xe7\x91,'
b'\xcb\x06\xcf\xf3\xfa\xe8\xe8h\x14\x00\xe2\x99L\xa6\xd50\x8cK\xc6\xc6\xc6.\x9a\xa9\x9d<\xcf?\x861\xbe'
b'#\x93\xc9\x9c\x04\x80\x87\x0c\xc3\xf8\xca\x1c"\xc4\x0f\x9a\x9b\x9b/<r\xe4H\xaajz\x85\xa6iq\x8c\xf1s3'
b'\xf0\xbfiI\x92\x9eV\x14\xe5\xd6H$\xd26\x17\xddmmm\x9a\xa2(\xeb('
b'\xa5\xdb\x01\xe0\xd8\x0cl\x18\xc4\x18?mG\xcf#\x84\xdcV50DQ\xdc\x80\x10\x9a\xd68!\x08\xc2\xab\x1e\x8f'
b'\xe7s\x9d\x9d\x9dZ\xb9\xec\t\x85B\x97\x17?\t\x0fW\xd0\x15\x1e\xef\xee\xeevv1\xc9\xea\xd5\xab9A\x10\xee'
b'\x9f\xa6\xc1Oh\x9a\xb6\xa2\x92\xf6\xb5\xb7\xb7{\t!\x9b\x01\xe0T%\xa00\xc6\xd68\xd9+d\x00xv\x1a '
b'v\xab\xaa\xba\xc4\xe1hO\x15\x04\xe1.\x84\xd0H\x19C\xec\x1d\x8e\xbd`0\x18\x0c`\x8c\xf7Na\xe0G\x94\xd2'
b'\xeb\xe7\xaa\xab\xad\xad\x8d\xb5\xb7\xb7/\x0b\x04\x02s^Y\x12\x08\x04b\x84\x90\xa7\xca\x10R\xff\xd81\x18'
b'\xba\xae\x071\xc6\xfb\xa7\xc8b\x9fH&\x93\xde\xb9\xea\x12\x04a%\xc6\xb8\xf7\xbc\xde\xb6\xdd\xa6\x00\xe43'
b'\xd3\x1d\xf3\xaa\x1aF2\x99T1\xc6\xa5&\x01S\x82 '
b'\xdcb\xe3L\xeb\xe1\x89:DQ\\g\x13\x94$\x00\xfc}\x8e0\x9cK\n\x1b\x1a\x1a\x04\x00x\xa1\x84\x8b\xea\xa3\x94'
b'\xae\xb4K\x9f\xa2(\x01\x8b$\xecn\xbbtPJe\x8e\xe3\x9e\x9a%\x8c\x87\x1d\x8d\xa88\x8e\xdbQ\xc2\xc0c\xaa'
b'\xaa\xb6\xd8\xa9\xcf\xef\xf7\x87,\xc2\xe6\xfb\xec\xd4\xd3\xd3\xd3\x03\x18\xe3\x1d3\x84\xf1\x90\xa30('
b'\xa5\x9f/a\xe0Q]\xd7\x9b\xec\xd6Y) '
b'\xe7e\xdb\x0fO\x13\xc6\x83\x8e\xc2\x90e\xf9"\xab9)\x00\xf8\x0f\xa54Y\x0e\xbd\x95\x06R\x9cN\xf9\xc9\x140'
b'\x1epz\xda\x9cX\r\xe2\x000&\x8a\xe2e\xe5\xd2\xed\x04\x90\xa6\xa6&\xc2q\xdcn+ \xa2(^\xe9('
b'\x10\xc6\xd8f+\xe3dY\xfel9u;\x01\x04!\x84\xe2\xf1\xb8\x1f\x00\x8eX4\xc2\xf7|>\x9f3\x1f\xa54M\x8bYe\xb6'
b'<\xcf\xef,\xb7~\xa7\x80 \x84\x90$I\xcb\x10B\x19\x0b\xfd['
b'\x1c\x01B\x08\xf9\x85E+9\x9cH$\xe4\xf9\x0c\xa4\x98\x94~\xc7\xc2;\x8c\x06\x83\xc1\xc6\x8a\xc2\xf0z\xbd'
b'\x97X\xb9*J\xe9\xdaJ\xd8\xe04\x90\xd6\xd6VB\x081M\x1c\t!\x95\xcd\xce\x19c\x8f['
b'M\x89T\xca\x06\xa7\x81\x14]\xd7\xe5\x16\r3\x13\n\x85b\x151\xc2\xe7\xf3\xb5 '
b'\x93\xade\x18\xe3\xb4\xae\xeb\xc9z\x02Rt\xdd\xbf\xb5\x88\xb8\xb6U\xaaUl\xb3\xe8\x1d\x15\x9d\xb7\xa9\x16 '
b'\x8a\xa2,2k\xa0\x00p\xba\xa3\xa3C)\xab\xf2\xae\xae.\n\x00\xfd&\x15QhllL\xd4#\x90\xe2\x00o:\xdf\xe5'
b'\xf5zo*\xabbUU{,*\xe1\xc9JWB5\x01\x91e\xf9*\x8b\xc1\xfd\xf9\xd9\xfe\xe7\xb4\x16['
b'\xe7r\xb9\x8d\x16sY\x8f\xa2:\x96\xd1\xd1\xd1\xe7\t!\x87\'\x96g\xb3\xd9\xd5\xf1x<\\\x16 '
b'\xeb\xd7\xaf\xe7S\xa9\xd4\xc7\'\xfd\x10\xe3S7\xdex\xe3\x9fP\x9d\x0b\xa5\xf4W&\xc5\xd0\xd7\xd7\xb7\xae'
b'\\.\xe2\nd\xfe\xe1\xde\x91/b\xd5\xe4\xb2\x8a\xd1\xe7B\x8bh\xeb\x89\xb2\xf4\x90\x91\x91\x91+-r\x92\xba'
b'\xef\x1d\x08!488\xf8O\x8e\xe3\x8e\x9b\xb8\xad+\xca\x02\x04c|\xa9I\xb1\xa1\xeb\xfa\x0b.\x8e\xb3u4i\x10'
b'\xcf\xe7\xf3z,\x16K\xda\x0e\xc40\x8c\xa5&~\xf3\xed\x83\x07\x0f\x0e\xb9('
b'\xfe\'\x9a\xa6\xed1+\x1f\x18\x18Xj+\x90\xce\xceN_:\x9d\x0e\x9b@\xfa\xab\x8b\xe1\xbc\x11\x1c\xe0-\xb3r'
b'\x9e\xe7/\xb6\x15\xc8\xfb\xef\xbf\x7f\x81Ed\xf1\xb6\x8b\xe1\x9c,'
b'_\xbe|?\x00\x18\x13\xcbS\xa9T\xb3\xad@$Ij\xb5\xc8P\x8f\xbb\x18\xce\xc93\xcf<\x93\x11\x04\xe1\xc4\xc4rBH'
b'\xab\xad@\x86\x86\x86L\x17>{\xbd\xde#.\x86IQ\xd5\t\x13\x97%\xdb\n\xc4\xe7\xf3\xf9\xcc\xca\xfb\xfa\xfa'
b'\xc6\\\x04\x93\x1a\xe9\xc0\xc4\xb2\xd3\xa7O\xc7l\x05r\xe2\xc4\t\xbfY\xf9\xc6\x8d\x1b{'
b']\x04\x93\x06\xf6\x01\xb3\x1e\x92\xcf\xe7\xc16 '
b'\x08!\xb3.g\xec\xda\xb5\xcb\xb1\x1dA\x85B\xc1\xb4\\\x14\xc5\x82\x93@\x86\x87\x87GL\xa2Q\x0ec\x8c\xec'
b'\x04\x925k\x0ck\xd6\xacql\x87\xe9\xda\xb5k\xfb0\xc6}\x13\xcb\xd3\xe9\xf4\x9bN\x02\x91$I4I\x18\r\xc30'
b'\xecS\x12\x8b\xc5\xbe\x8bL\xe6i\x16/^\xdc\xe2\xe4\xcb\x13B6\x02\xc0\xd9\xd5\x1f\x00\xf0\xdc\x92%Kx\'m\n'
b'\x06\x83\x7fD\x93?V\x8d\xd8\xaaDU\xd5\xdb\xcc\x80\x04\x02\x81\xa5\xc8aI&\x93\tB\xc8\x17\x82\xc1\xe0\'7l'
b'\xd8\x00N\xdb\xc3q\xdc\xa4}1~\xbf\xff\xa0\xadJdY\xbe\xd9\x0cH<\x1e_\x87\\\x99\xe8\xb2\x0e\xa1\xc9\xeb\r'
b'\xde\xb05\xcaRU\xf5_f\xe5\xfd\xfd\xfdq\x17\xc19\xd9\xb2e\x0b\x1e\x1f\x1fO\x9a\xd4\xdf\x11['
b'\x81\xf8\xfd\xfe\x0f-\x92\xa0\x8b]\x0c\xe7d\xe7\xce\x9d\xed\x86aL\xaa\xcb\\.w\xccV '
b'\x07\x0e\x1c8\x8a1\x1e5\xf1\x97\x8b]\x0c\xe7ddd\xa4\xd3\xac\xdc0\x8c\x03\xb6\x02)&7\xfb&\x96\xa5R\xa9'
b'\xa5\xabV\xad".\x8a\xb3@.\xb3\xf00\xfb\xca\x01d\xaf\tyz\xe8\xd0\xa1n\x17\xc5\xd9d\xf5*\x93\x1cd\xfc'
b'\xdak\xaf\xddo\xbb2\x8f\xc7\xb3\x1e\x99/u\xd9\xea\xa2@('
b'\x16\x8bE\x91\xf9Z\xe7gg\xf3\x7fS\xf6\x90h4\xfa"B(o\xd2K\xaewq '
b't\xe6\xcc\x99\r\x16\xc9\xeb\xee\xb2)\x95ey\x97Y+\xf0x<K\xeb\x1d\x08\xcf\xf3/\x9b\xd5M8\x1c\xee(\'\x90['
b'\xcc\x94J\x92\xf4p=\xc3\x08\x04\x02\x17Y\xb8\xf3\x03eU\xac\xebz\x00\x00\xd2&\xca\x87\xdb\xda\xda\xb4z'
b'\x05B\x08y\xc4b\xfc\xf8v\xd9\x95\x8b\xa2\xf8k\x8b\xd6\xb0\xb9\x1ea\x84\xc3a\x1d\x00&\xedB\x06\x80\\4'
b'\x1a\r\x97\xdd\x00\x9f\xcf\xb7\x12\x99o\t\xee\x8fD"u\xd7K(\xa5\xdb,'
b'\x1a\xe8c\x153\x82\xe3\xb8\xd7\x90\xf9\x1e\x91\x1f\xd4\x13\x8c`0\x98D\x08\x8d[\x04:\xcb+f\x88,'
b'\xcb\xd7 \xf3\r\x9f)I\x92\xda\xea\x05\x88 \x08\xbfC\xe6\xbb\x90\xff\\qc8\x8e{'
b'\xc5\xa2\x97\xd4\xc5\xd2RQ\x14\xafC\x16\x1b_UU]Vq\x83dY^\x81\xacO\x89\xfb\xc6|\x86\xd1\xd8\xd8\x18\xb5'
b':\x16\x90\xe7\xf9\x9f;f\x18clg\t\xd7u\xe9<\x8d\xaa\xb8\x12\xc7k\x0c\x05\x02\x81\xa8c\xc6\xe9\xba\xee'
b'\x03\x80\x93\x16P\x8ey<\x9e\xc8|\x03\xc2q\x9c\xe5Q\xe3\x84\x90/;n '
b'c\xec\x1ad}:\xce\xeb\xaa\xaa\xca\xf3\x05\x06c\xecVd}la\xf5\xec\x93\xc1\x18oG\xd6\'\xc9\xfd\xc5\xef\xf7'
b'\xb3Z\x87!\x08\xc2&d}\xf5\xeb\t\xc6\xd8\x82\xaa16\x1e\x8f\x0b\x18\xe3\x97K\xf4\x94\x17=\x1eO\xcd\xf6'
b'\x14\x00\xb8\x19c\x9c\xb7hp\x19UUWU\x9d\xd1\x9a\xa6E0\xc6GK@yMQ\x94\x9a\x1bSDQ\xbc\x13\x95>B\xfc\x8bUk'
b'\xbc\xc7\xe3\xe9\xc0\x18\xf7\x97x\x81\xa3\xb2,'
b'/\xab\x05\x10\xa1P\x88\xf1<\xff3T\xfa\xa4\xea\xefW\xfd\x8b\xa8\xaa\xba\x1c\x958\xf3\x16\x00\xc6)\xa5U'
b'}%\x10\xa5\xb4\xa3\xb8\x1b\xaa\xd4q~?\xaa\xa5\xd0p\xb9 '
b'\x08}S\xbc\xd0.BH\xb2\x9a\xec\xbe\xfa\xea\xab9\xc6\xd87\xcdfo\'$\x7f\xdbQ\xad\x89\xd7\xeb\xbd\x10!\xf4'
b'\x01*}\x8a\xe7(\xc7q[\x02\x81\x80\xe3\x03\xbe$Ik8\x8e\x9b\xf2\xca%Q\x14\xbfU\xb3\xa1\xa2\xa2('
b'\x11\x8c\xf1+h\xea\xa3U{%I\xba\xbd\xa5\xa5E\xa9\xb4\x8d\x1e\x8f\xe7r\x9e\xe7\xa7s\xaf\xc9('
b'!\xe4\xd35\x9fL%\x12\tJ\x08\x99\xd6\xddM\x18\xe3\x01A\x10\xeeY\xb0`Ak9mZ\xb4h\x91\xa4('
b'\xca\xa6\xa9.\x0c8o\xdc{WQ\x94\xf9\xb5JS\x14\xc5O\x01@/\x9a\xfe\x05('
b'\xaf+\x8a\xb29\x18\x0c\xdaR\x11\x0b\x17.\xf4+\x8ar\xbd('
b'\x8a\xbf\xc1\x18\x0f\xcf\xc0\x8e\x1d\xa1P\xa8\xe2.\xb5"\xcb\xf8\x9b\x9b\x9b}\xbd\xbd\xbd\xdb\xc6\xc6'
b'\xc66\xcd\xe4w\x84\x90^A\x10^5\x0c\xe3MB\xc8;\xb2,'
b'\xbf\x97H$\x8e\xed\xd9\xb3\xa7\xcf\xa4\xe2Y&\x93i\x1a\x18\x18\x88\xe6r\xb9\x0e\xc30\x16\x8f\x8f\x8f_V'
b'\\\x87<\xed\xf7\x04\x80\xc3\x84\x90/e2\x99\xddh\xbe\x0bc\xac\x1b\x00\xde@\xf6\\\x94R@\x08\xa5\x01 '
b'\x8f\x10*\x14\xf7\x89\xcf\xe5\x19"\x84l\x8e\xc5b"\xaa7Q\x14e\xfd\x14\xd7['
b'T\xf2\xba\xbc\xd3\x8c\xb1\xbb\xc3\xe1\xb0\x0f\xd5\xbbx<\x9e+%Iz\x12\x00\xb2\x0e\x80xG\x14\xc5;\xe2\xf1'
b'\xb8\x07\xb9\xf2\xff\xd2\xd4\xd4\xa43\xc6\xbe\xc6\x18{\tY\xcf\xac\xce\xf9\xe18\xee#I\x92\x1e\x92$i\xa5['
b'\xeb\xd3\x94\x8e\x8e\x8e\x90\xd7\xeb\xbd\x81\x10\xf2\x08c\xec\xcd\xe2\x181+\x00\x94\xd2\x7fSJ\x7fO\x08'
b'\xb93\x1a\x8d\xd6\xc4\x9e\x16\xa8v\x03{zz\xb8\xbd{\xf7^\x9c\xc9dZ0\xc6\xe13g\xce4g\xb3Y\xadP('
b'@\xd1~\x03\x00\x10\xcf\xf3iQ\x14\x8fg\xb3\xd9S\x9a\xa6\xbd\xdb\xd0\xd0ph\xdf\xbe}\xa7\xdc&\xee\x8a+\xae'
b'\xb8\xe2J\xbd\xc8\x7f\x01TC\xbe}r\xbb|\xfc\x00\x00\x00\x00IEND\xaeB`\x82'
)
# Image for the delete button
open(os.path.join(ASSETS_FOLDER, "Trash_icon_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00\x85\x08\x06\x00\x00\x00\xad\xfa]s\x00\x00'
b'\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x84eXIfMM\x00*\x00\x00\x00\x08\x00\x05\x01\x12\x00\x03\x00'
b'\x00\x00\x01\x00\x01\x00\x00\x01\x1a\x00\x05\x00\x00\x00\x01\x00\x00\x00J\x01\x1b\x00\x05\x00\x00\x00'
b'\x01\x00\x00\x00R\x01(\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x87i\x00\x04\x00\x00\x00\x01\x00\x00'
b'\x00Z\x00\x00\x00\x00\x00\x00\x00H\x00\x00\x00\x01\x00\x00\x00H\x00\x00\x00\x01\x00\x03\xa0\x01\x00\x03'
b'\x00\x00\x00\x01\x00\x01\x00\x00\xa0\x02\x00\x04\x00\x00\x00\x01\x00\x00\x00d\xa0\x03\x00\x04\x00\x00'
b'\x00\x01\x00\x00\x00\x85\x00\x00\x00\x00\xc95]-\x00\x00\x00\tpHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01'
b'\x00\x9a\x9c\x18\x00\x00\x02\x9ciTXtXML:com.adobe.xmp\x00\x00\x00\x00\x00<x:xmpmeta '
b'xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 6.0.0">\n <rdf:RDF '
b'xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">\n <rdf:Description rdf:about=""\n '
b' xmlns:tiff="http://ns.adobe.com/tiff/1.0/"\n '
b'xmlns:exif="http://ns.adobe.com/exif/1.0/">\n <tiff:XResolution>72</tiff:XResolution>\n '
b'<tiff:YResolution>72</tiff:YResolution>\n <tiff:Orientation>1</tiff:Orientation>\n '
b'<tiff:ResolutionUnit>2</tiff:ResolutionUnit>\n '
b'<exif:PixelYDimension>133</exif:PixelYDimension>\n '
b'<exif:PixelXDimension>100</exif:PixelXDimension>\n </rdf:Description>\n '
b'</rdf:RDF>\n</x:xmpmeta>\n*6\x8d\xd0\x00\x00\tJIDATx\x01\xed\x9d\xc9\xab\x1dE\x14\xc6\xd5$\x0e\x99H'
b'\xd0ET\xc8\x80\x18PA\xb2\x10Lt#\xa2\xb8rcPAA\x17nDt\xe1\xca\x7f\xc1\x85\x0b\x15A\xdde\xa3\x8b '
b'\x82\x88\xbaq\x88\x8a\x88 F$N\xa8\x98\x18D\xc58G\x133\x18\xbf\xdf}\xaf\x8b\x1e\xaa\xeaNU\xdd\xf7\xde'
b'>\x07\xce\xeb\xbeU]\xe7\x9c\xfa\xbe\xee\xae\xaa\xd3}\xef;\xeb\xac\xf6d\x83\\\xdd#}M\xfa\x97\xf4\xcc\x8c'
b'+1\x12+1\x13\xfbB\xc9N\xf5f\xbft\xd6I\x08\xc5G\xec\xbb\x16\x85\x91\xeb\xd4\x91#sLFA\x12}\xa0/s-\x1b\x15'
b'\xfd\x01i\xd1\xa9y\xdf\xd2\x17\xfa\x94MVf\xb3\xbcd\xf8\x0em\xae\xac\xf9\x80\x14\xee\xcf\x7f\xd7\xcag'
b'\xed\xe3\x1a\x05\xb4Nzv)0\xfaB\x9f\x9e-\x95\xcd\xcd.d\xbf*-_\x15\xff\xe9\xf3\x1e\xe9&\xe9\xf93\xae\xc4'
b'\xb8GJ\xcc\xe5>\xbc\xa2\xcf\xb9Od\xb9H/\xabe\xf2\x0bi\xb93\xbf\xe9\xf3\xc5\xe9]e\xb3H\xac\xc4\\\xee\x03'
b'}\xa2oY\xe4\x9c,V\x97\x8cr\xa9\x9fW\xb3\x7fT\x9f\x7f\xaf\x95\xcd\xf2Gb%\xe6\xb2\xd0\xa7\xf2m\xac\\7\xf5'
b'~NB\xa6\x0e\xae\x8f\x06\x8c\x90\x19c\xdd78A\xd2\x05\xd2i\xc9\xe2>['
b'\xbf\xb4\xf9\xbcV\xea\xf3\xab\xe2\x99\x13&\x1e\xa1>L\x8b\x0f\x93\x85cR\xb6N\xca\xce '
b'\xe1.\xe9\xed\xd2\xad\xd2\x15\xd2i\x04\xdb\x9b\xa5\xabJFNi\xff\x90\x94Ar\x1e\x84>l\x91\x96O\xa0\x93\xfa'
b'\xfc\x9dt\xda>\x9c\x96\x8d\x83\xd2\x17\xa4\xcfI!\xc7\xc9\xa5\xda\xdb\'\xe5\xa0\xf2\x8c\xc2\xf6\xf3\xe3'
b'\x01\xe6oK\xe1` ,\x80\xde\x94\x1a\xf8\xddb\xf0\x868X\xc3m\x89\xdb\xd4\xc3R\x93n\x11\xd8&\xf7_B\xc8\x93'
b'\xd2-\xdd\xc6b\xde\x97\x11\xb8\x90A\xeb_\xe9\xb9\x06\xc9L '
b'p\x02B\x98v\xb15\xe9\x1e\x813\xcc\xa5\x0fw\x1f\x87E\xb0\x8c\xc0a\x08\xd9kp\xcc\x0c\x02{'
b'\xb9Um\x97\xbe\'\xbdhf\xc2\xeag <\x91\xbc\xbe\xe8\xfa\xdd\xda\xe1\x81\x91\xadE\xba\xc1\x00\xec\xe1\xc0'
b'\tW\xca\x8d\xd2\x0f\xa4\xffH\x19\xe8\x8d\x9c\xbc\x18\x801X\x839\xd8\x0f&V\xf5\xd9\x15\xb9\xfe\xab\xa4['
b'\xa56\x15\x16\x08\x19\xe5\x84l\x1f\x94~*e\xe9a2\x8b\x08\xd4\xaf\x90"F^\x0c\xbbF\xca\xd5R\x7f\xd0_\x1cc'
b'\xdb\xf1\x11`\x18\xe0\x05\x0f\xae\x8a\x0f\xa5C\x9f\x9er\xcbzP\xfa\x95\x94T\xb9\x8d#y0\x00\xdb\xaf\xa5'
b'\x0fI\xc1\xdc+kU\xfa\xbc\xd4R\xf0yH\xf0\x9d\xdc`\r\xe6`_\x11n]OI}\x8d\xac,'
b'?.`_\x19>xE\x92)\x98\x81\xdf\r\x06`\xbfK\xea\x9e\x9b\xf3L\x84G\xb8&\xdd \x00\xf6\x83\x85!\xb9,'
b'\x9ey\xef\xe8&\x0e\xf3ZB\x00\x0eVA\x08\x0f\xa9x\x8ck\xd2-\x02p\xb0\x02B\x18\xe9\x8fv\x1b\x8by_\xe6\xe04'
b'\x840\'\x1e\xba@1\xc8\xb2#\x00\x07\xa7 '
b'\x84\x99\xd5\xaf\xd9\xdd\x99\x83a\x08\xc0\xc1\x99\xe2\x050\xde\xf0N-d3\xff\x90\xb2\xdd '
b'e\xac\xca%\xf8@8\xc1\xe6U\x06\x1c\x14\x1dH}\x85\x1c\x14*wJ\xb7-\xeb\xad\xda~&M-\x8c}\x8fKo^\xd6\'\xb4'
b'\xcd5\x1e\xfe"\xdb\xefJ\xdf\x97r\xa2\xa5\x96\n\x07\xe4\xafR-\n\t\xf6ZO\xb4<\x99\xfc)\xa1\x1fR\xd6\xb7y'
b'\xfc\xecV\x19u\xa9\xfa\xc3\xd5\xf7\x92\xf42)\xabiNb\x92\xae\xfb\xa4\xa9|`\x07\x0e\x9c\xb00L\x95\xc3'
b'"\xf8\x90<\xad\x8aT\x9dxY\xb6\x8a['
b'n\xd9\x1fe\xd4\xa5\xf2C\xa2uc\xd9\xc1\xf2\xfeVm\x7f\x90\xa6\xf0\x03\xf6p\xe0\xee\xb9\x83\x01\x85\x82'
b'\x04r(b\x83\xce\xa5\x92\x8fd\x88\x19b]('
b'\xdb_/\x9c\xe2\xf3\x8bj\xeb\x1bc\x0f\xaa\xfc\xad)\xec\x96\x9bB\xea\xe0\x96U\x8c!8\x84\xa5\x14\x82\xf1'
b'\x90\xc4\xeaBmB\xe5>2\x8acO\x16;\t\xb6?Fl\xfc\x1c\xa9\x1b\xa7\n\xec+\x83\xfa\x9f*HE\xc88\x81\xd8\xb1K'
b'\x08\x80=\x1c\xb8[\x96\x11\xb2\x04LW\x7f\x1b\x840U\xb4\x07\xed]\xd1\xb1\x84\xfd`\xba^\x8c!\xc7\x15\x0b'
b'\xcfzM\xbaA\x00\xec\xe1\xc0\xdd\xb2\xb8:r-\xa8\xf0c\x12G\xc0\xdd\xa1\x8a+\x84\xc3\x07\xd3\xaex;\xab\xcd'
b'\x84\x80\xc3\xde\x08\xc9\x84\xf0\x98f\x8d\x901\x01\xcb}\xb8\x97\x90#\xb9\xbd\x9a\xfd '
b'\x02\x0e\xfb\xf2-+\xd5\xaa3\xe8\xd5*\x82\x088\xec\xcb\x848\x96\x82\xcd\xac"\x17\x02\x0e\xfb2!\xee>\x96'
b'\xcb\xab\xd9\r"\xe0\xb07B\x82\x18\xb5Z\xe1%\x84lc\xcall\xab=\x9acg`\xee\xd2\xfb\xe5+\x84\xe5\xbb\xe5'
b'\xb3\xdag\x16\xcc]\xda\xaaL\x08\xcb\xf7A>\xa5\xfd\x98z\xed\x11\xcc]\xda\xaaL\xc8\tU8\xa6z\rQ\xbb\x9d'
b'\x07s\xb0\x1fH\x99\x10\x97\x93/*m\xdb\n\x02\x95gQFH+\x98G\x9dD\tq\xa3}\xd4\x84U\xa6D\x00\xcc\xdd\xe3'
b'\xf3\xf2\x15\xc2\xf4\xcb\xcd\x87Sz4['
b'Q\x04\xc0\xdc-7\xca\x84\xf0B\x98\x11\x12\xc5.K%\x98\x17\xaf\xc2\xba\'\x86\x85\'#\xa4@\xa2\xbdm\x05\xf3'
b'\xf2\x15B\x08\x95\xca\xf6b\xea\xb5\xa7\n\xe6uBlPo\xff\xdc\xa8`^\'\x04\xb6\xdc\x00\xd3~l\xbd\xf3\xd8'
b'\x98H\xd5\t\x19|\x8b\xa7w\xb0t\xd7\xe1\xc6\xb7\xd7\xea\x84\xb0HI\xf9^lw]\x9d\x0f\xcf`\r\xe6N\xea\x84'
b'\xf0CZ.\xaf\xe2\x8e\xb2\x9d\\\x08\x805\x98;\xf1\x11b)x\x07O\xf6\x1d\xb0\x8e\x12\xc2O<X\n>;\x0f\xce\x01X'
b'\x83\xb9\x93\xfa\x15b)x\x07M+;\x95\xd4;\x1e}\x84T\x06\x99V\xc2\xea\xaf\x13\xb0\xae\x8c\xd9uB\x80\xa6'
b'\xb2P\xe9/V\xad\xf4\xbc\x81\xb5\x8f\x90\xcaR\xbe\x95\xb0\xfa\xeb\xa4\x81\xb5\x8f\x90\x06k\xfd\xc5+{'
b'\xcf\x1bX\xfb\x08qo\xd1e\x0f\xc7\x1c4\xb0\x0e\x11b\xf9\xac\xfc\'\x0b\x18\x8fD\x08?!a\xd2\x0e\x02\r\xac'
b'}W\x88e|\xdb!\xa3\x91\xe9\xc5\xad\x8f\x10\x06\x1a\xbbe\xe5\'\x05\x8cG\x1a\xd4I\xc1\x1b!\xed\x10\x02\xd6'
b'\x15\xf1]!\xac\x1e-\xc1X\x81)\xcb\x070ndE|\x84\x90\xec\xaa$\xbc\xb2\x84cF\xbd8\xfb\x08\x819{'
b'\xc77\xff\t\x03\xc6\x8d;\x91\x8f\x10\xef`\x93?\xbe\xdey\xf0N\x9e\x8c\x90\xee\xce\x03#\xa4;\xec\xbd\x9e'
b'\xbd\xeb=\xdf\x15B\xeb\xc6\x92\xdek\xd2\n\xa7A\xa0\xb1J\xc7\x98\x8f\x10\xc6\x10#d\x1a\xa8Gk\x0b\xc6\x8d'
b'\xf5\x9e\x8f\x10\xccy\xd9\x1b\xcd\x8f\x1d5"\x02^\x8cC\x844\x1e\x9c\x8c\xe8\xc4\x0e\x1b\x1d\x01/\xc6!B'
b'\x1a9\x96\xd1\xfd\xd8\x91#"\xe0\xc5\xd8\x08\x19\x11\xbd\x0c\x87\x8dEH\xe3m\x88\x0c\x01\xf5\xd9$o\x9a'
b'\xf0\x0b\xe0\r\t]!FH\x03\xaa\xa4\x05\xc1\xf7\xdfB\x844\xde\xa8K\x1a\x8e\x19#\xb1\xe8}C4D\x08\x0cV\xde95'
b'\x0c\x93"\x00\xb6\x8d\xc4"\x1eB\x84p\xb0\xa5\xe0A('
b'\x8f@H\xe5\x8d\xc5\xc2M\x88\x10\xbe\xb7\xe0\x1dt\x8a\x86\xb6\x9d\n\x01\xc6h\xef\xf7pB\x844\xbe\xd93'
b'\x95{k\\G \xf8M\xb5\x10!\xf6L\xa4\x0ea\xda\xcf\xde\xd4;.B\x84P\xe7]\xb8Pa25\x02\xde\xb4\tVc\x84\x04'
b'\x1bM\x1d\x8e\x19\x08\x9e\xecFH7\'G\xf0d\x8f\x11Bz\xb8\x91\xaf\xef&\xfe\x85\xf2\n\xa6\xde\xd4;\xbd\x8c'
b'\x11\x02\x8b\xeeGQ8\xd8$\t\x02\xd1\x1f\xf9\x89\x11\xc2\xd4\xcc\xfd\x8eS\x92P\xcc\x08\x08\x80\xe9Dc\x08'
b'\x0bC#\x04\x08\xd3\n\x986\xdeX,'
b'\\\xc4\xae\x10\x1a\x19!\x05R\xe9\xb6\x13\x13\xc2O\x97z\xf3-\xe9b\xeb\xa5%0u?\x0b[G '
b'v\x85\x1c\x8b5\xac\x1b\xb2\xcf##\x00\x19`\xeb\x95\x18!d|\x83Lz\xadY\xe1('
b'\x08x\xdf\xe9-\x1a\xc6\x08\xb1|V\x81R\xdam\xf4\xfb71B\x08#\xb8\xa2\x8c\xc4xI\xa4ns\xa4n\xdc\xaa\xf5\x91'
b'\x06\xb1\xbaH3oU\x0c\xa3X\x9d\xd7\x98\n\xa3\x98\x0e3\x18m\x1c\xf0x\x83\xca\xaf\xf0\xd4mR\xd9nO\xf9\xa4E'
b'\xb7\xa8\xe1:Oc\xca\xa8K%\xfc\xabn\x9f\xf0\xaf\xbc/\xf7U\x0c)\x9b\x04Sg\xf21\xedq\xeb\x1aW?V\x9b\x9d'
b'\xd25\xd2\xd5\xd2\xab\xa5\xefH\xc7\xb53\xec\xf8gds\x83\xb4\x10\xf6)\x1b\xd6n\x9cz\x00\xdcQ8('
b'mo\xd2>O\xfe\xc6\xb1\xc5\xb1`:\xb1<\xa2\x96\xe3:,\x8egRp@\xfa\x89\x94\xc7\xc1Ey\xea\xed\xe7\xb2\r\t('
b'\xfb\xa9\xedc\xef[\xe9\xbd\xd2mR\xfe\xd1\xfd\x03R\xfe\x8b\xf4$\xbe\xc0tb\xb9O-\'q\xba\x88mX\xd0\x91'
b'\xbd(\x16\xcc\x93\xf6\x11L\x83\xb22X\xb3T\x11\xccJ\x0ei\xb7\x88\xd5\x8c\xb7\xeb\x13t,'
b'\x8ai\x8eA=A\xcc\x0bm":\xa8\x0f#$\x98\x95\\h\xc8\xf2v.\x8a\xe90B\xa2\xab\xca\xbcq/\xa4u&:`\x1a\x94a\x84'
b'\x90:9\x1elm\x15\xe3"\x00\x96\xd1t\xd40B\x86\x1a\x187\xa2\x9e\x1f?\xf4\x04\x1fF\x08o\xd7}\xdfs\x10Sv'
b'\x1f,\xbdo,\x16N\x86\x11\xc2=\xef\xf5\xe2`\xdbN\x8d\x00X\x82\xe9T\xb2]\xad\xf9o\xc6\x93.\x84\xac\xdd'
b'\x12v`\x08\x96I\xe4~Y\xe1I\x97\x81;\x19\x06`\x07\x86\xc9\x84\xcc&\xf9\x1b\x165F\xcax\x18\x80\x19\xd8'
b'\x81aR\xc1 i\xf5G\xa5\xdfH\xc9\xed\x189~\x0c\xc0\x06\x8c\xc0\n\xccF&\xe3\x7f5V\xfc\xcc\xf2\x18\xfa\x0e'
b'\x00\x00\x00\x00IEND\xaeB`\x82'
)
# Image for the Move/Rename button
open(os.path.join(ASSETS_FOLDER, "Move_icon_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00h\x08\x04\x00\x00\x00\xad)\x9d\xa4\x00\x00'
b'\x02WIDATx\xda\xed\x9b\xdbq\x03!\x0cE\xb9\x8c\xc7\r\xa4\x82\xf4\x95\x16\xd2J\xca\x89KH/\x99I\x1a\xc8'
b'\x87\xf2\x13{\xbc\xf6\xda\x0b\xe2b\t"\xed\x97\x1f\xb0\x1c\xf4d\x17\x90\x8e"\xc9V\xc0hn\rA@\x81\x1b\x8cF'
b'\x94\x9c<\x89\xb4\x80H\x9aBp\x01\x02s-\x80aZ0\x99J\xca]s\x9aD\xb2\xb1>\xba\x80\xa4\x00\t\x90\x00\t\x90'
b'\x00\t\x90\x00\t\x90\x00\t\x90\x00\t\x90\x00\t\x90\x00q#;w#\xaa}`\x08\x1e\x88\x18\x83\x83cZ\xe2C\x87yx'
b'\x8c\xbfQ\xb4\x81|\xf9\xf1\xac\xf3\x87\xd8X\x99m\x0c\xa0\x8f\rg\x97sWZ\x95\x97\xeb\xd8a\x17\xe1nkD6\x07'
b')\xc6\x18\x0b\x90\xb1\x13"\xea@\x86x\xa7\xf5\xcfj-\t\x8d8\x00\xc1X:)\xd7\x88\x84i\xb9\x03\x91y4"c\x82`V'
b'\xd3r\xad\x93zg\x97\x11A\xd0\x01\xe5=I\x92\x1e\xd3!\xa7\xeb\xfe\xaf\xcbk\xbb\xe5\xba\xbc)\xda\x14\x8e'
b'^\x07\xf2\xac\x04\x11U\xab\x82\xfe\xb6|\xe4V\xe4z\xe5.\x8b\x18K\x13\xa9\xf0\x88\xe5\xbf5+D\xd26\xb3\xeb'
b'\xfer\x01\xea\xfa\'\x96i\x98e\xf6\xeb9<x@)3\x90\xcb\xff\xe8\rD\xc85\x84\xe84rl\x88\xd5\xd8a\xaa\x95'
b'\\\xa8\xb7-\x94#\xce\x80\xeb\x11\xdc\x8c\xeb\xa5\xed\xc1\xd4Iy\x10\x15E\xec\xc2F\x1f\xed{'
b'\x8e\xa5\r$\x11f\x13\x1b\xbdvsv\x14\xe8\xa7\xd5@\xe51>r\x0fE\xbf\x9f\x9a\x84\x92\x897\xad\xc1\x01\x1b'
b'\xa5\xbeb*O\x86R\x11\xef\xb4\xberj\xb7['
b'|\xa9\x8b\x1b\xf0\xb0\xe6\xcf\x8d6\xcdJ\x84\xcd\xe6\x05b6\xa6\x95\xe4\x1aCg>id\x16('
b'\xa87-\xed<~T\xaf\xff\xbbN\x83\xd5\xf1=\xb0\xa3V~||Y\x198\xe1\x9cW&8\xea\xa7\x81\x93\xf7X\x9b)\r\x14'
b'\x14\x8c\xd5\x84\xc8\xb1{y\xbc6\xd8 '
b'\xf5\x05>\xf1\x0cd\xdf\x8dg\xb8;t\xeaQN\xbbWo\xe4\x13\xa9>\xde!\x12\xc2\x7f\x9e\x03\xc3\x03\x08)\x19'
b'\xe790\xacA\x88\xa5Q\x9e\x03\xc3\x12\x84\\\xa8Z\x81\x1c\x92\x1b\xd1\xbf\r|\xee1\nf\xf5kZ\x1f\xc4\xb1'
b'\x8b\x00\t\x90\x00\t\x10\x93\xc5\xd94\x1a\xe1$D\x8b\xa4x\xb1T\x06\xad+;\xf9I\xfb\x19L\xeb;\xed['
b'}\xc4\xc3.\xd4Cz\xe2\x0cF\xbcx8\xc8Ng\x16\xa8~\x01\x1a\x08\xd2\x81\x9d\x93\xb7l\x00\x00\x00\x00IEND'
b'\xaeB`\x82'
)
# Image for the Move/Rename button
open(os.path.join(ASSETS_FOLDER, "Open_icon_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00V\x08\x04\x00\x00\x00\x93Y\xfby\x00\x00\x01'
b'\x8eIDATx\xda\xed\x99\xc1M\xc5@\x0cD=Q\x1a\xe0B\x03TAU\\i\x84"(\x82>('
b'\x02q\xe5hN\xe8\x03\xfa\xff\xc7\x1b\xb4\xcb\xccd\x9dk"e2\xf3b;ADd\xf4,\xc4\x90Bg\x19\xc3\xa4,'
b'aR#\x84\xe4t\xa4\xa1\xd6nYN\xbfh\rw\x84\x89\x12\xb88\x92\xad\xe2\x99\xa3\x95>\x8c\xe4\x01a\xef\'\x04c'
b'\x85\xf4|ka\x0c\x1d3ZS\xc8\x142\x85L!S\xc8\x142\x85|\xd5Kd\xc7\xe3\xe7^R:\xbf}\xd6z\x8f\x1b\xc2q\x1fk'
b'\xf3%\xa4\x9b\xcbb!\xc3\t\xf68\x8b\xd8\xd6\x99\x19\xf7d\xf7\x9e\xfb\x16+('
b'G\xeb\x91;X\xdf\x7f+\xa0\x08:h\xa00\x84\x1d\xcb\x1e\xf5|~\xecq\x04\x94\x80\x1cmh$\x07\xdd\x05vT\x85\xf0'
b'\x81\xfe\xb6\xaf\x8fp\x07\x0b\x87\xdb\x10O\xea\x9fYA\xafEK"X\xdb\x8e\xbc\xba\xec#\xf5m\xe5\x1fv\x90\xb8'
b'\xadGK$X[\xd1\xa2\x1f\x15\xdb;;\xe9\xa8h\xf8\xf1a\xd1\x1e\x15\x1d\x1cAU\x88\x10\xe8UG\xc0\xef\xc7\x01'
b'`?\xd9\xf8\xa0\x10\xac\xcb\x9d]\xa6\xa3_w\x84\x0f\xf4\xbbmh\xce={9?\xcca\x17\xeb '
b'\x15G$:\x88}\xb4\xa4FE]GP\x15"\t\xfauG\xa0\xe4\x87-\xec\xa2\xa0\xff\x16\x92\xaa\xa0\xf3G\xeb\xa9Ee\x12'
b'\x83\x9e\xf5{\xb2\x1e\x1a?\xd4@\xbf\x14-\xc1`YG\x0b\x8a\xc1Rq\x04\xbaB\xf2\xaf\xd1\x82\xa6\x1f\xac\x8e'
b'\xec\x18\x96V\xfa}\xc4\x06vx\x08A\xdd\x11\x84E\x81\x98\x8c\xa6G\xfc\t\xf4\x9a\xacMVV\xd0\x8c\x00\x00'
b'\x00\x00IEND\xaeB`\x82'
)
# Image for the Find Duplicated button
open(os.path.join(ASSETS_FOLDER, "Duplicated_files_img_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00d\x08\x06\x00\x00\x00p\xe2\x95T\x00\x00\x01'
b'\x84iCCPICC profile\x00\x00(\x91}\x91;H\xc3P\x14\x86\xff\xa6\x8a"\x15\x07\xeb\x03q\xc8P\x9d\xec\xa2'
b'"\x8e\xb5\nE\xa8\x10j\x85V\x1dLn\xfa\x82&\rI\x8a\x8b\xa3\xe0Zp\xf0\xb1Xupq\xd6\xd5\xc1U\x10\x04\x1f '
b'\xce\x0eN\x8a.R\xe2\xb9I\xa1E\x8c\x07.\xf7\xe3\xbf\xe7\xff\xb9\xf7\\@\xa8\x97\x99fu\xc4\x00M\xb7\xcdT'
b'".f\xb2\xabb\xd7+\x04\x0ca\x00\x01\x0c\xca\xcc2\xe6$)\t\xdf\xfa\xba\xa7>\xaa\xbb('
b'\xcf\xf2\xef\xfb\xb3z\xd5\x9c\xc5\x80\x80H\x1cc\x86i\x13o\x10\xcfl\xda\x06\xe7}\xe20+\xca*\xf19\xf1'
b'\x84I\x17$~\xe4\xba\xe2\xf1\x1b\xe7\x82\xcb\x02\xcf\x0c\x9b\xe9\xd4<q\x98X,'
b'\xb4\xb1\xd2\xc6\xachj\xc4\xd3\xc4\x11U\xd3)_\xc8x\xacr\xde\xe2\xac\x95\xab\xacyO\xfe\xc2PN_Y\xe6'
b':\xadQ$\xb0\x88%H\x10\xa1\xa0\x8a\x12\xca\xb0\x11\xa5]\'\xc5B\x8a\xce\xe3>\xfe\x11\xd7/\x91K!W\t\x8c'
b'\x1c\x0b\xa8@\x83\xec\xfa\xc1\xff\xe0\xf7l\xad\xfc\xd4\xa4\x97\x14\x8a\x03\x9d/\x8e\xf31\x06t\xed\x02'
b'\x8d\x9a\xe3|\x1f;N\xe3\x04\x08>\x03Wz\xcb_\xa9\x03\xb3\x9f\xa4\xd7ZZ\xe4\x08\xe8\xdb\x06.\xae['
b'\x9a\xb2\x07\\\xee\x00\xc3O\x86l\xca\xae\x14\xa4%\xe4\xf3\xc0\xfb\x19}S\x16\xe8\xbf\x05z\xd6\xbc\xb95'
b'\xcfq\xfa\x00\xa4iV\xc9\x1b\xe0\xe0\x10\x18/P\xf6\xba\xcf\xbb\xbb\xdb\xe7\xf6oOs~?JLr\x96\xfb\xf67M\x00'
b'\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\tpHYs\x00\x00.#\x00\x00.#\x01x\xa5'
b'?v\x00\x00\x00\x07tIME\x07\xe8\x02\x17\x15\x0f\x0c\x15\x0e>v\x00\x00\x00\x19tEXtComment\x00Created with '
b'GIMPW\x81\x0e\x17\x00\x00\x01\x16IDATx\xda\xed\xdbI\x12\xc20\x0cE\xc1\x88\xca\xfd\xaf,'
b'\xb6\x0caX\x85o\xd4}\x02\x97_\x84\x9dT\xb1m\x00\x00\x00\x00\x00\x00\x00\xc0\x91\nYG\xdb\x83\x8c\xc5\xb4'
b'}\xc8\x0cR\x01\x0fCD\x94\x8b_\xed\xaci\x15\xe4~2Z\x10Q\x04I\x8er\xd6A\x96x\xad}u\xa1\xe8_\x1e\xf4\x97'
b'\x13B\xfc\xfaw\xb9W\x9a\x94:i3\x12\xaf\xb5\xfd\xe5\x04\x9d\xba\xfeIg\xc8\x12\x932!H\xad\x14e\xca\x84,'
b'\x13e\x1fv\xad\xed\x9b\x8d\xad\x90K\xc7\xe8\xf7\x90\xc7\xa7\xbd\xd2\x16\xb8o\xf3\x1cMJ\xcc\xbb\xd4\xd47'
b'\xf5\xa8\xefW\x82\x04G\x99\xfe-+.\x8a\x8f\x8baQ\xf6?\xdf\xe8\xb8k\xed\xf4\t\xa9\xd5\x16<\xe1\xda\x1bu'
b'\xadu\x86,F\x10A\x10D\x10\x04\x11\x04A\x04A\x10A\x10\x04A\x04A\x10A\x10D\x10\x04\x11\x04A\x10D\x10\x04'
b'\x11\x04A\x04A\x10A\x10\x84\x03\xbb-x\xf2\xeeo\teBr\x94\t\xf9\xe3\x8d7!\x0eu\x04\x11\x84\x15\x0f\xb0'
b'\xb6\x1fy\x0bh1\x00\x00\x00\x00\x00\x00\x00>\xb9\x02l\x05+}\nv\xb5D\x00\x00\x00\x00IEND\xaeB`\x82')
# Image for the Find Duplicated button
open(os.path.join(ASSETS_FOLDER, "Compare_files_img_small.png"), "wb").write(
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00d\x00\x00\x00d\x08\x06\x00\x00\x00p\xe2\x95T\x00\x00\x01'
b'\x85iCCPICC profile\x00\x00(\x91}\x91=H\xc3@\x18\x86\xdf\xa6J\x8bT\x1c\xec '
b'\xe2\x90\xa1:\x88]TDp\xd1*\x14\xa1B\xa8\x15Zu0\xb9\xf4\x0f\x9a4$).\x8e\x82k\xc1\xc1\x9f\xc5\xaa\x83\x8b'
b'\xb3\xae\x0e\xae\x82 \xf8\x03\xe2\xec\xe0\xa4\xe8"%~\x97\x14Z\xc4x\xc7q\x0f\xef}\xef\xcb\xddw\x80\xd0'
b'\xa80\xcd\xea\x9a\x054\xdd6\xd3\xc9\x84\x98\xcd\xad\x8a\xa1W\x04\x11\xa69\x83Q\x99Y\xc6\x9c$\xa5\xe0'
b';\xbe\xee\x11\xe0\xfb]\x9cg\xf9\xd7\xfd9z\xd5\xbc\xc5\x80\x80H<\xcb\x0c\xd3&\xde '
b'\x9e\xda\xb4\r\xce\xfb\xc4QV\x92U\xe2s\xe21\x93.H\xfc\xc8u\xc5\xe37\xceE\x97\x05\x9e\x1953\xe9y\xe2('
b'\xb1X\xec`\xa5\x83Y\xc9\xd4\x88\'\x89c\xaa\xa6S\xbe\x90\xf5X\xe5\xbc\xc5Y\xab\xd4X\xeb\x9e\xfc\x85\x91'
b'\xbc\xbe\xb2\xccuZCHb\x11K\x90 BA\reT`#N\xbbN\x8a\x854\x9d\'|\xfc\x83\xae_"\x97B\xae2\x189\x16P\x85\x06'
b'\xd9\xf5\x83\xff\xc1\xef\xdeZ\x85\x89q/)\x92\x00\xba_\x1c\xe7c\x18\x08\xed\x02\xcd\xba\xe3|\x1f;N\xf3'
b'\x04\x08>\x03Wz\xdb_m\x00\xd3\x9f\xa4\xd7\xdbZ\xec\x08\xe8\xdb\x06.\xae\xdb\x9a\xb2\x07\\\xee\x00\x03O'
b'\x86l\xca\xae\x14\xa4%\x14\n\xc0\xfb\x19}S\x0e\xe8\xbf\x05z\xd6\xbc\xbe\xb5\xceq\xfa\x00d\xa8W\xa9\x1b'
b'\xe0\xe0\x10\x18)R\xf6\xba\xcf\xbb\xc3\x9d}\xfb\xb7\xa6\xd5\xbf\x1f\xc9!r\xc95Z\xb0\xe8\x00\x00\x00'
b'\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\tpHYs\x00\x00\r\xd7\x00\x00\r\xd7\x01B('
b'\x9bx\x00\x00\x00\x07tIME\x07\xe8\x03\x08\t\x01"w}*Z\x00\x00\x02\xe8IDATx\xda\xed\xda\xc9\x8b\x1ce\x18'
b'\x07\xe0gf2\x81As\x10cL\\0\xa8\x07A\x90\x88\x8a\x18bp\x9b(z\xf3\xa6\x07\xc1['
b'\x02\x9e\xfc\x03<x4\xe0=\x82\n\x82G\x0f\n\x9a\x04%\x84\\d\\ '
b'\xb8\xc4%Q\xc4\xe5\xa0\xa8\x89q\x99\xb8$\xed\xa1^a\x0e3\xe9\x08\xbdU\xd7\xef\x81\x82\x99\xa6i\xaa\xfb'
b'\xf7\xd5\xf7\xbe\xdfWEDDDDDDDDDDDDDDDDDDDDDDD\xc4\xd4\xba\x087b~\x9a\xbf\xe4\\\x8b\xce\xf5\n<\x8d\xf5'
b'\xf8\x15\xa7\x12\xc8x]\x86\xe7p;6a]\x85\xf2['
b'&\x8f\xf1\xb8\x1e\xbd\x15\xc7q\xec\xc5.\\\x92\x9fg\xfc\x81\xf4p\x16\xef\xe1)\xec\xa8\xe9\xac\xd5\xd6\r'
b'\xe8s\xee\xc4\xe5C>\xd7\xcd\xab\xbc6\x8b['
b'\xaa\xd8\xdf\x85\xd7p\x04\x1f\xe1\xaf6\x0623\xa0\xcfy\xa9F\xe8\xb0\x07\xcf\xd5}\xdes\x06\x07\xf1F\x05s'
b'\xbc\xae\xa2\xceys\x95\xe9d\x9c\xc7\x0f5H\x1e\xc5U]\xec\xb2\x1e\xc3\xb5\x13\xb6f\xb9\t\xb7\xd6T:\x8f'
b'\x1f\xb1\xdc\x95\x1a2\xa9\xd3\xf15x\xbc\xfe>\x8a\x9f\x12\xc8\xf8\x9c\xad\x10\x0e\xe1u|\xdf\xa5.\xebk|2'
b'\xe4s]\x8f\xeb.0\x88\xcfq\x18\xfb+\x90\xdf\xbb\xd6e\xdd\xbdF['
b':\xe8\xb6\xf7\xd9>\xef\xf9\xb6\x028\x88\x03\xf89\xcb\xb7\xd1.\x0cWvU\xaf`7\xb6\x0ep\xa0\xa5\x86\xfcO'
b'\xa7\xf1v\xb5\xdd\xfbq,+\xf5\xf1\xf8\x07Kx\xab\x82x\xbf^\x93@F\x1f\xc4\xc7\x15\xc4\x81\xba:\xceW\xb0'
b'\x17\xb0\x11\xdftma8\n\x0b\xb8\x18\xcf\xe3E|\x8a\xbf\xcf\xf3\xbd\xb6\xe1\x91\xea\xcc\xdeI\t\x1eN ['
b'.\xb0\xf8\xef\xc1\xab\xd5e\xbd\x90)k8\x96\xfbl}\\\x89{'
b'4\xf7G\x16\r\x7f\xf795d\r\x1bpo\x05q\xbf\xc9\xdaS\xebT \x0b\xd8^!,'
b'Z\xfb\x01\x88\r#\n\xe9+\x9c\x9b\x94\x95\xfa('
b'\xcd\xe3\xe6\nb\x17\xee\xe8\xd3\x9c|Q\xdd\xd8\xb0\xed6\x80-\x9a\xb6\x05r\x03\x1e\xa8 '
b'v\xd4\xe8\x9f\x04=\\\x8a\x93]\x98\xb2f4w\n\x17\xeb\xaa\xd8\xd9\xd6\x82=-f\xab{'
b'Z2Yw%W\x1e\xe7\x0c\xe8\xc9\x97\xb9\x16\x85r\xb2\x16\x82\x9b\xab\xa0O\x9ag4\xf7\xf4;cFs['
b'\xf6I\xcdf\xe2\xf24^!mj{{\xf8@\xf3$\xc9R\xad=\x1e\xc2m}\x9a\x93\x0f5O\xa1\x0c\xdb\x99A\x8d\xba6/\x08'
b'\xb7\xe3><X\x1d\xd8\xec*\xef{\x19O\x8c\xe0|~\xa9A\xd3y\x1b\xf10\xf6\xe1\xbbU\xa6\x93V\xede\xcdMA '
b'\x7f\xe0\xb3\x9a\x9aN\xe0O\xcd\xbe\xd6\x7f\x85\xff\xa8f\xa31\x81\x8c\xb8\xbe\x9c\xaa\x1as\x0c_\xd6t\xbc'
b'\xa5\xfeoM \xd3\xf6\x18P\xaf\x028\x81wk\xfd\xd2\xa9V\xb4\r\x85\x7fk~\x86\x88\x88\x88\x88\x88\x88\x88'
b'\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88I\xf0/\xb3\x07\xf7l\xd4'
b'\xddHn\x00\x00\x00\x00IEND\xaeB`\x82')
# Info
logging.info("Finished replacing assets.")
else:
logging.debug("Assets do not have to be replaced")
# Debug
logging.info("Finished Setting up Library Folder...\n")