commit fdcda3bbf9f385ed555072658a96f95ad825a4ca Author: JT Date: Sat Jan 26 14:12:46 2013 +0000 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0fa8386 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +flags.zip diff --git a/Hello.txt b/Hello.txt new file mode 100644 index 0000000..5c5f7f3 --- /dev/null +++ b/Hello.txt @@ -0,0 +1,55 @@ +Flag Icons by GoSquared (http://www.gosquared.com/) + +Version: 2.2 +Last Updated: 29th October 2012 + +Usage: + You're free to use this set for both personal and commercial projects + (MIT License, see LICENSE.txt), and a back-link is not required + (but certainly appreciated). + + +Inclusion of flags: + This icon set includes all flags for recognized sovereign states, plus several other major + territories. As a rule, disputed states ARE included without discrimination. + + +Contacting Us: + If you have any suggestions of corrections (incorrectly named, missing, or out-of-date flags etc.), + then don't hesitate to get in touch at support@gosquared.com and we will do our best + to rectify any mistakes or omissions. + + +Changelog: + + * 2.3: 26th January 2013 + Added more missing flags: + French Polynesia + Frensh Southern Territories + Tokelau + Wallis and Futuna + Removed Kosovo's ISO code (it doesn't have one, KV was wrong) + Corrected East Timor's ISO code (TP -> TL) + + * 2.2: 29th October 2012 + Added some missing flags: + British Antarctic Territories + Christmas Island + Cocos (Keeling) Islands + Cook Islands + Gibraltar + Mayotte + New Caledonia + Niue + Added ico and icns formats + Fixed problem where all flags in flats/flat had no extension (oops!) + Fixed alignment of Nepal overlay at 48x48 + + * 2.1: 19th October 2012 + Fixed incorrect ISO code for Montenegro (CS -> ME) + + * 2.0: 18th October 2012 + Fully revamped with new "shiny" style, updated with changed and new flags + + * 1.0: 16th September 2010 + First created. Icon set containing 2400 flag icons diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..41ac779 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,7 @@ +Copyright (c) 2012 Go Squared Ltd. http://www.gosquared.com/ + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cbce79e --- /dev/null +++ b/Makefile @@ -0,0 +1,136 @@ +# Flag-set-generating makefile + +INDIR := src/flags +OUTDIR := flags +OVERLAYDIR := src/overlays + +SIZES ?= 16 24 32 48 64 + +ICNS_SIZES := $(filter-out 24 64,$(SIZES)) + +FLAGS := $(shell ls $(INDIR)) +SQUARE := $(filter Vatican-City Switzerland,$(FLAGS)) +NEPAL := $(filter Nepal,$(FLAGS)) +NORMAL := $(filter-out $(SQUARE) $(NEPAL),$(FLAGS)) + +PNGCRUSH_OPTIONS ?= -q -brute -rem alla +TMP_FILE := $(shell mktemp -u) +PWD := $(shell pwd) + +# change to cp for testing puposes +copy_png = pngcrush ${PNGCRUSH_OPTIONS} + +# a lot of the files are just renames of other generated +# files. This is the least messy way I can find to do it. +define copy_file +$1: $2 + @mkdir -p $$(@D) + cp $$^ $$@ +endef + +define process_flag +# flat normal +$2: $1 + @mkdir -p $$(@D) + $(copy_png) $$^ $$@ + +# shiny normal +$3: $1 + @mkdir -p $$(@D) + composite ${OVERLAYDIR}/$6/$7.png $$^ $8; $(copy_png) $8 $$@ + @rm -f $8 + +# flat iso +$(call copy_file,$4,$2) + +# shiny iso +$(call copy_file,$5,$3) + +FLAG_FLAT_FILES += $2 +FLAG_SHINY_FILES += $3 +FLAG_ISO_FLAT_FILES += $4 +FLAG_ISO_SHINY_FILES += $5 +endef + + +define define_icon +# flat normal +$1/flat/$5/$3.$5: $(addsuffix /$3.png,$(addprefix $1/flat/,$6)) + @mkdir -p $$(@D) +ifeq (ico,$5) + convert $$^ $$@ +else + png2icns $$@ $$^ > /dev/null +endif + +# flat iso +$(call copy_file,$2/flat/$5/$4.$5,$1/flat/$5/$3.$5) + +# shiny normal +$1/shiny/$5/$3.$5: $(addsuffix /$3.png,$(addprefix $1/shiny/,$6)) + @mkdir -p $$(@D) +ifeq (ico,$5) + convert $$^ $$@ +else + png2icns $$@ $$^ > /dev/null +endif + +# shiny iso +$(call copy_file,$2/shiny/$5/$4.$5,$1/shiny/$5/$3.$5) + +FLAG_FLAT_FILES += $1/flat/$5/$3.$5 +FLAG_ISO_FLAT_FILES += $2/flat/$5/$4.$5 +FLAG_SHINY_FILES += $1/shiny/$5/$3.$5 +FLAG_ISO_SHINY_FILES += $2/shiny/$5/$4.$5 +endef + +define define_flag + +$(foreach size,${SIZES},\ + $(call process_flag,\ + ${INDIR}/$1/$(size).png,\ + ${OUTDIR}/flags/flat/$(size)/$1.png,\ + ${OUTDIR}/flags/shiny/$(size)/$1.png,\ + ${OUTDIR}/flags-iso/flat/$(size)/$2.png,\ + ${OUTDIR}/flags-iso/shiny/$(size)/$2.png,$3,$(size),${TMP_FILE}.$2.$(size).png)) + +$(call define_icon,${OUTDIR}/flags,${OUTDIR}/flags-iso,$1,$2,ico,$(SIZES)) +$(call define_icon,${OUTDIR}/flags,${OUTDIR}/flags-iso,$1,$2,icns,$(ICNS_SIZES)) +endef + + +.PHONY: all clean + +all: flags.zip + + + +$(foreach flag,${NORMAL}, \ + $(eval $(call define_flag,$(flag),$(shell cat "${INDIR}/$(flag)/code"),normal))) + +$(foreach flag,${SQUARE}, \ + $(eval $(call define_flag,$(flag),$(shell cat "${INDIR}/$(flag)/code"),square))) + +$(foreach flag,${NEPAL}, \ + $(eval $(call define_flag,$(flag),$(shell cat "${INDIR}/$(flag)/code"),nepal))) + +ZIPFILES = \ + ${FLAG_FLAT_FILES} \ + ${FLAG_SHINY_FILES} \ + ${FLAG_ISO_FLAT_FILES} \ + ${FLAG_ISO_SHINY_FILES} \ + ${OUTDIR}/LICENSE.txt \ + ${OUTDIR}/Hello.txt + + +flags.zip: ${OUTDIR} ${ZIPFILES} + $(if $(wildcard $@),rm -f $@,) + cd ${OUTDIR}; zip -q -r -9 -T ${PWD}/$@ * + +${OUTDIR}: ${ZIPFILES} + +${OUTDIR}/%.txt: + cp $*.txt $@ + +clean: + rm -fr ${OUTDIR} flags.zip diff --git a/README.md b/README.md new file mode 100644 index 0000000..dc794db --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# GoSquared's Flag Icon Set + +Here you'll find all the files available in our [flag icon set][1] and the tools we use to generate the downloadable file. + +If you have any comments, corrections or additions then let us know with an issue or pull request + +## Building your own version of the icon set + +If you want to build your own version of this flag set, with any additions or modifications, just edit the files in `src/flags`. Each flag has its own folder, and inside each folder there is one PNG file for each size of the flag. Also in each folder is a file called `code`, which contains the ISO-3166-2 country code for the flag. + +To generate the full set, just run `make` (you may want to run `make clean` if you have removed any flags). To speed up generation, try running `make -jN` where `N` is the number of CPU cores you have (e.g. `make -j4` on a quad-core machine) + +### Tools required for generating the set + + * GNU Make + * imagemagick + * png2icns (provided on Ubuntu by `icnsutils`, or [via soruceforge](http://icns.sourceforge.net/)) + + +[1]: https://www.gosquared.com/resources/flag-icons diff --git a/flags/Hello.txt b/flags/Hello.txt new file mode 100644 index 0000000..5c5f7f3 --- /dev/null +++ b/flags/Hello.txt @@ -0,0 +1,55 @@ +Flag Icons by GoSquared (http://www.gosquared.com/) + +Version: 2.2 +Last Updated: 29th October 2012 + +Usage: + You're free to use this set for both personal and commercial projects + (MIT License, see LICENSE.txt), and a back-link is not required + (but certainly appreciated). + + +Inclusion of flags: + This icon set includes all flags for recognized sovereign states, plus several other major + territories. As a rule, disputed states ARE included without discrimination. + + +Contacting Us: + If you have any suggestions of corrections (incorrectly named, missing, or out-of-date flags etc.), + then don't hesitate to get in touch at support@gosquared.com and we will do our best + to rectify any mistakes or omissions. + + +Changelog: + + * 2.3: 26th January 2013 + Added more missing flags: + French Polynesia + Frensh Southern Territories + Tokelau + Wallis and Futuna + Removed Kosovo's ISO code (it doesn't have one, KV was wrong) + Corrected East Timor's ISO code (TP -> TL) + + * 2.2: 29th October 2012 + Added some missing flags: + British Antarctic Territories + Christmas Island + Cocos (Keeling) Islands + Cook Islands + Gibraltar + Mayotte + New Caledonia + Niue + Added ico and icns formats + Fixed problem where all flags in flats/flat had no extension (oops!) + Fixed alignment of Nepal overlay at 48x48 + + * 2.1: 19th October 2012 + Fixed incorrect ISO code for Montenegro (CS -> ME) + + * 2.0: 18th October 2012 + Fully revamped with new "shiny" style, updated with changed and new flags + + * 1.0: 16th September 2010 + First created. Icon set containing 2400 flag icons diff --git a/flags/LICENSE.txt b/flags/LICENSE.txt new file mode 100644 index 0000000..41ac779 --- /dev/null +++ b/flags/LICENSE.txt @@ -0,0 +1,7 @@ +Copyright (c) 2012 Go Squared Ltd. http://www.gosquared.com/ + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/flags/flags-iso/flat/16/.png b/flags/flags-iso/flat/16/.png new file mode 100644 index 0000000..922b74e Binary files /dev/null and b/flags/flags-iso/flat/16/.png differ diff --git a/flags/flags-iso/flat/16/AD.png b/flags/flags-iso/flat/16/AD.png new file mode 100644 index 0000000..d965a79 Binary files /dev/null and b/flags/flags-iso/flat/16/AD.png differ diff --git a/flags/flags-iso/flat/16/AE.png b/flags/flags-iso/flat/16/AE.png new file mode 100644 index 0000000..f429cc4 Binary files /dev/null and b/flags/flags-iso/flat/16/AE.png differ diff --git a/flags/flags-iso/flat/16/AF.png b/flags/flags-iso/flat/16/AF.png new file mode 100644 index 0000000..482779b Binary files /dev/null and b/flags/flags-iso/flat/16/AF.png differ diff --git a/flags/flags-iso/flat/16/AG.png b/flags/flags-iso/flat/16/AG.png new file mode 100644 index 0000000..6470e12 Binary files /dev/null and b/flags/flags-iso/flat/16/AG.png differ diff --git a/flags/flags-iso/flat/16/AI.png b/flags/flags-iso/flat/16/AI.png new file mode 100644 index 0000000..6c8ce55 Binary files /dev/null and b/flags/flags-iso/flat/16/AI.png differ diff --git a/flags/flags-iso/flat/16/AL.png b/flags/flags-iso/flat/16/AL.png new file mode 100644 index 0000000..69ba464 Binary files /dev/null and b/flags/flags-iso/flat/16/AL.png differ diff --git a/flags/flags-iso/flat/16/AM.png b/flags/flags-iso/flat/16/AM.png new file mode 100644 index 0000000..5b222d9 Binary files /dev/null and b/flags/flags-iso/flat/16/AM.png differ diff --git a/flags/flags-iso/flat/16/AN.png b/flags/flags-iso/flat/16/AN.png new file mode 100644 index 0000000..2c9e769 Binary files /dev/null and b/flags/flags-iso/flat/16/AN.png differ diff --git a/flags/flags-iso/flat/16/AO.png b/flags/flags-iso/flat/16/AO.png new file mode 100644 index 0000000..129a2d9 Binary files /dev/null and b/flags/flags-iso/flat/16/AO.png differ diff --git a/flags/flags-iso/flat/16/AQ.png b/flags/flags-iso/flat/16/AQ.png new file mode 100644 index 0000000..565eba0 Binary files /dev/null and b/flags/flags-iso/flat/16/AQ.png differ diff --git a/flags/flags-iso/flat/16/AR.png b/flags/flags-iso/flat/16/AR.png new file mode 100644 index 0000000..aa5049b Binary files /dev/null and b/flags/flags-iso/flat/16/AR.png differ diff --git a/flags/flags-iso/flat/16/AS.png b/flags/flags-iso/flat/16/AS.png new file mode 100644 index 0000000..f959e3a Binary files /dev/null and b/flags/flags-iso/flat/16/AS.png differ diff --git a/flags/flags-iso/flat/16/AT.png b/flags/flags-iso/flat/16/AT.png new file mode 100644 index 0000000..aa8d102 Binary files /dev/null and b/flags/flags-iso/flat/16/AT.png differ diff --git a/flags/flags-iso/flat/16/AU.png b/flags/flags-iso/flat/16/AU.png new file mode 100644 index 0000000..f2fc59c Binary files /dev/null and b/flags/flags-iso/flat/16/AU.png differ diff --git a/flags/flags-iso/flat/16/AW.png b/flags/flags-iso/flat/16/AW.png new file mode 100644 index 0000000..6ef2467 Binary files /dev/null and b/flags/flags-iso/flat/16/AW.png differ diff --git a/flags/flags-iso/flat/16/AX.png b/flags/flags-iso/flat/16/AX.png new file mode 100644 index 0000000..21a5e1c Binary files /dev/null and b/flags/flags-iso/flat/16/AX.png differ diff --git a/flags/flags-iso/flat/16/AZ.png b/flags/flags-iso/flat/16/AZ.png new file mode 100644 index 0000000..b6ea7c7 Binary files /dev/null and b/flags/flags-iso/flat/16/AZ.png differ diff --git a/flags/flags-iso/flat/16/BA.png b/flags/flags-iso/flat/16/BA.png new file mode 100644 index 0000000..570594b Binary files /dev/null and b/flags/flags-iso/flat/16/BA.png differ diff --git a/flags/flags-iso/flat/16/BB.png b/flags/flags-iso/flat/16/BB.png new file mode 100644 index 0000000..3e86dbb Binary files /dev/null and b/flags/flags-iso/flat/16/BB.png differ diff --git a/flags/flags-iso/flat/16/BD.png b/flags/flags-iso/flat/16/BD.png new file mode 100644 index 0000000..fc7affb Binary files /dev/null and b/flags/flags-iso/flat/16/BD.png differ diff --git a/flags/flags-iso/flat/16/BE.png b/flags/flags-iso/flat/16/BE.png new file mode 100644 index 0000000..182e9ad Binary files /dev/null and b/flags/flags-iso/flat/16/BE.png differ diff --git a/flags/flags-iso/flat/16/BF.png b/flags/flags-iso/flat/16/BF.png new file mode 100644 index 0000000..2a861b5 Binary files /dev/null and b/flags/flags-iso/flat/16/BF.png differ diff --git a/flags/flags-iso/flat/16/BG.png b/flags/flags-iso/flat/16/BG.png new file mode 100644 index 0000000..903ed4f Binary files /dev/null and b/flags/flags-iso/flat/16/BG.png differ diff --git a/flags/flags-iso/flat/16/BH.png b/flags/flags-iso/flat/16/BH.png new file mode 100644 index 0000000..e2514bb Binary files /dev/null and b/flags/flags-iso/flat/16/BH.png differ diff --git a/flags/flags-iso/flat/16/BI.png b/flags/flags-iso/flat/16/BI.png new file mode 100644 index 0000000..82dc6c5 Binary files /dev/null and b/flags/flags-iso/flat/16/BI.png differ diff --git a/flags/flags-iso/flat/16/BJ.png b/flags/flags-iso/flat/16/BJ.png new file mode 100644 index 0000000..e9f24b0 Binary files /dev/null and b/flags/flags-iso/flat/16/BJ.png differ diff --git a/flags/flags-iso/flat/16/BL.png b/flags/flags-iso/flat/16/BL.png new file mode 100644 index 0000000..533cce9 Binary files /dev/null and b/flags/flags-iso/flat/16/BL.png differ diff --git a/flags/flags-iso/flat/16/BM.png b/flags/flags-iso/flat/16/BM.png new file mode 100644 index 0000000..5b66e1f Binary files /dev/null and b/flags/flags-iso/flat/16/BM.png differ diff --git a/flags/flags-iso/flat/16/BN.png b/flags/flags-iso/flat/16/BN.png new file mode 100644 index 0000000..64cfbb9 Binary files /dev/null and b/flags/flags-iso/flat/16/BN.png differ diff --git a/flags/flags-iso/flat/16/BO.png b/flags/flags-iso/flat/16/BO.png new file mode 100644 index 0000000..3f0c41f Binary files /dev/null and b/flags/flags-iso/flat/16/BO.png differ diff --git a/flags/flags-iso/flat/16/BR.png b/flags/flags-iso/flat/16/BR.png new file mode 100644 index 0000000..f97b96a Binary files /dev/null and b/flags/flags-iso/flat/16/BR.png differ diff --git a/flags/flags-iso/flat/16/BS.png b/flags/flags-iso/flat/16/BS.png new file mode 100644 index 0000000..10a987f Binary files /dev/null and b/flags/flags-iso/flat/16/BS.png differ diff --git a/flags/flags-iso/flat/16/BT.png b/flags/flags-iso/flat/16/BT.png new file mode 100644 index 0000000..fe52b87 Binary files /dev/null and b/flags/flags-iso/flat/16/BT.png differ diff --git a/flags/flags-iso/flat/16/BW.png b/flags/flags-iso/flat/16/BW.png new file mode 100644 index 0000000..8da822f Binary files /dev/null and b/flags/flags-iso/flat/16/BW.png differ diff --git a/flags/flags-iso/flat/16/BY.png b/flags/flags-iso/flat/16/BY.png new file mode 100644 index 0000000..772539f Binary files /dev/null and b/flags/flags-iso/flat/16/BY.png differ diff --git a/flags/flags-iso/flat/16/BZ.png b/flags/flags-iso/flat/16/BZ.png new file mode 100644 index 0000000..9ae6715 Binary files /dev/null and b/flags/flags-iso/flat/16/BZ.png differ diff --git a/flags/flags-iso/flat/16/CA.png b/flags/flags-iso/flat/16/CA.png new file mode 100644 index 0000000..3153c20 Binary files /dev/null and b/flags/flags-iso/flat/16/CA.png differ diff --git a/flags/flags-iso/flat/16/CC.png b/flags/flags-iso/flat/16/CC.png new file mode 100644 index 0000000..7e5d0df Binary files /dev/null and b/flags/flags-iso/flat/16/CC.png differ diff --git a/flags/flags-iso/flat/16/CD.png b/flags/flags-iso/flat/16/CD.png new file mode 100644 index 0000000..afebbaa Binary files /dev/null and b/flags/flags-iso/flat/16/CD.png differ diff --git a/flags/flags-iso/flat/16/CF.png b/flags/flags-iso/flat/16/CF.png new file mode 100644 index 0000000..60fadb2 Binary files /dev/null and b/flags/flags-iso/flat/16/CF.png differ diff --git a/flags/flags-iso/flat/16/CG.png b/flags/flags-iso/flat/16/CG.png new file mode 100644 index 0000000..7a7dc51 Binary files /dev/null and b/flags/flags-iso/flat/16/CG.png differ diff --git a/flags/flags-iso/flat/16/CH.png b/flags/flags-iso/flat/16/CH.png new file mode 100644 index 0000000..dcdb068 Binary files /dev/null and b/flags/flags-iso/flat/16/CH.png differ diff --git a/flags/flags-iso/flat/16/CI.png b/flags/flags-iso/flat/16/CI.png new file mode 100644 index 0000000..25a99ef Binary files /dev/null and b/flags/flags-iso/flat/16/CI.png differ diff --git a/flags/flags-iso/flat/16/CK.png b/flags/flags-iso/flat/16/CK.png new file mode 100644 index 0000000..c8eba16 Binary files /dev/null and b/flags/flags-iso/flat/16/CK.png differ diff --git a/flags/flags-iso/flat/16/CL.png b/flags/flags-iso/flat/16/CL.png new file mode 100644 index 0000000..1a7c983 Binary files /dev/null and b/flags/flags-iso/flat/16/CL.png differ diff --git a/flags/flags-iso/flat/16/CM.png b/flags/flags-iso/flat/16/CM.png new file mode 100644 index 0000000..2b4cea9 Binary files /dev/null and b/flags/flags-iso/flat/16/CM.png differ diff --git a/flags/flags-iso/flat/16/CN.png b/flags/flags-iso/flat/16/CN.png new file mode 100644 index 0000000..edd5f1d Binary files /dev/null and b/flags/flags-iso/flat/16/CN.png differ diff --git a/flags/flags-iso/flat/16/CO.png b/flags/flags-iso/flat/16/CO.png new file mode 100644 index 0000000..ad276d0 Binary files /dev/null and b/flags/flags-iso/flat/16/CO.png differ diff --git a/flags/flags-iso/flat/16/CR.png b/flags/flags-iso/flat/16/CR.png new file mode 100644 index 0000000..a102ffa Binary files /dev/null and b/flags/flags-iso/flat/16/CR.png differ diff --git a/flags/flags-iso/flat/16/CU.png b/flags/flags-iso/flat/16/CU.png new file mode 100644 index 0000000..99f7118 Binary files /dev/null and b/flags/flags-iso/flat/16/CU.png differ diff --git a/flags/flags-iso/flat/16/CV.png b/flags/flags-iso/flat/16/CV.png new file mode 100644 index 0000000..7736ea1 Binary files /dev/null and b/flags/flags-iso/flat/16/CV.png differ diff --git a/flags/flags-iso/flat/16/CX.png b/flags/flags-iso/flat/16/CX.png new file mode 100644 index 0000000..0f383db Binary files /dev/null and b/flags/flags-iso/flat/16/CX.png differ diff --git a/flags/flags-iso/flat/16/CY.png b/flags/flags-iso/flat/16/CY.png new file mode 100644 index 0000000..a1b08de Binary files /dev/null and b/flags/flags-iso/flat/16/CY.png differ diff --git a/flags/flags-iso/flat/16/CZ.png b/flags/flags-iso/flat/16/CZ.png new file mode 100644 index 0000000..95ffbf6 Binary files /dev/null and b/flags/flags-iso/flat/16/CZ.png differ diff --git a/flags/flags-iso/flat/16/DE.png b/flags/flags-iso/flat/16/DE.png new file mode 100644 index 0000000..f2f6175 Binary files /dev/null and b/flags/flags-iso/flat/16/DE.png differ diff --git a/flags/flags-iso/flat/16/DJ.png b/flags/flags-iso/flat/16/DJ.png new file mode 100644 index 0000000..a08f8e1 Binary files /dev/null and b/flags/flags-iso/flat/16/DJ.png differ diff --git a/flags/flags-iso/flat/16/DK.png b/flags/flags-iso/flat/16/DK.png new file mode 100644 index 0000000..349cb41 Binary files /dev/null and b/flags/flags-iso/flat/16/DK.png differ diff --git a/flags/flags-iso/flat/16/DM.png b/flags/flags-iso/flat/16/DM.png new file mode 100644 index 0000000..117e74d Binary files /dev/null and b/flags/flags-iso/flat/16/DM.png differ diff --git a/flags/flags-iso/flat/16/DO.png b/flags/flags-iso/flat/16/DO.png new file mode 100644 index 0000000..892e2e2 Binary files /dev/null and b/flags/flags-iso/flat/16/DO.png differ diff --git a/flags/flags-iso/flat/16/DZ.png b/flags/flags-iso/flat/16/DZ.png new file mode 100644 index 0000000..5e97662 Binary files /dev/null and b/flags/flags-iso/flat/16/DZ.png differ diff --git a/flags/flags-iso/flat/16/EC.png b/flags/flags-iso/flat/16/EC.png new file mode 100644 index 0000000..5741088 Binary files /dev/null and b/flags/flags-iso/flat/16/EC.png differ diff --git a/flags/flags-iso/flat/16/EE.png b/flags/flags-iso/flat/16/EE.png new file mode 100644 index 0000000..1f11899 Binary files /dev/null and b/flags/flags-iso/flat/16/EE.png differ diff --git a/flags/flags-iso/flat/16/EG.png b/flags/flags-iso/flat/16/EG.png new file mode 100644 index 0000000..0e873be Binary files /dev/null and b/flags/flags-iso/flat/16/EG.png differ diff --git a/flags/flags-iso/flat/16/EH.png b/flags/flags-iso/flat/16/EH.png new file mode 100644 index 0000000..a5b3b1c Binary files /dev/null and b/flags/flags-iso/flat/16/EH.png differ diff --git a/flags/flags-iso/flat/16/ER.png b/flags/flags-iso/flat/16/ER.png new file mode 100644 index 0000000..50781ce Binary files /dev/null and b/flags/flags-iso/flat/16/ER.png differ diff --git a/flags/flags-iso/flat/16/ES.png b/flags/flags-iso/flat/16/ES.png new file mode 100644 index 0000000..b89db68 Binary files /dev/null and b/flags/flags-iso/flat/16/ES.png differ diff --git a/flags/flags-iso/flat/16/ET.png b/flags/flags-iso/flat/16/ET.png new file mode 100644 index 0000000..aa14723 Binary files /dev/null and b/flags/flags-iso/flat/16/ET.png differ diff --git a/flags/flags-iso/flat/16/EU.png b/flags/flags-iso/flat/16/EU.png new file mode 100644 index 0000000..2bfaf10 Binary files /dev/null and b/flags/flags-iso/flat/16/EU.png differ diff --git a/flags/flags-iso/flat/16/FI.png b/flags/flags-iso/flat/16/FI.png new file mode 100644 index 0000000..b5a380c Binary files /dev/null and b/flags/flags-iso/flat/16/FI.png differ diff --git a/flags/flags-iso/flat/16/FJ.png b/flags/flags-iso/flat/16/FJ.png new file mode 100644 index 0000000..1cb520c Binary files /dev/null and b/flags/flags-iso/flat/16/FJ.png differ diff --git a/flags/flags-iso/flat/16/FK.png b/flags/flags-iso/flat/16/FK.png new file mode 100644 index 0000000..a7cadb7 Binary files /dev/null and b/flags/flags-iso/flat/16/FK.png differ diff --git a/flags/flags-iso/flat/16/FM.png b/flags/flags-iso/flat/16/FM.png new file mode 100644 index 0000000..5a9b85c Binary files /dev/null and b/flags/flags-iso/flat/16/FM.png differ diff --git a/flags/flags-iso/flat/16/FO.png b/flags/flags-iso/flat/16/FO.png new file mode 100644 index 0000000..4a49e30 Binary files /dev/null and b/flags/flags-iso/flat/16/FO.png differ diff --git a/flags/flags-iso/flat/16/FR.png b/flags/flags-iso/flat/16/FR.png new file mode 100644 index 0000000..0706dcc Binary files /dev/null and b/flags/flags-iso/flat/16/FR.png differ diff --git a/flags/flags-iso/flat/16/GA.png b/flags/flags-iso/flat/16/GA.png new file mode 100644 index 0000000..38899c4 Binary files /dev/null and b/flags/flags-iso/flat/16/GA.png differ diff --git a/flags/flags-iso/flat/16/GB.png b/flags/flags-iso/flat/16/GB.png new file mode 100644 index 0000000..43ebed3 Binary files /dev/null and b/flags/flags-iso/flat/16/GB.png differ diff --git a/flags/flags-iso/flat/16/GD.png b/flags/flags-iso/flat/16/GD.png new file mode 100644 index 0000000..2d33bbb Binary files /dev/null and b/flags/flags-iso/flat/16/GD.png differ diff --git a/flags/flags-iso/flat/16/GE.png b/flags/flags-iso/flat/16/GE.png new file mode 100644 index 0000000..7aff274 Binary files /dev/null and b/flags/flags-iso/flat/16/GE.png differ diff --git a/flags/flags-iso/flat/16/GG.png b/flags/flags-iso/flat/16/GG.png new file mode 100644 index 0000000..c0c3a78 Binary files /dev/null and b/flags/flags-iso/flat/16/GG.png differ diff --git a/flags/flags-iso/flat/16/GH.png b/flags/flags-iso/flat/16/GH.png new file mode 100644 index 0000000..e9b79a6 Binary files /dev/null and b/flags/flags-iso/flat/16/GH.png differ diff --git a/flags/flags-iso/flat/16/GI.png b/flags/flags-iso/flat/16/GI.png new file mode 100644 index 0000000..e14ebe5 Binary files /dev/null and b/flags/flags-iso/flat/16/GI.png differ diff --git a/flags/flags-iso/flat/16/GL.png b/flags/flags-iso/flat/16/GL.png new file mode 100644 index 0000000..6b995ff Binary files /dev/null and b/flags/flags-iso/flat/16/GL.png differ diff --git a/flags/flags-iso/flat/16/GM.png b/flags/flags-iso/flat/16/GM.png new file mode 100644 index 0000000..72c170a Binary files /dev/null and b/flags/flags-iso/flat/16/GM.png differ diff --git a/flags/flags-iso/flat/16/GN.png b/flags/flags-iso/flat/16/GN.png new file mode 100644 index 0000000..9983039 Binary files /dev/null and b/flags/flags-iso/flat/16/GN.png differ diff --git a/flags/flags-iso/flat/16/GQ.png b/flags/flags-iso/flat/16/GQ.png new file mode 100644 index 0000000..9b02045 Binary files /dev/null and b/flags/flags-iso/flat/16/GQ.png differ diff --git a/flags/flags-iso/flat/16/GR.png b/flags/flags-iso/flat/16/GR.png new file mode 100644 index 0000000..dc34d19 Binary files /dev/null and b/flags/flags-iso/flat/16/GR.png differ diff --git a/flags/flags-iso/flat/16/GS.png b/flags/flags-iso/flat/16/GS.png new file mode 100644 index 0000000..55392f9 Binary files /dev/null and b/flags/flags-iso/flat/16/GS.png differ diff --git a/flags/flags-iso/flat/16/GT.png b/flags/flags-iso/flat/16/GT.png new file mode 100644 index 0000000..0b4b8b4 Binary files /dev/null and b/flags/flags-iso/flat/16/GT.png differ diff --git a/flags/flags-iso/flat/16/GU.png b/flags/flags-iso/flat/16/GU.png new file mode 100644 index 0000000..31e9cc5 Binary files /dev/null and b/flags/flags-iso/flat/16/GU.png differ diff --git a/flags/flags-iso/flat/16/GW.png b/flags/flags-iso/flat/16/GW.png new file mode 100644 index 0000000..98c6633 Binary files /dev/null and b/flags/flags-iso/flat/16/GW.png differ diff --git a/flags/flags-iso/flat/16/GY.png b/flags/flags-iso/flat/16/GY.png new file mode 100644 index 0000000..8cc6d9c Binary files /dev/null and b/flags/flags-iso/flat/16/GY.png differ diff --git a/flags/flags-iso/flat/16/HK.png b/flags/flags-iso/flat/16/HK.png new file mode 100644 index 0000000..89c38aa Binary files /dev/null and b/flags/flags-iso/flat/16/HK.png differ diff --git a/flags/flags-iso/flat/16/HN.png b/flags/flags-iso/flat/16/HN.png new file mode 100644 index 0000000..e794c43 Binary files /dev/null and b/flags/flags-iso/flat/16/HN.png differ diff --git a/flags/flags-iso/flat/16/HR.png b/flags/flags-iso/flat/16/HR.png new file mode 100644 index 0000000..6f845d5 Binary files /dev/null and b/flags/flags-iso/flat/16/HR.png differ diff --git a/flags/flags-iso/flat/16/HT.png b/flags/flags-iso/flat/16/HT.png new file mode 100644 index 0000000..da4dc3b Binary files /dev/null and b/flags/flags-iso/flat/16/HT.png differ diff --git a/flags/flags-iso/flat/16/HU.png b/flags/flags-iso/flat/16/HU.png new file mode 100644 index 0000000..98de28a Binary files /dev/null and b/flags/flags-iso/flat/16/HU.png differ diff --git a/flags/flags-iso/flat/16/ID.png b/flags/flags-iso/flat/16/ID.png new file mode 100644 index 0000000..a14683d Binary files /dev/null and b/flags/flags-iso/flat/16/ID.png differ diff --git a/flags/flags-iso/flat/16/IE.png b/flags/flags-iso/flat/16/IE.png new file mode 100644 index 0000000..105c26b Binary files /dev/null and b/flags/flags-iso/flat/16/IE.png differ diff --git a/flags/flags-iso/flat/16/IL.png b/flags/flags-iso/flat/16/IL.png new file mode 100644 index 0000000..9ad54c5 Binary files /dev/null and b/flags/flags-iso/flat/16/IL.png differ diff --git a/flags/flags-iso/flat/16/IM.png b/flags/flags-iso/flat/16/IM.png new file mode 100644 index 0000000..f0ff466 Binary files /dev/null and b/flags/flags-iso/flat/16/IM.png differ diff --git a/flags/flags-iso/flat/16/IN.png b/flags/flags-iso/flat/16/IN.png new file mode 100644 index 0000000..f1c32fa Binary files /dev/null and b/flags/flags-iso/flat/16/IN.png differ diff --git a/flags/flags-iso/flat/16/IQ.png b/flags/flags-iso/flat/16/IQ.png new file mode 100644 index 0000000..8d5a323 Binary files /dev/null and b/flags/flags-iso/flat/16/IQ.png differ diff --git a/flags/flags-iso/flat/16/IR.png b/flags/flags-iso/flat/16/IR.png new file mode 100644 index 0000000..354a3ac Binary files /dev/null and b/flags/flags-iso/flat/16/IR.png differ diff --git a/flags/flags-iso/flat/16/IS.png b/flags/flags-iso/flat/16/IS.png new file mode 100644 index 0000000..87253cd Binary files /dev/null and b/flags/flags-iso/flat/16/IS.png differ diff --git a/flags/flags-iso/flat/16/IT.png b/flags/flags-iso/flat/16/IT.png new file mode 100644 index 0000000..ce11f1f Binary files /dev/null and b/flags/flags-iso/flat/16/IT.png differ diff --git a/flags/flags-iso/flat/16/JE.png b/flags/flags-iso/flat/16/JE.png new file mode 100644 index 0000000..904b610 Binary files /dev/null and b/flags/flags-iso/flat/16/JE.png differ diff --git a/flags/flags-iso/flat/16/JM.png b/flags/flags-iso/flat/16/JM.png new file mode 100644 index 0000000..378f70d Binary files /dev/null and b/flags/flags-iso/flat/16/JM.png differ diff --git a/flags/flags-iso/flat/16/JO.png b/flags/flags-iso/flat/16/JO.png new file mode 100644 index 0000000..270e524 Binary files /dev/null and b/flags/flags-iso/flat/16/JO.png differ diff --git a/flags/flags-iso/flat/16/JP.png b/flags/flags-iso/flat/16/JP.png new file mode 100644 index 0000000..78c159a Binary files /dev/null and b/flags/flags-iso/flat/16/JP.png differ diff --git a/flags/flags-iso/flat/16/KE.png b/flags/flags-iso/flat/16/KE.png new file mode 100644 index 0000000..ecbeb5d Binary files /dev/null and b/flags/flags-iso/flat/16/KE.png differ diff --git a/flags/flags-iso/flat/16/KG.png b/flags/flags-iso/flat/16/KG.png new file mode 100644 index 0000000..12b0dad Binary files /dev/null and b/flags/flags-iso/flat/16/KG.png differ diff --git a/flags/flags-iso/flat/16/KH.png b/flags/flags-iso/flat/16/KH.png new file mode 100644 index 0000000..6fb7f57 Binary files /dev/null and b/flags/flags-iso/flat/16/KH.png differ diff --git a/flags/flags-iso/flat/16/KI.png b/flags/flags-iso/flat/16/KI.png new file mode 100644 index 0000000..e2762a6 Binary files /dev/null and b/flags/flags-iso/flat/16/KI.png differ diff --git a/flags/flags-iso/flat/16/KM.png b/flags/flags-iso/flat/16/KM.png new file mode 100644 index 0000000..43d8a75 Binary files /dev/null and b/flags/flags-iso/flat/16/KM.png differ diff --git a/flags/flags-iso/flat/16/KN.png b/flags/flags-iso/flat/16/KN.png new file mode 100644 index 0000000..5decf8d Binary files /dev/null and b/flags/flags-iso/flat/16/KN.png differ diff --git a/flags/flags-iso/flat/16/KP.png b/flags/flags-iso/flat/16/KP.png new file mode 100644 index 0000000..b303f8e Binary files /dev/null and b/flags/flags-iso/flat/16/KP.png differ diff --git a/flags/flags-iso/flat/16/KR.png b/flags/flags-iso/flat/16/KR.png new file mode 100644 index 0000000..d21bef9 Binary files /dev/null and b/flags/flags-iso/flat/16/KR.png differ diff --git a/flags/flags-iso/flat/16/KW.png b/flags/flags-iso/flat/16/KW.png new file mode 100644 index 0000000..6f7010b Binary files /dev/null and b/flags/flags-iso/flat/16/KW.png differ diff --git a/flags/flags-iso/flat/16/KY.png b/flags/flags-iso/flat/16/KY.png new file mode 100644 index 0000000..c4bfbd9 Binary files /dev/null and b/flags/flags-iso/flat/16/KY.png differ diff --git a/flags/flags-iso/flat/16/KZ.png b/flags/flags-iso/flat/16/KZ.png new file mode 100644 index 0000000..1a0ca4f Binary files /dev/null and b/flags/flags-iso/flat/16/KZ.png differ diff --git a/flags/flags-iso/flat/16/LA.png b/flags/flags-iso/flat/16/LA.png new file mode 100644 index 0000000..f78e67f Binary files /dev/null and b/flags/flags-iso/flat/16/LA.png differ diff --git a/flags/flags-iso/flat/16/LB.png b/flags/flags-iso/flat/16/LB.png new file mode 100644 index 0000000..a9643c3 Binary files /dev/null and b/flags/flags-iso/flat/16/LB.png differ diff --git a/flags/flags-iso/flat/16/LC.png b/flags/flags-iso/flat/16/LC.png new file mode 100644 index 0000000..ab5916b Binary files /dev/null and b/flags/flags-iso/flat/16/LC.png differ diff --git a/flags/flags-iso/flat/16/LI.png b/flags/flags-iso/flat/16/LI.png new file mode 100644 index 0000000..cf7bbe4 Binary files /dev/null and b/flags/flags-iso/flat/16/LI.png differ diff --git a/flags/flags-iso/flat/16/LK.png b/flags/flags-iso/flat/16/LK.png new file mode 100644 index 0000000..a60c8ed Binary files /dev/null and b/flags/flags-iso/flat/16/LK.png differ diff --git a/flags/flags-iso/flat/16/LR.png b/flags/flags-iso/flat/16/LR.png new file mode 100644 index 0000000..dd3a57f Binary files /dev/null and b/flags/flags-iso/flat/16/LR.png differ diff --git a/flags/flags-iso/flat/16/LS.png b/flags/flags-iso/flat/16/LS.png new file mode 100644 index 0000000..ad2aa4a Binary files /dev/null and b/flags/flags-iso/flat/16/LS.png differ diff --git a/flags/flags-iso/flat/16/LT.png b/flags/flags-iso/flat/16/LT.png new file mode 100644 index 0000000..f40f2e2 Binary files /dev/null and b/flags/flags-iso/flat/16/LT.png differ diff --git a/flags/flags-iso/flat/16/LU.png b/flags/flags-iso/flat/16/LU.png new file mode 100644 index 0000000..92e72f9 Binary files /dev/null and b/flags/flags-iso/flat/16/LU.png differ diff --git a/flags/flags-iso/flat/16/LV.png b/flags/flags-iso/flat/16/LV.png new file mode 100644 index 0000000..3966acf Binary files /dev/null and b/flags/flags-iso/flat/16/LV.png differ diff --git a/flags/flags-iso/flat/16/LY.png b/flags/flags-iso/flat/16/LY.png new file mode 100644 index 0000000..4db0845 Binary files /dev/null and b/flags/flags-iso/flat/16/LY.png differ diff --git a/flags/flags-iso/flat/16/MA.png b/flags/flags-iso/flat/16/MA.png new file mode 100644 index 0000000..69424d5 Binary files /dev/null and b/flags/flags-iso/flat/16/MA.png differ diff --git a/flags/flags-iso/flat/16/MC.png b/flags/flags-iso/flat/16/MC.png new file mode 100644 index 0000000..a14683d Binary files /dev/null and b/flags/flags-iso/flat/16/MC.png differ diff --git a/flags/flags-iso/flat/16/MD.png b/flags/flags-iso/flat/16/MD.png new file mode 100644 index 0000000..21fd6ec Binary files /dev/null and b/flags/flags-iso/flat/16/MD.png differ diff --git a/flags/flags-iso/flat/16/ME.png b/flags/flags-iso/flat/16/ME.png new file mode 100644 index 0000000..0ca932d Binary files /dev/null and b/flags/flags-iso/flat/16/ME.png differ diff --git a/flags/flags-iso/flat/16/MG.png b/flags/flags-iso/flat/16/MG.png new file mode 100644 index 0000000..09f2469 Binary files /dev/null and b/flags/flags-iso/flat/16/MG.png differ diff --git a/flags/flags-iso/flat/16/MH.png b/flags/flags-iso/flat/16/MH.png new file mode 100644 index 0000000..3ffcf01 Binary files /dev/null and b/flags/flags-iso/flat/16/MH.png differ diff --git a/flags/flags-iso/flat/16/MK.png b/flags/flags-iso/flat/16/MK.png new file mode 100644 index 0000000..a676509 Binary files /dev/null and b/flags/flags-iso/flat/16/MK.png differ diff --git a/flags/flags-iso/flat/16/ML.png b/flags/flags-iso/flat/16/ML.png new file mode 100644 index 0000000..bd23841 Binary files /dev/null and b/flags/flags-iso/flat/16/ML.png differ diff --git a/flags/flags-iso/flat/16/MM.png b/flags/flags-iso/flat/16/MM.png new file mode 100644 index 0000000..1bf0d5b Binary files /dev/null and b/flags/flags-iso/flat/16/MM.png differ diff --git a/flags/flags-iso/flat/16/MN.png b/flags/flags-iso/flat/16/MN.png new file mode 100644 index 0000000..67a5335 Binary files /dev/null and b/flags/flags-iso/flat/16/MN.png differ diff --git a/flags/flags-iso/flat/16/MO.png b/flags/flags-iso/flat/16/MO.png new file mode 100644 index 0000000..2dc29c8 Binary files /dev/null and b/flags/flags-iso/flat/16/MO.png differ diff --git a/flags/flags-iso/flat/16/MP.png b/flags/flags-iso/flat/16/MP.png new file mode 100644 index 0000000..b505754 Binary files /dev/null and b/flags/flags-iso/flat/16/MP.png differ diff --git a/flags/flags-iso/flat/16/MR.png b/flags/flags-iso/flat/16/MR.png new file mode 100644 index 0000000..6bda861 Binary files /dev/null and b/flags/flags-iso/flat/16/MR.png differ diff --git a/flags/flags-iso/flat/16/MS.png b/flags/flags-iso/flat/16/MS.png new file mode 100644 index 0000000..a860c6f Binary files /dev/null and b/flags/flags-iso/flat/16/MS.png differ diff --git a/flags/flags-iso/flat/16/MT.png b/flags/flags-iso/flat/16/MT.png new file mode 100644 index 0000000..93d502b Binary files /dev/null and b/flags/flags-iso/flat/16/MT.png differ diff --git a/flags/flags-iso/flat/16/MU.png b/flags/flags-iso/flat/16/MU.png new file mode 100644 index 0000000..6bf5235 Binary files /dev/null and b/flags/flags-iso/flat/16/MU.png differ diff --git a/flags/flags-iso/flat/16/MV.png b/flags/flags-iso/flat/16/MV.png new file mode 100644 index 0000000..b87bb2e Binary files /dev/null and b/flags/flags-iso/flat/16/MV.png differ diff --git a/flags/flags-iso/flat/16/MW.png b/flags/flags-iso/flat/16/MW.png new file mode 100644 index 0000000..d75a8d3 Binary files /dev/null and b/flags/flags-iso/flat/16/MW.png differ diff --git a/flags/flags-iso/flat/16/MX.png b/flags/flags-iso/flat/16/MX.png new file mode 100644 index 0000000..8fa7919 Binary files /dev/null and b/flags/flags-iso/flat/16/MX.png differ diff --git a/flags/flags-iso/flat/16/MY.png b/flags/flags-iso/flat/16/MY.png new file mode 100644 index 0000000..a8e3996 Binary files /dev/null and b/flags/flags-iso/flat/16/MY.png differ diff --git a/flags/flags-iso/flat/16/MZ.png b/flags/flags-iso/flat/16/MZ.png new file mode 100644 index 0000000..0fdc38c Binary files /dev/null and b/flags/flags-iso/flat/16/MZ.png differ diff --git a/flags/flags-iso/flat/16/NA.png b/flags/flags-iso/flat/16/NA.png new file mode 100644 index 0000000..52e2a79 Binary files /dev/null and b/flags/flags-iso/flat/16/NA.png differ diff --git a/flags/flags-iso/flat/16/NC.png b/flags/flags-iso/flat/16/NC.png new file mode 100644 index 0000000..e3288ac Binary files /dev/null and b/flags/flags-iso/flat/16/NC.png differ diff --git a/flags/flags-iso/flat/16/NE.png b/flags/flags-iso/flat/16/NE.png new file mode 100644 index 0000000..841e77f Binary files /dev/null and b/flags/flags-iso/flat/16/NE.png differ diff --git a/flags/flags-iso/flat/16/NF.png b/flags/flags-iso/flat/16/NF.png new file mode 100644 index 0000000..7c1af02 Binary files /dev/null and b/flags/flags-iso/flat/16/NF.png differ diff --git a/flags/flags-iso/flat/16/NG.png b/flags/flags-iso/flat/16/NG.png new file mode 100644 index 0000000..25fe78f Binary files /dev/null and b/flags/flags-iso/flat/16/NG.png differ diff --git a/flags/flags-iso/flat/16/NI.png b/flags/flags-iso/flat/16/NI.png new file mode 100644 index 0000000..0f66acc Binary files /dev/null and b/flags/flags-iso/flat/16/NI.png differ diff --git a/flags/flags-iso/flat/16/NL.png b/flags/flags-iso/flat/16/NL.png new file mode 100644 index 0000000..036658e Binary files /dev/null and b/flags/flags-iso/flat/16/NL.png differ diff --git a/flags/flags-iso/flat/16/NO.png b/flags/flags-iso/flat/16/NO.png new file mode 100644 index 0000000..38a13c4 Binary files /dev/null and b/flags/flags-iso/flat/16/NO.png differ diff --git a/flags/flags-iso/flat/16/NP.png b/flags/flags-iso/flat/16/NP.png new file mode 100644 index 0000000..eed654b Binary files /dev/null and b/flags/flags-iso/flat/16/NP.png differ diff --git a/flags/flags-iso/flat/16/NR.png b/flags/flags-iso/flat/16/NR.png new file mode 100644 index 0000000..4b2d080 Binary files /dev/null and b/flags/flags-iso/flat/16/NR.png differ diff --git a/flags/flags-iso/flat/16/NU.png b/flags/flags-iso/flat/16/NU.png new file mode 100644 index 0000000..d791c4a Binary files /dev/null and b/flags/flags-iso/flat/16/NU.png differ diff --git a/flags/flags-iso/flat/16/NZ.png b/flags/flags-iso/flat/16/NZ.png new file mode 100644 index 0000000..913b18a Binary files /dev/null and b/flags/flags-iso/flat/16/NZ.png differ diff --git a/flags/flags-iso/flat/16/OM.png b/flags/flags-iso/flat/16/OM.png new file mode 100644 index 0000000..b2a16c0 Binary files /dev/null and b/flags/flags-iso/flat/16/OM.png differ diff --git a/flags/flags-iso/flat/16/PA.png b/flags/flags-iso/flat/16/PA.png new file mode 100644 index 0000000..fc0a34a Binary files /dev/null and b/flags/flags-iso/flat/16/PA.png differ diff --git a/flags/flags-iso/flat/16/PE.png b/flags/flags-iso/flat/16/PE.png new file mode 100644 index 0000000..ce31457 Binary files /dev/null and b/flags/flags-iso/flat/16/PE.png differ diff --git a/flags/flags-iso/flat/16/PF.png b/flags/flags-iso/flat/16/PF.png new file mode 100644 index 0000000..c932709 Binary files /dev/null and b/flags/flags-iso/flat/16/PF.png differ diff --git a/flags/flags-iso/flat/16/PG.png b/flags/flags-iso/flat/16/PG.png new file mode 100644 index 0000000..68b758d Binary files /dev/null and b/flags/flags-iso/flat/16/PG.png differ diff --git a/flags/flags-iso/flat/16/PH.png b/flags/flags-iso/flat/16/PH.png new file mode 100644 index 0000000..dc75142 Binary files /dev/null and b/flags/flags-iso/flat/16/PH.png differ diff --git a/flags/flags-iso/flat/16/PK.png b/flags/flags-iso/flat/16/PK.png new file mode 100644 index 0000000..014af06 Binary files /dev/null and b/flags/flags-iso/flat/16/PK.png differ diff --git a/flags/flags-iso/flat/16/PL.png b/flags/flags-iso/flat/16/PL.png new file mode 100644 index 0000000..4d0fc51 Binary files /dev/null and b/flags/flags-iso/flat/16/PL.png differ diff --git a/flags/flags-iso/flat/16/PN.png b/flags/flags-iso/flat/16/PN.png new file mode 100644 index 0000000..c046e9b Binary files /dev/null and b/flags/flags-iso/flat/16/PN.png differ diff --git a/flags/flags-iso/flat/16/PR.png b/flags/flags-iso/flat/16/PR.png new file mode 100644 index 0000000..7d54f19 Binary files /dev/null and b/flags/flags-iso/flat/16/PR.png differ diff --git a/flags/flags-iso/flat/16/PS.png b/flags/flags-iso/flat/16/PS.png new file mode 100644 index 0000000..d4d85dc Binary files /dev/null and b/flags/flags-iso/flat/16/PS.png differ diff --git a/flags/flags-iso/flat/16/PT.png b/flags/flags-iso/flat/16/PT.png new file mode 100644 index 0000000..18e276e Binary files /dev/null and b/flags/flags-iso/flat/16/PT.png differ diff --git a/flags/flags-iso/flat/16/PW.png b/flags/flags-iso/flat/16/PW.png new file mode 100644 index 0000000..f9bcdc6 Binary files /dev/null and b/flags/flags-iso/flat/16/PW.png differ diff --git a/flags/flags-iso/flat/16/PY.png b/flags/flags-iso/flat/16/PY.png new file mode 100644 index 0000000..c289b6c Binary files /dev/null and b/flags/flags-iso/flat/16/PY.png differ diff --git a/flags/flags-iso/flat/16/QA.png b/flags/flags-iso/flat/16/QA.png new file mode 100644 index 0000000..95c7485 Binary files /dev/null and b/flags/flags-iso/flat/16/QA.png differ diff --git a/flags/flags-iso/flat/16/RO.png b/flags/flags-iso/flat/16/RO.png new file mode 100644 index 0000000..3d9c2a3 Binary files /dev/null and b/flags/flags-iso/flat/16/RO.png differ diff --git a/flags/flags-iso/flat/16/RS.png b/flags/flags-iso/flat/16/RS.png new file mode 100644 index 0000000..d95bcdf Binary files /dev/null and b/flags/flags-iso/flat/16/RS.png differ diff --git a/flags/flags-iso/flat/16/RU.png b/flags/flags-iso/flat/16/RU.png new file mode 100644 index 0000000..a4318e7 Binary files /dev/null and b/flags/flags-iso/flat/16/RU.png differ diff --git a/flags/flags-iso/flat/16/RW.png b/flags/flags-iso/flat/16/RW.png new file mode 100644 index 0000000..00f5e1e Binary files /dev/null and b/flags/flags-iso/flat/16/RW.png differ diff --git a/flags/flags-iso/flat/16/SA.png b/flags/flags-iso/flat/16/SA.png new file mode 100644 index 0000000..ba3f2de Binary files /dev/null and b/flags/flags-iso/flat/16/SA.png differ diff --git a/flags/flags-iso/flat/16/SB.png b/flags/flags-iso/flat/16/SB.png new file mode 100644 index 0000000..1b6384a Binary files /dev/null and b/flags/flags-iso/flat/16/SB.png differ diff --git a/flags/flags-iso/flat/16/SC.png b/flags/flags-iso/flat/16/SC.png new file mode 100644 index 0000000..2a49518 Binary files /dev/null and b/flags/flags-iso/flat/16/SC.png differ diff --git a/flags/flags-iso/flat/16/SD.png b/flags/flags-iso/flat/16/SD.png new file mode 100644 index 0000000..5fc853b Binary files /dev/null and b/flags/flags-iso/flat/16/SD.png differ diff --git a/flags/flags-iso/flat/16/SE.png b/flags/flags-iso/flat/16/SE.png new file mode 100644 index 0000000..ad7854b Binary files /dev/null and b/flags/flags-iso/flat/16/SE.png differ diff --git a/flags/flags-iso/flat/16/SG.png b/flags/flags-iso/flat/16/SG.png new file mode 100644 index 0000000..8b1c5f0 Binary files /dev/null and b/flags/flags-iso/flat/16/SG.png differ diff --git a/flags/flags-iso/flat/16/SH.png b/flags/flags-iso/flat/16/SH.png new file mode 100644 index 0000000..4b2961b Binary files /dev/null and b/flags/flags-iso/flat/16/SH.png differ diff --git a/flags/flags-iso/flat/16/SI.png b/flags/flags-iso/flat/16/SI.png new file mode 100644 index 0000000..08cc3f4 Binary files /dev/null and b/flags/flags-iso/flat/16/SI.png differ diff --git a/flags/flags-iso/flat/16/SK.png b/flags/flags-iso/flat/16/SK.png new file mode 100644 index 0000000..d622ef0 Binary files /dev/null and b/flags/flags-iso/flat/16/SK.png differ diff --git a/flags/flags-iso/flat/16/SL.png b/flags/flags-iso/flat/16/SL.png new file mode 100644 index 0000000..e8a3530 Binary files /dev/null and b/flags/flags-iso/flat/16/SL.png differ diff --git a/flags/flags-iso/flat/16/SM.png b/flags/flags-iso/flat/16/SM.png new file mode 100644 index 0000000..f0d6572 Binary files /dev/null and b/flags/flags-iso/flat/16/SM.png differ diff --git a/flags/flags-iso/flat/16/SN.png b/flags/flags-iso/flat/16/SN.png new file mode 100644 index 0000000..a4fc08f Binary files /dev/null and b/flags/flags-iso/flat/16/SN.png differ diff --git a/flags/flags-iso/flat/16/SO.png b/flags/flags-iso/flat/16/SO.png new file mode 100644 index 0000000..3f0f416 Binary files /dev/null and b/flags/flags-iso/flat/16/SO.png differ diff --git a/flags/flags-iso/flat/16/SR.png b/flags/flags-iso/flat/16/SR.png new file mode 100644 index 0000000..6a8eea2 Binary files /dev/null and b/flags/flags-iso/flat/16/SR.png differ diff --git a/flags/flags-iso/flat/16/SS.png b/flags/flags-iso/flat/16/SS.png new file mode 100644 index 0000000..c71cafa Binary files /dev/null and b/flags/flags-iso/flat/16/SS.png differ diff --git a/flags/flags-iso/flat/16/ST.png b/flags/flags-iso/flat/16/ST.png new file mode 100644 index 0000000..480886c Binary files /dev/null and b/flags/flags-iso/flat/16/ST.png differ diff --git a/flags/flags-iso/flat/16/SV.png b/flags/flags-iso/flat/16/SV.png new file mode 100644 index 0000000..b5f69fa Binary files /dev/null and b/flags/flags-iso/flat/16/SV.png differ diff --git a/flags/flags-iso/flat/16/SY.png b/flags/flags-iso/flat/16/SY.png new file mode 100644 index 0000000..dd5927a Binary files /dev/null and b/flags/flags-iso/flat/16/SY.png differ diff --git a/flags/flags-iso/flat/16/SZ.png b/flags/flags-iso/flat/16/SZ.png new file mode 100644 index 0000000..b0615c3 Binary files /dev/null and b/flags/flags-iso/flat/16/SZ.png differ diff --git a/flags/flags-iso/flat/16/TC.png b/flags/flags-iso/flat/16/TC.png new file mode 100644 index 0000000..b17607b Binary files /dev/null and b/flags/flags-iso/flat/16/TC.png differ diff --git a/flags/flags-iso/flat/16/TD.png b/flags/flags-iso/flat/16/TD.png new file mode 100644 index 0000000..787eebb Binary files /dev/null and b/flags/flags-iso/flat/16/TD.png differ diff --git a/flags/flags-iso/flat/16/TF.png b/flags/flags-iso/flat/16/TF.png new file mode 100644 index 0000000..8292904 Binary files /dev/null and b/flags/flags-iso/flat/16/TF.png differ diff --git a/flags/flags-iso/flat/16/TG.png b/flags/flags-iso/flat/16/TG.png new file mode 100644 index 0000000..be814c6 Binary files /dev/null and b/flags/flags-iso/flat/16/TG.png differ diff --git a/flags/flags-iso/flat/16/TH.png b/flags/flags-iso/flat/16/TH.png new file mode 100644 index 0000000..5ff77db Binary files /dev/null and b/flags/flags-iso/flat/16/TH.png differ diff --git a/flags/flags-iso/flat/16/TJ.png b/flags/flags-iso/flat/16/TJ.png new file mode 100644 index 0000000..b0b546b Binary files /dev/null and b/flags/flags-iso/flat/16/TJ.png differ diff --git a/flags/flags-iso/flat/16/TK.png b/flags/flags-iso/flat/16/TK.png new file mode 100644 index 0000000..b70e823 Binary files /dev/null and b/flags/flags-iso/flat/16/TK.png differ diff --git a/flags/flags-iso/flat/16/TL.png b/flags/flags-iso/flat/16/TL.png new file mode 100644 index 0000000..b7e77dc Binary files /dev/null and b/flags/flags-iso/flat/16/TL.png differ diff --git a/flags/flags-iso/flat/16/TM.png b/flags/flags-iso/flat/16/TM.png new file mode 100644 index 0000000..e6f69d7 Binary files /dev/null and b/flags/flags-iso/flat/16/TM.png differ diff --git a/flags/flags-iso/flat/16/TN.png b/flags/flags-iso/flat/16/TN.png new file mode 100644 index 0000000..2548fd9 Binary files /dev/null and b/flags/flags-iso/flat/16/TN.png differ diff --git a/flags/flags-iso/flat/16/TO.png b/flags/flags-iso/flat/16/TO.png new file mode 100644 index 0000000..f96d996 Binary files /dev/null and b/flags/flags-iso/flat/16/TO.png differ diff --git a/flags/flags-iso/flat/16/TR.png b/flags/flags-iso/flat/16/TR.png new file mode 100644 index 0000000..3af317d Binary files /dev/null and b/flags/flags-iso/flat/16/TR.png differ diff --git a/flags/flags-iso/flat/16/TT.png b/flags/flags-iso/flat/16/TT.png new file mode 100644 index 0000000..890321a Binary files /dev/null and b/flags/flags-iso/flat/16/TT.png differ diff --git a/flags/flags-iso/flat/16/TV.png b/flags/flags-iso/flat/16/TV.png new file mode 100644 index 0000000..2ec3160 Binary files /dev/null and b/flags/flags-iso/flat/16/TV.png differ diff --git a/flags/flags-iso/flat/16/TW.png b/flags/flags-iso/flat/16/TW.png new file mode 100644 index 0000000..26425e4 Binary files /dev/null and b/flags/flags-iso/flat/16/TW.png differ diff --git a/flags/flags-iso/flat/16/TZ.png b/flags/flags-iso/flat/16/TZ.png new file mode 100644 index 0000000..c1671cf Binary files /dev/null and b/flags/flags-iso/flat/16/TZ.png differ diff --git a/flags/flags-iso/flat/16/UA.png b/flags/flags-iso/flat/16/UA.png new file mode 100644 index 0000000..74c2012 Binary files /dev/null and b/flags/flags-iso/flat/16/UA.png differ diff --git a/flags/flags-iso/flat/16/UG.png b/flags/flags-iso/flat/16/UG.png new file mode 100644 index 0000000..c8c2443 Binary files /dev/null and b/flags/flags-iso/flat/16/UG.png differ diff --git a/flags/flags-iso/flat/16/US.png b/flags/flags-iso/flat/16/US.png new file mode 100644 index 0000000..31aa3f1 Binary files /dev/null and b/flags/flags-iso/flat/16/US.png differ diff --git a/flags/flags-iso/flat/16/UY.png b/flags/flags-iso/flat/16/UY.png new file mode 100644 index 0000000..9397cec Binary files /dev/null and b/flags/flags-iso/flat/16/UY.png differ diff --git a/flags/flags-iso/flat/16/UZ.png b/flags/flags-iso/flat/16/UZ.png new file mode 100644 index 0000000..1df6c88 Binary files /dev/null and b/flags/flags-iso/flat/16/UZ.png differ diff --git a/flags/flags-iso/flat/16/VA.png b/flags/flags-iso/flat/16/VA.png new file mode 100644 index 0000000..25a852e Binary files /dev/null and b/flags/flags-iso/flat/16/VA.png differ diff --git a/flags/flags-iso/flat/16/VC.png b/flags/flags-iso/flat/16/VC.png new file mode 100644 index 0000000..e63a9c1 Binary files /dev/null and b/flags/flags-iso/flat/16/VC.png differ diff --git a/flags/flags-iso/flat/16/VE.png b/flags/flags-iso/flat/16/VE.png new file mode 100644 index 0000000..875f773 Binary files /dev/null and b/flags/flags-iso/flat/16/VE.png differ diff --git a/flags/flags-iso/flat/16/VG.png b/flags/flags-iso/flat/16/VG.png new file mode 100644 index 0000000..0bd002e Binary files /dev/null and b/flags/flags-iso/flat/16/VG.png differ diff --git a/flags/flags-iso/flat/16/VI.png b/flags/flags-iso/flat/16/VI.png new file mode 100644 index 0000000..69d667a Binary files /dev/null and b/flags/flags-iso/flat/16/VI.png differ diff --git a/flags/flags-iso/flat/16/VN.png b/flags/flags-iso/flat/16/VN.png new file mode 100644 index 0000000..69d87f9 Binary files /dev/null and b/flags/flags-iso/flat/16/VN.png differ diff --git a/flags/flags-iso/flat/16/VU.png b/flags/flags-iso/flat/16/VU.png new file mode 100644 index 0000000..5401c2a Binary files /dev/null and b/flags/flags-iso/flat/16/VU.png differ diff --git a/flags/flags-iso/flat/16/WS.png b/flags/flags-iso/flat/16/WS.png new file mode 100644 index 0000000..d1f62df Binary files /dev/null and b/flags/flags-iso/flat/16/WS.png differ diff --git a/flags/flags-iso/flat/16/YE.png b/flags/flags-iso/flat/16/YE.png new file mode 100644 index 0000000..bad5e1f Binary files /dev/null and b/flags/flags-iso/flat/16/YE.png differ diff --git a/flags/flags-iso/flat/16/YT.png b/flags/flags-iso/flat/16/YT.png new file mode 100644 index 0000000..676e06c Binary files /dev/null and b/flags/flags-iso/flat/16/YT.png differ diff --git a/flags/flags-iso/flat/16/ZA.png b/flags/flags-iso/flat/16/ZA.png new file mode 100644 index 0000000..701e010 Binary files /dev/null and b/flags/flags-iso/flat/16/ZA.png differ diff --git a/flags/flags-iso/flat/16/ZM.png b/flags/flags-iso/flat/16/ZM.png new file mode 100644 index 0000000..e3d8078 Binary files /dev/null and b/flags/flags-iso/flat/16/ZM.png differ diff --git a/flags/flags-iso/flat/16/ZW.png b/flags/flags-iso/flat/16/ZW.png new file mode 100644 index 0000000..79864d4 Binary files /dev/null and b/flags/flags-iso/flat/16/ZW.png differ diff --git a/flags/flags-iso/flat/16/_abkhazia.png b/flags/flags-iso/flat/16/_abkhazia.png new file mode 100644 index 0000000..0abf686 Binary files /dev/null and b/flags/flags-iso/flat/16/_abkhazia.png differ diff --git a/flags/flags-iso/flat/16/_british-antarctic-territory.png b/flags/flags-iso/flat/16/_british-antarctic-territory.png new file mode 100644 index 0000000..b29a7dc Binary files /dev/null and b/flags/flags-iso/flat/16/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/flat/16/_commonwealth.png b/flags/flags-iso/flat/16/_commonwealth.png new file mode 100644 index 0000000..8f08c8a Binary files /dev/null and b/flags/flags-iso/flat/16/_commonwealth.png differ diff --git a/flags/flags-iso/flat/16/_england.png b/flags/flags-iso/flat/16/_england.png new file mode 100644 index 0000000..7acb112 Binary files /dev/null and b/flags/flags-iso/flat/16/_england.png differ diff --git a/flags/flags-iso/flat/16/_gosquared.png b/flags/flags-iso/flat/16/_gosquared.png new file mode 100644 index 0000000..74f2eb5 Binary files /dev/null and b/flags/flags-iso/flat/16/_gosquared.png differ diff --git a/flags/flags-iso/flat/16/_kosovo.png b/flags/flags-iso/flat/16/_kosovo.png new file mode 100644 index 0000000..dfbb5f0 Binary files /dev/null and b/flags/flags-iso/flat/16/_kosovo.png differ diff --git a/flags/flags-iso/flat/16/_mars.png b/flags/flags-iso/flat/16/_mars.png new file mode 100644 index 0000000..4f5980b Binary files /dev/null and b/flags/flags-iso/flat/16/_mars.png differ diff --git a/flags/flags-iso/flat/16/_nagorno-karabakh.png b/flags/flags-iso/flat/16/_nagorno-karabakh.png new file mode 100644 index 0000000..f5a8d27 Binary files /dev/null and b/flags/flags-iso/flat/16/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/flat/16/_nato.png b/flags/flags-iso/flat/16/_nato.png new file mode 100644 index 0000000..fdb0541 Binary files /dev/null and b/flags/flags-iso/flat/16/_nato.png differ diff --git a/flags/flags-iso/flat/16/_northern-cyprus.png b/flags/flags-iso/flat/16/_northern-cyprus.png new file mode 100644 index 0000000..f9bf8bd Binary files /dev/null and b/flags/flags-iso/flat/16/_northern-cyprus.png differ diff --git a/flags/flags-iso/flat/16/_olympics.png b/flags/flags-iso/flat/16/_olympics.png new file mode 100644 index 0000000..6045223 Binary files /dev/null and b/flags/flags-iso/flat/16/_olympics.png differ diff --git a/flags/flags-iso/flat/16/_red-cross.png b/flags/flags-iso/flat/16/_red-cross.png new file mode 100644 index 0000000..28636e9 Binary files /dev/null and b/flags/flags-iso/flat/16/_red-cross.png differ diff --git a/flags/flags-iso/flat/16/_scotland.png b/flags/flags-iso/flat/16/_scotland.png new file mode 100644 index 0000000..db58040 Binary files /dev/null and b/flags/flags-iso/flat/16/_scotland.png differ diff --git a/flags/flags-iso/flat/16/_somaliland.png b/flags/flags-iso/flat/16/_somaliland.png new file mode 100644 index 0000000..a903a3b Binary files /dev/null and b/flags/flags-iso/flat/16/_somaliland.png differ diff --git a/flags/flags-iso/flat/16/_south-ossetia.png b/flags/flags-iso/flat/16/_south-ossetia.png new file mode 100644 index 0000000..d616841 Binary files /dev/null and b/flags/flags-iso/flat/16/_south-ossetia.png differ diff --git a/flags/flags-iso/flat/16/_united-nations.png b/flags/flags-iso/flat/16/_united-nations.png new file mode 100644 index 0000000..8e45e99 Binary files /dev/null and b/flags/flags-iso/flat/16/_united-nations.png differ diff --git a/flags/flags-iso/flat/16/_wales.png b/flags/flags-iso/flat/16/_wales.png new file mode 100644 index 0000000..51f13c2 Binary files /dev/null and b/flags/flags-iso/flat/16/_wales.png differ diff --git a/flags/flags-iso/flat/24/.png b/flags/flags-iso/flat/24/.png new file mode 100644 index 0000000..bf2c868 Binary files /dev/null and b/flags/flags-iso/flat/24/.png differ diff --git a/flags/flags-iso/flat/24/AD.png b/flags/flags-iso/flat/24/AD.png new file mode 100644 index 0000000..29e0027 Binary files /dev/null and b/flags/flags-iso/flat/24/AD.png differ diff --git a/flags/flags-iso/flat/24/AE.png b/flags/flags-iso/flat/24/AE.png new file mode 100644 index 0000000..8263f12 Binary files /dev/null and b/flags/flags-iso/flat/24/AE.png differ diff --git a/flags/flags-iso/flat/24/AF.png b/flags/flags-iso/flat/24/AF.png new file mode 100644 index 0000000..e5c8d7b Binary files /dev/null and b/flags/flags-iso/flat/24/AF.png differ diff --git a/flags/flags-iso/flat/24/AG.png b/flags/flags-iso/flat/24/AG.png new file mode 100644 index 0000000..81a6c22 Binary files /dev/null and b/flags/flags-iso/flat/24/AG.png differ diff --git a/flags/flags-iso/flat/24/AI.png b/flags/flags-iso/flat/24/AI.png new file mode 100644 index 0000000..754da16 Binary files /dev/null and b/flags/flags-iso/flat/24/AI.png differ diff --git a/flags/flags-iso/flat/24/AL.png b/flags/flags-iso/flat/24/AL.png new file mode 100644 index 0000000..281fd92 Binary files /dev/null and b/flags/flags-iso/flat/24/AL.png differ diff --git a/flags/flags-iso/flat/24/AM.png b/flags/flags-iso/flat/24/AM.png new file mode 100644 index 0000000..5e6fcd9 Binary files /dev/null and b/flags/flags-iso/flat/24/AM.png differ diff --git a/flags/flags-iso/flat/24/AN.png b/flags/flags-iso/flat/24/AN.png new file mode 100644 index 0000000..1432569 Binary files /dev/null and b/flags/flags-iso/flat/24/AN.png differ diff --git a/flags/flags-iso/flat/24/AO.png b/flags/flags-iso/flat/24/AO.png new file mode 100644 index 0000000..feac91a Binary files /dev/null and b/flags/flags-iso/flat/24/AO.png differ diff --git a/flags/flags-iso/flat/24/AQ.png b/flags/flags-iso/flat/24/AQ.png new file mode 100644 index 0000000..69be87b Binary files /dev/null and b/flags/flags-iso/flat/24/AQ.png differ diff --git a/flags/flags-iso/flat/24/AR.png b/flags/flags-iso/flat/24/AR.png new file mode 100644 index 0000000..5a0e3a6 Binary files /dev/null and b/flags/flags-iso/flat/24/AR.png differ diff --git a/flags/flags-iso/flat/24/AS.png b/flags/flags-iso/flat/24/AS.png new file mode 100644 index 0000000..07ce8bd Binary files /dev/null and b/flags/flags-iso/flat/24/AS.png differ diff --git a/flags/flags-iso/flat/24/AT.png b/flags/flags-iso/flat/24/AT.png new file mode 100644 index 0000000..4c43c02 Binary files /dev/null and b/flags/flags-iso/flat/24/AT.png differ diff --git a/flags/flags-iso/flat/24/AU.png b/flags/flags-iso/flat/24/AU.png new file mode 100644 index 0000000..a7962b5 Binary files /dev/null and b/flags/flags-iso/flat/24/AU.png differ diff --git a/flags/flags-iso/flat/24/AW.png b/flags/flags-iso/flat/24/AW.png new file mode 100644 index 0000000..e411a75 Binary files /dev/null and b/flags/flags-iso/flat/24/AW.png differ diff --git a/flags/flags-iso/flat/24/AX.png b/flags/flags-iso/flat/24/AX.png new file mode 100644 index 0000000..906ee2e Binary files /dev/null and b/flags/flags-iso/flat/24/AX.png differ diff --git a/flags/flags-iso/flat/24/AZ.png b/flags/flags-iso/flat/24/AZ.png new file mode 100644 index 0000000..64931b7 Binary files /dev/null and b/flags/flags-iso/flat/24/AZ.png differ diff --git a/flags/flags-iso/flat/24/BA.png b/flags/flags-iso/flat/24/BA.png new file mode 100644 index 0000000..9508043 Binary files /dev/null and b/flags/flags-iso/flat/24/BA.png differ diff --git a/flags/flags-iso/flat/24/BB.png b/flags/flags-iso/flat/24/BB.png new file mode 100644 index 0000000..3e6ce2e Binary files /dev/null and b/flags/flags-iso/flat/24/BB.png differ diff --git a/flags/flags-iso/flat/24/BD.png b/flags/flags-iso/flat/24/BD.png new file mode 100644 index 0000000..a6a4ecf Binary files /dev/null and b/flags/flags-iso/flat/24/BD.png differ diff --git a/flags/flags-iso/flat/24/BE.png b/flags/flags-iso/flat/24/BE.png new file mode 100644 index 0000000..df1eb16 Binary files /dev/null and b/flags/flags-iso/flat/24/BE.png differ diff --git a/flags/flags-iso/flat/24/BF.png b/flags/flags-iso/flat/24/BF.png new file mode 100644 index 0000000..e352be3 Binary files /dev/null and b/flags/flags-iso/flat/24/BF.png differ diff --git a/flags/flags-iso/flat/24/BG.png b/flags/flags-iso/flat/24/BG.png new file mode 100644 index 0000000..b24e1e2 Binary files /dev/null and b/flags/flags-iso/flat/24/BG.png differ diff --git a/flags/flags-iso/flat/24/BH.png b/flags/flags-iso/flat/24/BH.png new file mode 100644 index 0000000..2d5e754 Binary files /dev/null and b/flags/flags-iso/flat/24/BH.png differ diff --git a/flags/flags-iso/flat/24/BI.png b/flags/flags-iso/flat/24/BI.png new file mode 100644 index 0000000..d5acd66 Binary files /dev/null and b/flags/flags-iso/flat/24/BI.png differ diff --git a/flags/flags-iso/flat/24/BJ.png b/flags/flags-iso/flat/24/BJ.png new file mode 100644 index 0000000..3cdb27c Binary files /dev/null and b/flags/flags-iso/flat/24/BJ.png differ diff --git a/flags/flags-iso/flat/24/BL.png b/flags/flags-iso/flat/24/BL.png new file mode 100644 index 0000000..67f7149 Binary files /dev/null and b/flags/flags-iso/flat/24/BL.png differ diff --git a/flags/flags-iso/flat/24/BM.png b/flags/flags-iso/flat/24/BM.png new file mode 100644 index 0000000..f06f74c Binary files /dev/null and b/flags/flags-iso/flat/24/BM.png differ diff --git a/flags/flags-iso/flat/24/BN.png b/flags/flags-iso/flat/24/BN.png new file mode 100644 index 0000000..ef38045 Binary files /dev/null and b/flags/flags-iso/flat/24/BN.png differ diff --git a/flags/flags-iso/flat/24/BO.png b/flags/flags-iso/flat/24/BO.png new file mode 100644 index 0000000..d413a72 Binary files /dev/null and b/flags/flags-iso/flat/24/BO.png differ diff --git a/flags/flags-iso/flat/24/BR.png b/flags/flags-iso/flat/24/BR.png new file mode 100644 index 0000000..40890a6 Binary files /dev/null and b/flags/flags-iso/flat/24/BR.png differ diff --git a/flags/flags-iso/flat/24/BS.png b/flags/flags-iso/flat/24/BS.png new file mode 100644 index 0000000..b9ca7b5 Binary files /dev/null and b/flags/flags-iso/flat/24/BS.png differ diff --git a/flags/flags-iso/flat/24/BT.png b/flags/flags-iso/flat/24/BT.png new file mode 100644 index 0000000..acaa380 Binary files /dev/null and b/flags/flags-iso/flat/24/BT.png differ diff --git a/flags/flags-iso/flat/24/BW.png b/flags/flags-iso/flat/24/BW.png new file mode 100644 index 0000000..c651877 Binary files /dev/null and b/flags/flags-iso/flat/24/BW.png differ diff --git a/flags/flags-iso/flat/24/BY.png b/flags/flags-iso/flat/24/BY.png new file mode 100644 index 0000000..9c5be98 Binary files /dev/null and b/flags/flags-iso/flat/24/BY.png differ diff --git a/flags/flags-iso/flat/24/BZ.png b/flags/flags-iso/flat/24/BZ.png new file mode 100644 index 0000000..c303165 Binary files /dev/null and b/flags/flags-iso/flat/24/BZ.png differ diff --git a/flags/flags-iso/flat/24/CA.png b/flags/flags-iso/flat/24/CA.png new file mode 100644 index 0000000..dae9153 Binary files /dev/null and b/flags/flags-iso/flat/24/CA.png differ diff --git a/flags/flags-iso/flat/24/CC.png b/flags/flags-iso/flat/24/CC.png new file mode 100644 index 0000000..aee171e Binary files /dev/null and b/flags/flags-iso/flat/24/CC.png differ diff --git a/flags/flags-iso/flat/24/CD.png b/flags/flags-iso/flat/24/CD.png new file mode 100644 index 0000000..1b9bf6f Binary files /dev/null and b/flags/flags-iso/flat/24/CD.png differ diff --git a/flags/flags-iso/flat/24/CF.png b/flags/flags-iso/flat/24/CF.png new file mode 100644 index 0000000..902b323 Binary files /dev/null and b/flags/flags-iso/flat/24/CF.png differ diff --git a/flags/flags-iso/flat/24/CG.png b/flags/flags-iso/flat/24/CG.png new file mode 100644 index 0000000..b744905 Binary files /dev/null and b/flags/flags-iso/flat/24/CG.png differ diff --git a/flags/flags-iso/flat/24/CH.png b/flags/flags-iso/flat/24/CH.png new file mode 100644 index 0000000..985ff52 Binary files /dev/null and b/flags/flags-iso/flat/24/CH.png differ diff --git a/flags/flags-iso/flat/24/CI.png b/flags/flags-iso/flat/24/CI.png new file mode 100644 index 0000000..f908d9b Binary files /dev/null and b/flags/flags-iso/flat/24/CI.png differ diff --git a/flags/flags-iso/flat/24/CK.png b/flags/flags-iso/flat/24/CK.png new file mode 100644 index 0000000..7b884db Binary files /dev/null and b/flags/flags-iso/flat/24/CK.png differ diff --git a/flags/flags-iso/flat/24/CL.png b/flags/flags-iso/flat/24/CL.png new file mode 100644 index 0000000..9e16fd9 Binary files /dev/null and b/flags/flags-iso/flat/24/CL.png differ diff --git a/flags/flags-iso/flat/24/CM.png b/flags/flags-iso/flat/24/CM.png new file mode 100644 index 0000000..70136aa Binary files /dev/null and b/flags/flags-iso/flat/24/CM.png differ diff --git a/flags/flags-iso/flat/24/CN.png b/flags/flags-iso/flat/24/CN.png new file mode 100644 index 0000000..17cd5d0 Binary files /dev/null and b/flags/flags-iso/flat/24/CN.png differ diff --git a/flags/flags-iso/flat/24/CO.png b/flags/flags-iso/flat/24/CO.png new file mode 100644 index 0000000..0b0eddc Binary files /dev/null and b/flags/flags-iso/flat/24/CO.png differ diff --git a/flags/flags-iso/flat/24/CR.png b/flags/flags-iso/flat/24/CR.png new file mode 100644 index 0000000..7d9c882 Binary files /dev/null and b/flags/flags-iso/flat/24/CR.png differ diff --git a/flags/flags-iso/flat/24/CU.png b/flags/flags-iso/flat/24/CU.png new file mode 100644 index 0000000..e282c1c Binary files /dev/null and b/flags/flags-iso/flat/24/CU.png differ diff --git a/flags/flags-iso/flat/24/CV.png b/flags/flags-iso/flat/24/CV.png new file mode 100644 index 0000000..03b727b Binary files /dev/null and b/flags/flags-iso/flat/24/CV.png differ diff --git a/flags/flags-iso/flat/24/CX.png b/flags/flags-iso/flat/24/CX.png new file mode 100644 index 0000000..96c0173 Binary files /dev/null and b/flags/flags-iso/flat/24/CX.png differ diff --git a/flags/flags-iso/flat/24/CY.png b/flags/flags-iso/flat/24/CY.png new file mode 100644 index 0000000..89b1ced Binary files /dev/null and b/flags/flags-iso/flat/24/CY.png differ diff --git a/flags/flags-iso/flat/24/CZ.png b/flags/flags-iso/flat/24/CZ.png new file mode 100644 index 0000000..82ce85c Binary files /dev/null and b/flags/flags-iso/flat/24/CZ.png differ diff --git a/flags/flags-iso/flat/24/DE.png b/flags/flags-iso/flat/24/DE.png new file mode 100644 index 0000000..ebb1843 Binary files /dev/null and b/flags/flags-iso/flat/24/DE.png differ diff --git a/flags/flags-iso/flat/24/DJ.png b/flags/flags-iso/flat/24/DJ.png new file mode 100644 index 0000000..a0b0bcc Binary files /dev/null and b/flags/flags-iso/flat/24/DJ.png differ diff --git a/flags/flags-iso/flat/24/DK.png b/flags/flags-iso/flat/24/DK.png new file mode 100644 index 0000000..cb7bff7 Binary files /dev/null and b/flags/flags-iso/flat/24/DK.png differ diff --git a/flags/flags-iso/flat/24/DM.png b/flags/flags-iso/flat/24/DM.png new file mode 100644 index 0000000..1a336cc Binary files /dev/null and b/flags/flags-iso/flat/24/DM.png differ diff --git a/flags/flags-iso/flat/24/DO.png b/flags/flags-iso/flat/24/DO.png new file mode 100644 index 0000000..76f1363 Binary files /dev/null and b/flags/flags-iso/flat/24/DO.png differ diff --git a/flags/flags-iso/flat/24/DZ.png b/flags/flags-iso/flat/24/DZ.png new file mode 100644 index 0000000..124e087 Binary files /dev/null and b/flags/flags-iso/flat/24/DZ.png differ diff --git a/flags/flags-iso/flat/24/EC.png b/flags/flags-iso/flat/24/EC.png new file mode 100644 index 0000000..58a6aa4 Binary files /dev/null and b/flags/flags-iso/flat/24/EC.png differ diff --git a/flags/flags-iso/flat/24/EE.png b/flags/flags-iso/flat/24/EE.png new file mode 100644 index 0000000..47eb4f6 Binary files /dev/null and b/flags/flags-iso/flat/24/EE.png differ diff --git a/flags/flags-iso/flat/24/EG.png b/flags/flags-iso/flat/24/EG.png new file mode 100644 index 0000000..9bc7284 Binary files /dev/null and b/flags/flags-iso/flat/24/EG.png differ diff --git a/flags/flags-iso/flat/24/EH.png b/flags/flags-iso/flat/24/EH.png new file mode 100644 index 0000000..7cd1b3b Binary files /dev/null and b/flags/flags-iso/flat/24/EH.png differ diff --git a/flags/flags-iso/flat/24/ER.png b/flags/flags-iso/flat/24/ER.png new file mode 100644 index 0000000..025ac94 Binary files /dev/null and b/flags/flags-iso/flat/24/ER.png differ diff --git a/flags/flags-iso/flat/24/ES.png b/flags/flags-iso/flat/24/ES.png new file mode 100644 index 0000000..cf53a8d Binary files /dev/null and b/flags/flags-iso/flat/24/ES.png differ diff --git a/flags/flags-iso/flat/24/ET.png b/flags/flags-iso/flat/24/ET.png new file mode 100644 index 0000000..95711dd Binary files /dev/null and b/flags/flags-iso/flat/24/ET.png differ diff --git a/flags/flags-iso/flat/24/EU.png b/flags/flags-iso/flat/24/EU.png new file mode 100644 index 0000000..a9af51c Binary files /dev/null and b/flags/flags-iso/flat/24/EU.png differ diff --git a/flags/flags-iso/flat/24/FI.png b/flags/flags-iso/flat/24/FI.png new file mode 100644 index 0000000..a585cf4 Binary files /dev/null and b/flags/flags-iso/flat/24/FI.png differ diff --git a/flags/flags-iso/flat/24/FJ.png b/flags/flags-iso/flat/24/FJ.png new file mode 100644 index 0000000..f7b5ccb Binary files /dev/null and b/flags/flags-iso/flat/24/FJ.png differ diff --git a/flags/flags-iso/flat/24/FK.png b/flags/flags-iso/flat/24/FK.png new file mode 100644 index 0000000..e375bc1 Binary files /dev/null and b/flags/flags-iso/flat/24/FK.png differ diff --git a/flags/flags-iso/flat/24/FM.png b/flags/flags-iso/flat/24/FM.png new file mode 100644 index 0000000..7dccaf0 Binary files /dev/null and b/flags/flags-iso/flat/24/FM.png differ diff --git a/flags/flags-iso/flat/24/FO.png b/flags/flags-iso/flat/24/FO.png new file mode 100644 index 0000000..02daeca Binary files /dev/null and b/flags/flags-iso/flat/24/FO.png differ diff --git a/flags/flags-iso/flat/24/FR.png b/flags/flags-iso/flat/24/FR.png new file mode 100644 index 0000000..91a645e Binary files /dev/null and b/flags/flags-iso/flat/24/FR.png differ diff --git a/flags/flags-iso/flat/24/GA.png b/flags/flags-iso/flat/24/GA.png new file mode 100644 index 0000000..beeaa4f Binary files /dev/null and b/flags/flags-iso/flat/24/GA.png differ diff --git a/flags/flags-iso/flat/24/GB.png b/flags/flags-iso/flat/24/GB.png new file mode 100644 index 0000000..fb1edaa Binary files /dev/null and b/flags/flags-iso/flat/24/GB.png differ diff --git a/flags/flags-iso/flat/24/GD.png b/flags/flags-iso/flat/24/GD.png new file mode 100644 index 0000000..ccd4271 Binary files /dev/null and b/flags/flags-iso/flat/24/GD.png differ diff --git a/flags/flags-iso/flat/24/GE.png b/flags/flags-iso/flat/24/GE.png new file mode 100644 index 0000000..ae3088b Binary files /dev/null and b/flags/flags-iso/flat/24/GE.png differ diff --git a/flags/flags-iso/flat/24/GG.png b/flags/flags-iso/flat/24/GG.png new file mode 100644 index 0000000..2d7233c Binary files /dev/null and b/flags/flags-iso/flat/24/GG.png differ diff --git a/flags/flags-iso/flat/24/GH.png b/flags/flags-iso/flat/24/GH.png new file mode 100644 index 0000000..d76972e Binary files /dev/null and b/flags/flags-iso/flat/24/GH.png differ diff --git a/flags/flags-iso/flat/24/GI.png b/flags/flags-iso/flat/24/GI.png new file mode 100644 index 0000000..07017ba Binary files /dev/null and b/flags/flags-iso/flat/24/GI.png differ diff --git a/flags/flags-iso/flat/24/GL.png b/flags/flags-iso/flat/24/GL.png new file mode 100644 index 0000000..572fa5c Binary files /dev/null and b/flags/flags-iso/flat/24/GL.png differ diff --git a/flags/flags-iso/flat/24/GM.png b/flags/flags-iso/flat/24/GM.png new file mode 100644 index 0000000..643f21a Binary files /dev/null and b/flags/flags-iso/flat/24/GM.png differ diff --git a/flags/flags-iso/flat/24/GN.png b/flags/flags-iso/flat/24/GN.png new file mode 100644 index 0000000..eeb48b7 Binary files /dev/null and b/flags/flags-iso/flat/24/GN.png differ diff --git a/flags/flags-iso/flat/24/GQ.png b/flags/flags-iso/flat/24/GQ.png new file mode 100644 index 0000000..8292015 Binary files /dev/null and b/flags/flags-iso/flat/24/GQ.png differ diff --git a/flags/flags-iso/flat/24/GR.png b/flags/flags-iso/flat/24/GR.png new file mode 100644 index 0000000..c185d0b Binary files /dev/null and b/flags/flags-iso/flat/24/GR.png differ diff --git a/flags/flags-iso/flat/24/GS.png b/flags/flags-iso/flat/24/GS.png new file mode 100644 index 0000000..73ac17c Binary files /dev/null and b/flags/flags-iso/flat/24/GS.png differ diff --git a/flags/flags-iso/flat/24/GT.png b/flags/flags-iso/flat/24/GT.png new file mode 100644 index 0000000..8ce5c71 Binary files /dev/null and b/flags/flags-iso/flat/24/GT.png differ diff --git a/flags/flags-iso/flat/24/GU.png b/flags/flags-iso/flat/24/GU.png new file mode 100644 index 0000000..3a0081a Binary files /dev/null and b/flags/flags-iso/flat/24/GU.png differ diff --git a/flags/flags-iso/flat/24/GW.png b/flags/flags-iso/flat/24/GW.png new file mode 100644 index 0000000..d87c835 Binary files /dev/null and b/flags/flags-iso/flat/24/GW.png differ diff --git a/flags/flags-iso/flat/24/GY.png b/flags/flags-iso/flat/24/GY.png new file mode 100644 index 0000000..0064a1c Binary files /dev/null and b/flags/flags-iso/flat/24/GY.png differ diff --git a/flags/flags-iso/flat/24/HK.png b/flags/flags-iso/flat/24/HK.png new file mode 100644 index 0000000..1137e86 Binary files /dev/null and b/flags/flags-iso/flat/24/HK.png differ diff --git a/flags/flags-iso/flat/24/HN.png b/flags/flags-iso/flat/24/HN.png new file mode 100644 index 0000000..d59671c Binary files /dev/null and b/flags/flags-iso/flat/24/HN.png differ diff --git a/flags/flags-iso/flat/24/HR.png b/flags/flags-iso/flat/24/HR.png new file mode 100644 index 0000000..effebf8 Binary files /dev/null and b/flags/flags-iso/flat/24/HR.png differ diff --git a/flags/flags-iso/flat/24/HT.png b/flags/flags-iso/flat/24/HT.png new file mode 100644 index 0000000..c12253a Binary files /dev/null and b/flags/flags-iso/flat/24/HT.png differ diff --git a/flags/flags-iso/flat/24/HU.png b/flags/flags-iso/flat/24/HU.png new file mode 100644 index 0000000..62bfc27 Binary files /dev/null and b/flags/flags-iso/flat/24/HU.png differ diff --git a/flags/flags-iso/flat/24/ID.png b/flags/flags-iso/flat/24/ID.png new file mode 100644 index 0000000..e938f43 Binary files /dev/null and b/flags/flags-iso/flat/24/ID.png differ diff --git a/flags/flags-iso/flat/24/IE.png b/flags/flags-iso/flat/24/IE.png new file mode 100644 index 0000000..baaae6a Binary files /dev/null and b/flags/flags-iso/flat/24/IE.png differ diff --git a/flags/flags-iso/flat/24/IL.png b/flags/flags-iso/flat/24/IL.png new file mode 100644 index 0000000..9bac6ec Binary files /dev/null and b/flags/flags-iso/flat/24/IL.png differ diff --git a/flags/flags-iso/flat/24/IM.png b/flags/flags-iso/flat/24/IM.png new file mode 100644 index 0000000..442bfd9 Binary files /dev/null and b/flags/flags-iso/flat/24/IM.png differ diff --git a/flags/flags-iso/flat/24/IN.png b/flags/flags-iso/flat/24/IN.png new file mode 100644 index 0000000..0e5ee79 Binary files /dev/null and b/flags/flags-iso/flat/24/IN.png differ diff --git a/flags/flags-iso/flat/24/IQ.png b/flags/flags-iso/flat/24/IQ.png new file mode 100644 index 0000000..b712f74 Binary files /dev/null and b/flags/flags-iso/flat/24/IQ.png differ diff --git a/flags/flags-iso/flat/24/IR.png b/flags/flags-iso/flat/24/IR.png new file mode 100644 index 0000000..eca434c Binary files /dev/null and b/flags/flags-iso/flat/24/IR.png differ diff --git a/flags/flags-iso/flat/24/IS.png b/flags/flags-iso/flat/24/IS.png new file mode 100644 index 0000000..01e12fb Binary files /dev/null and b/flags/flags-iso/flat/24/IS.png differ diff --git a/flags/flags-iso/flat/24/IT.png b/flags/flags-iso/flat/24/IT.png new file mode 100644 index 0000000..8e9e7fa Binary files /dev/null and b/flags/flags-iso/flat/24/IT.png differ diff --git a/flags/flags-iso/flat/24/JE.png b/flags/flags-iso/flat/24/JE.png new file mode 100644 index 0000000..606798c Binary files /dev/null and b/flags/flags-iso/flat/24/JE.png differ diff --git a/flags/flags-iso/flat/24/JM.png b/flags/flags-iso/flat/24/JM.png new file mode 100644 index 0000000..002f61f Binary files /dev/null and b/flags/flags-iso/flat/24/JM.png differ diff --git a/flags/flags-iso/flat/24/JO.png b/flags/flags-iso/flat/24/JO.png new file mode 100644 index 0000000..ace43ca Binary files /dev/null and b/flags/flags-iso/flat/24/JO.png differ diff --git a/flags/flags-iso/flat/24/JP.png b/flags/flags-iso/flat/24/JP.png new file mode 100644 index 0000000..8fb1a36 Binary files /dev/null and b/flags/flags-iso/flat/24/JP.png differ diff --git a/flags/flags-iso/flat/24/KE.png b/flags/flags-iso/flat/24/KE.png new file mode 100644 index 0000000..87f6c6e Binary files /dev/null and b/flags/flags-iso/flat/24/KE.png differ diff --git a/flags/flags-iso/flat/24/KG.png b/flags/flags-iso/flat/24/KG.png new file mode 100644 index 0000000..c3bd3f6 Binary files /dev/null and b/flags/flags-iso/flat/24/KG.png differ diff --git a/flags/flags-iso/flat/24/KH.png b/flags/flags-iso/flat/24/KH.png new file mode 100644 index 0000000..f9f196d Binary files /dev/null and b/flags/flags-iso/flat/24/KH.png differ diff --git a/flags/flags-iso/flat/24/KI.png b/flags/flags-iso/flat/24/KI.png new file mode 100644 index 0000000..6f04a1f Binary files /dev/null and b/flags/flags-iso/flat/24/KI.png differ diff --git a/flags/flags-iso/flat/24/KM.png b/flags/flags-iso/flat/24/KM.png new file mode 100644 index 0000000..fbaceec Binary files /dev/null and b/flags/flags-iso/flat/24/KM.png differ diff --git a/flags/flags-iso/flat/24/KN.png b/flags/flags-iso/flat/24/KN.png new file mode 100644 index 0000000..27a1f7f Binary files /dev/null and b/flags/flags-iso/flat/24/KN.png differ diff --git a/flags/flags-iso/flat/24/KP.png b/flags/flags-iso/flat/24/KP.png new file mode 100644 index 0000000..bd631b8 Binary files /dev/null and b/flags/flags-iso/flat/24/KP.png differ diff --git a/flags/flags-iso/flat/24/KR.png b/flags/flags-iso/flat/24/KR.png new file mode 100644 index 0000000..58b00b5 Binary files /dev/null and b/flags/flags-iso/flat/24/KR.png differ diff --git a/flags/flags-iso/flat/24/KW.png b/flags/flags-iso/flat/24/KW.png new file mode 100644 index 0000000..7ac9ab1 Binary files /dev/null and b/flags/flags-iso/flat/24/KW.png differ diff --git a/flags/flags-iso/flat/24/KY.png b/flags/flags-iso/flat/24/KY.png new file mode 100644 index 0000000..fb4ea9b Binary files /dev/null and b/flags/flags-iso/flat/24/KY.png differ diff --git a/flags/flags-iso/flat/24/KZ.png b/flags/flags-iso/flat/24/KZ.png new file mode 100644 index 0000000..9891af6 Binary files /dev/null and b/flags/flags-iso/flat/24/KZ.png differ diff --git a/flags/flags-iso/flat/24/LA.png b/flags/flags-iso/flat/24/LA.png new file mode 100644 index 0000000..8905a7b Binary files /dev/null and b/flags/flags-iso/flat/24/LA.png differ diff --git a/flags/flags-iso/flat/24/LB.png b/flags/flags-iso/flat/24/LB.png new file mode 100644 index 0000000..9486645 Binary files /dev/null and b/flags/flags-iso/flat/24/LB.png differ diff --git a/flags/flags-iso/flat/24/LC.png b/flags/flags-iso/flat/24/LC.png new file mode 100644 index 0000000..7c03a0f Binary files /dev/null and b/flags/flags-iso/flat/24/LC.png differ diff --git a/flags/flags-iso/flat/24/LI.png b/flags/flags-iso/flat/24/LI.png new file mode 100644 index 0000000..1d9203e Binary files /dev/null and b/flags/flags-iso/flat/24/LI.png differ diff --git a/flags/flags-iso/flat/24/LK.png b/flags/flags-iso/flat/24/LK.png new file mode 100644 index 0000000..e9b9c87 Binary files /dev/null and b/flags/flags-iso/flat/24/LK.png differ diff --git a/flags/flags-iso/flat/24/LR.png b/flags/flags-iso/flat/24/LR.png new file mode 100644 index 0000000..5a1f700 Binary files /dev/null and b/flags/flags-iso/flat/24/LR.png differ diff --git a/flags/flags-iso/flat/24/LS.png b/flags/flags-iso/flat/24/LS.png new file mode 100644 index 0000000..6c8b9f5 Binary files /dev/null and b/flags/flags-iso/flat/24/LS.png differ diff --git a/flags/flags-iso/flat/24/LT.png b/flags/flags-iso/flat/24/LT.png new file mode 100644 index 0000000..ed53328 Binary files /dev/null and b/flags/flags-iso/flat/24/LT.png differ diff --git a/flags/flags-iso/flat/24/LU.png b/flags/flags-iso/flat/24/LU.png new file mode 100644 index 0000000..b28669f Binary files /dev/null and b/flags/flags-iso/flat/24/LU.png differ diff --git a/flags/flags-iso/flat/24/LV.png b/flags/flags-iso/flat/24/LV.png new file mode 100644 index 0000000..007cdce Binary files /dev/null and b/flags/flags-iso/flat/24/LV.png differ diff --git a/flags/flags-iso/flat/24/LY.png b/flags/flags-iso/flat/24/LY.png new file mode 100644 index 0000000..6ebc286 Binary files /dev/null and b/flags/flags-iso/flat/24/LY.png differ diff --git a/flags/flags-iso/flat/24/MA.png b/flags/flags-iso/flat/24/MA.png new file mode 100644 index 0000000..05ba811 Binary files /dev/null and b/flags/flags-iso/flat/24/MA.png differ diff --git a/flags/flags-iso/flat/24/MC.png b/flags/flags-iso/flat/24/MC.png new file mode 100644 index 0000000..e938f43 Binary files /dev/null and b/flags/flags-iso/flat/24/MC.png differ diff --git a/flags/flags-iso/flat/24/MD.png b/flags/flags-iso/flat/24/MD.png new file mode 100644 index 0000000..20870c2 Binary files /dev/null and b/flags/flags-iso/flat/24/MD.png differ diff --git a/flags/flags-iso/flat/24/ME.png b/flags/flags-iso/flat/24/ME.png new file mode 100644 index 0000000..90be1f1 Binary files /dev/null and b/flags/flags-iso/flat/24/ME.png differ diff --git a/flags/flags-iso/flat/24/MG.png b/flags/flags-iso/flat/24/MG.png new file mode 100644 index 0000000..404af71 Binary files /dev/null and b/flags/flags-iso/flat/24/MG.png differ diff --git a/flags/flags-iso/flat/24/MH.png b/flags/flags-iso/flat/24/MH.png new file mode 100644 index 0000000..e93857a Binary files /dev/null and b/flags/flags-iso/flat/24/MH.png differ diff --git a/flags/flags-iso/flat/24/MK.png b/flags/flags-iso/flat/24/MK.png new file mode 100644 index 0000000..a93dc0e Binary files /dev/null and b/flags/flags-iso/flat/24/MK.png differ diff --git a/flags/flags-iso/flat/24/ML.png b/flags/flags-iso/flat/24/ML.png new file mode 100644 index 0000000..bc27e26 Binary files /dev/null and b/flags/flags-iso/flat/24/ML.png differ diff --git a/flags/flags-iso/flat/24/MM.png b/flags/flags-iso/flat/24/MM.png new file mode 100644 index 0000000..6ef221a Binary files /dev/null and b/flags/flags-iso/flat/24/MM.png differ diff --git a/flags/flags-iso/flat/24/MN.png b/flags/flags-iso/flat/24/MN.png new file mode 100644 index 0000000..1dc766a Binary files /dev/null and b/flags/flags-iso/flat/24/MN.png differ diff --git a/flags/flags-iso/flat/24/MO.png b/flags/flags-iso/flat/24/MO.png new file mode 100644 index 0000000..cc4f379 Binary files /dev/null and b/flags/flags-iso/flat/24/MO.png differ diff --git a/flags/flags-iso/flat/24/MP.png b/flags/flags-iso/flat/24/MP.png new file mode 100644 index 0000000..cfc7261 Binary files /dev/null and b/flags/flags-iso/flat/24/MP.png differ diff --git a/flags/flags-iso/flat/24/MR.png b/flags/flags-iso/flat/24/MR.png new file mode 100644 index 0000000..f5866f8 Binary files /dev/null and b/flags/flags-iso/flat/24/MR.png differ diff --git a/flags/flags-iso/flat/24/MS.png b/flags/flags-iso/flat/24/MS.png new file mode 100644 index 0000000..f633212 Binary files /dev/null and b/flags/flags-iso/flat/24/MS.png differ diff --git a/flags/flags-iso/flat/24/MT.png b/flags/flags-iso/flat/24/MT.png new file mode 100644 index 0000000..f633f29 Binary files /dev/null and b/flags/flags-iso/flat/24/MT.png differ diff --git a/flags/flags-iso/flat/24/MU.png b/flags/flags-iso/flat/24/MU.png new file mode 100644 index 0000000..18fc541 Binary files /dev/null and b/flags/flags-iso/flat/24/MU.png differ diff --git a/flags/flags-iso/flat/24/MV.png b/flags/flags-iso/flat/24/MV.png new file mode 100644 index 0000000..703aa75 Binary files /dev/null and b/flags/flags-iso/flat/24/MV.png differ diff --git a/flags/flags-iso/flat/24/MW.png b/flags/flags-iso/flat/24/MW.png new file mode 100644 index 0000000..10e134a Binary files /dev/null and b/flags/flags-iso/flat/24/MW.png differ diff --git a/flags/flags-iso/flat/24/MX.png b/flags/flags-iso/flat/24/MX.png new file mode 100644 index 0000000..5a8e4b4 Binary files /dev/null and b/flags/flags-iso/flat/24/MX.png differ diff --git a/flags/flags-iso/flat/24/MY.png b/flags/flags-iso/flat/24/MY.png new file mode 100644 index 0000000..51606fa Binary files /dev/null and b/flags/flags-iso/flat/24/MY.png differ diff --git a/flags/flags-iso/flat/24/MZ.png b/flags/flags-iso/flat/24/MZ.png new file mode 100644 index 0000000..2825be9 Binary files /dev/null and b/flags/flags-iso/flat/24/MZ.png differ diff --git a/flags/flags-iso/flat/24/NA.png b/flags/flags-iso/flat/24/NA.png new file mode 100644 index 0000000..6ab06d1 Binary files /dev/null and b/flags/flags-iso/flat/24/NA.png differ diff --git a/flags/flags-iso/flat/24/NC.png b/flags/flags-iso/flat/24/NC.png new file mode 100644 index 0000000..36f9c70 Binary files /dev/null and b/flags/flags-iso/flat/24/NC.png differ diff --git a/flags/flags-iso/flat/24/NE.png b/flags/flags-iso/flat/24/NE.png new file mode 100644 index 0000000..2b46f7a Binary files /dev/null and b/flags/flags-iso/flat/24/NE.png differ diff --git a/flags/flags-iso/flat/24/NF.png b/flags/flags-iso/flat/24/NF.png new file mode 100644 index 0000000..2bca954 Binary files /dev/null and b/flags/flags-iso/flat/24/NF.png differ diff --git a/flags/flags-iso/flat/24/NG.png b/flags/flags-iso/flat/24/NG.png new file mode 100644 index 0000000..14eef79 Binary files /dev/null and b/flags/flags-iso/flat/24/NG.png differ diff --git a/flags/flags-iso/flat/24/NI.png b/flags/flags-iso/flat/24/NI.png new file mode 100644 index 0000000..1dcb912 Binary files /dev/null and b/flags/flags-iso/flat/24/NI.png differ diff --git a/flags/flags-iso/flat/24/NL.png b/flags/flags-iso/flat/24/NL.png new file mode 100644 index 0000000..0f98743 Binary files /dev/null and b/flags/flags-iso/flat/24/NL.png differ diff --git a/flags/flags-iso/flat/24/NO.png b/flags/flags-iso/flat/24/NO.png new file mode 100644 index 0000000..f228e9f Binary files /dev/null and b/flags/flags-iso/flat/24/NO.png differ diff --git a/flags/flags-iso/flat/24/NP.png b/flags/flags-iso/flat/24/NP.png new file mode 100644 index 0000000..3d896f9 Binary files /dev/null and b/flags/flags-iso/flat/24/NP.png differ diff --git a/flags/flags-iso/flat/24/NR.png b/flags/flags-iso/flat/24/NR.png new file mode 100644 index 0000000..179fa78 Binary files /dev/null and b/flags/flags-iso/flat/24/NR.png differ diff --git a/flags/flags-iso/flat/24/NU.png b/flags/flags-iso/flat/24/NU.png new file mode 100644 index 0000000..7bb2da2 Binary files /dev/null and b/flags/flags-iso/flat/24/NU.png differ diff --git a/flags/flags-iso/flat/24/NZ.png b/flags/flags-iso/flat/24/NZ.png new file mode 100644 index 0000000..70091f3 Binary files /dev/null and b/flags/flags-iso/flat/24/NZ.png differ diff --git a/flags/flags-iso/flat/24/OM.png b/flags/flags-iso/flat/24/OM.png new file mode 100644 index 0000000..d757f90 Binary files /dev/null and b/flags/flags-iso/flat/24/OM.png differ diff --git a/flags/flags-iso/flat/24/PA.png b/flags/flags-iso/flat/24/PA.png new file mode 100644 index 0000000..0908aac Binary files /dev/null and b/flags/flags-iso/flat/24/PA.png differ diff --git a/flags/flags-iso/flat/24/PE.png b/flags/flags-iso/flat/24/PE.png new file mode 100644 index 0000000..ff92542 Binary files /dev/null and b/flags/flags-iso/flat/24/PE.png differ diff --git a/flags/flags-iso/flat/24/PF.png b/flags/flags-iso/flat/24/PF.png new file mode 100644 index 0000000..dc3a828 Binary files /dev/null and b/flags/flags-iso/flat/24/PF.png differ diff --git a/flags/flags-iso/flat/24/PG.png b/flags/flags-iso/flat/24/PG.png new file mode 100644 index 0000000..0f2c976 Binary files /dev/null and b/flags/flags-iso/flat/24/PG.png differ diff --git a/flags/flags-iso/flat/24/PH.png b/flags/flags-iso/flat/24/PH.png new file mode 100644 index 0000000..9686b25 Binary files /dev/null and b/flags/flags-iso/flat/24/PH.png differ diff --git a/flags/flags-iso/flat/24/PK.png b/flags/flags-iso/flat/24/PK.png new file mode 100644 index 0000000..d01eddf Binary files /dev/null and b/flags/flags-iso/flat/24/PK.png differ diff --git a/flags/flags-iso/flat/24/PL.png b/flags/flags-iso/flat/24/PL.png new file mode 100644 index 0000000..b9807dc Binary files /dev/null and b/flags/flags-iso/flat/24/PL.png differ diff --git a/flags/flags-iso/flat/24/PN.png b/flags/flags-iso/flat/24/PN.png new file mode 100644 index 0000000..a27696f Binary files /dev/null and b/flags/flags-iso/flat/24/PN.png differ diff --git a/flags/flags-iso/flat/24/PR.png b/flags/flags-iso/flat/24/PR.png new file mode 100644 index 0000000..fdfc417 Binary files /dev/null and b/flags/flags-iso/flat/24/PR.png differ diff --git a/flags/flags-iso/flat/24/PS.png b/flags/flags-iso/flat/24/PS.png new file mode 100644 index 0000000..205061f Binary files /dev/null and b/flags/flags-iso/flat/24/PS.png differ diff --git a/flags/flags-iso/flat/24/PT.png b/flags/flags-iso/flat/24/PT.png new file mode 100644 index 0000000..8698cfa Binary files /dev/null and b/flags/flags-iso/flat/24/PT.png differ diff --git a/flags/flags-iso/flat/24/PW.png b/flags/flags-iso/flat/24/PW.png new file mode 100644 index 0000000..cf148a2 Binary files /dev/null and b/flags/flags-iso/flat/24/PW.png differ diff --git a/flags/flags-iso/flat/24/PY.png b/flags/flags-iso/flat/24/PY.png new file mode 100644 index 0000000..fc4b2a2 Binary files /dev/null and b/flags/flags-iso/flat/24/PY.png differ diff --git a/flags/flags-iso/flat/24/QA.png b/flags/flags-iso/flat/24/QA.png new file mode 100644 index 0000000..0a1876f Binary files /dev/null and b/flags/flags-iso/flat/24/QA.png differ diff --git a/flags/flags-iso/flat/24/RO.png b/flags/flags-iso/flat/24/RO.png new file mode 100644 index 0000000..cc2494d Binary files /dev/null and b/flags/flags-iso/flat/24/RO.png differ diff --git a/flags/flags-iso/flat/24/RS.png b/flags/flags-iso/flat/24/RS.png new file mode 100644 index 0000000..8dca354 Binary files /dev/null and b/flags/flags-iso/flat/24/RS.png differ diff --git a/flags/flags-iso/flat/24/RU.png b/flags/flags-iso/flat/24/RU.png new file mode 100644 index 0000000..d36f4b8 Binary files /dev/null and b/flags/flags-iso/flat/24/RU.png differ diff --git a/flags/flags-iso/flat/24/RW.png b/flags/flags-iso/flat/24/RW.png new file mode 100644 index 0000000..2e87e41 Binary files /dev/null and b/flags/flags-iso/flat/24/RW.png differ diff --git a/flags/flags-iso/flat/24/SA.png b/flags/flags-iso/flat/24/SA.png new file mode 100644 index 0000000..f5a10f0 Binary files /dev/null and b/flags/flags-iso/flat/24/SA.png differ diff --git a/flags/flags-iso/flat/24/SB.png b/flags/flags-iso/flat/24/SB.png new file mode 100644 index 0000000..4836b72 Binary files /dev/null and b/flags/flags-iso/flat/24/SB.png differ diff --git a/flags/flags-iso/flat/24/SC.png b/flags/flags-iso/flat/24/SC.png new file mode 100644 index 0000000..52becc5 Binary files /dev/null and b/flags/flags-iso/flat/24/SC.png differ diff --git a/flags/flags-iso/flat/24/SD.png b/flags/flags-iso/flat/24/SD.png new file mode 100644 index 0000000..7d75423 Binary files /dev/null and b/flags/flags-iso/flat/24/SD.png differ diff --git a/flags/flags-iso/flat/24/SE.png b/flags/flags-iso/flat/24/SE.png new file mode 100644 index 0000000..df52050 Binary files /dev/null and b/flags/flags-iso/flat/24/SE.png differ diff --git a/flags/flags-iso/flat/24/SG.png b/flags/flags-iso/flat/24/SG.png new file mode 100644 index 0000000..b23f685 Binary files /dev/null and b/flags/flags-iso/flat/24/SG.png differ diff --git a/flags/flags-iso/flat/24/SH.png b/flags/flags-iso/flat/24/SH.png new file mode 100644 index 0000000..35c6ac7 Binary files /dev/null and b/flags/flags-iso/flat/24/SH.png differ diff --git a/flags/flags-iso/flat/24/SI.png b/flags/flags-iso/flat/24/SI.png new file mode 100644 index 0000000..584888a Binary files /dev/null and b/flags/flags-iso/flat/24/SI.png differ diff --git a/flags/flags-iso/flat/24/SK.png b/flags/flags-iso/flat/24/SK.png new file mode 100644 index 0000000..8d9d1d7 Binary files /dev/null and b/flags/flags-iso/flat/24/SK.png differ diff --git a/flags/flags-iso/flat/24/SL.png b/flags/flags-iso/flat/24/SL.png new file mode 100644 index 0000000..3ff9f7c Binary files /dev/null and b/flags/flags-iso/flat/24/SL.png differ diff --git a/flags/flags-iso/flat/24/SM.png b/flags/flags-iso/flat/24/SM.png new file mode 100644 index 0000000..b058d14 Binary files /dev/null and b/flags/flags-iso/flat/24/SM.png differ diff --git a/flags/flags-iso/flat/24/SN.png b/flags/flags-iso/flat/24/SN.png new file mode 100644 index 0000000..0c6664f Binary files /dev/null and b/flags/flags-iso/flat/24/SN.png differ diff --git a/flags/flags-iso/flat/24/SO.png b/flags/flags-iso/flat/24/SO.png new file mode 100644 index 0000000..8acf3de Binary files /dev/null and b/flags/flags-iso/flat/24/SO.png differ diff --git a/flags/flags-iso/flat/24/SR.png b/flags/flags-iso/flat/24/SR.png new file mode 100644 index 0000000..dca8d1b Binary files /dev/null and b/flags/flags-iso/flat/24/SR.png differ diff --git a/flags/flags-iso/flat/24/SS.png b/flags/flags-iso/flat/24/SS.png new file mode 100644 index 0000000..bdaa77c Binary files /dev/null and b/flags/flags-iso/flat/24/SS.png differ diff --git a/flags/flags-iso/flat/24/ST.png b/flags/flags-iso/flat/24/ST.png new file mode 100644 index 0000000..5fe3cb2 Binary files /dev/null and b/flags/flags-iso/flat/24/ST.png differ diff --git a/flags/flags-iso/flat/24/SV.png b/flags/flags-iso/flat/24/SV.png new file mode 100644 index 0000000..78c554a Binary files /dev/null and b/flags/flags-iso/flat/24/SV.png differ diff --git a/flags/flags-iso/flat/24/SY.png b/flags/flags-iso/flat/24/SY.png new file mode 100644 index 0000000..cf21d7f Binary files /dev/null and b/flags/flags-iso/flat/24/SY.png differ diff --git a/flags/flags-iso/flat/24/SZ.png b/flags/flags-iso/flat/24/SZ.png new file mode 100644 index 0000000..a1a9d5a Binary files /dev/null and b/flags/flags-iso/flat/24/SZ.png differ diff --git a/flags/flags-iso/flat/24/TC.png b/flags/flags-iso/flat/24/TC.png new file mode 100644 index 0000000..10a9798 Binary files /dev/null and b/flags/flags-iso/flat/24/TC.png differ diff --git a/flags/flags-iso/flat/24/TD.png b/flags/flags-iso/flat/24/TD.png new file mode 100644 index 0000000..09a1236 Binary files /dev/null and b/flags/flags-iso/flat/24/TD.png differ diff --git a/flags/flags-iso/flat/24/TF.png b/flags/flags-iso/flat/24/TF.png new file mode 100644 index 0000000..83b017b Binary files /dev/null and b/flags/flags-iso/flat/24/TF.png differ diff --git a/flags/flags-iso/flat/24/TG.png b/flags/flags-iso/flat/24/TG.png new file mode 100644 index 0000000..406e51b Binary files /dev/null and b/flags/flags-iso/flat/24/TG.png differ diff --git a/flags/flags-iso/flat/24/TH.png b/flags/flags-iso/flat/24/TH.png new file mode 100644 index 0000000..a50b0e4 Binary files /dev/null and b/flags/flags-iso/flat/24/TH.png differ diff --git a/flags/flags-iso/flat/24/TJ.png b/flags/flags-iso/flat/24/TJ.png new file mode 100644 index 0000000..147d03f Binary files /dev/null and b/flags/flags-iso/flat/24/TJ.png differ diff --git a/flags/flags-iso/flat/24/TK.png b/flags/flags-iso/flat/24/TK.png new file mode 100644 index 0000000..6c965dd Binary files /dev/null and b/flags/flags-iso/flat/24/TK.png differ diff --git a/flags/flags-iso/flat/24/TL.png b/flags/flags-iso/flat/24/TL.png new file mode 100644 index 0000000..ee26b56 Binary files /dev/null and b/flags/flags-iso/flat/24/TL.png differ diff --git a/flags/flags-iso/flat/24/TM.png b/flags/flags-iso/flat/24/TM.png new file mode 100644 index 0000000..c2f342a Binary files /dev/null and b/flags/flags-iso/flat/24/TM.png differ diff --git a/flags/flags-iso/flat/24/TN.png b/flags/flags-iso/flat/24/TN.png new file mode 100644 index 0000000..cf508c6 Binary files /dev/null and b/flags/flags-iso/flat/24/TN.png differ diff --git a/flags/flags-iso/flat/24/TO.png b/flags/flags-iso/flat/24/TO.png new file mode 100644 index 0000000..36873d3 Binary files /dev/null and b/flags/flags-iso/flat/24/TO.png differ diff --git a/flags/flags-iso/flat/24/TR.png b/flags/flags-iso/flat/24/TR.png new file mode 100644 index 0000000..c147631 Binary files /dev/null and b/flags/flags-iso/flat/24/TR.png differ diff --git a/flags/flags-iso/flat/24/TT.png b/flags/flags-iso/flat/24/TT.png new file mode 100644 index 0000000..2a2ec08 Binary files /dev/null and b/flags/flags-iso/flat/24/TT.png differ diff --git a/flags/flags-iso/flat/24/TV.png b/flags/flags-iso/flat/24/TV.png new file mode 100644 index 0000000..b48b323 Binary files /dev/null and b/flags/flags-iso/flat/24/TV.png differ diff --git a/flags/flags-iso/flat/24/TW.png b/flags/flags-iso/flat/24/TW.png new file mode 100644 index 0000000..03a51bc Binary files /dev/null and b/flags/flags-iso/flat/24/TW.png differ diff --git a/flags/flags-iso/flat/24/TZ.png b/flags/flags-iso/flat/24/TZ.png new file mode 100644 index 0000000..26389e1 Binary files /dev/null and b/flags/flags-iso/flat/24/TZ.png differ diff --git a/flags/flags-iso/flat/24/UA.png b/flags/flags-iso/flat/24/UA.png new file mode 100644 index 0000000..badac50 Binary files /dev/null and b/flags/flags-iso/flat/24/UA.png differ diff --git a/flags/flags-iso/flat/24/UG.png b/flags/flags-iso/flat/24/UG.png new file mode 100644 index 0000000..3a8f4e1 Binary files /dev/null and b/flags/flags-iso/flat/24/UG.png differ diff --git a/flags/flags-iso/flat/24/US.png b/flags/flags-iso/flat/24/US.png new file mode 100644 index 0000000..b269593 Binary files /dev/null and b/flags/flags-iso/flat/24/US.png differ diff --git a/flags/flags-iso/flat/24/UY.png b/flags/flags-iso/flat/24/UY.png new file mode 100644 index 0000000..6789faa Binary files /dev/null and b/flags/flags-iso/flat/24/UY.png differ diff --git a/flags/flags-iso/flat/24/UZ.png b/flags/flags-iso/flat/24/UZ.png new file mode 100644 index 0000000..0a0cc51 Binary files /dev/null and b/flags/flags-iso/flat/24/UZ.png differ diff --git a/flags/flags-iso/flat/24/VA.png b/flags/flags-iso/flat/24/VA.png new file mode 100644 index 0000000..6ebc4ee Binary files /dev/null and b/flags/flags-iso/flat/24/VA.png differ diff --git a/flags/flags-iso/flat/24/VC.png b/flags/flags-iso/flat/24/VC.png new file mode 100644 index 0000000..f0b561d Binary files /dev/null and b/flags/flags-iso/flat/24/VC.png differ diff --git a/flags/flags-iso/flat/24/VE.png b/flags/flags-iso/flat/24/VE.png new file mode 100644 index 0000000..6e3a465 Binary files /dev/null and b/flags/flags-iso/flat/24/VE.png differ diff --git a/flags/flags-iso/flat/24/VG.png b/flags/flags-iso/flat/24/VG.png new file mode 100644 index 0000000..870a155 Binary files /dev/null and b/flags/flags-iso/flat/24/VG.png differ diff --git a/flags/flags-iso/flat/24/VI.png b/flags/flags-iso/flat/24/VI.png new file mode 100644 index 0000000..fcaf84e Binary files /dev/null and b/flags/flags-iso/flat/24/VI.png differ diff --git a/flags/flags-iso/flat/24/VN.png b/flags/flags-iso/flat/24/VN.png new file mode 100644 index 0000000..6668916 Binary files /dev/null and b/flags/flags-iso/flat/24/VN.png differ diff --git a/flags/flags-iso/flat/24/VU.png b/flags/flags-iso/flat/24/VU.png new file mode 100644 index 0000000..b000f11 Binary files /dev/null and b/flags/flags-iso/flat/24/VU.png differ diff --git a/flags/flags-iso/flat/24/WS.png b/flags/flags-iso/flat/24/WS.png new file mode 100644 index 0000000..c88f2e8 Binary files /dev/null and b/flags/flags-iso/flat/24/WS.png differ diff --git a/flags/flags-iso/flat/24/YE.png b/flags/flags-iso/flat/24/YE.png new file mode 100644 index 0000000..eed64e0 Binary files /dev/null and b/flags/flags-iso/flat/24/YE.png differ diff --git a/flags/flags-iso/flat/24/YT.png b/flags/flags-iso/flat/24/YT.png new file mode 100644 index 0000000..3386074 Binary files /dev/null and b/flags/flags-iso/flat/24/YT.png differ diff --git a/flags/flags-iso/flat/24/ZA.png b/flags/flags-iso/flat/24/ZA.png new file mode 100644 index 0000000..be9909f Binary files /dev/null and b/flags/flags-iso/flat/24/ZA.png differ diff --git a/flags/flags-iso/flat/24/ZM.png b/flags/flags-iso/flat/24/ZM.png new file mode 100644 index 0000000..04946dd Binary files /dev/null and b/flags/flags-iso/flat/24/ZM.png differ diff --git a/flags/flags-iso/flat/24/ZW.png b/flags/flags-iso/flat/24/ZW.png new file mode 100644 index 0000000..52b47a4 Binary files /dev/null and b/flags/flags-iso/flat/24/ZW.png differ diff --git a/flags/flags-iso/flat/24/_abkhazia.png b/flags/flags-iso/flat/24/_abkhazia.png new file mode 100644 index 0000000..b410c95 Binary files /dev/null and b/flags/flags-iso/flat/24/_abkhazia.png differ diff --git a/flags/flags-iso/flat/24/_british-antarctic-territory.png b/flags/flags-iso/flat/24/_british-antarctic-territory.png new file mode 100644 index 0000000..2a2bf70 Binary files /dev/null and b/flags/flags-iso/flat/24/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/flat/24/_commonwealth.png b/flags/flags-iso/flat/24/_commonwealth.png new file mode 100644 index 0000000..e7fd173 Binary files /dev/null and b/flags/flags-iso/flat/24/_commonwealth.png differ diff --git a/flags/flags-iso/flat/24/_england.png b/flags/flags-iso/flat/24/_england.png new file mode 100644 index 0000000..f6d3af3 Binary files /dev/null and b/flags/flags-iso/flat/24/_england.png differ diff --git a/flags/flags-iso/flat/24/_gosquared.png b/flags/flags-iso/flat/24/_gosquared.png new file mode 100644 index 0000000..428fb4e Binary files /dev/null and b/flags/flags-iso/flat/24/_gosquared.png differ diff --git a/flags/flags-iso/flat/24/_kosovo.png b/flags/flags-iso/flat/24/_kosovo.png new file mode 100644 index 0000000..f42a566 Binary files /dev/null and b/flags/flags-iso/flat/24/_kosovo.png differ diff --git a/flags/flags-iso/flat/24/_mars.png b/flags/flags-iso/flat/24/_mars.png new file mode 100644 index 0000000..f6554b1 Binary files /dev/null and b/flags/flags-iso/flat/24/_mars.png differ diff --git a/flags/flags-iso/flat/24/_nagorno-karabakh.png b/flags/flags-iso/flat/24/_nagorno-karabakh.png new file mode 100644 index 0000000..8168fa3 Binary files /dev/null and b/flags/flags-iso/flat/24/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/flat/24/_nato.png b/flags/flags-iso/flat/24/_nato.png new file mode 100644 index 0000000..c7404d1 Binary files /dev/null and b/flags/flags-iso/flat/24/_nato.png differ diff --git a/flags/flags-iso/flat/24/_northern-cyprus.png b/flags/flags-iso/flat/24/_northern-cyprus.png new file mode 100644 index 0000000..65242f0 Binary files /dev/null and b/flags/flags-iso/flat/24/_northern-cyprus.png differ diff --git a/flags/flags-iso/flat/24/_olympics.png b/flags/flags-iso/flat/24/_olympics.png new file mode 100644 index 0000000..35912bc Binary files /dev/null and b/flags/flags-iso/flat/24/_olympics.png differ diff --git a/flags/flags-iso/flat/24/_red-cross.png b/flags/flags-iso/flat/24/_red-cross.png new file mode 100644 index 0000000..1676e65 Binary files /dev/null and b/flags/flags-iso/flat/24/_red-cross.png differ diff --git a/flags/flags-iso/flat/24/_scotland.png b/flags/flags-iso/flat/24/_scotland.png new file mode 100644 index 0000000..293bef5 Binary files /dev/null and b/flags/flags-iso/flat/24/_scotland.png differ diff --git a/flags/flags-iso/flat/24/_somaliland.png b/flags/flags-iso/flat/24/_somaliland.png new file mode 100644 index 0000000..5dfd5a2 Binary files /dev/null and b/flags/flags-iso/flat/24/_somaliland.png differ diff --git a/flags/flags-iso/flat/24/_south-ossetia.png b/flags/flags-iso/flat/24/_south-ossetia.png new file mode 100644 index 0000000..094884a Binary files /dev/null and b/flags/flags-iso/flat/24/_south-ossetia.png differ diff --git a/flags/flags-iso/flat/24/_united-nations.png b/flags/flags-iso/flat/24/_united-nations.png new file mode 100644 index 0000000..629d744 Binary files /dev/null and b/flags/flags-iso/flat/24/_united-nations.png differ diff --git a/flags/flags-iso/flat/24/_wales.png b/flags/flags-iso/flat/24/_wales.png new file mode 100644 index 0000000..1bf5a19 Binary files /dev/null and b/flags/flags-iso/flat/24/_wales.png differ diff --git a/flags/flags-iso/flat/32/.png b/flags/flags-iso/flat/32/.png new file mode 100644 index 0000000..155ab0f Binary files /dev/null and b/flags/flags-iso/flat/32/.png differ diff --git a/flags/flags-iso/flat/32/AD.png b/flags/flags-iso/flat/32/AD.png new file mode 100644 index 0000000..2247b41 Binary files /dev/null and b/flags/flags-iso/flat/32/AD.png differ diff --git a/flags/flags-iso/flat/32/AE.png b/flags/flags-iso/flat/32/AE.png new file mode 100644 index 0000000..6b48ce6 Binary files /dev/null and b/flags/flags-iso/flat/32/AE.png differ diff --git a/flags/flags-iso/flat/32/AF.png b/flags/flags-iso/flat/32/AF.png new file mode 100644 index 0000000..8c0d196 Binary files /dev/null and b/flags/flags-iso/flat/32/AF.png differ diff --git a/flags/flags-iso/flat/32/AG.png b/flags/flags-iso/flat/32/AG.png new file mode 100644 index 0000000..8692f45 Binary files /dev/null and b/flags/flags-iso/flat/32/AG.png differ diff --git a/flags/flags-iso/flat/32/AI.png b/flags/flags-iso/flat/32/AI.png new file mode 100644 index 0000000..75a600a Binary files /dev/null and b/flags/flags-iso/flat/32/AI.png differ diff --git a/flags/flags-iso/flat/32/AL.png b/flags/flags-iso/flat/32/AL.png new file mode 100644 index 0000000..d39dfa4 Binary files /dev/null and b/flags/flags-iso/flat/32/AL.png differ diff --git a/flags/flags-iso/flat/32/AM.png b/flags/flags-iso/flat/32/AM.png new file mode 100644 index 0000000..6d5ef56 Binary files /dev/null and b/flags/flags-iso/flat/32/AM.png differ diff --git a/flags/flags-iso/flat/32/AN.png b/flags/flags-iso/flat/32/AN.png new file mode 100644 index 0000000..769e3d7 Binary files /dev/null and b/flags/flags-iso/flat/32/AN.png differ diff --git a/flags/flags-iso/flat/32/AO.png b/flags/flags-iso/flat/32/AO.png new file mode 100644 index 0000000..b248a14 Binary files /dev/null and b/flags/flags-iso/flat/32/AO.png differ diff --git a/flags/flags-iso/flat/32/AQ.png b/flags/flags-iso/flat/32/AQ.png new file mode 100644 index 0000000..e3c6289 Binary files /dev/null and b/flags/flags-iso/flat/32/AQ.png differ diff --git a/flags/flags-iso/flat/32/AR.png b/flags/flags-iso/flat/32/AR.png new file mode 100644 index 0000000..405155f Binary files /dev/null and b/flags/flags-iso/flat/32/AR.png differ diff --git a/flags/flags-iso/flat/32/AS.png b/flags/flags-iso/flat/32/AS.png new file mode 100644 index 0000000..f2d265d Binary files /dev/null and b/flags/flags-iso/flat/32/AS.png differ diff --git a/flags/flags-iso/flat/32/AT.png b/flags/flags-iso/flat/32/AT.png new file mode 100644 index 0000000..af63007 Binary files /dev/null and b/flags/flags-iso/flat/32/AT.png differ diff --git a/flags/flags-iso/flat/32/AU.png b/flags/flags-iso/flat/32/AU.png new file mode 100644 index 0000000..45c7645 Binary files /dev/null and b/flags/flags-iso/flat/32/AU.png differ diff --git a/flags/flags-iso/flat/32/AW.png b/flags/flags-iso/flat/32/AW.png new file mode 100644 index 0000000..ab063a5 Binary files /dev/null and b/flags/flags-iso/flat/32/AW.png differ diff --git a/flags/flags-iso/flat/32/AX.png b/flags/flags-iso/flat/32/AX.png new file mode 100644 index 0000000..bf1cce6 Binary files /dev/null and b/flags/flags-iso/flat/32/AX.png differ diff --git a/flags/flags-iso/flat/32/AZ.png b/flags/flags-iso/flat/32/AZ.png new file mode 100644 index 0000000..9d883b0 Binary files /dev/null and b/flags/flags-iso/flat/32/AZ.png differ diff --git a/flags/flags-iso/flat/32/BA.png b/flags/flags-iso/flat/32/BA.png new file mode 100644 index 0000000..168dbc1 Binary files /dev/null and b/flags/flags-iso/flat/32/BA.png differ diff --git a/flags/flags-iso/flat/32/BB.png b/flags/flags-iso/flat/32/BB.png new file mode 100644 index 0000000..ca4aa07 Binary files /dev/null and b/flags/flags-iso/flat/32/BB.png differ diff --git a/flags/flags-iso/flat/32/BD.png b/flags/flags-iso/flat/32/BD.png new file mode 100644 index 0000000..e62fdbb Binary files /dev/null and b/flags/flags-iso/flat/32/BD.png differ diff --git a/flags/flags-iso/flat/32/BE.png b/flags/flags-iso/flat/32/BE.png new file mode 100644 index 0000000..ae1ba66 Binary files /dev/null and b/flags/flags-iso/flat/32/BE.png differ diff --git a/flags/flags-iso/flat/32/BF.png b/flags/flags-iso/flat/32/BF.png new file mode 100644 index 0000000..d692300 Binary files /dev/null and b/flags/flags-iso/flat/32/BF.png differ diff --git a/flags/flags-iso/flat/32/BG.png b/flags/flags-iso/flat/32/BG.png new file mode 100644 index 0000000..7b3aa9d Binary files /dev/null and b/flags/flags-iso/flat/32/BG.png differ diff --git a/flags/flags-iso/flat/32/BH.png b/flags/flags-iso/flat/32/BH.png new file mode 100644 index 0000000..7bc3253 Binary files /dev/null and b/flags/flags-iso/flat/32/BH.png differ diff --git a/flags/flags-iso/flat/32/BI.png b/flags/flags-iso/flat/32/BI.png new file mode 100644 index 0000000..111339a Binary files /dev/null and b/flags/flags-iso/flat/32/BI.png differ diff --git a/flags/flags-iso/flat/32/BJ.png b/flags/flags-iso/flat/32/BJ.png new file mode 100644 index 0000000..5645cce Binary files /dev/null and b/flags/flags-iso/flat/32/BJ.png differ diff --git a/flags/flags-iso/flat/32/BL.png b/flags/flags-iso/flat/32/BL.png new file mode 100644 index 0000000..4e4f7cb Binary files /dev/null and b/flags/flags-iso/flat/32/BL.png differ diff --git a/flags/flags-iso/flat/32/BM.png b/flags/flags-iso/flat/32/BM.png new file mode 100644 index 0000000..bce285e Binary files /dev/null and b/flags/flags-iso/flat/32/BM.png differ diff --git a/flags/flags-iso/flat/32/BN.png b/flags/flags-iso/flat/32/BN.png new file mode 100644 index 0000000..b46f9d3 Binary files /dev/null and b/flags/flags-iso/flat/32/BN.png differ diff --git a/flags/flags-iso/flat/32/BO.png b/flags/flags-iso/flat/32/BO.png new file mode 100644 index 0000000..f5e9bf8 Binary files /dev/null and b/flags/flags-iso/flat/32/BO.png differ diff --git a/flags/flags-iso/flat/32/BR.png b/flags/flags-iso/flat/32/BR.png new file mode 100644 index 0000000..8848d51 Binary files /dev/null and b/flags/flags-iso/flat/32/BR.png differ diff --git a/flags/flags-iso/flat/32/BS.png b/flags/flags-iso/flat/32/BS.png new file mode 100644 index 0000000..c60c35b Binary files /dev/null and b/flags/flags-iso/flat/32/BS.png differ diff --git a/flags/flags-iso/flat/32/BT.png b/flags/flags-iso/flat/32/BT.png new file mode 100644 index 0000000..c5eea81 Binary files /dev/null and b/flags/flags-iso/flat/32/BT.png differ diff --git a/flags/flags-iso/flat/32/BW.png b/flags/flags-iso/flat/32/BW.png new file mode 100644 index 0000000..59f37cb Binary files /dev/null and b/flags/flags-iso/flat/32/BW.png differ diff --git a/flags/flags-iso/flat/32/BY.png b/flags/flags-iso/flat/32/BY.png new file mode 100644 index 0000000..5dc9c07 Binary files /dev/null and b/flags/flags-iso/flat/32/BY.png differ diff --git a/flags/flags-iso/flat/32/BZ.png b/flags/flags-iso/flat/32/BZ.png new file mode 100644 index 0000000..8fa1b7d Binary files /dev/null and b/flags/flags-iso/flat/32/BZ.png differ diff --git a/flags/flags-iso/flat/32/CA.png b/flags/flags-iso/flat/32/CA.png new file mode 100644 index 0000000..bb643fe Binary files /dev/null and b/flags/flags-iso/flat/32/CA.png differ diff --git a/flags/flags-iso/flat/32/CC.png b/flags/flags-iso/flat/32/CC.png new file mode 100644 index 0000000..4077acb Binary files /dev/null and b/flags/flags-iso/flat/32/CC.png differ diff --git a/flags/flags-iso/flat/32/CD.png b/flags/flags-iso/flat/32/CD.png new file mode 100644 index 0000000..43ba266 Binary files /dev/null and b/flags/flags-iso/flat/32/CD.png differ diff --git a/flags/flags-iso/flat/32/CF.png b/flags/flags-iso/flat/32/CF.png new file mode 100644 index 0000000..505047f Binary files /dev/null and b/flags/flags-iso/flat/32/CF.png differ diff --git a/flags/flags-iso/flat/32/CG.png b/flags/flags-iso/flat/32/CG.png new file mode 100644 index 0000000..0b05337 Binary files /dev/null and b/flags/flags-iso/flat/32/CG.png differ diff --git a/flags/flags-iso/flat/32/CH.png b/flags/flags-iso/flat/32/CH.png new file mode 100644 index 0000000..a7a3eae Binary files /dev/null and b/flags/flags-iso/flat/32/CH.png differ diff --git a/flags/flags-iso/flat/32/CI.png b/flags/flags-iso/flat/32/CI.png new file mode 100644 index 0000000..4bafeab Binary files /dev/null and b/flags/flags-iso/flat/32/CI.png differ diff --git a/flags/flags-iso/flat/32/CK.png b/flags/flags-iso/flat/32/CK.png new file mode 100644 index 0000000..c293e1d Binary files /dev/null and b/flags/flags-iso/flat/32/CK.png differ diff --git a/flags/flags-iso/flat/32/CL.png b/flags/flags-iso/flat/32/CL.png new file mode 100644 index 0000000..16177f1 Binary files /dev/null and b/flags/flags-iso/flat/32/CL.png differ diff --git a/flags/flags-iso/flat/32/CM.png b/flags/flags-iso/flat/32/CM.png new file mode 100644 index 0000000..4c87dcd Binary files /dev/null and b/flags/flags-iso/flat/32/CM.png differ diff --git a/flags/flags-iso/flat/32/CN.png b/flags/flags-iso/flat/32/CN.png new file mode 100644 index 0000000..02156cd Binary files /dev/null and b/flags/flags-iso/flat/32/CN.png differ diff --git a/flags/flags-iso/flat/32/CO.png b/flags/flags-iso/flat/32/CO.png new file mode 100644 index 0000000..1eda4bb Binary files /dev/null and b/flags/flags-iso/flat/32/CO.png differ diff --git a/flags/flags-iso/flat/32/CR.png b/flags/flags-iso/flat/32/CR.png new file mode 100644 index 0000000..47789fc Binary files /dev/null and b/flags/flags-iso/flat/32/CR.png differ diff --git a/flags/flags-iso/flat/32/CU.png b/flags/flags-iso/flat/32/CU.png new file mode 100644 index 0000000..23969c8 Binary files /dev/null and b/flags/flags-iso/flat/32/CU.png differ diff --git a/flags/flags-iso/flat/32/CV.png b/flags/flags-iso/flat/32/CV.png new file mode 100644 index 0000000..d28cc6f Binary files /dev/null and b/flags/flags-iso/flat/32/CV.png differ diff --git a/flags/flags-iso/flat/32/CX.png b/flags/flags-iso/flat/32/CX.png new file mode 100644 index 0000000..1a4b9ab Binary files /dev/null and b/flags/flags-iso/flat/32/CX.png differ diff --git a/flags/flags-iso/flat/32/CY.png b/flags/flags-iso/flat/32/CY.png new file mode 100644 index 0000000..487534e Binary files /dev/null and b/flags/flags-iso/flat/32/CY.png differ diff --git a/flags/flags-iso/flat/32/CZ.png b/flags/flags-iso/flat/32/CZ.png new file mode 100644 index 0000000..b2524ac Binary files /dev/null and b/flags/flags-iso/flat/32/CZ.png differ diff --git a/flags/flags-iso/flat/32/DE.png b/flags/flags-iso/flat/32/DE.png new file mode 100644 index 0000000..608866a Binary files /dev/null and b/flags/flags-iso/flat/32/DE.png differ diff --git a/flags/flags-iso/flat/32/DJ.png b/flags/flags-iso/flat/32/DJ.png new file mode 100644 index 0000000..86c8094 Binary files /dev/null and b/flags/flags-iso/flat/32/DJ.png differ diff --git a/flags/flags-iso/flat/32/DK.png b/flags/flags-iso/flat/32/DK.png new file mode 100644 index 0000000..e05eea9 Binary files /dev/null and b/flags/flags-iso/flat/32/DK.png differ diff --git a/flags/flags-iso/flat/32/DM.png b/flags/flags-iso/flat/32/DM.png new file mode 100644 index 0000000..db3315a Binary files /dev/null and b/flags/flags-iso/flat/32/DM.png differ diff --git a/flags/flags-iso/flat/32/DO.png b/flags/flags-iso/flat/32/DO.png new file mode 100644 index 0000000..e0ec694 Binary files /dev/null and b/flags/flags-iso/flat/32/DO.png differ diff --git a/flags/flags-iso/flat/32/DZ.png b/flags/flags-iso/flat/32/DZ.png new file mode 100644 index 0000000..639c489 Binary files /dev/null and b/flags/flags-iso/flat/32/DZ.png differ diff --git a/flags/flags-iso/flat/32/EC.png b/flags/flags-iso/flat/32/EC.png new file mode 100644 index 0000000..a1ba550 Binary files /dev/null and b/flags/flags-iso/flat/32/EC.png differ diff --git a/flags/flags-iso/flat/32/EE.png b/flags/flags-iso/flat/32/EE.png new file mode 100644 index 0000000..7fc26f3 Binary files /dev/null and b/flags/flags-iso/flat/32/EE.png differ diff --git a/flags/flags-iso/flat/32/EG.png b/flags/flags-iso/flat/32/EG.png new file mode 100644 index 0000000..6bb4713 Binary files /dev/null and b/flags/flags-iso/flat/32/EG.png differ diff --git a/flags/flags-iso/flat/32/EH.png b/flags/flags-iso/flat/32/EH.png new file mode 100644 index 0000000..d12c470 Binary files /dev/null and b/flags/flags-iso/flat/32/EH.png differ diff --git a/flags/flags-iso/flat/32/ER.png b/flags/flags-iso/flat/32/ER.png new file mode 100644 index 0000000..b63395d Binary files /dev/null and b/flags/flags-iso/flat/32/ER.png differ diff --git a/flags/flags-iso/flat/32/ES.png b/flags/flags-iso/flat/32/ES.png new file mode 100644 index 0000000..27b71d8 Binary files /dev/null and b/flags/flags-iso/flat/32/ES.png differ diff --git a/flags/flags-iso/flat/32/ET.png b/flags/flags-iso/flat/32/ET.png new file mode 100644 index 0000000..204251e Binary files /dev/null and b/flags/flags-iso/flat/32/ET.png differ diff --git a/flags/flags-iso/flat/32/EU.png b/flags/flags-iso/flat/32/EU.png new file mode 100644 index 0000000..d1d0fa4 Binary files /dev/null and b/flags/flags-iso/flat/32/EU.png differ diff --git a/flags/flags-iso/flat/32/FI.png b/flags/flags-iso/flat/32/FI.png new file mode 100644 index 0000000..7abc5c3 Binary files /dev/null and b/flags/flags-iso/flat/32/FI.png differ diff --git a/flags/flags-iso/flat/32/FJ.png b/flags/flags-iso/flat/32/FJ.png new file mode 100644 index 0000000..4cd241e Binary files /dev/null and b/flags/flags-iso/flat/32/FJ.png differ diff --git a/flags/flags-iso/flat/32/FK.png b/flags/flags-iso/flat/32/FK.png new file mode 100644 index 0000000..4d65fcf Binary files /dev/null and b/flags/flags-iso/flat/32/FK.png differ diff --git a/flags/flags-iso/flat/32/FM.png b/flags/flags-iso/flat/32/FM.png new file mode 100644 index 0000000..ed6ac3e Binary files /dev/null and b/flags/flags-iso/flat/32/FM.png differ diff --git a/flags/flags-iso/flat/32/FO.png b/flags/flags-iso/flat/32/FO.png new file mode 100644 index 0000000..3c08958 Binary files /dev/null and b/flags/flags-iso/flat/32/FO.png differ diff --git a/flags/flags-iso/flat/32/FR.png b/flags/flags-iso/flat/32/FR.png new file mode 100644 index 0000000..39fca72 Binary files /dev/null and b/flags/flags-iso/flat/32/FR.png differ diff --git a/flags/flags-iso/flat/32/GA.png b/flags/flags-iso/flat/32/GA.png new file mode 100644 index 0000000..b30e54b Binary files /dev/null and b/flags/flags-iso/flat/32/GA.png differ diff --git a/flags/flags-iso/flat/32/GB.png b/flags/flags-iso/flat/32/GB.png new file mode 100644 index 0000000..0279e69 Binary files /dev/null and b/flags/flags-iso/flat/32/GB.png differ diff --git a/flags/flags-iso/flat/32/GD.png b/flags/flags-iso/flat/32/GD.png new file mode 100644 index 0000000..5a8fd61 Binary files /dev/null and b/flags/flags-iso/flat/32/GD.png differ diff --git a/flags/flags-iso/flat/32/GE.png b/flags/flags-iso/flat/32/GE.png new file mode 100644 index 0000000..2044b5f Binary files /dev/null and b/flags/flags-iso/flat/32/GE.png differ diff --git a/flags/flags-iso/flat/32/GG.png b/flags/flags-iso/flat/32/GG.png new file mode 100644 index 0000000..ca83a08 Binary files /dev/null and b/flags/flags-iso/flat/32/GG.png differ diff --git a/flags/flags-iso/flat/32/GH.png b/flags/flags-iso/flat/32/GH.png new file mode 100644 index 0000000..910e877 Binary files /dev/null and b/flags/flags-iso/flat/32/GH.png differ diff --git a/flags/flags-iso/flat/32/GI.png b/flags/flags-iso/flat/32/GI.png new file mode 100644 index 0000000..205c518 Binary files /dev/null and b/flags/flags-iso/flat/32/GI.png differ diff --git a/flags/flags-iso/flat/32/GL.png b/flags/flags-iso/flat/32/GL.png new file mode 100644 index 0000000..09052a0 Binary files /dev/null and b/flags/flags-iso/flat/32/GL.png differ diff --git a/flags/flags-iso/flat/32/GM.png b/flags/flags-iso/flat/32/GM.png new file mode 100644 index 0000000..6d77a04 Binary files /dev/null and b/flags/flags-iso/flat/32/GM.png differ diff --git a/flags/flags-iso/flat/32/GN.png b/flags/flags-iso/flat/32/GN.png new file mode 100644 index 0000000..ae45623 Binary files /dev/null and b/flags/flags-iso/flat/32/GN.png differ diff --git a/flags/flags-iso/flat/32/GQ.png b/flags/flags-iso/flat/32/GQ.png new file mode 100644 index 0000000..6046df6 Binary files /dev/null and b/flags/flags-iso/flat/32/GQ.png differ diff --git a/flags/flags-iso/flat/32/GR.png b/flags/flags-iso/flat/32/GR.png new file mode 100644 index 0000000..4214c9e Binary files /dev/null and b/flags/flags-iso/flat/32/GR.png differ diff --git a/flags/flags-iso/flat/32/GS.png b/flags/flags-iso/flat/32/GS.png new file mode 100644 index 0000000..5998724 Binary files /dev/null and b/flags/flags-iso/flat/32/GS.png differ diff --git a/flags/flags-iso/flat/32/GT.png b/flags/flags-iso/flat/32/GT.png new file mode 100644 index 0000000..ad60c9f Binary files /dev/null and b/flags/flags-iso/flat/32/GT.png differ diff --git a/flags/flags-iso/flat/32/GU.png b/flags/flags-iso/flat/32/GU.png new file mode 100644 index 0000000..d29c9d7 Binary files /dev/null and b/flags/flags-iso/flat/32/GU.png differ diff --git a/flags/flags-iso/flat/32/GW.png b/flags/flags-iso/flat/32/GW.png new file mode 100644 index 0000000..b2a2be2 Binary files /dev/null and b/flags/flags-iso/flat/32/GW.png differ diff --git a/flags/flags-iso/flat/32/GY.png b/flags/flags-iso/flat/32/GY.png new file mode 100644 index 0000000..a633055 Binary files /dev/null and b/flags/flags-iso/flat/32/GY.png differ diff --git a/flags/flags-iso/flat/32/HK.png b/flags/flags-iso/flat/32/HK.png new file mode 100644 index 0000000..a07471f Binary files /dev/null and b/flags/flags-iso/flat/32/HK.png differ diff --git a/flags/flags-iso/flat/32/HN.png b/flags/flags-iso/flat/32/HN.png new file mode 100644 index 0000000..501af3a Binary files /dev/null and b/flags/flags-iso/flat/32/HN.png differ diff --git a/flags/flags-iso/flat/32/HR.png b/flags/flags-iso/flat/32/HR.png new file mode 100644 index 0000000..c5fb552 Binary files /dev/null and b/flags/flags-iso/flat/32/HR.png differ diff --git a/flags/flags-iso/flat/32/HT.png b/flags/flags-iso/flat/32/HT.png new file mode 100644 index 0000000..bff74a7 Binary files /dev/null and b/flags/flags-iso/flat/32/HT.png differ diff --git a/flags/flags-iso/flat/32/HU.png b/flags/flags-iso/flat/32/HU.png new file mode 100644 index 0000000..d353cc4 Binary files /dev/null and b/flags/flags-iso/flat/32/HU.png differ diff --git a/flags/flags-iso/flat/32/ID.png b/flags/flags-iso/flat/32/ID.png new file mode 100644 index 0000000..469675a Binary files /dev/null and b/flags/flags-iso/flat/32/ID.png differ diff --git a/flags/flags-iso/flat/32/IE.png b/flags/flags-iso/flat/32/IE.png new file mode 100644 index 0000000..f5890e6 Binary files /dev/null and b/flags/flags-iso/flat/32/IE.png differ diff --git a/flags/flags-iso/flat/32/IL.png b/flags/flags-iso/flat/32/IL.png new file mode 100644 index 0000000..955579f Binary files /dev/null and b/flags/flags-iso/flat/32/IL.png differ diff --git a/flags/flags-iso/flat/32/IM.png b/flags/flags-iso/flat/32/IM.png new file mode 100644 index 0000000..68a452e Binary files /dev/null and b/flags/flags-iso/flat/32/IM.png differ diff --git a/flags/flags-iso/flat/32/IN.png b/flags/flags-iso/flat/32/IN.png new file mode 100644 index 0000000..8b86908 Binary files /dev/null and b/flags/flags-iso/flat/32/IN.png differ diff --git a/flags/flags-iso/flat/32/IQ.png b/flags/flags-iso/flat/32/IQ.png new file mode 100644 index 0000000..fa915c4 Binary files /dev/null and b/flags/flags-iso/flat/32/IQ.png differ diff --git a/flags/flags-iso/flat/32/IR.png b/flags/flags-iso/flat/32/IR.png new file mode 100644 index 0000000..addc3b7 Binary files /dev/null and b/flags/flags-iso/flat/32/IR.png differ diff --git a/flags/flags-iso/flat/32/IS.png b/flags/flags-iso/flat/32/IS.png new file mode 100644 index 0000000..ccb77e5 Binary files /dev/null and b/flags/flags-iso/flat/32/IS.png differ diff --git a/flags/flags-iso/flat/32/IT.png b/flags/flags-iso/flat/32/IT.png new file mode 100644 index 0000000..fd4a9db Binary files /dev/null and b/flags/flags-iso/flat/32/IT.png differ diff --git a/flags/flags-iso/flat/32/JE.png b/flags/flags-iso/flat/32/JE.png new file mode 100644 index 0000000..734f2bb Binary files /dev/null and b/flags/flags-iso/flat/32/JE.png differ diff --git a/flags/flags-iso/flat/32/JM.png b/flags/flags-iso/flat/32/JM.png new file mode 100644 index 0000000..8d504f6 Binary files /dev/null and b/flags/flags-iso/flat/32/JM.png differ diff --git a/flags/flags-iso/flat/32/JO.png b/flags/flags-iso/flat/32/JO.png new file mode 100644 index 0000000..5f829a6 Binary files /dev/null and b/flags/flags-iso/flat/32/JO.png differ diff --git a/flags/flags-iso/flat/32/JP.png b/flags/flags-iso/flat/32/JP.png new file mode 100644 index 0000000..80c93d1 Binary files /dev/null and b/flags/flags-iso/flat/32/JP.png differ diff --git a/flags/flags-iso/flat/32/KE.png b/flags/flags-iso/flat/32/KE.png new file mode 100644 index 0000000..e4c1520 Binary files /dev/null and b/flags/flags-iso/flat/32/KE.png differ diff --git a/flags/flags-iso/flat/32/KG.png b/flags/flags-iso/flat/32/KG.png new file mode 100644 index 0000000..bfdb8f3 Binary files /dev/null and b/flags/flags-iso/flat/32/KG.png differ diff --git a/flags/flags-iso/flat/32/KH.png b/flags/flags-iso/flat/32/KH.png new file mode 100644 index 0000000..18edf66 Binary files /dev/null and b/flags/flags-iso/flat/32/KH.png differ diff --git a/flags/flags-iso/flat/32/KI.png b/flags/flags-iso/flat/32/KI.png new file mode 100644 index 0000000..0ddecfe Binary files /dev/null and b/flags/flags-iso/flat/32/KI.png differ diff --git a/flags/flags-iso/flat/32/KM.png b/flags/flags-iso/flat/32/KM.png new file mode 100644 index 0000000..fc6d684 Binary files /dev/null and b/flags/flags-iso/flat/32/KM.png differ diff --git a/flags/flags-iso/flat/32/KN.png b/flags/flags-iso/flat/32/KN.png new file mode 100644 index 0000000..a8ff1e8 Binary files /dev/null and b/flags/flags-iso/flat/32/KN.png differ diff --git a/flags/flags-iso/flat/32/KP.png b/flags/flags-iso/flat/32/KP.png new file mode 100644 index 0000000..f822eff Binary files /dev/null and b/flags/flags-iso/flat/32/KP.png differ diff --git a/flags/flags-iso/flat/32/KR.png b/flags/flags-iso/flat/32/KR.png new file mode 100644 index 0000000..ef0bb15 Binary files /dev/null and b/flags/flags-iso/flat/32/KR.png differ diff --git a/flags/flags-iso/flat/32/KW.png b/flags/flags-iso/flat/32/KW.png new file mode 100644 index 0000000..1398f5b Binary files /dev/null and b/flags/flags-iso/flat/32/KW.png differ diff --git a/flags/flags-iso/flat/32/KY.png b/flags/flags-iso/flat/32/KY.png new file mode 100644 index 0000000..44a2b68 Binary files /dev/null and b/flags/flags-iso/flat/32/KY.png differ diff --git a/flags/flags-iso/flat/32/KZ.png b/flags/flags-iso/flat/32/KZ.png new file mode 100644 index 0000000..fa44b78 Binary files /dev/null and b/flags/flags-iso/flat/32/KZ.png differ diff --git a/flags/flags-iso/flat/32/LA.png b/flags/flags-iso/flat/32/LA.png new file mode 100644 index 0000000..22498d5 Binary files /dev/null and b/flags/flags-iso/flat/32/LA.png differ diff --git a/flags/flags-iso/flat/32/LB.png b/flags/flags-iso/flat/32/LB.png new file mode 100644 index 0000000..202c97b Binary files /dev/null and b/flags/flags-iso/flat/32/LB.png differ diff --git a/flags/flags-iso/flat/32/LC.png b/flags/flags-iso/flat/32/LC.png new file mode 100644 index 0000000..1420c31 Binary files /dev/null and b/flags/flags-iso/flat/32/LC.png differ diff --git a/flags/flags-iso/flat/32/LI.png b/flags/flags-iso/flat/32/LI.png new file mode 100644 index 0000000..2e502e7 Binary files /dev/null and b/flags/flags-iso/flat/32/LI.png differ diff --git a/flags/flags-iso/flat/32/LK.png b/flags/flags-iso/flat/32/LK.png new file mode 100644 index 0000000..efab385 Binary files /dev/null and b/flags/flags-iso/flat/32/LK.png differ diff --git a/flags/flags-iso/flat/32/LR.png b/flags/flags-iso/flat/32/LR.png new file mode 100644 index 0000000..76ed14d Binary files /dev/null and b/flags/flags-iso/flat/32/LR.png differ diff --git a/flags/flags-iso/flat/32/LS.png b/flags/flags-iso/flat/32/LS.png new file mode 100644 index 0000000..9124416 Binary files /dev/null and b/flags/flags-iso/flat/32/LS.png differ diff --git a/flags/flags-iso/flat/32/LT.png b/flags/flags-iso/flat/32/LT.png new file mode 100644 index 0000000..1910f1c Binary files /dev/null and b/flags/flags-iso/flat/32/LT.png differ diff --git a/flags/flags-iso/flat/32/LU.png b/flags/flags-iso/flat/32/LU.png new file mode 100644 index 0000000..cfbe5dd Binary files /dev/null and b/flags/flags-iso/flat/32/LU.png differ diff --git a/flags/flags-iso/flat/32/LV.png b/flags/flags-iso/flat/32/LV.png new file mode 100644 index 0000000..a0f0ca2 Binary files /dev/null and b/flags/flags-iso/flat/32/LV.png differ diff --git a/flags/flags-iso/flat/32/LY.png b/flags/flags-iso/flat/32/LY.png new file mode 100644 index 0000000..ad52e65 Binary files /dev/null and b/flags/flags-iso/flat/32/LY.png differ diff --git a/flags/flags-iso/flat/32/MA.png b/flags/flags-iso/flat/32/MA.png new file mode 100644 index 0000000..c7c2493 Binary files /dev/null and b/flags/flags-iso/flat/32/MA.png differ diff --git a/flags/flags-iso/flat/32/MC.png b/flags/flags-iso/flat/32/MC.png new file mode 100644 index 0000000..469675a Binary files /dev/null and b/flags/flags-iso/flat/32/MC.png differ diff --git a/flags/flags-iso/flat/32/MD.png b/flags/flags-iso/flat/32/MD.png new file mode 100644 index 0000000..e2103d7 Binary files /dev/null and b/flags/flags-iso/flat/32/MD.png differ diff --git a/flags/flags-iso/flat/32/ME.png b/flags/flags-iso/flat/32/ME.png new file mode 100644 index 0000000..923b555 Binary files /dev/null and b/flags/flags-iso/flat/32/ME.png differ diff --git a/flags/flags-iso/flat/32/MG.png b/flags/flags-iso/flat/32/MG.png new file mode 100644 index 0000000..935d036 Binary files /dev/null and b/flags/flags-iso/flat/32/MG.png differ diff --git a/flags/flags-iso/flat/32/MH.png b/flags/flags-iso/flat/32/MH.png new file mode 100644 index 0000000..2b6748a Binary files /dev/null and b/flags/flags-iso/flat/32/MH.png differ diff --git a/flags/flags-iso/flat/32/MK.png b/flags/flags-iso/flat/32/MK.png new file mode 100644 index 0000000..ca33732 Binary files /dev/null and b/flags/flags-iso/flat/32/MK.png differ diff --git a/flags/flags-iso/flat/32/ML.png b/flags/flags-iso/flat/32/ML.png new file mode 100644 index 0000000..83fe80f Binary files /dev/null and b/flags/flags-iso/flat/32/ML.png differ diff --git a/flags/flags-iso/flat/32/MM.png b/flags/flags-iso/flat/32/MM.png new file mode 100644 index 0000000..d06e680 Binary files /dev/null and b/flags/flags-iso/flat/32/MM.png differ diff --git a/flags/flags-iso/flat/32/MN.png b/flags/flags-iso/flat/32/MN.png new file mode 100644 index 0000000..97ecb8f Binary files /dev/null and b/flags/flags-iso/flat/32/MN.png differ diff --git a/flags/flags-iso/flat/32/MO.png b/flags/flags-iso/flat/32/MO.png new file mode 100644 index 0000000..0f50937 Binary files /dev/null and b/flags/flags-iso/flat/32/MO.png differ diff --git a/flags/flags-iso/flat/32/MP.png b/flags/flags-iso/flat/32/MP.png new file mode 100644 index 0000000..d23c207 Binary files /dev/null and b/flags/flags-iso/flat/32/MP.png differ diff --git a/flags/flags-iso/flat/32/MR.png b/flags/flags-iso/flat/32/MR.png new file mode 100644 index 0000000..f7350b4 Binary files /dev/null and b/flags/flags-iso/flat/32/MR.png differ diff --git a/flags/flags-iso/flat/32/MS.png b/flags/flags-iso/flat/32/MS.png new file mode 100644 index 0000000..60499a0 Binary files /dev/null and b/flags/flags-iso/flat/32/MS.png differ diff --git a/flags/flags-iso/flat/32/MT.png b/flags/flags-iso/flat/32/MT.png new file mode 100644 index 0000000..20cd7d6 Binary files /dev/null and b/flags/flags-iso/flat/32/MT.png differ diff --git a/flags/flags-iso/flat/32/MU.png b/flags/flags-iso/flat/32/MU.png new file mode 100644 index 0000000..0e10c71 Binary files /dev/null and b/flags/flags-iso/flat/32/MU.png differ diff --git a/flags/flags-iso/flat/32/MV.png b/flags/flags-iso/flat/32/MV.png new file mode 100644 index 0000000..2c13fd3 Binary files /dev/null and b/flags/flags-iso/flat/32/MV.png differ diff --git a/flags/flags-iso/flat/32/MW.png b/flags/flags-iso/flat/32/MW.png new file mode 100644 index 0000000..4afacdf Binary files /dev/null and b/flags/flags-iso/flat/32/MW.png differ diff --git a/flags/flags-iso/flat/32/MX.png b/flags/flags-iso/flat/32/MX.png new file mode 100644 index 0000000..ea6bad4 Binary files /dev/null and b/flags/flags-iso/flat/32/MX.png differ diff --git a/flags/flags-iso/flat/32/MY.png b/flags/flags-iso/flat/32/MY.png new file mode 100644 index 0000000..30b286b Binary files /dev/null and b/flags/flags-iso/flat/32/MY.png differ diff --git a/flags/flags-iso/flat/32/MZ.png b/flags/flags-iso/flat/32/MZ.png new file mode 100644 index 0000000..9e75744 Binary files /dev/null and b/flags/flags-iso/flat/32/MZ.png differ diff --git a/flags/flags-iso/flat/32/NA.png b/flags/flags-iso/flat/32/NA.png new file mode 100644 index 0000000..ce97faf Binary files /dev/null and b/flags/flags-iso/flat/32/NA.png differ diff --git a/flags/flags-iso/flat/32/NC.png b/flags/flags-iso/flat/32/NC.png new file mode 100644 index 0000000..d1c2efd Binary files /dev/null and b/flags/flags-iso/flat/32/NC.png differ diff --git a/flags/flags-iso/flat/32/NE.png b/flags/flags-iso/flat/32/NE.png new file mode 100644 index 0000000..124bf40 Binary files /dev/null and b/flags/flags-iso/flat/32/NE.png differ diff --git a/flags/flags-iso/flat/32/NF.png b/flags/flags-iso/flat/32/NF.png new file mode 100644 index 0000000..78696f0 Binary files /dev/null and b/flags/flags-iso/flat/32/NF.png differ diff --git a/flags/flags-iso/flat/32/NG.png b/flags/flags-iso/flat/32/NG.png new file mode 100644 index 0000000..187d30b Binary files /dev/null and b/flags/flags-iso/flat/32/NG.png differ diff --git a/flags/flags-iso/flat/32/NI.png b/flags/flags-iso/flat/32/NI.png new file mode 100644 index 0000000..9c1144d Binary files /dev/null and b/flags/flags-iso/flat/32/NI.png differ diff --git a/flags/flags-iso/flat/32/NL.png b/flags/flags-iso/flat/32/NL.png new file mode 100644 index 0000000..921da44 Binary files /dev/null and b/flags/flags-iso/flat/32/NL.png differ diff --git a/flags/flags-iso/flat/32/NO.png b/flags/flags-iso/flat/32/NO.png new file mode 100644 index 0000000..0450789 Binary files /dev/null and b/flags/flags-iso/flat/32/NO.png differ diff --git a/flags/flags-iso/flat/32/NP.png b/flags/flags-iso/flat/32/NP.png new file mode 100644 index 0000000..68141bd Binary files /dev/null and b/flags/flags-iso/flat/32/NP.png differ diff --git a/flags/flags-iso/flat/32/NR.png b/flags/flags-iso/flat/32/NR.png new file mode 100644 index 0000000..bddf4ae Binary files /dev/null and b/flags/flags-iso/flat/32/NR.png differ diff --git a/flags/flags-iso/flat/32/NU.png b/flags/flags-iso/flat/32/NU.png new file mode 100644 index 0000000..dee2ba7 Binary files /dev/null and b/flags/flags-iso/flat/32/NU.png differ diff --git a/flags/flags-iso/flat/32/NZ.png b/flags/flags-iso/flat/32/NZ.png new file mode 100644 index 0000000..eca14e3 Binary files /dev/null and b/flags/flags-iso/flat/32/NZ.png differ diff --git a/flags/flags-iso/flat/32/OM.png b/flags/flags-iso/flat/32/OM.png new file mode 100644 index 0000000..41daac9 Binary files /dev/null and b/flags/flags-iso/flat/32/OM.png differ diff --git a/flags/flags-iso/flat/32/PA.png b/flags/flags-iso/flat/32/PA.png new file mode 100644 index 0000000..cdd6af3 Binary files /dev/null and b/flags/flags-iso/flat/32/PA.png differ diff --git a/flags/flags-iso/flat/32/PE.png b/flags/flags-iso/flat/32/PE.png new file mode 100644 index 0000000..67a3ee0 Binary files /dev/null and b/flags/flags-iso/flat/32/PE.png differ diff --git a/flags/flags-iso/flat/32/PF.png b/flags/flags-iso/flat/32/PF.png new file mode 100644 index 0000000..df9dbbf Binary files /dev/null and b/flags/flags-iso/flat/32/PF.png differ diff --git a/flags/flags-iso/flat/32/PG.png b/flags/flags-iso/flat/32/PG.png new file mode 100644 index 0000000..6b2cf2d Binary files /dev/null and b/flags/flags-iso/flat/32/PG.png differ diff --git a/flags/flags-iso/flat/32/PH.png b/flags/flags-iso/flat/32/PH.png new file mode 100644 index 0000000..fa3bf75 Binary files /dev/null and b/flags/flags-iso/flat/32/PH.png differ diff --git a/flags/flags-iso/flat/32/PK.png b/flags/flags-iso/flat/32/PK.png new file mode 100644 index 0000000..255a5c5 Binary files /dev/null and b/flags/flags-iso/flat/32/PK.png differ diff --git a/flags/flags-iso/flat/32/PL.png b/flags/flags-iso/flat/32/PL.png new file mode 100644 index 0000000..3643ad6 Binary files /dev/null and b/flags/flags-iso/flat/32/PL.png differ diff --git a/flags/flags-iso/flat/32/PN.png b/flags/flags-iso/flat/32/PN.png new file mode 100644 index 0000000..01beabe Binary files /dev/null and b/flags/flags-iso/flat/32/PN.png differ diff --git a/flags/flags-iso/flat/32/PR.png b/flags/flags-iso/flat/32/PR.png new file mode 100644 index 0000000..0b75b63 Binary files /dev/null and b/flags/flags-iso/flat/32/PR.png differ diff --git a/flags/flags-iso/flat/32/PS.png b/flags/flags-iso/flat/32/PS.png new file mode 100644 index 0000000..9eabd64 Binary files /dev/null and b/flags/flags-iso/flat/32/PS.png differ diff --git a/flags/flags-iso/flat/32/PT.png b/flags/flags-iso/flat/32/PT.png new file mode 100644 index 0000000..b3e8989 Binary files /dev/null and b/flags/flags-iso/flat/32/PT.png differ diff --git a/flags/flags-iso/flat/32/PW.png b/flags/flags-iso/flat/32/PW.png new file mode 100644 index 0000000..81e3fc9 Binary files /dev/null and b/flags/flags-iso/flat/32/PW.png differ diff --git a/flags/flags-iso/flat/32/PY.png b/flags/flags-iso/flat/32/PY.png new file mode 100644 index 0000000..59935bd Binary files /dev/null and b/flags/flags-iso/flat/32/PY.png differ diff --git a/flags/flags-iso/flat/32/QA.png b/flags/flags-iso/flat/32/QA.png new file mode 100644 index 0000000..7abf5c4 Binary files /dev/null and b/flags/flags-iso/flat/32/QA.png differ diff --git a/flags/flags-iso/flat/32/RO.png b/flags/flags-iso/flat/32/RO.png new file mode 100644 index 0000000..e67057f Binary files /dev/null and b/flags/flags-iso/flat/32/RO.png differ diff --git a/flags/flags-iso/flat/32/RS.png b/flags/flags-iso/flat/32/RS.png new file mode 100644 index 0000000..35761b5 Binary files /dev/null and b/flags/flags-iso/flat/32/RS.png differ diff --git a/flags/flags-iso/flat/32/RU.png b/flags/flags-iso/flat/32/RU.png new file mode 100644 index 0000000..97ff2a3 Binary files /dev/null and b/flags/flags-iso/flat/32/RU.png differ diff --git a/flags/flags-iso/flat/32/RW.png b/flags/flags-iso/flat/32/RW.png new file mode 100644 index 0000000..2b6ee49 Binary files /dev/null and b/flags/flags-iso/flat/32/RW.png differ diff --git a/flags/flags-iso/flat/32/SA.png b/flags/flags-iso/flat/32/SA.png new file mode 100644 index 0000000..e41b455 Binary files /dev/null and b/flags/flags-iso/flat/32/SA.png differ diff --git a/flags/flags-iso/flat/32/SB.png b/flags/flags-iso/flat/32/SB.png new file mode 100644 index 0000000..de153e7 Binary files /dev/null and b/flags/flags-iso/flat/32/SB.png differ diff --git a/flags/flags-iso/flat/32/SC.png b/flags/flags-iso/flat/32/SC.png new file mode 100644 index 0000000..6160c22 Binary files /dev/null and b/flags/flags-iso/flat/32/SC.png differ diff --git a/flags/flags-iso/flat/32/SD.png b/flags/flags-iso/flat/32/SD.png new file mode 100644 index 0000000..3e38c16 Binary files /dev/null and b/flags/flags-iso/flat/32/SD.png differ diff --git a/flags/flags-iso/flat/32/SE.png b/flags/flags-iso/flat/32/SE.png new file mode 100644 index 0000000..40d8fc4 Binary files /dev/null and b/flags/flags-iso/flat/32/SE.png differ diff --git a/flags/flags-iso/flat/32/SG.png b/flags/flags-iso/flat/32/SG.png new file mode 100644 index 0000000..4120253 Binary files /dev/null and b/flags/flags-iso/flat/32/SG.png differ diff --git a/flags/flags-iso/flat/32/SH.png b/flags/flags-iso/flat/32/SH.png new file mode 100644 index 0000000..88ccde2 Binary files /dev/null and b/flags/flags-iso/flat/32/SH.png differ diff --git a/flags/flags-iso/flat/32/SI.png b/flags/flags-iso/flat/32/SI.png new file mode 100644 index 0000000..7cd0928 Binary files /dev/null and b/flags/flags-iso/flat/32/SI.png differ diff --git a/flags/flags-iso/flat/32/SK.png b/flags/flags-iso/flat/32/SK.png new file mode 100644 index 0000000..1b9da33 Binary files /dev/null and b/flags/flags-iso/flat/32/SK.png differ diff --git a/flags/flags-iso/flat/32/SL.png b/flags/flags-iso/flat/32/SL.png new file mode 100644 index 0000000..fa81202 Binary files /dev/null and b/flags/flags-iso/flat/32/SL.png differ diff --git a/flags/flags-iso/flat/32/SM.png b/flags/flags-iso/flat/32/SM.png new file mode 100644 index 0000000..74b4f8c Binary files /dev/null and b/flags/flags-iso/flat/32/SM.png differ diff --git a/flags/flags-iso/flat/32/SN.png b/flags/flags-iso/flat/32/SN.png new file mode 100644 index 0000000..6be0246 Binary files /dev/null and b/flags/flags-iso/flat/32/SN.png differ diff --git a/flags/flags-iso/flat/32/SO.png b/flags/flags-iso/flat/32/SO.png new file mode 100644 index 0000000..4680b41 Binary files /dev/null and b/flags/flags-iso/flat/32/SO.png differ diff --git a/flags/flags-iso/flat/32/SR.png b/flags/flags-iso/flat/32/SR.png new file mode 100644 index 0000000..5bb884d Binary files /dev/null and b/flags/flags-iso/flat/32/SR.png differ diff --git a/flags/flags-iso/flat/32/SS.png b/flags/flags-iso/flat/32/SS.png new file mode 100644 index 0000000..edc4b2c Binary files /dev/null and b/flags/flags-iso/flat/32/SS.png differ diff --git a/flags/flags-iso/flat/32/ST.png b/flags/flags-iso/flat/32/ST.png new file mode 100644 index 0000000..4a50061 Binary files /dev/null and b/flags/flags-iso/flat/32/ST.png differ diff --git a/flags/flags-iso/flat/32/SV.png b/flags/flags-iso/flat/32/SV.png new file mode 100644 index 0000000..3f9e271 Binary files /dev/null and b/flags/flags-iso/flat/32/SV.png differ diff --git a/flags/flags-iso/flat/32/SY.png b/flags/flags-iso/flat/32/SY.png new file mode 100644 index 0000000..8cf0426 Binary files /dev/null and b/flags/flags-iso/flat/32/SY.png differ diff --git a/flags/flags-iso/flat/32/SZ.png b/flags/flags-iso/flat/32/SZ.png new file mode 100644 index 0000000..d77dc97 Binary files /dev/null and b/flags/flags-iso/flat/32/SZ.png differ diff --git a/flags/flags-iso/flat/32/TC.png b/flags/flags-iso/flat/32/TC.png new file mode 100644 index 0000000..18e3847 Binary files /dev/null and b/flags/flags-iso/flat/32/TC.png differ diff --git a/flags/flags-iso/flat/32/TD.png b/flags/flags-iso/flat/32/TD.png new file mode 100644 index 0000000..c1c9e03 Binary files /dev/null and b/flags/flags-iso/flat/32/TD.png differ diff --git a/flags/flags-iso/flat/32/TF.png b/flags/flags-iso/flat/32/TF.png new file mode 100644 index 0000000..c10d90f Binary files /dev/null and b/flags/flags-iso/flat/32/TF.png differ diff --git a/flags/flags-iso/flat/32/TG.png b/flags/flags-iso/flat/32/TG.png new file mode 100644 index 0000000..ee381a6 Binary files /dev/null and b/flags/flags-iso/flat/32/TG.png differ diff --git a/flags/flags-iso/flat/32/TH.png b/flags/flags-iso/flat/32/TH.png new file mode 100644 index 0000000..4914eb6 Binary files /dev/null and b/flags/flags-iso/flat/32/TH.png differ diff --git a/flags/flags-iso/flat/32/TJ.png b/flags/flags-iso/flat/32/TJ.png new file mode 100644 index 0000000..a398f1a Binary files /dev/null and b/flags/flags-iso/flat/32/TJ.png differ diff --git a/flags/flags-iso/flat/32/TK.png b/flags/flags-iso/flat/32/TK.png new file mode 100644 index 0000000..c942444 Binary files /dev/null and b/flags/flags-iso/flat/32/TK.png differ diff --git a/flags/flags-iso/flat/32/TL.png b/flags/flags-iso/flat/32/TL.png new file mode 100644 index 0000000..6a53c0b Binary files /dev/null and b/flags/flags-iso/flat/32/TL.png differ diff --git a/flags/flags-iso/flat/32/TM.png b/flags/flags-iso/flat/32/TM.png new file mode 100644 index 0000000..ccd48ef Binary files /dev/null and b/flags/flags-iso/flat/32/TM.png differ diff --git a/flags/flags-iso/flat/32/TN.png b/flags/flags-iso/flat/32/TN.png new file mode 100644 index 0000000..3f4ec1f Binary files /dev/null and b/flags/flags-iso/flat/32/TN.png differ diff --git a/flags/flags-iso/flat/32/TO.png b/flags/flags-iso/flat/32/TO.png new file mode 100644 index 0000000..954a085 Binary files /dev/null and b/flags/flags-iso/flat/32/TO.png differ diff --git a/flags/flags-iso/flat/32/TR.png b/flags/flags-iso/flat/32/TR.png new file mode 100644 index 0000000..35052e3 Binary files /dev/null and b/flags/flags-iso/flat/32/TR.png differ diff --git a/flags/flags-iso/flat/32/TT.png b/flags/flags-iso/flat/32/TT.png new file mode 100644 index 0000000..33484b6 Binary files /dev/null and b/flags/flags-iso/flat/32/TT.png differ diff --git a/flags/flags-iso/flat/32/TV.png b/flags/flags-iso/flat/32/TV.png new file mode 100644 index 0000000..e656319 Binary files /dev/null and b/flags/flags-iso/flat/32/TV.png differ diff --git a/flags/flags-iso/flat/32/TW.png b/flags/flags-iso/flat/32/TW.png new file mode 100644 index 0000000..e48b7b6 Binary files /dev/null and b/flags/flags-iso/flat/32/TW.png differ diff --git a/flags/flags-iso/flat/32/TZ.png b/flags/flags-iso/flat/32/TZ.png new file mode 100644 index 0000000..54f8c04 Binary files /dev/null and b/flags/flags-iso/flat/32/TZ.png differ diff --git a/flags/flags-iso/flat/32/UA.png b/flags/flags-iso/flat/32/UA.png new file mode 100644 index 0000000..dc22573 Binary files /dev/null and b/flags/flags-iso/flat/32/UA.png differ diff --git a/flags/flags-iso/flat/32/UG.png b/flags/flags-iso/flat/32/UG.png new file mode 100644 index 0000000..9335cbf Binary files /dev/null and b/flags/flags-iso/flat/32/UG.png differ diff --git a/flags/flags-iso/flat/32/US.png b/flags/flags-iso/flat/32/US.png new file mode 100644 index 0000000..675516c Binary files /dev/null and b/flags/flags-iso/flat/32/US.png differ diff --git a/flags/flags-iso/flat/32/UY.png b/flags/flags-iso/flat/32/UY.png new file mode 100644 index 0000000..ca42f8a Binary files /dev/null and b/flags/flags-iso/flat/32/UY.png differ diff --git a/flags/flags-iso/flat/32/UZ.png b/flags/flags-iso/flat/32/UZ.png new file mode 100644 index 0000000..fc2bf11 Binary files /dev/null and b/flags/flags-iso/flat/32/UZ.png differ diff --git a/flags/flags-iso/flat/32/VA.png b/flags/flags-iso/flat/32/VA.png new file mode 100644 index 0000000..8b69d1f Binary files /dev/null and b/flags/flags-iso/flat/32/VA.png differ diff --git a/flags/flags-iso/flat/32/VC.png b/flags/flags-iso/flat/32/VC.png new file mode 100644 index 0000000..0d7b371 Binary files /dev/null and b/flags/flags-iso/flat/32/VC.png differ diff --git a/flags/flags-iso/flat/32/VE.png b/flags/flags-iso/flat/32/VE.png new file mode 100644 index 0000000..b8e5f3c Binary files /dev/null and b/flags/flags-iso/flat/32/VE.png differ diff --git a/flags/flags-iso/flat/32/VG.png b/flags/flags-iso/flat/32/VG.png new file mode 100644 index 0000000..6c2aed2 Binary files /dev/null and b/flags/flags-iso/flat/32/VG.png differ diff --git a/flags/flags-iso/flat/32/VI.png b/flags/flags-iso/flat/32/VI.png new file mode 100644 index 0000000..f9fd9a7 Binary files /dev/null and b/flags/flags-iso/flat/32/VI.png differ diff --git a/flags/flags-iso/flat/32/VN.png b/flags/flags-iso/flat/32/VN.png new file mode 100644 index 0000000..a2bc994 Binary files /dev/null and b/flags/flags-iso/flat/32/VN.png differ diff --git a/flags/flags-iso/flat/32/VU.png b/flags/flags-iso/flat/32/VU.png new file mode 100644 index 0000000..e48a772 Binary files /dev/null and b/flags/flags-iso/flat/32/VU.png differ diff --git a/flags/flags-iso/flat/32/WS.png b/flags/flags-iso/flat/32/WS.png new file mode 100644 index 0000000..30a0906 Binary files /dev/null and b/flags/flags-iso/flat/32/WS.png differ diff --git a/flags/flags-iso/flat/32/YE.png b/flags/flags-iso/flat/32/YE.png new file mode 100644 index 0000000..3137e17 Binary files /dev/null and b/flags/flags-iso/flat/32/YE.png differ diff --git a/flags/flags-iso/flat/32/YT.png b/flags/flags-iso/flat/32/YT.png new file mode 100644 index 0000000..1392177 Binary files /dev/null and b/flags/flags-iso/flat/32/YT.png differ diff --git a/flags/flags-iso/flat/32/ZA.png b/flags/flags-iso/flat/32/ZA.png new file mode 100644 index 0000000..59ccdf6 Binary files /dev/null and b/flags/flags-iso/flat/32/ZA.png differ diff --git a/flags/flags-iso/flat/32/ZM.png b/flags/flags-iso/flat/32/ZM.png new file mode 100644 index 0000000..4988b0e Binary files /dev/null and b/flags/flags-iso/flat/32/ZM.png differ diff --git a/flags/flags-iso/flat/32/ZW.png b/flags/flags-iso/flat/32/ZW.png new file mode 100644 index 0000000..28b0d89 Binary files /dev/null and b/flags/flags-iso/flat/32/ZW.png differ diff --git a/flags/flags-iso/flat/32/_abkhazia.png b/flags/flags-iso/flat/32/_abkhazia.png new file mode 100644 index 0000000..67f17ad Binary files /dev/null and b/flags/flags-iso/flat/32/_abkhazia.png differ diff --git a/flags/flags-iso/flat/32/_british-antarctic-territory.png b/flags/flags-iso/flat/32/_british-antarctic-territory.png new file mode 100644 index 0000000..acb8abe Binary files /dev/null and b/flags/flags-iso/flat/32/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/flat/32/_commonwealth.png b/flags/flags-iso/flat/32/_commonwealth.png new file mode 100644 index 0000000..9a9252f Binary files /dev/null and b/flags/flags-iso/flat/32/_commonwealth.png differ diff --git a/flags/flags-iso/flat/32/_england.png b/flags/flags-iso/flat/32/_england.png new file mode 100644 index 0000000..bf7c11f Binary files /dev/null and b/flags/flags-iso/flat/32/_england.png differ diff --git a/flags/flags-iso/flat/32/_gosquared.png b/flags/flags-iso/flat/32/_gosquared.png new file mode 100644 index 0000000..3369527 Binary files /dev/null and b/flags/flags-iso/flat/32/_gosquared.png differ diff --git a/flags/flags-iso/flat/32/_kosovo.png b/flags/flags-iso/flat/32/_kosovo.png new file mode 100644 index 0000000..928b3e2 Binary files /dev/null and b/flags/flags-iso/flat/32/_kosovo.png differ diff --git a/flags/flags-iso/flat/32/_mars.png b/flags/flags-iso/flat/32/_mars.png new file mode 100644 index 0000000..6c3f33d Binary files /dev/null and b/flags/flags-iso/flat/32/_mars.png differ diff --git a/flags/flags-iso/flat/32/_nagorno-karabakh.png b/flags/flags-iso/flat/32/_nagorno-karabakh.png new file mode 100644 index 0000000..596d632 Binary files /dev/null and b/flags/flags-iso/flat/32/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/flat/32/_nato.png b/flags/flags-iso/flat/32/_nato.png new file mode 100644 index 0000000..af3a42d Binary files /dev/null and b/flags/flags-iso/flat/32/_nato.png differ diff --git a/flags/flags-iso/flat/32/_northern-cyprus.png b/flags/flags-iso/flat/32/_northern-cyprus.png new file mode 100644 index 0000000..6b2f135 Binary files /dev/null and b/flags/flags-iso/flat/32/_northern-cyprus.png differ diff --git a/flags/flags-iso/flat/32/_olympics.png b/flags/flags-iso/flat/32/_olympics.png new file mode 100644 index 0000000..1fcaa7b Binary files /dev/null and b/flags/flags-iso/flat/32/_olympics.png differ diff --git a/flags/flags-iso/flat/32/_red-cross.png b/flags/flags-iso/flat/32/_red-cross.png new file mode 100644 index 0000000..cc5cd55 Binary files /dev/null and b/flags/flags-iso/flat/32/_red-cross.png differ diff --git a/flags/flags-iso/flat/32/_scotland.png b/flags/flags-iso/flat/32/_scotland.png new file mode 100644 index 0000000..555600c Binary files /dev/null and b/flags/flags-iso/flat/32/_scotland.png differ diff --git a/flags/flags-iso/flat/32/_somaliland.png b/flags/flags-iso/flat/32/_somaliland.png new file mode 100644 index 0000000..3f0d2a7 Binary files /dev/null and b/flags/flags-iso/flat/32/_somaliland.png differ diff --git a/flags/flags-iso/flat/32/_south-ossetia.png b/flags/flags-iso/flat/32/_south-ossetia.png new file mode 100644 index 0000000..adb51f1 Binary files /dev/null and b/flags/flags-iso/flat/32/_south-ossetia.png differ diff --git a/flags/flags-iso/flat/32/_united-nations.png b/flags/flags-iso/flat/32/_united-nations.png new file mode 100644 index 0000000..085437b Binary files /dev/null and b/flags/flags-iso/flat/32/_united-nations.png differ diff --git a/flags/flags-iso/flat/32/_wales.png b/flags/flags-iso/flat/32/_wales.png new file mode 100644 index 0000000..4eb5b03 Binary files /dev/null and b/flags/flags-iso/flat/32/_wales.png differ diff --git a/flags/flags-iso/flat/48/.png b/flags/flags-iso/flat/48/.png new file mode 100644 index 0000000..6d431c5 Binary files /dev/null and b/flags/flags-iso/flat/48/.png differ diff --git a/flags/flags-iso/flat/48/AD.png b/flags/flags-iso/flat/48/AD.png new file mode 100644 index 0000000..395e93b Binary files /dev/null and b/flags/flags-iso/flat/48/AD.png differ diff --git a/flags/flags-iso/flat/48/AE.png b/flags/flags-iso/flat/48/AE.png new file mode 100644 index 0000000..29b9453 Binary files /dev/null and b/flags/flags-iso/flat/48/AE.png differ diff --git a/flags/flags-iso/flat/48/AF.png b/flags/flags-iso/flat/48/AF.png new file mode 100644 index 0000000..1cb5ee8 Binary files /dev/null and b/flags/flags-iso/flat/48/AF.png differ diff --git a/flags/flags-iso/flat/48/AG.png b/flags/flags-iso/flat/48/AG.png new file mode 100644 index 0000000..4128e40 Binary files /dev/null and b/flags/flags-iso/flat/48/AG.png differ diff --git a/flags/flags-iso/flat/48/AI.png b/flags/flags-iso/flat/48/AI.png new file mode 100644 index 0000000..58b9d51 Binary files /dev/null and b/flags/flags-iso/flat/48/AI.png differ diff --git a/flags/flags-iso/flat/48/AL.png b/flags/flags-iso/flat/48/AL.png new file mode 100644 index 0000000..a009120 Binary files /dev/null and b/flags/flags-iso/flat/48/AL.png differ diff --git a/flags/flags-iso/flat/48/AM.png b/flags/flags-iso/flat/48/AM.png new file mode 100644 index 0000000..73a053d Binary files /dev/null and b/flags/flags-iso/flat/48/AM.png differ diff --git a/flags/flags-iso/flat/48/AN.png b/flags/flags-iso/flat/48/AN.png new file mode 100644 index 0000000..78563b2 Binary files /dev/null and b/flags/flags-iso/flat/48/AN.png differ diff --git a/flags/flags-iso/flat/48/AO.png b/flags/flags-iso/flat/48/AO.png new file mode 100644 index 0000000..a3a515c Binary files /dev/null and b/flags/flags-iso/flat/48/AO.png differ diff --git a/flags/flags-iso/flat/48/AQ.png b/flags/flags-iso/flat/48/AQ.png new file mode 100644 index 0000000..88eedab Binary files /dev/null and b/flags/flags-iso/flat/48/AQ.png differ diff --git a/flags/flags-iso/flat/48/AR.png b/flags/flags-iso/flat/48/AR.png new file mode 100644 index 0000000..8d1a88a Binary files /dev/null and b/flags/flags-iso/flat/48/AR.png differ diff --git a/flags/flags-iso/flat/48/AS.png b/flags/flags-iso/flat/48/AS.png new file mode 100644 index 0000000..ced6d1d Binary files /dev/null and b/flags/flags-iso/flat/48/AS.png differ diff --git a/flags/flags-iso/flat/48/AT.png b/flags/flags-iso/flat/48/AT.png new file mode 100644 index 0000000..24554f3 Binary files /dev/null and b/flags/flags-iso/flat/48/AT.png differ diff --git a/flags/flags-iso/flat/48/AU.png b/flags/flags-iso/flat/48/AU.png new file mode 100644 index 0000000..9dbb703 Binary files /dev/null and b/flags/flags-iso/flat/48/AU.png differ diff --git a/flags/flags-iso/flat/48/AW.png b/flags/flags-iso/flat/48/AW.png new file mode 100644 index 0000000..9cbba12 Binary files /dev/null and b/flags/flags-iso/flat/48/AW.png differ diff --git a/flags/flags-iso/flat/48/AX.png b/flags/flags-iso/flat/48/AX.png new file mode 100644 index 0000000..d9b4630 Binary files /dev/null and b/flags/flags-iso/flat/48/AX.png differ diff --git a/flags/flags-iso/flat/48/AZ.png b/flags/flags-iso/flat/48/AZ.png new file mode 100644 index 0000000..c5fd054 Binary files /dev/null and b/flags/flags-iso/flat/48/AZ.png differ diff --git a/flags/flags-iso/flat/48/BA.png b/flags/flags-iso/flat/48/BA.png new file mode 100644 index 0000000..59bab9d Binary files /dev/null and b/flags/flags-iso/flat/48/BA.png differ diff --git a/flags/flags-iso/flat/48/BB.png b/flags/flags-iso/flat/48/BB.png new file mode 100644 index 0000000..b7ccb29 Binary files /dev/null and b/flags/flags-iso/flat/48/BB.png differ diff --git a/flags/flags-iso/flat/48/BD.png b/flags/flags-iso/flat/48/BD.png new file mode 100644 index 0000000..2a3c2d9 Binary files /dev/null and b/flags/flags-iso/flat/48/BD.png differ diff --git a/flags/flags-iso/flat/48/BE.png b/flags/flags-iso/flat/48/BE.png new file mode 100644 index 0000000..fc745ae Binary files /dev/null and b/flags/flags-iso/flat/48/BE.png differ diff --git a/flags/flags-iso/flat/48/BF.png b/flags/flags-iso/flat/48/BF.png new file mode 100644 index 0000000..baa66f2 Binary files /dev/null and b/flags/flags-iso/flat/48/BF.png differ diff --git a/flags/flags-iso/flat/48/BG.png b/flags/flags-iso/flat/48/BG.png new file mode 100644 index 0000000..94827ac Binary files /dev/null and b/flags/flags-iso/flat/48/BG.png differ diff --git a/flags/flags-iso/flat/48/BH.png b/flags/flags-iso/flat/48/BH.png new file mode 100644 index 0000000..17961cc Binary files /dev/null and b/flags/flags-iso/flat/48/BH.png differ diff --git a/flags/flags-iso/flat/48/BI.png b/flags/flags-iso/flat/48/BI.png new file mode 100644 index 0000000..afff0fe Binary files /dev/null and b/flags/flags-iso/flat/48/BI.png differ diff --git a/flags/flags-iso/flat/48/BJ.png b/flags/flags-iso/flat/48/BJ.png new file mode 100644 index 0000000..17abf99 Binary files /dev/null and b/flags/flags-iso/flat/48/BJ.png differ diff --git a/flags/flags-iso/flat/48/BL.png b/flags/flags-iso/flat/48/BL.png new file mode 100644 index 0000000..bbd2217 Binary files /dev/null and b/flags/flags-iso/flat/48/BL.png differ diff --git a/flags/flags-iso/flat/48/BM.png b/flags/flags-iso/flat/48/BM.png new file mode 100644 index 0000000..bf4fb50 Binary files /dev/null and b/flags/flags-iso/flat/48/BM.png differ diff --git a/flags/flags-iso/flat/48/BN.png b/flags/flags-iso/flat/48/BN.png new file mode 100644 index 0000000..fd03672 Binary files /dev/null and b/flags/flags-iso/flat/48/BN.png differ diff --git a/flags/flags-iso/flat/48/BO.png b/flags/flags-iso/flat/48/BO.png new file mode 100644 index 0000000..ac983bd Binary files /dev/null and b/flags/flags-iso/flat/48/BO.png differ diff --git a/flags/flags-iso/flat/48/BR.png b/flags/flags-iso/flat/48/BR.png new file mode 100644 index 0000000..bd0f0ca Binary files /dev/null and b/flags/flags-iso/flat/48/BR.png differ diff --git a/flags/flags-iso/flat/48/BS.png b/flags/flags-iso/flat/48/BS.png new file mode 100644 index 0000000..bfd6068 Binary files /dev/null and b/flags/flags-iso/flat/48/BS.png differ diff --git a/flags/flags-iso/flat/48/BT.png b/flags/flags-iso/flat/48/BT.png new file mode 100644 index 0000000..b2f0a3b Binary files /dev/null and b/flags/flags-iso/flat/48/BT.png differ diff --git a/flags/flags-iso/flat/48/BW.png b/flags/flags-iso/flat/48/BW.png new file mode 100644 index 0000000..cfe4af3 Binary files /dev/null and b/flags/flags-iso/flat/48/BW.png differ diff --git a/flags/flags-iso/flat/48/BY.png b/flags/flags-iso/flat/48/BY.png new file mode 100644 index 0000000..102f3f4 Binary files /dev/null and b/flags/flags-iso/flat/48/BY.png differ diff --git a/flags/flags-iso/flat/48/BZ.png b/flags/flags-iso/flat/48/BZ.png new file mode 100644 index 0000000..0cd9b3c Binary files /dev/null and b/flags/flags-iso/flat/48/BZ.png differ diff --git a/flags/flags-iso/flat/48/CA.png b/flags/flags-iso/flat/48/CA.png new file mode 100644 index 0000000..6e1708d Binary files /dev/null and b/flags/flags-iso/flat/48/CA.png differ diff --git a/flags/flags-iso/flat/48/CC.png b/flags/flags-iso/flat/48/CC.png new file mode 100644 index 0000000..e4b8675 Binary files /dev/null and b/flags/flags-iso/flat/48/CC.png differ diff --git a/flags/flags-iso/flat/48/CD.png b/flags/flags-iso/flat/48/CD.png new file mode 100644 index 0000000..4dd70dc Binary files /dev/null and b/flags/flags-iso/flat/48/CD.png differ diff --git a/flags/flags-iso/flat/48/CF.png b/flags/flags-iso/flat/48/CF.png new file mode 100644 index 0000000..4d9c663 Binary files /dev/null and b/flags/flags-iso/flat/48/CF.png differ diff --git a/flags/flags-iso/flat/48/CG.png b/flags/flags-iso/flat/48/CG.png new file mode 100644 index 0000000..a0aa655 Binary files /dev/null and b/flags/flags-iso/flat/48/CG.png differ diff --git a/flags/flags-iso/flat/48/CH.png b/flags/flags-iso/flat/48/CH.png new file mode 100644 index 0000000..eeec1ca Binary files /dev/null and b/flags/flags-iso/flat/48/CH.png differ diff --git a/flags/flags-iso/flat/48/CI.png b/flags/flags-iso/flat/48/CI.png new file mode 100644 index 0000000..e31e24a Binary files /dev/null and b/flags/flags-iso/flat/48/CI.png differ diff --git a/flags/flags-iso/flat/48/CK.png b/flags/flags-iso/flat/48/CK.png new file mode 100644 index 0000000..8cd04ff Binary files /dev/null and b/flags/flags-iso/flat/48/CK.png differ diff --git a/flags/flags-iso/flat/48/CL.png b/flags/flags-iso/flat/48/CL.png new file mode 100644 index 0000000..197154d Binary files /dev/null and b/flags/flags-iso/flat/48/CL.png differ diff --git a/flags/flags-iso/flat/48/CM.png b/flags/flags-iso/flat/48/CM.png new file mode 100644 index 0000000..f615356 Binary files /dev/null and b/flags/flags-iso/flat/48/CM.png differ diff --git a/flags/flags-iso/flat/48/CN.png b/flags/flags-iso/flat/48/CN.png new file mode 100644 index 0000000..c51a485 Binary files /dev/null and b/flags/flags-iso/flat/48/CN.png differ diff --git a/flags/flags-iso/flat/48/CO.png b/flags/flags-iso/flat/48/CO.png new file mode 100644 index 0000000..306e3cf Binary files /dev/null and b/flags/flags-iso/flat/48/CO.png differ diff --git a/flags/flags-iso/flat/48/CR.png b/flags/flags-iso/flat/48/CR.png new file mode 100644 index 0000000..d18c8b2 Binary files /dev/null and b/flags/flags-iso/flat/48/CR.png differ diff --git a/flags/flags-iso/flat/48/CU.png b/flags/flags-iso/flat/48/CU.png new file mode 100644 index 0000000..c12bede Binary files /dev/null and b/flags/flags-iso/flat/48/CU.png differ diff --git a/flags/flags-iso/flat/48/CV.png b/flags/flags-iso/flat/48/CV.png new file mode 100644 index 0000000..a7c1d41 Binary files /dev/null and b/flags/flags-iso/flat/48/CV.png differ diff --git a/flags/flags-iso/flat/48/CX.png b/flags/flags-iso/flat/48/CX.png new file mode 100644 index 0000000..6951a5f Binary files /dev/null and b/flags/flags-iso/flat/48/CX.png differ diff --git a/flags/flags-iso/flat/48/CY.png b/flags/flags-iso/flat/48/CY.png new file mode 100644 index 0000000..f950def Binary files /dev/null and b/flags/flags-iso/flat/48/CY.png differ diff --git a/flags/flags-iso/flat/48/CZ.png b/flags/flags-iso/flat/48/CZ.png new file mode 100644 index 0000000..e0c397f Binary files /dev/null and b/flags/flags-iso/flat/48/CZ.png differ diff --git a/flags/flags-iso/flat/48/DE.png b/flags/flags-iso/flat/48/DE.png new file mode 100644 index 0000000..bfafc24 Binary files /dev/null and b/flags/flags-iso/flat/48/DE.png differ diff --git a/flags/flags-iso/flat/48/DJ.png b/flags/flags-iso/flat/48/DJ.png new file mode 100644 index 0000000..d14650d Binary files /dev/null and b/flags/flags-iso/flat/48/DJ.png differ diff --git a/flags/flags-iso/flat/48/DK.png b/flags/flags-iso/flat/48/DK.png new file mode 100644 index 0000000..35abc84 Binary files /dev/null and b/flags/flags-iso/flat/48/DK.png differ diff --git a/flags/flags-iso/flat/48/DM.png b/flags/flags-iso/flat/48/DM.png new file mode 100644 index 0000000..19d1280 Binary files /dev/null and b/flags/flags-iso/flat/48/DM.png differ diff --git a/flags/flags-iso/flat/48/DO.png b/flags/flags-iso/flat/48/DO.png new file mode 100644 index 0000000..dc7cb6e Binary files /dev/null and b/flags/flags-iso/flat/48/DO.png differ diff --git a/flags/flags-iso/flat/48/DZ.png b/flags/flags-iso/flat/48/DZ.png new file mode 100644 index 0000000..3e0fcc3 Binary files /dev/null and b/flags/flags-iso/flat/48/DZ.png differ diff --git a/flags/flags-iso/flat/48/EC.png b/flags/flags-iso/flat/48/EC.png new file mode 100644 index 0000000..bd60832 Binary files /dev/null and b/flags/flags-iso/flat/48/EC.png differ diff --git a/flags/flags-iso/flat/48/EE.png b/flags/flags-iso/flat/48/EE.png new file mode 100644 index 0000000..fd3bdc6 Binary files /dev/null and b/flags/flags-iso/flat/48/EE.png differ diff --git a/flags/flags-iso/flat/48/EG.png b/flags/flags-iso/flat/48/EG.png new file mode 100644 index 0000000..1f37a5f Binary files /dev/null and b/flags/flags-iso/flat/48/EG.png differ diff --git a/flags/flags-iso/flat/48/EH.png b/flags/flags-iso/flat/48/EH.png new file mode 100644 index 0000000..b4cbb19 Binary files /dev/null and b/flags/flags-iso/flat/48/EH.png differ diff --git a/flags/flags-iso/flat/48/ER.png b/flags/flags-iso/flat/48/ER.png new file mode 100644 index 0000000..72c36f6 Binary files /dev/null and b/flags/flags-iso/flat/48/ER.png differ diff --git a/flags/flags-iso/flat/48/ES.png b/flags/flags-iso/flat/48/ES.png new file mode 100644 index 0000000..eece738 Binary files /dev/null and b/flags/flags-iso/flat/48/ES.png differ diff --git a/flags/flags-iso/flat/48/ET.png b/flags/flags-iso/flat/48/ET.png new file mode 100644 index 0000000..446e6c9 Binary files /dev/null and b/flags/flags-iso/flat/48/ET.png differ diff --git a/flags/flags-iso/flat/48/EU.png b/flags/flags-iso/flat/48/EU.png new file mode 100644 index 0000000..1f3b19c Binary files /dev/null and b/flags/flags-iso/flat/48/EU.png differ diff --git a/flags/flags-iso/flat/48/FI.png b/flags/flags-iso/flat/48/FI.png new file mode 100644 index 0000000..3adfa5a Binary files /dev/null and b/flags/flags-iso/flat/48/FI.png differ diff --git a/flags/flags-iso/flat/48/FJ.png b/flags/flags-iso/flat/48/FJ.png new file mode 100644 index 0000000..89b9c78 Binary files /dev/null and b/flags/flags-iso/flat/48/FJ.png differ diff --git a/flags/flags-iso/flat/48/FK.png b/flags/flags-iso/flat/48/FK.png new file mode 100644 index 0000000..70788cc Binary files /dev/null and b/flags/flags-iso/flat/48/FK.png differ diff --git a/flags/flags-iso/flat/48/FM.png b/flags/flags-iso/flat/48/FM.png new file mode 100644 index 0000000..4350816 Binary files /dev/null and b/flags/flags-iso/flat/48/FM.png differ diff --git a/flags/flags-iso/flat/48/FO.png b/flags/flags-iso/flat/48/FO.png new file mode 100644 index 0000000..ef40526 Binary files /dev/null and b/flags/flags-iso/flat/48/FO.png differ diff --git a/flags/flags-iso/flat/48/FR.png b/flags/flags-iso/flat/48/FR.png new file mode 100644 index 0000000..fefa1ec Binary files /dev/null and b/flags/flags-iso/flat/48/FR.png differ diff --git a/flags/flags-iso/flat/48/GA.png b/flags/flags-iso/flat/48/GA.png new file mode 100644 index 0000000..1712af3 Binary files /dev/null and b/flags/flags-iso/flat/48/GA.png differ diff --git a/flags/flags-iso/flat/48/GB.png b/flags/flags-iso/flat/48/GB.png new file mode 100644 index 0000000..22ad6b5 Binary files /dev/null and b/flags/flags-iso/flat/48/GB.png differ diff --git a/flags/flags-iso/flat/48/GD.png b/flags/flags-iso/flat/48/GD.png new file mode 100644 index 0000000..81d6897 Binary files /dev/null and b/flags/flags-iso/flat/48/GD.png differ diff --git a/flags/flags-iso/flat/48/GE.png b/flags/flags-iso/flat/48/GE.png new file mode 100644 index 0000000..dbdb365 Binary files /dev/null and b/flags/flags-iso/flat/48/GE.png differ diff --git a/flags/flags-iso/flat/48/GG.png b/flags/flags-iso/flat/48/GG.png new file mode 100644 index 0000000..b71bbca Binary files /dev/null and b/flags/flags-iso/flat/48/GG.png differ diff --git a/flags/flags-iso/flat/48/GH.png b/flags/flags-iso/flat/48/GH.png new file mode 100644 index 0000000..42418d7 Binary files /dev/null and b/flags/flags-iso/flat/48/GH.png differ diff --git a/flags/flags-iso/flat/48/GI.png b/flags/flags-iso/flat/48/GI.png new file mode 100644 index 0000000..b361114 Binary files /dev/null and b/flags/flags-iso/flat/48/GI.png differ diff --git a/flags/flags-iso/flat/48/GL.png b/flags/flags-iso/flat/48/GL.png new file mode 100644 index 0000000..08cb533 Binary files /dev/null and b/flags/flags-iso/flat/48/GL.png differ diff --git a/flags/flags-iso/flat/48/GM.png b/flags/flags-iso/flat/48/GM.png new file mode 100644 index 0000000..f9ca6c5 Binary files /dev/null and b/flags/flags-iso/flat/48/GM.png differ diff --git a/flags/flags-iso/flat/48/GN.png b/flags/flags-iso/flat/48/GN.png new file mode 100644 index 0000000..918e5cf Binary files /dev/null and b/flags/flags-iso/flat/48/GN.png differ diff --git a/flags/flags-iso/flat/48/GQ.png b/flags/flags-iso/flat/48/GQ.png new file mode 100644 index 0000000..45b805b Binary files /dev/null and b/flags/flags-iso/flat/48/GQ.png differ diff --git a/flags/flags-iso/flat/48/GR.png b/flags/flags-iso/flat/48/GR.png new file mode 100644 index 0000000..2a8a2d1 Binary files /dev/null and b/flags/flags-iso/flat/48/GR.png differ diff --git a/flags/flags-iso/flat/48/GS.png b/flags/flags-iso/flat/48/GS.png new file mode 100644 index 0000000..62f0744 Binary files /dev/null and b/flags/flags-iso/flat/48/GS.png differ diff --git a/flags/flags-iso/flat/48/GT.png b/flags/flags-iso/flat/48/GT.png new file mode 100644 index 0000000..f6afd4f Binary files /dev/null and b/flags/flags-iso/flat/48/GT.png differ diff --git a/flags/flags-iso/flat/48/GU.png b/flags/flags-iso/flat/48/GU.png new file mode 100644 index 0000000..2a62a64 Binary files /dev/null and b/flags/flags-iso/flat/48/GU.png differ diff --git a/flags/flags-iso/flat/48/GW.png b/flags/flags-iso/flat/48/GW.png new file mode 100644 index 0000000..d6399af Binary files /dev/null and b/flags/flags-iso/flat/48/GW.png differ diff --git a/flags/flags-iso/flat/48/GY.png b/flags/flags-iso/flat/48/GY.png new file mode 100644 index 0000000..e2b50e4 Binary files /dev/null and b/flags/flags-iso/flat/48/GY.png differ diff --git a/flags/flags-iso/flat/48/HK.png b/flags/flags-iso/flat/48/HK.png new file mode 100644 index 0000000..892b481 Binary files /dev/null and b/flags/flags-iso/flat/48/HK.png differ diff --git a/flags/flags-iso/flat/48/HN.png b/flags/flags-iso/flat/48/HN.png new file mode 100644 index 0000000..726f351 Binary files /dev/null and b/flags/flags-iso/flat/48/HN.png differ diff --git a/flags/flags-iso/flat/48/HR.png b/flags/flags-iso/flat/48/HR.png new file mode 100644 index 0000000..87342b5 Binary files /dev/null and b/flags/flags-iso/flat/48/HR.png differ diff --git a/flags/flags-iso/flat/48/HT.png b/flags/flags-iso/flat/48/HT.png new file mode 100644 index 0000000..4c48a99 Binary files /dev/null and b/flags/flags-iso/flat/48/HT.png differ diff --git a/flags/flags-iso/flat/48/HU.png b/flags/flags-iso/flat/48/HU.png new file mode 100644 index 0000000..f95e645 Binary files /dev/null and b/flags/flags-iso/flat/48/HU.png differ diff --git a/flags/flags-iso/flat/48/ID.png b/flags/flags-iso/flat/48/ID.png new file mode 100644 index 0000000..98437b9 Binary files /dev/null and b/flags/flags-iso/flat/48/ID.png differ diff --git a/flags/flags-iso/flat/48/IE.png b/flags/flags-iso/flat/48/IE.png new file mode 100644 index 0000000..4a8e3e0 Binary files /dev/null and b/flags/flags-iso/flat/48/IE.png differ diff --git a/flags/flags-iso/flat/48/IL.png b/flags/flags-iso/flat/48/IL.png new file mode 100644 index 0000000..9593f6b Binary files /dev/null and b/flags/flags-iso/flat/48/IL.png differ diff --git a/flags/flags-iso/flat/48/IM.png b/flags/flags-iso/flat/48/IM.png new file mode 100644 index 0000000..32caa8b Binary files /dev/null and b/flags/flags-iso/flat/48/IM.png differ diff --git a/flags/flags-iso/flat/48/IN.png b/flags/flags-iso/flat/48/IN.png new file mode 100644 index 0000000..9238935 Binary files /dev/null and b/flags/flags-iso/flat/48/IN.png differ diff --git a/flags/flags-iso/flat/48/IQ.png b/flags/flags-iso/flat/48/IQ.png new file mode 100644 index 0000000..5d9177c Binary files /dev/null and b/flags/flags-iso/flat/48/IQ.png differ diff --git a/flags/flags-iso/flat/48/IR.png b/flags/flags-iso/flat/48/IR.png new file mode 100644 index 0000000..2d46d3a Binary files /dev/null and b/flags/flags-iso/flat/48/IR.png differ diff --git a/flags/flags-iso/flat/48/IS.png b/flags/flags-iso/flat/48/IS.png new file mode 100644 index 0000000..6808db6 Binary files /dev/null and b/flags/flags-iso/flat/48/IS.png differ diff --git a/flags/flags-iso/flat/48/IT.png b/flags/flags-iso/flat/48/IT.png new file mode 100644 index 0000000..f775520 Binary files /dev/null and b/flags/flags-iso/flat/48/IT.png differ diff --git a/flags/flags-iso/flat/48/JE.png b/flags/flags-iso/flat/48/JE.png new file mode 100644 index 0000000..5be67f6 Binary files /dev/null and b/flags/flags-iso/flat/48/JE.png differ diff --git a/flags/flags-iso/flat/48/JM.png b/flags/flags-iso/flat/48/JM.png new file mode 100644 index 0000000..b74dcef Binary files /dev/null and b/flags/flags-iso/flat/48/JM.png differ diff --git a/flags/flags-iso/flat/48/JO.png b/flags/flags-iso/flat/48/JO.png new file mode 100644 index 0000000..f91d796 Binary files /dev/null and b/flags/flags-iso/flat/48/JO.png differ diff --git a/flags/flags-iso/flat/48/JP.png b/flags/flags-iso/flat/48/JP.png new file mode 100644 index 0000000..ccba072 Binary files /dev/null and b/flags/flags-iso/flat/48/JP.png differ diff --git a/flags/flags-iso/flat/48/KE.png b/flags/flags-iso/flat/48/KE.png new file mode 100644 index 0000000..22d848a Binary files /dev/null and b/flags/flags-iso/flat/48/KE.png differ diff --git a/flags/flags-iso/flat/48/KG.png b/flags/flags-iso/flat/48/KG.png new file mode 100644 index 0000000..6f99f1f Binary files /dev/null and b/flags/flags-iso/flat/48/KG.png differ diff --git a/flags/flags-iso/flat/48/KH.png b/flags/flags-iso/flat/48/KH.png new file mode 100644 index 0000000..ad42526 Binary files /dev/null and b/flags/flags-iso/flat/48/KH.png differ diff --git a/flags/flags-iso/flat/48/KI.png b/flags/flags-iso/flat/48/KI.png new file mode 100644 index 0000000..fb9a14f Binary files /dev/null and b/flags/flags-iso/flat/48/KI.png differ diff --git a/flags/flags-iso/flat/48/KM.png b/flags/flags-iso/flat/48/KM.png new file mode 100644 index 0000000..c4639e1 Binary files /dev/null and b/flags/flags-iso/flat/48/KM.png differ diff --git a/flags/flags-iso/flat/48/KN.png b/flags/flags-iso/flat/48/KN.png new file mode 100644 index 0000000..f2db036 Binary files /dev/null and b/flags/flags-iso/flat/48/KN.png differ diff --git a/flags/flags-iso/flat/48/KP.png b/flags/flags-iso/flat/48/KP.png new file mode 100644 index 0000000..4e42428 Binary files /dev/null and b/flags/flags-iso/flat/48/KP.png differ diff --git a/flags/flags-iso/flat/48/KR.png b/flags/flags-iso/flat/48/KR.png new file mode 100644 index 0000000..3bade0c Binary files /dev/null and b/flags/flags-iso/flat/48/KR.png differ diff --git a/flags/flags-iso/flat/48/KW.png b/flags/flags-iso/flat/48/KW.png new file mode 100644 index 0000000..9c34711 Binary files /dev/null and b/flags/flags-iso/flat/48/KW.png differ diff --git a/flags/flags-iso/flat/48/KY.png b/flags/flags-iso/flat/48/KY.png new file mode 100644 index 0000000..66992ee Binary files /dev/null and b/flags/flags-iso/flat/48/KY.png differ diff --git a/flags/flags-iso/flat/48/KZ.png b/flags/flags-iso/flat/48/KZ.png new file mode 100644 index 0000000..392186b Binary files /dev/null and b/flags/flags-iso/flat/48/KZ.png differ diff --git a/flags/flags-iso/flat/48/LA.png b/flags/flags-iso/flat/48/LA.png new file mode 100644 index 0000000..51f07a2 Binary files /dev/null and b/flags/flags-iso/flat/48/LA.png differ diff --git a/flags/flags-iso/flat/48/LB.png b/flags/flags-iso/flat/48/LB.png new file mode 100644 index 0000000..e1f69bb Binary files /dev/null and b/flags/flags-iso/flat/48/LB.png differ diff --git a/flags/flags-iso/flat/48/LC.png b/flags/flags-iso/flat/48/LC.png new file mode 100644 index 0000000..403f568 Binary files /dev/null and b/flags/flags-iso/flat/48/LC.png differ diff --git a/flags/flags-iso/flat/48/LI.png b/flags/flags-iso/flat/48/LI.png new file mode 100644 index 0000000..0e4aa5d Binary files /dev/null and b/flags/flags-iso/flat/48/LI.png differ diff --git a/flags/flags-iso/flat/48/LK.png b/flags/flags-iso/flat/48/LK.png new file mode 100644 index 0000000..c6e3b1d Binary files /dev/null and b/flags/flags-iso/flat/48/LK.png differ diff --git a/flags/flags-iso/flat/48/LR.png b/flags/flags-iso/flat/48/LR.png new file mode 100644 index 0000000..4f416f6 Binary files /dev/null and b/flags/flags-iso/flat/48/LR.png differ diff --git a/flags/flags-iso/flat/48/LS.png b/flags/flags-iso/flat/48/LS.png new file mode 100644 index 0000000..81ae252 Binary files /dev/null and b/flags/flags-iso/flat/48/LS.png differ diff --git a/flags/flags-iso/flat/48/LT.png b/flags/flags-iso/flat/48/LT.png new file mode 100644 index 0000000..a83178d Binary files /dev/null and b/flags/flags-iso/flat/48/LT.png differ diff --git a/flags/flags-iso/flat/48/LU.png b/flags/flags-iso/flat/48/LU.png new file mode 100644 index 0000000..1773ccf Binary files /dev/null and b/flags/flags-iso/flat/48/LU.png differ diff --git a/flags/flags-iso/flat/48/LV.png b/flags/flags-iso/flat/48/LV.png new file mode 100644 index 0000000..40286df Binary files /dev/null and b/flags/flags-iso/flat/48/LV.png differ diff --git a/flags/flags-iso/flat/48/LY.png b/flags/flags-iso/flat/48/LY.png new file mode 100644 index 0000000..ab4999e Binary files /dev/null and b/flags/flags-iso/flat/48/LY.png differ diff --git a/flags/flags-iso/flat/48/MA.png b/flags/flags-iso/flat/48/MA.png new file mode 100644 index 0000000..659cc35 Binary files /dev/null and b/flags/flags-iso/flat/48/MA.png differ diff --git a/flags/flags-iso/flat/48/MC.png b/flags/flags-iso/flat/48/MC.png new file mode 100644 index 0000000..98437b9 Binary files /dev/null and b/flags/flags-iso/flat/48/MC.png differ diff --git a/flags/flags-iso/flat/48/MD.png b/flags/flags-iso/flat/48/MD.png new file mode 100644 index 0000000..855aa5f Binary files /dev/null and b/flags/flags-iso/flat/48/MD.png differ diff --git a/flags/flags-iso/flat/48/ME.png b/flags/flags-iso/flat/48/ME.png new file mode 100644 index 0000000..95054b8 Binary files /dev/null and b/flags/flags-iso/flat/48/ME.png differ diff --git a/flags/flags-iso/flat/48/MG.png b/flags/flags-iso/flat/48/MG.png new file mode 100644 index 0000000..7570680 Binary files /dev/null and b/flags/flags-iso/flat/48/MG.png differ diff --git a/flags/flags-iso/flat/48/MH.png b/flags/flags-iso/flat/48/MH.png new file mode 100644 index 0000000..830a524 Binary files /dev/null and b/flags/flags-iso/flat/48/MH.png differ diff --git a/flags/flags-iso/flat/48/MK.png b/flags/flags-iso/flat/48/MK.png new file mode 100644 index 0000000..db41c7b Binary files /dev/null and b/flags/flags-iso/flat/48/MK.png differ diff --git a/flags/flags-iso/flat/48/ML.png b/flags/flags-iso/flat/48/ML.png new file mode 100644 index 0000000..f95c495 Binary files /dev/null and b/flags/flags-iso/flat/48/ML.png differ diff --git a/flags/flags-iso/flat/48/MM.png b/flags/flags-iso/flat/48/MM.png new file mode 100644 index 0000000..4aebe96 Binary files /dev/null and b/flags/flags-iso/flat/48/MM.png differ diff --git a/flags/flags-iso/flat/48/MN.png b/flags/flags-iso/flat/48/MN.png new file mode 100644 index 0000000..cb18e51 Binary files /dev/null and b/flags/flags-iso/flat/48/MN.png differ diff --git a/flags/flags-iso/flat/48/MO.png b/flags/flags-iso/flat/48/MO.png new file mode 100644 index 0000000..72698b3 Binary files /dev/null and b/flags/flags-iso/flat/48/MO.png differ diff --git a/flags/flags-iso/flat/48/MP.png b/flags/flags-iso/flat/48/MP.png new file mode 100644 index 0000000..6b74dce Binary files /dev/null and b/flags/flags-iso/flat/48/MP.png differ diff --git a/flags/flags-iso/flat/48/MR.png b/flags/flags-iso/flat/48/MR.png new file mode 100644 index 0000000..0f1db87 Binary files /dev/null and b/flags/flags-iso/flat/48/MR.png differ diff --git a/flags/flags-iso/flat/48/MS.png b/flags/flags-iso/flat/48/MS.png new file mode 100644 index 0000000..aaf999b Binary files /dev/null and b/flags/flags-iso/flat/48/MS.png differ diff --git a/flags/flags-iso/flat/48/MT.png b/flags/flags-iso/flat/48/MT.png new file mode 100644 index 0000000..8067c54 Binary files /dev/null and b/flags/flags-iso/flat/48/MT.png differ diff --git a/flags/flags-iso/flat/48/MU.png b/flags/flags-iso/flat/48/MU.png new file mode 100644 index 0000000..474ee59 Binary files /dev/null and b/flags/flags-iso/flat/48/MU.png differ diff --git a/flags/flags-iso/flat/48/MV.png b/flags/flags-iso/flat/48/MV.png new file mode 100644 index 0000000..ae6887b Binary files /dev/null and b/flags/flags-iso/flat/48/MV.png differ diff --git a/flags/flags-iso/flat/48/MW.png b/flags/flags-iso/flat/48/MW.png new file mode 100644 index 0000000..d1cb5ec Binary files /dev/null and b/flags/flags-iso/flat/48/MW.png differ diff --git a/flags/flags-iso/flat/48/MX.png b/flags/flags-iso/flat/48/MX.png new file mode 100644 index 0000000..0b4e5f1 Binary files /dev/null and b/flags/flags-iso/flat/48/MX.png differ diff --git a/flags/flags-iso/flat/48/MY.png b/flags/flags-iso/flat/48/MY.png new file mode 100644 index 0000000..9be7123 Binary files /dev/null and b/flags/flags-iso/flat/48/MY.png differ diff --git a/flags/flags-iso/flat/48/MZ.png b/flags/flags-iso/flat/48/MZ.png new file mode 100644 index 0000000..d013ff7 Binary files /dev/null and b/flags/flags-iso/flat/48/MZ.png differ diff --git a/flags/flags-iso/flat/48/NA.png b/flags/flags-iso/flat/48/NA.png new file mode 100644 index 0000000..4600e86 Binary files /dev/null and b/flags/flags-iso/flat/48/NA.png differ diff --git a/flags/flags-iso/flat/48/NC.png b/flags/flags-iso/flat/48/NC.png new file mode 100644 index 0000000..b112bdb Binary files /dev/null and b/flags/flags-iso/flat/48/NC.png differ diff --git a/flags/flags-iso/flat/48/NE.png b/flags/flags-iso/flat/48/NE.png new file mode 100644 index 0000000..92cfb2e Binary files /dev/null and b/flags/flags-iso/flat/48/NE.png differ diff --git a/flags/flags-iso/flat/48/NF.png b/flags/flags-iso/flat/48/NF.png new file mode 100644 index 0000000..2b55a90 Binary files /dev/null and b/flags/flags-iso/flat/48/NF.png differ diff --git a/flags/flags-iso/flat/48/NG.png b/flags/flags-iso/flat/48/NG.png new file mode 100644 index 0000000..a7c3d8e Binary files /dev/null and b/flags/flags-iso/flat/48/NG.png differ diff --git a/flags/flags-iso/flat/48/NI.png b/flags/flags-iso/flat/48/NI.png new file mode 100644 index 0000000..ecb6750 Binary files /dev/null and b/flags/flags-iso/flat/48/NI.png differ diff --git a/flags/flags-iso/flat/48/NL.png b/flags/flags-iso/flat/48/NL.png new file mode 100644 index 0000000..8bf2537 Binary files /dev/null and b/flags/flags-iso/flat/48/NL.png differ diff --git a/flags/flags-iso/flat/48/NO.png b/flags/flags-iso/flat/48/NO.png new file mode 100644 index 0000000..dda0080 Binary files /dev/null and b/flags/flags-iso/flat/48/NO.png differ diff --git a/flags/flags-iso/flat/48/NP.png b/flags/flags-iso/flat/48/NP.png new file mode 100644 index 0000000..56308fc Binary files /dev/null and b/flags/flags-iso/flat/48/NP.png differ diff --git a/flags/flags-iso/flat/48/NR.png b/flags/flags-iso/flat/48/NR.png new file mode 100644 index 0000000..e0ec531 Binary files /dev/null and b/flags/flags-iso/flat/48/NR.png differ diff --git a/flags/flags-iso/flat/48/NU.png b/flags/flags-iso/flat/48/NU.png new file mode 100644 index 0000000..fb4113a Binary files /dev/null and b/flags/flags-iso/flat/48/NU.png differ diff --git a/flags/flags-iso/flat/48/NZ.png b/flags/flags-iso/flat/48/NZ.png new file mode 100644 index 0000000..0729538 Binary files /dev/null and b/flags/flags-iso/flat/48/NZ.png differ diff --git a/flags/flags-iso/flat/48/OM.png b/flags/flags-iso/flat/48/OM.png new file mode 100644 index 0000000..4527a30 Binary files /dev/null and b/flags/flags-iso/flat/48/OM.png differ diff --git a/flags/flags-iso/flat/48/PA.png b/flags/flags-iso/flat/48/PA.png new file mode 100644 index 0000000..b454fe6 Binary files /dev/null and b/flags/flags-iso/flat/48/PA.png differ diff --git a/flags/flags-iso/flat/48/PE.png b/flags/flags-iso/flat/48/PE.png new file mode 100644 index 0000000..a1dd5f2 Binary files /dev/null and b/flags/flags-iso/flat/48/PE.png differ diff --git a/flags/flags-iso/flat/48/PF.png b/flags/flags-iso/flat/48/PF.png new file mode 100644 index 0000000..2eb2882 Binary files /dev/null and b/flags/flags-iso/flat/48/PF.png differ diff --git a/flags/flags-iso/flat/48/PG.png b/flags/flags-iso/flat/48/PG.png new file mode 100644 index 0000000..5066566 Binary files /dev/null and b/flags/flags-iso/flat/48/PG.png differ diff --git a/flags/flags-iso/flat/48/PH.png b/flags/flags-iso/flat/48/PH.png new file mode 100644 index 0000000..bc2f953 Binary files /dev/null and b/flags/flags-iso/flat/48/PH.png differ diff --git a/flags/flags-iso/flat/48/PK.png b/flags/flags-iso/flat/48/PK.png new file mode 100644 index 0000000..0fcec21 Binary files /dev/null and b/flags/flags-iso/flat/48/PK.png differ diff --git a/flags/flags-iso/flat/48/PL.png b/flags/flags-iso/flat/48/PL.png new file mode 100644 index 0000000..f486f46 Binary files /dev/null and b/flags/flags-iso/flat/48/PL.png differ diff --git a/flags/flags-iso/flat/48/PN.png b/flags/flags-iso/flat/48/PN.png new file mode 100644 index 0000000..1047395 Binary files /dev/null and b/flags/flags-iso/flat/48/PN.png differ diff --git a/flags/flags-iso/flat/48/PR.png b/flags/flags-iso/flat/48/PR.png new file mode 100644 index 0000000..0350ccf Binary files /dev/null and b/flags/flags-iso/flat/48/PR.png differ diff --git a/flags/flags-iso/flat/48/PS.png b/flags/flags-iso/flat/48/PS.png new file mode 100644 index 0000000..5e05877 Binary files /dev/null and b/flags/flags-iso/flat/48/PS.png differ diff --git a/flags/flags-iso/flat/48/PT.png b/flags/flags-iso/flat/48/PT.png new file mode 100644 index 0000000..0de8f73 Binary files /dev/null and b/flags/flags-iso/flat/48/PT.png differ diff --git a/flags/flags-iso/flat/48/PW.png b/flags/flags-iso/flat/48/PW.png new file mode 100644 index 0000000..ae6d466 Binary files /dev/null and b/flags/flags-iso/flat/48/PW.png differ diff --git a/flags/flags-iso/flat/48/PY.png b/flags/flags-iso/flat/48/PY.png new file mode 100644 index 0000000..c0c1888 Binary files /dev/null and b/flags/flags-iso/flat/48/PY.png differ diff --git a/flags/flags-iso/flat/48/QA.png b/flags/flags-iso/flat/48/QA.png new file mode 100644 index 0000000..d6bf989 Binary files /dev/null and b/flags/flags-iso/flat/48/QA.png differ diff --git a/flags/flags-iso/flat/48/RO.png b/flags/flags-iso/flat/48/RO.png new file mode 100644 index 0000000..18dd87f Binary files /dev/null and b/flags/flags-iso/flat/48/RO.png differ diff --git a/flags/flags-iso/flat/48/RS.png b/flags/flags-iso/flat/48/RS.png new file mode 100644 index 0000000..f0ed406 Binary files /dev/null and b/flags/flags-iso/flat/48/RS.png differ diff --git a/flags/flags-iso/flat/48/RU.png b/flags/flags-iso/flat/48/RU.png new file mode 100644 index 0000000..0096497 Binary files /dev/null and b/flags/flags-iso/flat/48/RU.png differ diff --git a/flags/flags-iso/flat/48/RW.png b/flags/flags-iso/flat/48/RW.png new file mode 100644 index 0000000..111ff8a Binary files /dev/null and b/flags/flags-iso/flat/48/RW.png differ diff --git a/flags/flags-iso/flat/48/SA.png b/flags/flags-iso/flat/48/SA.png new file mode 100644 index 0000000..70a703c Binary files /dev/null and b/flags/flags-iso/flat/48/SA.png differ diff --git a/flags/flags-iso/flat/48/SB.png b/flags/flags-iso/flat/48/SB.png new file mode 100644 index 0000000..969f24c Binary files /dev/null and b/flags/flags-iso/flat/48/SB.png differ diff --git a/flags/flags-iso/flat/48/SC.png b/flags/flags-iso/flat/48/SC.png new file mode 100644 index 0000000..fb3db98 Binary files /dev/null and b/flags/flags-iso/flat/48/SC.png differ diff --git a/flags/flags-iso/flat/48/SD.png b/flags/flags-iso/flat/48/SD.png new file mode 100644 index 0000000..dc40ab6 Binary files /dev/null and b/flags/flags-iso/flat/48/SD.png differ diff --git a/flags/flags-iso/flat/48/SE.png b/flags/flags-iso/flat/48/SE.png new file mode 100644 index 0000000..bfbcc55 Binary files /dev/null and b/flags/flags-iso/flat/48/SE.png differ diff --git a/flags/flags-iso/flat/48/SG.png b/flags/flags-iso/flat/48/SG.png new file mode 100644 index 0000000..08f99c2 Binary files /dev/null and b/flags/flags-iso/flat/48/SG.png differ diff --git a/flags/flags-iso/flat/48/SH.png b/flags/flags-iso/flat/48/SH.png new file mode 100644 index 0000000..d3c75c3 Binary files /dev/null and b/flags/flags-iso/flat/48/SH.png differ diff --git a/flags/flags-iso/flat/48/SI.png b/flags/flags-iso/flat/48/SI.png new file mode 100644 index 0000000..7aa3b9c Binary files /dev/null and b/flags/flags-iso/flat/48/SI.png differ diff --git a/flags/flags-iso/flat/48/SK.png b/flags/flags-iso/flat/48/SK.png new file mode 100644 index 0000000..01a84de Binary files /dev/null and b/flags/flags-iso/flat/48/SK.png differ diff --git a/flags/flags-iso/flat/48/SL.png b/flags/flags-iso/flat/48/SL.png new file mode 100644 index 0000000..a2c9dcd Binary files /dev/null and b/flags/flags-iso/flat/48/SL.png differ diff --git a/flags/flags-iso/flat/48/SM.png b/flags/flags-iso/flat/48/SM.png new file mode 100644 index 0000000..185b054 Binary files /dev/null and b/flags/flags-iso/flat/48/SM.png differ diff --git a/flags/flags-iso/flat/48/SN.png b/flags/flags-iso/flat/48/SN.png new file mode 100644 index 0000000..08a0576 Binary files /dev/null and b/flags/flags-iso/flat/48/SN.png differ diff --git a/flags/flags-iso/flat/48/SO.png b/flags/flags-iso/flat/48/SO.png new file mode 100644 index 0000000..b9eb25b Binary files /dev/null and b/flags/flags-iso/flat/48/SO.png differ diff --git a/flags/flags-iso/flat/48/SR.png b/flags/flags-iso/flat/48/SR.png new file mode 100644 index 0000000..be5f367 Binary files /dev/null and b/flags/flags-iso/flat/48/SR.png differ diff --git a/flags/flags-iso/flat/48/SS.png b/flags/flags-iso/flat/48/SS.png new file mode 100644 index 0000000..c96bcb9 Binary files /dev/null and b/flags/flags-iso/flat/48/SS.png differ diff --git a/flags/flags-iso/flat/48/ST.png b/flags/flags-iso/flat/48/ST.png new file mode 100644 index 0000000..ff4561d Binary files /dev/null and b/flags/flags-iso/flat/48/ST.png differ diff --git a/flags/flags-iso/flat/48/SV.png b/flags/flags-iso/flat/48/SV.png new file mode 100644 index 0000000..9e25d94 Binary files /dev/null and b/flags/flags-iso/flat/48/SV.png differ diff --git a/flags/flags-iso/flat/48/SY.png b/flags/flags-iso/flat/48/SY.png new file mode 100644 index 0000000..3cf344c Binary files /dev/null and b/flags/flags-iso/flat/48/SY.png differ diff --git a/flags/flags-iso/flat/48/SZ.png b/flags/flags-iso/flat/48/SZ.png new file mode 100644 index 0000000..03254da Binary files /dev/null and b/flags/flags-iso/flat/48/SZ.png differ diff --git a/flags/flags-iso/flat/48/TC.png b/flags/flags-iso/flat/48/TC.png new file mode 100644 index 0000000..df0d691 Binary files /dev/null and b/flags/flags-iso/flat/48/TC.png differ diff --git a/flags/flags-iso/flat/48/TD.png b/flags/flags-iso/flat/48/TD.png new file mode 100644 index 0000000..ecefe8a Binary files /dev/null and b/flags/flags-iso/flat/48/TD.png differ diff --git a/flags/flags-iso/flat/48/TF.png b/flags/flags-iso/flat/48/TF.png new file mode 100644 index 0000000..803238d Binary files /dev/null and b/flags/flags-iso/flat/48/TF.png differ diff --git a/flags/flags-iso/flat/48/TG.png b/flags/flags-iso/flat/48/TG.png new file mode 100644 index 0000000..1b914be Binary files /dev/null and b/flags/flags-iso/flat/48/TG.png differ diff --git a/flags/flags-iso/flat/48/TH.png b/flags/flags-iso/flat/48/TH.png new file mode 100644 index 0000000..d1d6798 Binary files /dev/null and b/flags/flags-iso/flat/48/TH.png differ diff --git a/flags/flags-iso/flat/48/TJ.png b/flags/flags-iso/flat/48/TJ.png new file mode 100644 index 0000000..b475fb2 Binary files /dev/null and b/flags/flags-iso/flat/48/TJ.png differ diff --git a/flags/flags-iso/flat/48/TK.png b/flags/flags-iso/flat/48/TK.png new file mode 100644 index 0000000..8d6695b Binary files /dev/null and b/flags/flags-iso/flat/48/TK.png differ diff --git a/flags/flags-iso/flat/48/TL.png b/flags/flags-iso/flat/48/TL.png new file mode 100644 index 0000000..e4ef91a Binary files /dev/null and b/flags/flags-iso/flat/48/TL.png differ diff --git a/flags/flags-iso/flat/48/TM.png b/flags/flags-iso/flat/48/TM.png new file mode 100644 index 0000000..a2dd5d6 Binary files /dev/null and b/flags/flags-iso/flat/48/TM.png differ diff --git a/flags/flags-iso/flat/48/TN.png b/flags/flags-iso/flat/48/TN.png new file mode 100644 index 0000000..d6a6683 Binary files /dev/null and b/flags/flags-iso/flat/48/TN.png differ diff --git a/flags/flags-iso/flat/48/TO.png b/flags/flags-iso/flat/48/TO.png new file mode 100644 index 0000000..15339aa Binary files /dev/null and b/flags/flags-iso/flat/48/TO.png differ diff --git a/flags/flags-iso/flat/48/TR.png b/flags/flags-iso/flat/48/TR.png new file mode 100644 index 0000000..931d903 Binary files /dev/null and b/flags/flags-iso/flat/48/TR.png differ diff --git a/flags/flags-iso/flat/48/TT.png b/flags/flags-iso/flat/48/TT.png new file mode 100644 index 0000000..bdc23aa Binary files /dev/null and b/flags/flags-iso/flat/48/TT.png differ diff --git a/flags/flags-iso/flat/48/TV.png b/flags/flags-iso/flat/48/TV.png new file mode 100644 index 0000000..5a203c9 Binary files /dev/null and b/flags/flags-iso/flat/48/TV.png differ diff --git a/flags/flags-iso/flat/48/TW.png b/flags/flags-iso/flat/48/TW.png new file mode 100644 index 0000000..b94edd2 Binary files /dev/null and b/flags/flags-iso/flat/48/TW.png differ diff --git a/flags/flags-iso/flat/48/TZ.png b/flags/flags-iso/flat/48/TZ.png new file mode 100644 index 0000000..2a167bb Binary files /dev/null and b/flags/flags-iso/flat/48/TZ.png differ diff --git a/flags/flags-iso/flat/48/UA.png b/flags/flags-iso/flat/48/UA.png new file mode 100644 index 0000000..5088797 Binary files /dev/null and b/flags/flags-iso/flat/48/UA.png differ diff --git a/flags/flags-iso/flat/48/UG.png b/flags/flags-iso/flat/48/UG.png new file mode 100644 index 0000000..77596a7 Binary files /dev/null and b/flags/flags-iso/flat/48/UG.png differ diff --git a/flags/flags-iso/flat/48/US.png b/flags/flags-iso/flat/48/US.png new file mode 100644 index 0000000..eed544e Binary files /dev/null and b/flags/flags-iso/flat/48/US.png differ diff --git a/flags/flags-iso/flat/48/UY.png b/flags/flags-iso/flat/48/UY.png new file mode 100644 index 0000000..857a6c3 Binary files /dev/null and b/flags/flags-iso/flat/48/UY.png differ diff --git a/flags/flags-iso/flat/48/UZ.png b/flags/flags-iso/flat/48/UZ.png new file mode 100644 index 0000000..168ff57 Binary files /dev/null and b/flags/flags-iso/flat/48/UZ.png differ diff --git a/flags/flags-iso/flat/48/VA.png b/flags/flags-iso/flat/48/VA.png new file mode 100644 index 0000000..62243a2 Binary files /dev/null and b/flags/flags-iso/flat/48/VA.png differ diff --git a/flags/flags-iso/flat/48/VC.png b/flags/flags-iso/flat/48/VC.png new file mode 100644 index 0000000..48a0ea4 Binary files /dev/null and b/flags/flags-iso/flat/48/VC.png differ diff --git a/flags/flags-iso/flat/48/VE.png b/flags/flags-iso/flat/48/VE.png new file mode 100644 index 0000000..a23546a Binary files /dev/null and b/flags/flags-iso/flat/48/VE.png differ diff --git a/flags/flags-iso/flat/48/VG.png b/flags/flags-iso/flat/48/VG.png new file mode 100644 index 0000000..5e4e2a1 Binary files /dev/null and b/flags/flags-iso/flat/48/VG.png differ diff --git a/flags/flags-iso/flat/48/VI.png b/flags/flags-iso/flat/48/VI.png new file mode 100644 index 0000000..4112be1 Binary files /dev/null and b/flags/flags-iso/flat/48/VI.png differ diff --git a/flags/flags-iso/flat/48/VN.png b/flags/flags-iso/flat/48/VN.png new file mode 100644 index 0000000..12406cf Binary files /dev/null and b/flags/flags-iso/flat/48/VN.png differ diff --git a/flags/flags-iso/flat/48/VU.png b/flags/flags-iso/flat/48/VU.png new file mode 100644 index 0000000..991baa8 Binary files /dev/null and b/flags/flags-iso/flat/48/VU.png differ diff --git a/flags/flags-iso/flat/48/WS.png b/flags/flags-iso/flat/48/WS.png new file mode 100644 index 0000000..8619c3d Binary files /dev/null and b/flags/flags-iso/flat/48/WS.png differ diff --git a/flags/flags-iso/flat/48/YE.png b/flags/flags-iso/flat/48/YE.png new file mode 100644 index 0000000..961f4cd Binary files /dev/null and b/flags/flags-iso/flat/48/YE.png differ diff --git a/flags/flags-iso/flat/48/YT.png b/flags/flags-iso/flat/48/YT.png new file mode 100644 index 0000000..2b31cc1 Binary files /dev/null and b/flags/flags-iso/flat/48/YT.png differ diff --git a/flags/flags-iso/flat/48/ZA.png b/flags/flags-iso/flat/48/ZA.png new file mode 100644 index 0000000..fee7308 Binary files /dev/null and b/flags/flags-iso/flat/48/ZA.png differ diff --git a/flags/flags-iso/flat/48/ZM.png b/flags/flags-iso/flat/48/ZM.png new file mode 100644 index 0000000..778bd13 Binary files /dev/null and b/flags/flags-iso/flat/48/ZM.png differ diff --git a/flags/flags-iso/flat/48/ZW.png b/flags/flags-iso/flat/48/ZW.png new file mode 100644 index 0000000..539c61d Binary files /dev/null and b/flags/flags-iso/flat/48/ZW.png differ diff --git a/flags/flags-iso/flat/48/_abkhazia.png b/flags/flags-iso/flat/48/_abkhazia.png new file mode 100644 index 0000000..caaf9be Binary files /dev/null and b/flags/flags-iso/flat/48/_abkhazia.png differ diff --git a/flags/flags-iso/flat/48/_british-antarctic-territory.png b/flags/flags-iso/flat/48/_british-antarctic-territory.png new file mode 100644 index 0000000..1b2acd5 Binary files /dev/null and b/flags/flags-iso/flat/48/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/flat/48/_commonwealth.png b/flags/flags-iso/flat/48/_commonwealth.png new file mode 100644 index 0000000..37b2d72 Binary files /dev/null and b/flags/flags-iso/flat/48/_commonwealth.png differ diff --git a/flags/flags-iso/flat/48/_england.png b/flags/flags-iso/flat/48/_england.png new file mode 100644 index 0000000..247ae76 Binary files /dev/null and b/flags/flags-iso/flat/48/_england.png differ diff --git a/flags/flags-iso/flat/48/_gosquared.png b/flags/flags-iso/flat/48/_gosquared.png new file mode 100644 index 0000000..bf29047 Binary files /dev/null and b/flags/flags-iso/flat/48/_gosquared.png differ diff --git a/flags/flags-iso/flat/48/_kosovo.png b/flags/flags-iso/flat/48/_kosovo.png new file mode 100644 index 0000000..877896b Binary files /dev/null and b/flags/flags-iso/flat/48/_kosovo.png differ diff --git a/flags/flags-iso/flat/48/_mars.png b/flags/flags-iso/flat/48/_mars.png new file mode 100644 index 0000000..6978049 Binary files /dev/null and b/flags/flags-iso/flat/48/_mars.png differ diff --git a/flags/flags-iso/flat/48/_nagorno-karabakh.png b/flags/flags-iso/flat/48/_nagorno-karabakh.png new file mode 100644 index 0000000..9f40ccf Binary files /dev/null and b/flags/flags-iso/flat/48/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/flat/48/_nato.png b/flags/flags-iso/flat/48/_nato.png new file mode 100644 index 0000000..6c20922 Binary files /dev/null and b/flags/flags-iso/flat/48/_nato.png differ diff --git a/flags/flags-iso/flat/48/_northern-cyprus.png b/flags/flags-iso/flat/48/_northern-cyprus.png new file mode 100644 index 0000000..01a421c Binary files /dev/null and b/flags/flags-iso/flat/48/_northern-cyprus.png differ diff --git a/flags/flags-iso/flat/48/_olympics.png b/flags/flags-iso/flat/48/_olympics.png new file mode 100644 index 0000000..d4b2208 Binary files /dev/null and b/flags/flags-iso/flat/48/_olympics.png differ diff --git a/flags/flags-iso/flat/48/_red-cross.png b/flags/flags-iso/flat/48/_red-cross.png new file mode 100644 index 0000000..fbef077 Binary files /dev/null and b/flags/flags-iso/flat/48/_red-cross.png differ diff --git a/flags/flags-iso/flat/48/_scotland.png b/flags/flags-iso/flat/48/_scotland.png new file mode 100644 index 0000000..3100407 Binary files /dev/null and b/flags/flags-iso/flat/48/_scotland.png differ diff --git a/flags/flags-iso/flat/48/_somaliland.png b/flags/flags-iso/flat/48/_somaliland.png new file mode 100644 index 0000000..0e213bf Binary files /dev/null and b/flags/flags-iso/flat/48/_somaliland.png differ diff --git a/flags/flags-iso/flat/48/_south-ossetia.png b/flags/flags-iso/flat/48/_south-ossetia.png new file mode 100644 index 0000000..cd7a326 Binary files /dev/null and b/flags/flags-iso/flat/48/_south-ossetia.png differ diff --git a/flags/flags-iso/flat/48/_united-nations.png b/flags/flags-iso/flat/48/_united-nations.png new file mode 100644 index 0000000..65383a0 Binary files /dev/null and b/flags/flags-iso/flat/48/_united-nations.png differ diff --git a/flags/flags-iso/flat/48/_wales.png b/flags/flags-iso/flat/48/_wales.png new file mode 100644 index 0000000..4702806 Binary files /dev/null and b/flags/flags-iso/flat/48/_wales.png differ diff --git a/flags/flags-iso/flat/64/.png b/flags/flags-iso/flat/64/.png new file mode 100644 index 0000000..0c47a29 Binary files /dev/null and b/flags/flags-iso/flat/64/.png differ diff --git a/flags/flags-iso/flat/64/AD.png b/flags/flags-iso/flat/64/AD.png new file mode 100644 index 0000000..24efae5 Binary files /dev/null and b/flags/flags-iso/flat/64/AD.png differ diff --git a/flags/flags-iso/flat/64/AE.png b/flags/flags-iso/flat/64/AE.png new file mode 100644 index 0000000..05acc83 Binary files /dev/null and b/flags/flags-iso/flat/64/AE.png differ diff --git a/flags/flags-iso/flat/64/AF.png b/flags/flags-iso/flat/64/AF.png new file mode 100644 index 0000000..491039b Binary files /dev/null and b/flags/flags-iso/flat/64/AF.png differ diff --git a/flags/flags-iso/flat/64/AG.png b/flags/flags-iso/flat/64/AG.png new file mode 100644 index 0000000..08c171d Binary files /dev/null and b/flags/flags-iso/flat/64/AG.png differ diff --git a/flags/flags-iso/flat/64/AI.png b/flags/flags-iso/flat/64/AI.png new file mode 100644 index 0000000..4c6b36d Binary files /dev/null and b/flags/flags-iso/flat/64/AI.png differ diff --git a/flags/flags-iso/flat/64/AL.png b/flags/flags-iso/flat/64/AL.png new file mode 100644 index 0000000..16e86a6 Binary files /dev/null and b/flags/flags-iso/flat/64/AL.png differ diff --git a/flags/flags-iso/flat/64/AM.png b/flags/flags-iso/flat/64/AM.png new file mode 100644 index 0000000..b1f25ba Binary files /dev/null and b/flags/flags-iso/flat/64/AM.png differ diff --git a/flags/flags-iso/flat/64/AN.png b/flags/flags-iso/flat/64/AN.png new file mode 100644 index 0000000..8236bfd Binary files /dev/null and b/flags/flags-iso/flat/64/AN.png differ diff --git a/flags/flags-iso/flat/64/AO.png b/flags/flags-iso/flat/64/AO.png new file mode 100644 index 0000000..d0fb098 Binary files /dev/null and b/flags/flags-iso/flat/64/AO.png differ diff --git a/flags/flags-iso/flat/64/AQ.png b/flags/flags-iso/flat/64/AQ.png new file mode 100644 index 0000000..52c2833 Binary files /dev/null and b/flags/flags-iso/flat/64/AQ.png differ diff --git a/flags/flags-iso/flat/64/AR.png b/flags/flags-iso/flat/64/AR.png new file mode 100644 index 0000000..bfa366f Binary files /dev/null and b/flags/flags-iso/flat/64/AR.png differ diff --git a/flags/flags-iso/flat/64/AS.png b/flags/flags-iso/flat/64/AS.png new file mode 100644 index 0000000..45c3ed0 Binary files /dev/null and b/flags/flags-iso/flat/64/AS.png differ diff --git a/flags/flags-iso/flat/64/AT.png b/flags/flags-iso/flat/64/AT.png new file mode 100644 index 0000000..bfe3827 Binary files /dev/null and b/flags/flags-iso/flat/64/AT.png differ diff --git a/flags/flags-iso/flat/64/AU.png b/flags/flags-iso/flat/64/AU.png new file mode 100644 index 0000000..5f6e325 Binary files /dev/null and b/flags/flags-iso/flat/64/AU.png differ diff --git a/flags/flags-iso/flat/64/AW.png b/flags/flags-iso/flat/64/AW.png new file mode 100644 index 0000000..007f032 Binary files /dev/null and b/flags/flags-iso/flat/64/AW.png differ diff --git a/flags/flags-iso/flat/64/AX.png b/flags/flags-iso/flat/64/AX.png new file mode 100644 index 0000000..e11d1f3 Binary files /dev/null and b/flags/flags-iso/flat/64/AX.png differ diff --git a/flags/flags-iso/flat/64/AZ.png b/flags/flags-iso/flat/64/AZ.png new file mode 100644 index 0000000..ac0cbd8 Binary files /dev/null and b/flags/flags-iso/flat/64/AZ.png differ diff --git a/flags/flags-iso/flat/64/BA.png b/flags/flags-iso/flat/64/BA.png new file mode 100644 index 0000000..d97b851 Binary files /dev/null and b/flags/flags-iso/flat/64/BA.png differ diff --git a/flags/flags-iso/flat/64/BB.png b/flags/flags-iso/flat/64/BB.png new file mode 100644 index 0000000..c84c6ac Binary files /dev/null and b/flags/flags-iso/flat/64/BB.png differ diff --git a/flags/flags-iso/flat/64/BD.png b/flags/flags-iso/flat/64/BD.png new file mode 100644 index 0000000..57cc9f6 Binary files /dev/null and b/flags/flags-iso/flat/64/BD.png differ diff --git a/flags/flags-iso/flat/64/BE.png b/flags/flags-iso/flat/64/BE.png new file mode 100644 index 0000000..1473666 Binary files /dev/null and b/flags/flags-iso/flat/64/BE.png differ diff --git a/flags/flags-iso/flat/64/BF.png b/flags/flags-iso/flat/64/BF.png new file mode 100644 index 0000000..dc29743 Binary files /dev/null and b/flags/flags-iso/flat/64/BF.png differ diff --git a/flags/flags-iso/flat/64/BG.png b/flags/flags-iso/flat/64/BG.png new file mode 100644 index 0000000..ba98171 Binary files /dev/null and b/flags/flags-iso/flat/64/BG.png differ diff --git a/flags/flags-iso/flat/64/BH.png b/flags/flags-iso/flat/64/BH.png new file mode 100644 index 0000000..38d195c Binary files /dev/null and b/flags/flags-iso/flat/64/BH.png differ diff --git a/flags/flags-iso/flat/64/BI.png b/flags/flags-iso/flat/64/BI.png new file mode 100644 index 0000000..04c84ba Binary files /dev/null and b/flags/flags-iso/flat/64/BI.png differ diff --git a/flags/flags-iso/flat/64/BJ.png b/flags/flags-iso/flat/64/BJ.png new file mode 100644 index 0000000..1e5582a Binary files /dev/null and b/flags/flags-iso/flat/64/BJ.png differ diff --git a/flags/flags-iso/flat/64/BL.png b/flags/flags-iso/flat/64/BL.png new file mode 100644 index 0000000..bdac5e0 Binary files /dev/null and b/flags/flags-iso/flat/64/BL.png differ diff --git a/flags/flags-iso/flat/64/BM.png b/flags/flags-iso/flat/64/BM.png new file mode 100644 index 0000000..5b989c1 Binary files /dev/null and b/flags/flags-iso/flat/64/BM.png differ diff --git a/flags/flags-iso/flat/64/BN.png b/flags/flags-iso/flat/64/BN.png new file mode 100644 index 0000000..c793402 Binary files /dev/null and b/flags/flags-iso/flat/64/BN.png differ diff --git a/flags/flags-iso/flat/64/BO.png b/flags/flags-iso/flat/64/BO.png new file mode 100644 index 0000000..f58824f Binary files /dev/null and b/flags/flags-iso/flat/64/BO.png differ diff --git a/flags/flags-iso/flat/64/BR.png b/flags/flags-iso/flat/64/BR.png new file mode 100644 index 0000000..13bce83 Binary files /dev/null and b/flags/flags-iso/flat/64/BR.png differ diff --git a/flags/flags-iso/flat/64/BS.png b/flags/flags-iso/flat/64/BS.png new file mode 100644 index 0000000..15e0682 Binary files /dev/null and b/flags/flags-iso/flat/64/BS.png differ diff --git a/flags/flags-iso/flat/64/BT.png b/flags/flags-iso/flat/64/BT.png new file mode 100644 index 0000000..a83a137 Binary files /dev/null and b/flags/flags-iso/flat/64/BT.png differ diff --git a/flags/flags-iso/flat/64/BW.png b/flags/flags-iso/flat/64/BW.png new file mode 100644 index 0000000..45f9717 Binary files /dev/null and b/flags/flags-iso/flat/64/BW.png differ diff --git a/flags/flags-iso/flat/64/BY.png b/flags/flags-iso/flat/64/BY.png new file mode 100644 index 0000000..8d6dc57 Binary files /dev/null and b/flags/flags-iso/flat/64/BY.png differ diff --git a/flags/flags-iso/flat/64/BZ.png b/flags/flags-iso/flat/64/BZ.png new file mode 100644 index 0000000..f3fe26c Binary files /dev/null and b/flags/flags-iso/flat/64/BZ.png differ diff --git a/flags/flags-iso/flat/64/CA.png b/flags/flags-iso/flat/64/CA.png new file mode 100644 index 0000000..fd82ed4 Binary files /dev/null and b/flags/flags-iso/flat/64/CA.png differ diff --git a/flags/flags-iso/flat/64/CC.png b/flags/flags-iso/flat/64/CC.png new file mode 100644 index 0000000..2c1d9e3 Binary files /dev/null and b/flags/flags-iso/flat/64/CC.png differ diff --git a/flags/flags-iso/flat/64/CD.png b/flags/flags-iso/flat/64/CD.png new file mode 100644 index 0000000..502bc01 Binary files /dev/null and b/flags/flags-iso/flat/64/CD.png differ diff --git a/flags/flags-iso/flat/64/CF.png b/flags/flags-iso/flat/64/CF.png new file mode 100644 index 0000000..82029ea Binary files /dev/null and b/flags/flags-iso/flat/64/CF.png differ diff --git a/flags/flags-iso/flat/64/CG.png b/flags/flags-iso/flat/64/CG.png new file mode 100644 index 0000000..187226c Binary files /dev/null and b/flags/flags-iso/flat/64/CG.png differ diff --git a/flags/flags-iso/flat/64/CH.png b/flags/flags-iso/flat/64/CH.png new file mode 100644 index 0000000..368e226 Binary files /dev/null and b/flags/flags-iso/flat/64/CH.png differ diff --git a/flags/flags-iso/flat/64/CI.png b/flags/flags-iso/flat/64/CI.png new file mode 100644 index 0000000..c7a3a60 Binary files /dev/null and b/flags/flags-iso/flat/64/CI.png differ diff --git a/flags/flags-iso/flat/64/CK.png b/flags/flags-iso/flat/64/CK.png new file mode 100644 index 0000000..621c3ff Binary files /dev/null and b/flags/flags-iso/flat/64/CK.png differ diff --git a/flags/flags-iso/flat/64/CL.png b/flags/flags-iso/flat/64/CL.png new file mode 100644 index 0000000..eaa32e3 Binary files /dev/null and b/flags/flags-iso/flat/64/CL.png differ diff --git a/flags/flags-iso/flat/64/CM.png b/flags/flags-iso/flat/64/CM.png new file mode 100644 index 0000000..9563721 Binary files /dev/null and b/flags/flags-iso/flat/64/CM.png differ diff --git a/flags/flags-iso/flat/64/CN.png b/flags/flags-iso/flat/64/CN.png new file mode 100644 index 0000000..d75026a Binary files /dev/null and b/flags/flags-iso/flat/64/CN.png differ diff --git a/flags/flags-iso/flat/64/CO.png b/flags/flags-iso/flat/64/CO.png new file mode 100644 index 0000000..418df18 Binary files /dev/null and b/flags/flags-iso/flat/64/CO.png differ diff --git a/flags/flags-iso/flat/64/CR.png b/flags/flags-iso/flat/64/CR.png new file mode 100644 index 0000000..6e72512 Binary files /dev/null and b/flags/flags-iso/flat/64/CR.png differ diff --git a/flags/flags-iso/flat/64/CU.png b/flags/flags-iso/flat/64/CU.png new file mode 100644 index 0000000..6430524 Binary files /dev/null and b/flags/flags-iso/flat/64/CU.png differ diff --git a/flags/flags-iso/flat/64/CV.png b/flags/flags-iso/flat/64/CV.png new file mode 100644 index 0000000..cc3d4e8 Binary files /dev/null and b/flags/flags-iso/flat/64/CV.png differ diff --git a/flags/flags-iso/flat/64/CX.png b/flags/flags-iso/flat/64/CX.png new file mode 100644 index 0000000..b9384b2 Binary files /dev/null and b/flags/flags-iso/flat/64/CX.png differ diff --git a/flags/flags-iso/flat/64/CY.png b/flags/flags-iso/flat/64/CY.png new file mode 100644 index 0000000..3ea9c9e Binary files /dev/null and b/flags/flags-iso/flat/64/CY.png differ diff --git a/flags/flags-iso/flat/64/CZ.png b/flags/flags-iso/flat/64/CZ.png new file mode 100644 index 0000000..b38296b Binary files /dev/null and b/flags/flags-iso/flat/64/CZ.png differ diff --git a/flags/flags-iso/flat/64/DE.png b/flags/flags-iso/flat/64/DE.png new file mode 100644 index 0000000..07707aa Binary files /dev/null and b/flags/flags-iso/flat/64/DE.png differ diff --git a/flags/flags-iso/flat/64/DJ.png b/flags/flags-iso/flat/64/DJ.png new file mode 100644 index 0000000..794e74c Binary files /dev/null and b/flags/flags-iso/flat/64/DJ.png differ diff --git a/flags/flags-iso/flat/64/DK.png b/flags/flags-iso/flat/64/DK.png new file mode 100644 index 0000000..ef9f52f Binary files /dev/null and b/flags/flags-iso/flat/64/DK.png differ diff --git a/flags/flags-iso/flat/64/DM.png b/flags/flags-iso/flat/64/DM.png new file mode 100644 index 0000000..f7da4c8 Binary files /dev/null and b/flags/flags-iso/flat/64/DM.png differ diff --git a/flags/flags-iso/flat/64/DO.png b/flags/flags-iso/flat/64/DO.png new file mode 100644 index 0000000..c34a32f Binary files /dev/null and b/flags/flags-iso/flat/64/DO.png differ diff --git a/flags/flags-iso/flat/64/DZ.png b/flags/flags-iso/flat/64/DZ.png new file mode 100644 index 0000000..2ea6765 Binary files /dev/null and b/flags/flags-iso/flat/64/DZ.png differ diff --git a/flags/flags-iso/flat/64/EC.png b/flags/flags-iso/flat/64/EC.png new file mode 100644 index 0000000..26aaeaa Binary files /dev/null and b/flags/flags-iso/flat/64/EC.png differ diff --git a/flags/flags-iso/flat/64/EE.png b/flags/flags-iso/flat/64/EE.png new file mode 100644 index 0000000..c18c562 Binary files /dev/null and b/flags/flags-iso/flat/64/EE.png differ diff --git a/flags/flags-iso/flat/64/EG.png b/flags/flags-iso/flat/64/EG.png new file mode 100644 index 0000000..8cd5b82 Binary files /dev/null and b/flags/flags-iso/flat/64/EG.png differ diff --git a/flags/flags-iso/flat/64/EH.png b/flags/flags-iso/flat/64/EH.png new file mode 100644 index 0000000..7b4eb90 Binary files /dev/null and b/flags/flags-iso/flat/64/EH.png differ diff --git a/flags/flags-iso/flat/64/ER.png b/flags/flags-iso/flat/64/ER.png new file mode 100644 index 0000000..fa60b10 Binary files /dev/null and b/flags/flags-iso/flat/64/ER.png differ diff --git a/flags/flags-iso/flat/64/ES.png b/flags/flags-iso/flat/64/ES.png new file mode 100644 index 0000000..3f7e39c Binary files /dev/null and b/flags/flags-iso/flat/64/ES.png differ diff --git a/flags/flags-iso/flat/64/ET.png b/flags/flags-iso/flat/64/ET.png new file mode 100644 index 0000000..e1388a0 Binary files /dev/null and b/flags/flags-iso/flat/64/ET.png differ diff --git a/flags/flags-iso/flat/64/EU.png b/flags/flags-iso/flat/64/EU.png new file mode 100644 index 0000000..4f84094 Binary files /dev/null and b/flags/flags-iso/flat/64/EU.png differ diff --git a/flags/flags-iso/flat/64/FI.png b/flags/flags-iso/flat/64/FI.png new file mode 100644 index 0000000..6eb7e94 Binary files /dev/null and b/flags/flags-iso/flat/64/FI.png differ diff --git a/flags/flags-iso/flat/64/FJ.png b/flags/flags-iso/flat/64/FJ.png new file mode 100644 index 0000000..fafdaae Binary files /dev/null and b/flags/flags-iso/flat/64/FJ.png differ diff --git a/flags/flags-iso/flat/64/FK.png b/flags/flags-iso/flat/64/FK.png new file mode 100644 index 0000000..eb2dd3c Binary files /dev/null and b/flags/flags-iso/flat/64/FK.png differ diff --git a/flags/flags-iso/flat/64/FM.png b/flags/flags-iso/flat/64/FM.png new file mode 100644 index 0000000..be7af70 Binary files /dev/null and b/flags/flags-iso/flat/64/FM.png differ diff --git a/flags/flags-iso/flat/64/FO.png b/flags/flags-iso/flat/64/FO.png new file mode 100644 index 0000000..7942cd9 Binary files /dev/null and b/flags/flags-iso/flat/64/FO.png differ diff --git a/flags/flags-iso/flat/64/FR.png b/flags/flags-iso/flat/64/FR.png new file mode 100644 index 0000000..ea101a5 Binary files /dev/null and b/flags/flags-iso/flat/64/FR.png differ diff --git a/flags/flags-iso/flat/64/GA.png b/flags/flags-iso/flat/64/GA.png new file mode 100644 index 0000000..1b69eaf Binary files /dev/null and b/flags/flags-iso/flat/64/GA.png differ diff --git a/flags/flags-iso/flat/64/GB.png b/flags/flags-iso/flat/64/GB.png new file mode 100644 index 0000000..96a97f7 Binary files /dev/null and b/flags/flags-iso/flat/64/GB.png differ diff --git a/flags/flags-iso/flat/64/GD.png b/flags/flags-iso/flat/64/GD.png new file mode 100644 index 0000000..d4a05ad Binary files /dev/null and b/flags/flags-iso/flat/64/GD.png differ diff --git a/flags/flags-iso/flat/64/GE.png b/flags/flags-iso/flat/64/GE.png new file mode 100644 index 0000000..2026913 Binary files /dev/null and b/flags/flags-iso/flat/64/GE.png differ diff --git a/flags/flags-iso/flat/64/GG.png b/flags/flags-iso/flat/64/GG.png new file mode 100644 index 0000000..8fff555 Binary files /dev/null and b/flags/flags-iso/flat/64/GG.png differ diff --git a/flags/flags-iso/flat/64/GH.png b/flags/flags-iso/flat/64/GH.png new file mode 100644 index 0000000..2bdcd4f Binary files /dev/null and b/flags/flags-iso/flat/64/GH.png differ diff --git a/flags/flags-iso/flat/64/GI.png b/flags/flags-iso/flat/64/GI.png new file mode 100644 index 0000000..3b87254 Binary files /dev/null and b/flags/flags-iso/flat/64/GI.png differ diff --git a/flags/flags-iso/flat/64/GL.png b/flags/flags-iso/flat/64/GL.png new file mode 100644 index 0000000..c7554a8 Binary files /dev/null and b/flags/flags-iso/flat/64/GL.png differ diff --git a/flags/flags-iso/flat/64/GM.png b/flags/flags-iso/flat/64/GM.png new file mode 100644 index 0000000..a54ce95 Binary files /dev/null and b/flags/flags-iso/flat/64/GM.png differ diff --git a/flags/flags-iso/flat/64/GN.png b/flags/flags-iso/flat/64/GN.png new file mode 100644 index 0000000..dd79507 Binary files /dev/null and b/flags/flags-iso/flat/64/GN.png differ diff --git a/flags/flags-iso/flat/64/GQ.png b/flags/flags-iso/flat/64/GQ.png new file mode 100644 index 0000000..1473173 Binary files /dev/null and b/flags/flags-iso/flat/64/GQ.png differ diff --git a/flags/flags-iso/flat/64/GR.png b/flags/flags-iso/flat/64/GR.png new file mode 100644 index 0000000..b7da9cc Binary files /dev/null and b/flags/flags-iso/flat/64/GR.png differ diff --git a/flags/flags-iso/flat/64/GS.png b/flags/flags-iso/flat/64/GS.png new file mode 100644 index 0000000..a216c57 Binary files /dev/null and b/flags/flags-iso/flat/64/GS.png differ diff --git a/flags/flags-iso/flat/64/GT.png b/flags/flags-iso/flat/64/GT.png new file mode 100644 index 0000000..6b28067 Binary files /dev/null and b/flags/flags-iso/flat/64/GT.png differ diff --git a/flags/flags-iso/flat/64/GU.png b/flags/flags-iso/flat/64/GU.png new file mode 100644 index 0000000..e68eb53 Binary files /dev/null and b/flags/flags-iso/flat/64/GU.png differ diff --git a/flags/flags-iso/flat/64/GW.png b/flags/flags-iso/flat/64/GW.png new file mode 100644 index 0000000..cdf103a Binary files /dev/null and b/flags/flags-iso/flat/64/GW.png differ diff --git a/flags/flags-iso/flat/64/GY.png b/flags/flags-iso/flat/64/GY.png new file mode 100644 index 0000000..1e0632e Binary files /dev/null and b/flags/flags-iso/flat/64/GY.png differ diff --git a/flags/flags-iso/flat/64/HK.png b/flags/flags-iso/flat/64/HK.png new file mode 100644 index 0000000..111a7a6 Binary files /dev/null and b/flags/flags-iso/flat/64/HK.png differ diff --git a/flags/flags-iso/flat/64/HN.png b/flags/flags-iso/flat/64/HN.png new file mode 100644 index 0000000..e76b187 Binary files /dev/null and b/flags/flags-iso/flat/64/HN.png differ diff --git a/flags/flags-iso/flat/64/HR.png b/flags/flags-iso/flat/64/HR.png new file mode 100644 index 0000000..355c4e8 Binary files /dev/null and b/flags/flags-iso/flat/64/HR.png differ diff --git a/flags/flags-iso/flat/64/HT.png b/flags/flags-iso/flat/64/HT.png new file mode 100644 index 0000000..b958f5b Binary files /dev/null and b/flags/flags-iso/flat/64/HT.png differ diff --git a/flags/flags-iso/flat/64/HU.png b/flags/flags-iso/flat/64/HU.png new file mode 100644 index 0000000..afee569 Binary files /dev/null and b/flags/flags-iso/flat/64/HU.png differ diff --git a/flags/flags-iso/flat/64/ID.png b/flags/flags-iso/flat/64/ID.png new file mode 100644 index 0000000..7fb00cf Binary files /dev/null and b/flags/flags-iso/flat/64/ID.png differ diff --git a/flags/flags-iso/flat/64/IE.png b/flags/flags-iso/flat/64/IE.png new file mode 100644 index 0000000..ab7af0c Binary files /dev/null and b/flags/flags-iso/flat/64/IE.png differ diff --git a/flags/flags-iso/flat/64/IL.png b/flags/flags-iso/flat/64/IL.png new file mode 100644 index 0000000..ce6937f Binary files /dev/null and b/flags/flags-iso/flat/64/IL.png differ diff --git a/flags/flags-iso/flat/64/IM.png b/flags/flags-iso/flat/64/IM.png new file mode 100644 index 0000000..c1f8bbb Binary files /dev/null and b/flags/flags-iso/flat/64/IM.png differ diff --git a/flags/flags-iso/flat/64/IN.png b/flags/flags-iso/flat/64/IN.png new file mode 100644 index 0000000..9af8072 Binary files /dev/null and b/flags/flags-iso/flat/64/IN.png differ diff --git a/flags/flags-iso/flat/64/IQ.png b/flags/flags-iso/flat/64/IQ.png new file mode 100644 index 0000000..79e7c2a Binary files /dev/null and b/flags/flags-iso/flat/64/IQ.png differ diff --git a/flags/flags-iso/flat/64/IR.png b/flags/flags-iso/flat/64/IR.png new file mode 100644 index 0000000..df273f3 Binary files /dev/null and b/flags/flags-iso/flat/64/IR.png differ diff --git a/flags/flags-iso/flat/64/IS.png b/flags/flags-iso/flat/64/IS.png new file mode 100644 index 0000000..5e198a7 Binary files /dev/null and b/flags/flags-iso/flat/64/IS.png differ diff --git a/flags/flags-iso/flat/64/IT.png b/flags/flags-iso/flat/64/IT.png new file mode 100644 index 0000000..1ac67df Binary files /dev/null and b/flags/flags-iso/flat/64/IT.png differ diff --git a/flags/flags-iso/flat/64/JE.png b/flags/flags-iso/flat/64/JE.png new file mode 100644 index 0000000..cc26d52 Binary files /dev/null and b/flags/flags-iso/flat/64/JE.png differ diff --git a/flags/flags-iso/flat/64/JM.png b/flags/flags-iso/flat/64/JM.png new file mode 100644 index 0000000..2c59808 Binary files /dev/null and b/flags/flags-iso/flat/64/JM.png differ diff --git a/flags/flags-iso/flat/64/JO.png b/flags/flags-iso/flat/64/JO.png new file mode 100644 index 0000000..d0b87ec Binary files /dev/null and b/flags/flags-iso/flat/64/JO.png differ diff --git a/flags/flags-iso/flat/64/JP.png b/flags/flags-iso/flat/64/JP.png new file mode 100644 index 0000000..fdd3f5e Binary files /dev/null and b/flags/flags-iso/flat/64/JP.png differ diff --git a/flags/flags-iso/flat/64/KE.png b/flags/flags-iso/flat/64/KE.png new file mode 100644 index 0000000..3065486 Binary files /dev/null and b/flags/flags-iso/flat/64/KE.png differ diff --git a/flags/flags-iso/flat/64/KG.png b/flags/flags-iso/flat/64/KG.png new file mode 100644 index 0000000..8ea6f5c Binary files /dev/null and b/flags/flags-iso/flat/64/KG.png differ diff --git a/flags/flags-iso/flat/64/KH.png b/flags/flags-iso/flat/64/KH.png new file mode 100644 index 0000000..d752ca0 Binary files /dev/null and b/flags/flags-iso/flat/64/KH.png differ diff --git a/flags/flags-iso/flat/64/KI.png b/flags/flags-iso/flat/64/KI.png new file mode 100644 index 0000000..c8dbdb0 Binary files /dev/null and b/flags/flags-iso/flat/64/KI.png differ diff --git a/flags/flags-iso/flat/64/KM.png b/flags/flags-iso/flat/64/KM.png new file mode 100644 index 0000000..8a46ac6 Binary files /dev/null and b/flags/flags-iso/flat/64/KM.png differ diff --git a/flags/flags-iso/flat/64/KN.png b/flags/flags-iso/flat/64/KN.png new file mode 100644 index 0000000..a5c0ffb Binary files /dev/null and b/flags/flags-iso/flat/64/KN.png differ diff --git a/flags/flags-iso/flat/64/KP.png b/flags/flags-iso/flat/64/KP.png new file mode 100644 index 0000000..ee76832 Binary files /dev/null and b/flags/flags-iso/flat/64/KP.png differ diff --git a/flags/flags-iso/flat/64/KR.png b/flags/flags-iso/flat/64/KR.png new file mode 100644 index 0000000..b3159e8 Binary files /dev/null and b/flags/flags-iso/flat/64/KR.png differ diff --git a/flags/flags-iso/flat/64/KW.png b/flags/flags-iso/flat/64/KW.png new file mode 100644 index 0000000..f5ec795 Binary files /dev/null and b/flags/flags-iso/flat/64/KW.png differ diff --git a/flags/flags-iso/flat/64/KY.png b/flags/flags-iso/flat/64/KY.png new file mode 100644 index 0000000..dac58cd Binary files /dev/null and b/flags/flags-iso/flat/64/KY.png differ diff --git a/flags/flags-iso/flat/64/KZ.png b/flags/flags-iso/flat/64/KZ.png new file mode 100644 index 0000000..195d978 Binary files /dev/null and b/flags/flags-iso/flat/64/KZ.png differ diff --git a/flags/flags-iso/flat/64/LA.png b/flags/flags-iso/flat/64/LA.png new file mode 100644 index 0000000..609436d Binary files /dev/null and b/flags/flags-iso/flat/64/LA.png differ diff --git a/flags/flags-iso/flat/64/LB.png b/flags/flags-iso/flat/64/LB.png new file mode 100644 index 0000000..a9ffdbc Binary files /dev/null and b/flags/flags-iso/flat/64/LB.png differ diff --git a/flags/flags-iso/flat/64/LC.png b/flags/flags-iso/flat/64/LC.png new file mode 100644 index 0000000..a2016b2 Binary files /dev/null and b/flags/flags-iso/flat/64/LC.png differ diff --git a/flags/flags-iso/flat/64/LI.png b/flags/flags-iso/flat/64/LI.png new file mode 100644 index 0000000..791b27a Binary files /dev/null and b/flags/flags-iso/flat/64/LI.png differ diff --git a/flags/flags-iso/flat/64/LK.png b/flags/flags-iso/flat/64/LK.png new file mode 100644 index 0000000..ecc6f0d Binary files /dev/null and b/flags/flags-iso/flat/64/LK.png differ diff --git a/flags/flags-iso/flat/64/LR.png b/flags/flags-iso/flat/64/LR.png new file mode 100644 index 0000000..73aa178 Binary files /dev/null and b/flags/flags-iso/flat/64/LR.png differ diff --git a/flags/flags-iso/flat/64/LS.png b/flags/flags-iso/flat/64/LS.png new file mode 100644 index 0000000..598747e Binary files /dev/null and b/flags/flags-iso/flat/64/LS.png differ diff --git a/flags/flags-iso/flat/64/LT.png b/flags/flags-iso/flat/64/LT.png new file mode 100644 index 0000000..907db39 Binary files /dev/null and b/flags/flags-iso/flat/64/LT.png differ diff --git a/flags/flags-iso/flat/64/LU.png b/flags/flags-iso/flat/64/LU.png new file mode 100644 index 0000000..4357a46 Binary files /dev/null and b/flags/flags-iso/flat/64/LU.png differ diff --git a/flags/flags-iso/flat/64/LV.png b/flags/flags-iso/flat/64/LV.png new file mode 100644 index 0000000..1f8bdac Binary files /dev/null and b/flags/flags-iso/flat/64/LV.png differ diff --git a/flags/flags-iso/flat/64/LY.png b/flags/flags-iso/flat/64/LY.png new file mode 100644 index 0000000..98f7a4e Binary files /dev/null and b/flags/flags-iso/flat/64/LY.png differ diff --git a/flags/flags-iso/flat/64/MA.png b/flags/flags-iso/flat/64/MA.png new file mode 100644 index 0000000..e5b2280 Binary files /dev/null and b/flags/flags-iso/flat/64/MA.png differ diff --git a/flags/flags-iso/flat/64/MC.png b/flags/flags-iso/flat/64/MC.png new file mode 100644 index 0000000..7fb00cf Binary files /dev/null and b/flags/flags-iso/flat/64/MC.png differ diff --git a/flags/flags-iso/flat/64/MD.png b/flags/flags-iso/flat/64/MD.png new file mode 100644 index 0000000..7bd750c Binary files /dev/null and b/flags/flags-iso/flat/64/MD.png differ diff --git a/flags/flags-iso/flat/64/ME.png b/flags/flags-iso/flat/64/ME.png new file mode 100644 index 0000000..113a2bc Binary files /dev/null and b/flags/flags-iso/flat/64/ME.png differ diff --git a/flags/flags-iso/flat/64/MG.png b/flags/flags-iso/flat/64/MG.png new file mode 100644 index 0000000..f89c650 Binary files /dev/null and b/flags/flags-iso/flat/64/MG.png differ diff --git a/flags/flags-iso/flat/64/MH.png b/flags/flags-iso/flat/64/MH.png new file mode 100644 index 0000000..a240d70 Binary files /dev/null and b/flags/flags-iso/flat/64/MH.png differ diff --git a/flags/flags-iso/flat/64/MK.png b/flags/flags-iso/flat/64/MK.png new file mode 100644 index 0000000..38bb51a Binary files /dev/null and b/flags/flags-iso/flat/64/MK.png differ diff --git a/flags/flags-iso/flat/64/ML.png b/flags/flags-iso/flat/64/ML.png new file mode 100644 index 0000000..6e73f35 Binary files /dev/null and b/flags/flags-iso/flat/64/ML.png differ diff --git a/flags/flags-iso/flat/64/MM.png b/flags/flags-iso/flat/64/MM.png new file mode 100644 index 0000000..ddaab40 Binary files /dev/null and b/flags/flags-iso/flat/64/MM.png differ diff --git a/flags/flags-iso/flat/64/MN.png b/flags/flags-iso/flat/64/MN.png new file mode 100644 index 0000000..492d87e Binary files /dev/null and b/flags/flags-iso/flat/64/MN.png differ diff --git a/flags/flags-iso/flat/64/MO.png b/flags/flags-iso/flat/64/MO.png new file mode 100644 index 0000000..a68ca49 Binary files /dev/null and b/flags/flags-iso/flat/64/MO.png differ diff --git a/flags/flags-iso/flat/64/MP.png b/flags/flags-iso/flat/64/MP.png new file mode 100644 index 0000000..9ee8417 Binary files /dev/null and b/flags/flags-iso/flat/64/MP.png differ diff --git a/flags/flags-iso/flat/64/MR.png b/flags/flags-iso/flat/64/MR.png new file mode 100644 index 0000000..fb2ac85 Binary files /dev/null and b/flags/flags-iso/flat/64/MR.png differ diff --git a/flags/flags-iso/flat/64/MS.png b/flags/flags-iso/flat/64/MS.png new file mode 100644 index 0000000..9662beb Binary files /dev/null and b/flags/flags-iso/flat/64/MS.png differ diff --git a/flags/flags-iso/flat/64/MT.png b/flags/flags-iso/flat/64/MT.png new file mode 100644 index 0000000..fcc27ab Binary files /dev/null and b/flags/flags-iso/flat/64/MT.png differ diff --git a/flags/flags-iso/flat/64/MU.png b/flags/flags-iso/flat/64/MU.png new file mode 100644 index 0000000..176391e Binary files /dev/null and b/flags/flags-iso/flat/64/MU.png differ diff --git a/flags/flags-iso/flat/64/MV.png b/flags/flags-iso/flat/64/MV.png new file mode 100644 index 0000000..c41df6d Binary files /dev/null and b/flags/flags-iso/flat/64/MV.png differ diff --git a/flags/flags-iso/flat/64/MW.png b/flags/flags-iso/flat/64/MW.png new file mode 100644 index 0000000..b8bd61c Binary files /dev/null and b/flags/flags-iso/flat/64/MW.png differ diff --git a/flags/flags-iso/flat/64/MX.png b/flags/flags-iso/flat/64/MX.png new file mode 100644 index 0000000..7bc656c Binary files /dev/null and b/flags/flags-iso/flat/64/MX.png differ diff --git a/flags/flags-iso/flat/64/MY.png b/flags/flags-iso/flat/64/MY.png new file mode 100644 index 0000000..50bc61d Binary files /dev/null and b/flags/flags-iso/flat/64/MY.png differ diff --git a/flags/flags-iso/flat/64/MZ.png b/flags/flags-iso/flat/64/MZ.png new file mode 100644 index 0000000..5b677a8 Binary files /dev/null and b/flags/flags-iso/flat/64/MZ.png differ diff --git a/flags/flags-iso/flat/64/NA.png b/flags/flags-iso/flat/64/NA.png new file mode 100644 index 0000000..879cbdf Binary files /dev/null and b/flags/flags-iso/flat/64/NA.png differ diff --git a/flags/flags-iso/flat/64/NC.png b/flags/flags-iso/flat/64/NC.png new file mode 100644 index 0000000..1f53a6a Binary files /dev/null and b/flags/flags-iso/flat/64/NC.png differ diff --git a/flags/flags-iso/flat/64/NE.png b/flags/flags-iso/flat/64/NE.png new file mode 100644 index 0000000..c77a343 Binary files /dev/null and b/flags/flags-iso/flat/64/NE.png differ diff --git a/flags/flags-iso/flat/64/NF.png b/flags/flags-iso/flat/64/NF.png new file mode 100644 index 0000000..96f35b0 Binary files /dev/null and b/flags/flags-iso/flat/64/NF.png differ diff --git a/flags/flags-iso/flat/64/NG.png b/flags/flags-iso/flat/64/NG.png new file mode 100644 index 0000000..8c175ed Binary files /dev/null and b/flags/flags-iso/flat/64/NG.png differ diff --git a/flags/flags-iso/flat/64/NI.png b/flags/flags-iso/flat/64/NI.png new file mode 100644 index 0000000..bebf90a Binary files /dev/null and b/flags/flags-iso/flat/64/NI.png differ diff --git a/flags/flags-iso/flat/64/NL.png b/flags/flags-iso/flat/64/NL.png new file mode 100644 index 0000000..f1eece1 Binary files /dev/null and b/flags/flags-iso/flat/64/NL.png differ diff --git a/flags/flags-iso/flat/64/NO.png b/flags/flags-iso/flat/64/NO.png new file mode 100644 index 0000000..e510202 Binary files /dev/null and b/flags/flags-iso/flat/64/NO.png differ diff --git a/flags/flags-iso/flat/64/NP.png b/flags/flags-iso/flat/64/NP.png new file mode 100644 index 0000000..bbfef28 Binary files /dev/null and b/flags/flags-iso/flat/64/NP.png differ diff --git a/flags/flags-iso/flat/64/NR.png b/flags/flags-iso/flat/64/NR.png new file mode 100644 index 0000000..8c1529d Binary files /dev/null and b/flags/flags-iso/flat/64/NR.png differ diff --git a/flags/flags-iso/flat/64/NU.png b/flags/flags-iso/flat/64/NU.png new file mode 100644 index 0000000..17e42be Binary files /dev/null and b/flags/flags-iso/flat/64/NU.png differ diff --git a/flags/flags-iso/flat/64/NZ.png b/flags/flags-iso/flat/64/NZ.png new file mode 100644 index 0000000..93e9267 Binary files /dev/null and b/flags/flags-iso/flat/64/NZ.png differ diff --git a/flags/flags-iso/flat/64/OM.png b/flags/flags-iso/flat/64/OM.png new file mode 100644 index 0000000..277a288 Binary files /dev/null and b/flags/flags-iso/flat/64/OM.png differ diff --git a/flags/flags-iso/flat/64/PA.png b/flags/flags-iso/flat/64/PA.png new file mode 100644 index 0000000..b1e97f8 Binary files /dev/null and b/flags/flags-iso/flat/64/PA.png differ diff --git a/flags/flags-iso/flat/64/PE.png b/flags/flags-iso/flat/64/PE.png new file mode 100644 index 0000000..48c1203 Binary files /dev/null and b/flags/flags-iso/flat/64/PE.png differ diff --git a/flags/flags-iso/flat/64/PF.png b/flags/flags-iso/flat/64/PF.png new file mode 100644 index 0000000..40e5210 Binary files /dev/null and b/flags/flags-iso/flat/64/PF.png differ diff --git a/flags/flags-iso/flat/64/PG.png b/flags/flags-iso/flat/64/PG.png new file mode 100644 index 0000000..98b81b1 Binary files /dev/null and b/flags/flags-iso/flat/64/PG.png differ diff --git a/flags/flags-iso/flat/64/PH.png b/flags/flags-iso/flat/64/PH.png new file mode 100644 index 0000000..63c97db Binary files /dev/null and b/flags/flags-iso/flat/64/PH.png differ diff --git a/flags/flags-iso/flat/64/PK.png b/flags/flags-iso/flat/64/PK.png new file mode 100644 index 0000000..dddac0a Binary files /dev/null and b/flags/flags-iso/flat/64/PK.png differ diff --git a/flags/flags-iso/flat/64/PL.png b/flags/flags-iso/flat/64/PL.png new file mode 100644 index 0000000..f29c716 Binary files /dev/null and b/flags/flags-iso/flat/64/PL.png differ diff --git a/flags/flags-iso/flat/64/PN.png b/flags/flags-iso/flat/64/PN.png new file mode 100644 index 0000000..ecc46da Binary files /dev/null and b/flags/flags-iso/flat/64/PN.png differ diff --git a/flags/flags-iso/flat/64/PR.png b/flags/flags-iso/flat/64/PR.png new file mode 100644 index 0000000..42796fe Binary files /dev/null and b/flags/flags-iso/flat/64/PR.png differ diff --git a/flags/flags-iso/flat/64/PS.png b/flags/flags-iso/flat/64/PS.png new file mode 100644 index 0000000..b7cbe1c Binary files /dev/null and b/flags/flags-iso/flat/64/PS.png differ diff --git a/flags/flags-iso/flat/64/PT.png b/flags/flags-iso/flat/64/PT.png new file mode 100644 index 0000000..abdbf31 Binary files /dev/null and b/flags/flags-iso/flat/64/PT.png differ diff --git a/flags/flags-iso/flat/64/PW.png b/flags/flags-iso/flat/64/PW.png new file mode 100644 index 0000000..ff39886 Binary files /dev/null and b/flags/flags-iso/flat/64/PW.png differ diff --git a/flags/flags-iso/flat/64/PY.png b/flags/flags-iso/flat/64/PY.png new file mode 100644 index 0000000..04f5d9a Binary files /dev/null and b/flags/flags-iso/flat/64/PY.png differ diff --git a/flags/flags-iso/flat/64/QA.png b/flags/flags-iso/flat/64/QA.png new file mode 100644 index 0000000..3bf9219 Binary files /dev/null and b/flags/flags-iso/flat/64/QA.png differ diff --git a/flags/flags-iso/flat/64/RO.png b/flags/flags-iso/flat/64/RO.png new file mode 100644 index 0000000..5968cb1 Binary files /dev/null and b/flags/flags-iso/flat/64/RO.png differ diff --git a/flags/flags-iso/flat/64/RS.png b/flags/flags-iso/flat/64/RS.png new file mode 100644 index 0000000..7b3c823 Binary files /dev/null and b/flags/flags-iso/flat/64/RS.png differ diff --git a/flags/flags-iso/flat/64/RU.png b/flags/flags-iso/flat/64/RU.png new file mode 100644 index 0000000..e87d758 Binary files /dev/null and b/flags/flags-iso/flat/64/RU.png differ diff --git a/flags/flags-iso/flat/64/RW.png b/flags/flags-iso/flat/64/RW.png new file mode 100644 index 0000000..4898fcc Binary files /dev/null and b/flags/flags-iso/flat/64/RW.png differ diff --git a/flags/flags-iso/flat/64/SA.png b/flags/flags-iso/flat/64/SA.png new file mode 100644 index 0000000..87c67b0 Binary files /dev/null and b/flags/flags-iso/flat/64/SA.png differ diff --git a/flags/flags-iso/flat/64/SB.png b/flags/flags-iso/flat/64/SB.png new file mode 100644 index 0000000..43b9068 Binary files /dev/null and b/flags/flags-iso/flat/64/SB.png differ diff --git a/flags/flags-iso/flat/64/SC.png b/flags/flags-iso/flat/64/SC.png new file mode 100644 index 0000000..f3d60e9 Binary files /dev/null and b/flags/flags-iso/flat/64/SC.png differ diff --git a/flags/flags-iso/flat/64/SD.png b/flags/flags-iso/flat/64/SD.png new file mode 100644 index 0000000..6d364de Binary files /dev/null and b/flags/flags-iso/flat/64/SD.png differ diff --git a/flags/flags-iso/flat/64/SE.png b/flags/flags-iso/flat/64/SE.png new file mode 100644 index 0000000..3dbe1ec Binary files /dev/null and b/flags/flags-iso/flat/64/SE.png differ diff --git a/flags/flags-iso/flat/64/SG.png b/flags/flags-iso/flat/64/SG.png new file mode 100644 index 0000000..27e950c Binary files /dev/null and b/flags/flags-iso/flat/64/SG.png differ diff --git a/flags/flags-iso/flat/64/SH.png b/flags/flags-iso/flat/64/SH.png new file mode 100644 index 0000000..dd89323 Binary files /dev/null and b/flags/flags-iso/flat/64/SH.png differ diff --git a/flags/flags-iso/flat/64/SI.png b/flags/flags-iso/flat/64/SI.png new file mode 100644 index 0000000..2a52b54 Binary files /dev/null and b/flags/flags-iso/flat/64/SI.png differ diff --git a/flags/flags-iso/flat/64/SK.png b/flags/flags-iso/flat/64/SK.png new file mode 100644 index 0000000..a1540e1 Binary files /dev/null and b/flags/flags-iso/flat/64/SK.png differ diff --git a/flags/flags-iso/flat/64/SL.png b/flags/flags-iso/flat/64/SL.png new file mode 100644 index 0000000..d36d704 Binary files /dev/null and b/flags/flags-iso/flat/64/SL.png differ diff --git a/flags/flags-iso/flat/64/SM.png b/flags/flags-iso/flat/64/SM.png new file mode 100644 index 0000000..944ba86 Binary files /dev/null and b/flags/flags-iso/flat/64/SM.png differ diff --git a/flags/flags-iso/flat/64/SN.png b/flags/flags-iso/flat/64/SN.png new file mode 100644 index 0000000..7c90de1 Binary files /dev/null and b/flags/flags-iso/flat/64/SN.png differ diff --git a/flags/flags-iso/flat/64/SO.png b/flags/flags-iso/flat/64/SO.png new file mode 100644 index 0000000..a3f52cf Binary files /dev/null and b/flags/flags-iso/flat/64/SO.png differ diff --git a/flags/flags-iso/flat/64/SR.png b/flags/flags-iso/flat/64/SR.png new file mode 100644 index 0000000..973655f Binary files /dev/null and b/flags/flags-iso/flat/64/SR.png differ diff --git a/flags/flags-iso/flat/64/SS.png b/flags/flags-iso/flat/64/SS.png new file mode 100644 index 0000000..15ff92b Binary files /dev/null and b/flags/flags-iso/flat/64/SS.png differ diff --git a/flags/flags-iso/flat/64/ST.png b/flags/flags-iso/flat/64/ST.png new file mode 100644 index 0000000..c5952d3 Binary files /dev/null and b/flags/flags-iso/flat/64/ST.png differ diff --git a/flags/flags-iso/flat/64/SV.png b/flags/flags-iso/flat/64/SV.png new file mode 100644 index 0000000..36c9f03 Binary files /dev/null and b/flags/flags-iso/flat/64/SV.png differ diff --git a/flags/flags-iso/flat/64/SY.png b/flags/flags-iso/flat/64/SY.png new file mode 100644 index 0000000..897c6b3 Binary files /dev/null and b/flags/flags-iso/flat/64/SY.png differ diff --git a/flags/flags-iso/flat/64/SZ.png b/flags/flags-iso/flat/64/SZ.png new file mode 100644 index 0000000..7889710 Binary files /dev/null and b/flags/flags-iso/flat/64/SZ.png differ diff --git a/flags/flags-iso/flat/64/TC.png b/flags/flags-iso/flat/64/TC.png new file mode 100644 index 0000000..5b794ec Binary files /dev/null and b/flags/flags-iso/flat/64/TC.png differ diff --git a/flags/flags-iso/flat/64/TD.png b/flags/flags-iso/flat/64/TD.png new file mode 100644 index 0000000..214cb0d Binary files /dev/null and b/flags/flags-iso/flat/64/TD.png differ diff --git a/flags/flags-iso/flat/64/TF.png b/flags/flags-iso/flat/64/TF.png new file mode 100644 index 0000000..17bd6c3 Binary files /dev/null and b/flags/flags-iso/flat/64/TF.png differ diff --git a/flags/flags-iso/flat/64/TG.png b/flags/flags-iso/flat/64/TG.png new file mode 100644 index 0000000..66eae0f Binary files /dev/null and b/flags/flags-iso/flat/64/TG.png differ diff --git a/flags/flags-iso/flat/64/TH.png b/flags/flags-iso/flat/64/TH.png new file mode 100644 index 0000000..eb652f2 Binary files /dev/null and b/flags/flags-iso/flat/64/TH.png differ diff --git a/flags/flags-iso/flat/64/TJ.png b/flags/flags-iso/flat/64/TJ.png new file mode 100644 index 0000000..7591f28 Binary files /dev/null and b/flags/flags-iso/flat/64/TJ.png differ diff --git a/flags/flags-iso/flat/64/TK.png b/flags/flags-iso/flat/64/TK.png new file mode 100644 index 0000000..e8b3855 Binary files /dev/null and b/flags/flags-iso/flat/64/TK.png differ diff --git a/flags/flags-iso/flat/64/TL.png b/flags/flags-iso/flat/64/TL.png new file mode 100644 index 0000000..b7db4eb Binary files /dev/null and b/flags/flags-iso/flat/64/TL.png differ diff --git a/flags/flags-iso/flat/64/TM.png b/flags/flags-iso/flat/64/TM.png new file mode 100644 index 0000000..9d82abc Binary files /dev/null and b/flags/flags-iso/flat/64/TM.png differ diff --git a/flags/flags-iso/flat/64/TN.png b/flags/flags-iso/flat/64/TN.png new file mode 100644 index 0000000..92ec1ef Binary files /dev/null and b/flags/flags-iso/flat/64/TN.png differ diff --git a/flags/flags-iso/flat/64/TO.png b/flags/flags-iso/flat/64/TO.png new file mode 100644 index 0000000..e1d96b3 Binary files /dev/null and b/flags/flags-iso/flat/64/TO.png differ diff --git a/flags/flags-iso/flat/64/TR.png b/flags/flags-iso/flat/64/TR.png new file mode 100644 index 0000000..838049d Binary files /dev/null and b/flags/flags-iso/flat/64/TR.png differ diff --git a/flags/flags-iso/flat/64/TT.png b/flags/flags-iso/flat/64/TT.png new file mode 100644 index 0000000..ca612a6 Binary files /dev/null and b/flags/flags-iso/flat/64/TT.png differ diff --git a/flags/flags-iso/flat/64/TV.png b/flags/flags-iso/flat/64/TV.png new file mode 100644 index 0000000..94839b1 Binary files /dev/null and b/flags/flags-iso/flat/64/TV.png differ diff --git a/flags/flags-iso/flat/64/TW.png b/flags/flags-iso/flat/64/TW.png new file mode 100644 index 0000000..044f0fa Binary files /dev/null and b/flags/flags-iso/flat/64/TW.png differ diff --git a/flags/flags-iso/flat/64/TZ.png b/flags/flags-iso/flat/64/TZ.png new file mode 100644 index 0000000..e034a04 Binary files /dev/null and b/flags/flags-iso/flat/64/TZ.png differ diff --git a/flags/flags-iso/flat/64/UA.png b/flags/flags-iso/flat/64/UA.png new file mode 100644 index 0000000..115de4b Binary files /dev/null and b/flags/flags-iso/flat/64/UA.png differ diff --git a/flags/flags-iso/flat/64/UG.png b/flags/flags-iso/flat/64/UG.png new file mode 100644 index 0000000..5a6be88 Binary files /dev/null and b/flags/flags-iso/flat/64/UG.png differ diff --git a/flags/flags-iso/flat/64/US.png b/flags/flags-iso/flat/64/US.png new file mode 100644 index 0000000..57f3cbe Binary files /dev/null and b/flags/flags-iso/flat/64/US.png differ diff --git a/flags/flags-iso/flat/64/UY.png b/flags/flags-iso/flat/64/UY.png new file mode 100644 index 0000000..1cae642 Binary files /dev/null and b/flags/flags-iso/flat/64/UY.png differ diff --git a/flags/flags-iso/flat/64/UZ.png b/flags/flags-iso/flat/64/UZ.png new file mode 100644 index 0000000..a29cd4e Binary files /dev/null and b/flags/flags-iso/flat/64/UZ.png differ diff --git a/flags/flags-iso/flat/64/VA.png b/flags/flags-iso/flat/64/VA.png new file mode 100644 index 0000000..1fd41bc Binary files /dev/null and b/flags/flags-iso/flat/64/VA.png differ diff --git a/flags/flags-iso/flat/64/VC.png b/flags/flags-iso/flat/64/VC.png new file mode 100644 index 0000000..28aad72 Binary files /dev/null and b/flags/flags-iso/flat/64/VC.png differ diff --git a/flags/flags-iso/flat/64/VE.png b/flags/flags-iso/flat/64/VE.png new file mode 100644 index 0000000..8281889 Binary files /dev/null and b/flags/flags-iso/flat/64/VE.png differ diff --git a/flags/flags-iso/flat/64/VG.png b/flags/flags-iso/flat/64/VG.png new file mode 100644 index 0000000..470335e Binary files /dev/null and b/flags/flags-iso/flat/64/VG.png differ diff --git a/flags/flags-iso/flat/64/VI.png b/flags/flags-iso/flat/64/VI.png new file mode 100644 index 0000000..733e515 Binary files /dev/null and b/flags/flags-iso/flat/64/VI.png differ diff --git a/flags/flags-iso/flat/64/VN.png b/flags/flags-iso/flat/64/VN.png new file mode 100644 index 0000000..4a715d7 Binary files /dev/null and b/flags/flags-iso/flat/64/VN.png differ diff --git a/flags/flags-iso/flat/64/VU.png b/flags/flags-iso/flat/64/VU.png new file mode 100644 index 0000000..10591b5 Binary files /dev/null and b/flags/flags-iso/flat/64/VU.png differ diff --git a/flags/flags-iso/flat/64/WS.png b/flags/flags-iso/flat/64/WS.png new file mode 100644 index 0000000..3942e20 Binary files /dev/null and b/flags/flags-iso/flat/64/WS.png differ diff --git a/flags/flags-iso/flat/64/YE.png b/flags/flags-iso/flat/64/YE.png new file mode 100644 index 0000000..20c417a Binary files /dev/null and b/flags/flags-iso/flat/64/YE.png differ diff --git a/flags/flags-iso/flat/64/YT.png b/flags/flags-iso/flat/64/YT.png new file mode 100644 index 0000000..1ea71d4 Binary files /dev/null and b/flags/flags-iso/flat/64/YT.png differ diff --git a/flags/flags-iso/flat/64/ZA.png b/flags/flags-iso/flat/64/ZA.png new file mode 100644 index 0000000..c426db6 Binary files /dev/null and b/flags/flags-iso/flat/64/ZA.png differ diff --git a/flags/flags-iso/flat/64/ZM.png b/flags/flags-iso/flat/64/ZM.png new file mode 100644 index 0000000..8c876c6 Binary files /dev/null and b/flags/flags-iso/flat/64/ZM.png differ diff --git a/flags/flags-iso/flat/64/ZW.png b/flags/flags-iso/flat/64/ZW.png new file mode 100644 index 0000000..47e8aa7 Binary files /dev/null and b/flags/flags-iso/flat/64/ZW.png differ diff --git a/flags/flags-iso/flat/64/_abkhazia.png b/flags/flags-iso/flat/64/_abkhazia.png new file mode 100644 index 0000000..9f0c76e Binary files /dev/null and b/flags/flags-iso/flat/64/_abkhazia.png differ diff --git a/flags/flags-iso/flat/64/_british-antarctic-territory.png b/flags/flags-iso/flat/64/_british-antarctic-territory.png new file mode 100644 index 0000000..550bdfd Binary files /dev/null and b/flags/flags-iso/flat/64/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/flat/64/_commonwealth.png b/flags/flags-iso/flat/64/_commonwealth.png new file mode 100644 index 0000000..5370d01 Binary files /dev/null and b/flags/flags-iso/flat/64/_commonwealth.png differ diff --git a/flags/flags-iso/flat/64/_england.png b/flags/flags-iso/flat/64/_england.png new file mode 100644 index 0000000..d509e60 Binary files /dev/null and b/flags/flags-iso/flat/64/_england.png differ diff --git a/flags/flags-iso/flat/64/_gosquared.png b/flags/flags-iso/flat/64/_gosquared.png new file mode 100644 index 0000000..fc690f7 Binary files /dev/null and b/flags/flags-iso/flat/64/_gosquared.png differ diff --git a/flags/flags-iso/flat/64/_kosovo.png b/flags/flags-iso/flat/64/_kosovo.png new file mode 100644 index 0000000..b492595 Binary files /dev/null and b/flags/flags-iso/flat/64/_kosovo.png differ diff --git a/flags/flags-iso/flat/64/_mars.png b/flags/flags-iso/flat/64/_mars.png new file mode 100644 index 0000000..f3609b7 Binary files /dev/null and b/flags/flags-iso/flat/64/_mars.png differ diff --git a/flags/flags-iso/flat/64/_nagorno-karabakh.png b/flags/flags-iso/flat/64/_nagorno-karabakh.png new file mode 100644 index 0000000..65fc50c Binary files /dev/null and b/flags/flags-iso/flat/64/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/flat/64/_nato.png b/flags/flags-iso/flat/64/_nato.png new file mode 100644 index 0000000..7d59ce9 Binary files /dev/null and b/flags/flags-iso/flat/64/_nato.png differ diff --git a/flags/flags-iso/flat/64/_northern-cyprus.png b/flags/flags-iso/flat/64/_northern-cyprus.png new file mode 100644 index 0000000..e6deb7b Binary files /dev/null and b/flags/flags-iso/flat/64/_northern-cyprus.png differ diff --git a/flags/flags-iso/flat/64/_olympics.png b/flags/flags-iso/flat/64/_olympics.png new file mode 100644 index 0000000..4f725c8 Binary files /dev/null and b/flags/flags-iso/flat/64/_olympics.png differ diff --git a/flags/flags-iso/flat/64/_red-cross.png b/flags/flags-iso/flat/64/_red-cross.png new file mode 100644 index 0000000..20eed4b Binary files /dev/null and b/flags/flags-iso/flat/64/_red-cross.png differ diff --git a/flags/flags-iso/flat/64/_scotland.png b/flags/flags-iso/flat/64/_scotland.png new file mode 100644 index 0000000..15ef0d8 Binary files /dev/null and b/flags/flags-iso/flat/64/_scotland.png differ diff --git a/flags/flags-iso/flat/64/_somaliland.png b/flags/flags-iso/flat/64/_somaliland.png new file mode 100644 index 0000000..d1123c5 Binary files /dev/null and b/flags/flags-iso/flat/64/_somaliland.png differ diff --git a/flags/flags-iso/flat/64/_south-ossetia.png b/flags/flags-iso/flat/64/_south-ossetia.png new file mode 100644 index 0000000..4fba485 Binary files /dev/null and b/flags/flags-iso/flat/64/_south-ossetia.png differ diff --git a/flags/flags-iso/flat/64/_united-nations.png b/flags/flags-iso/flat/64/_united-nations.png new file mode 100644 index 0000000..6372c3b Binary files /dev/null and b/flags/flags-iso/flat/64/_united-nations.png differ diff --git a/flags/flags-iso/flat/64/_wales.png b/flags/flags-iso/flat/64/_wales.png new file mode 100644 index 0000000..c33f9f4 Binary files /dev/null and b/flags/flags-iso/flat/64/_wales.png differ diff --git a/flags/flags-iso/flat/icns/.icns b/flags/flags-iso/flat/icns/.icns new file mode 100644 index 0000000..3e92ff0 Binary files /dev/null and b/flags/flags-iso/flat/icns/.icns differ diff --git a/flags/flags-iso/flat/icns/AD.icns b/flags/flags-iso/flat/icns/AD.icns new file mode 100644 index 0000000..e988c7d Binary files /dev/null and b/flags/flags-iso/flat/icns/AD.icns differ diff --git a/flags/flags-iso/flat/icns/AE.icns b/flags/flags-iso/flat/icns/AE.icns new file mode 100644 index 0000000..4a30ea5 Binary files /dev/null and b/flags/flags-iso/flat/icns/AE.icns differ diff --git a/flags/flags-iso/flat/icns/AF.icns b/flags/flags-iso/flat/icns/AF.icns new file mode 100644 index 0000000..4e78ff6 Binary files /dev/null and b/flags/flags-iso/flat/icns/AF.icns differ diff --git a/flags/flags-iso/flat/icns/AG.icns b/flags/flags-iso/flat/icns/AG.icns new file mode 100644 index 0000000..9a6d881 Binary files /dev/null and b/flags/flags-iso/flat/icns/AG.icns differ diff --git a/flags/flags-iso/flat/icns/AI.icns b/flags/flags-iso/flat/icns/AI.icns new file mode 100644 index 0000000..ec031d8 Binary files /dev/null and b/flags/flags-iso/flat/icns/AI.icns differ diff --git a/flags/flags-iso/flat/icns/AL.icns b/flags/flags-iso/flat/icns/AL.icns new file mode 100644 index 0000000..37f52de Binary files /dev/null and b/flags/flags-iso/flat/icns/AL.icns differ diff --git a/flags/flags-iso/flat/icns/AM.icns b/flags/flags-iso/flat/icns/AM.icns new file mode 100644 index 0000000..6fd3174 Binary files /dev/null and b/flags/flags-iso/flat/icns/AM.icns differ diff --git a/flags/flags-iso/flat/icns/AN.icns b/flags/flags-iso/flat/icns/AN.icns new file mode 100644 index 0000000..b994f9a Binary files /dev/null and b/flags/flags-iso/flat/icns/AN.icns differ diff --git a/flags/flags-iso/flat/icns/AO.icns b/flags/flags-iso/flat/icns/AO.icns new file mode 100644 index 0000000..8616047 Binary files /dev/null and b/flags/flags-iso/flat/icns/AO.icns differ diff --git a/flags/flags-iso/flat/icns/AQ.icns b/flags/flags-iso/flat/icns/AQ.icns new file mode 100644 index 0000000..411cabf Binary files /dev/null and b/flags/flags-iso/flat/icns/AQ.icns differ diff --git a/flags/flags-iso/flat/icns/AR.icns b/flags/flags-iso/flat/icns/AR.icns new file mode 100644 index 0000000..30d7c7a Binary files /dev/null and b/flags/flags-iso/flat/icns/AR.icns differ diff --git a/flags/flags-iso/flat/icns/AS.icns b/flags/flags-iso/flat/icns/AS.icns new file mode 100644 index 0000000..e3fb147 Binary files /dev/null and b/flags/flags-iso/flat/icns/AS.icns differ diff --git a/flags/flags-iso/flat/icns/AT.icns b/flags/flags-iso/flat/icns/AT.icns new file mode 100644 index 0000000..11999c7 Binary files /dev/null and b/flags/flags-iso/flat/icns/AT.icns differ diff --git a/flags/flags-iso/flat/icns/AU.icns b/flags/flags-iso/flat/icns/AU.icns new file mode 100644 index 0000000..0b127e9 Binary files /dev/null and b/flags/flags-iso/flat/icns/AU.icns differ diff --git a/flags/flags-iso/flat/icns/AW.icns b/flags/flags-iso/flat/icns/AW.icns new file mode 100644 index 0000000..32f2ec3 Binary files /dev/null and b/flags/flags-iso/flat/icns/AW.icns differ diff --git a/flags/flags-iso/flat/icns/AX.icns b/flags/flags-iso/flat/icns/AX.icns new file mode 100644 index 0000000..8bc1377 Binary files /dev/null and b/flags/flags-iso/flat/icns/AX.icns differ diff --git a/flags/flags-iso/flat/icns/AZ.icns b/flags/flags-iso/flat/icns/AZ.icns new file mode 100644 index 0000000..01ecf42 Binary files /dev/null and b/flags/flags-iso/flat/icns/AZ.icns differ diff --git a/flags/flags-iso/flat/icns/BA.icns b/flags/flags-iso/flat/icns/BA.icns new file mode 100644 index 0000000..8b6e3bf Binary files /dev/null and b/flags/flags-iso/flat/icns/BA.icns differ diff --git a/flags/flags-iso/flat/icns/BB.icns b/flags/flags-iso/flat/icns/BB.icns new file mode 100644 index 0000000..89f338c Binary files /dev/null and b/flags/flags-iso/flat/icns/BB.icns differ diff --git a/flags/flags-iso/flat/icns/BD.icns b/flags/flags-iso/flat/icns/BD.icns new file mode 100644 index 0000000..2125f31 Binary files /dev/null and b/flags/flags-iso/flat/icns/BD.icns differ diff --git a/flags/flags-iso/flat/icns/BE.icns b/flags/flags-iso/flat/icns/BE.icns new file mode 100644 index 0000000..9382261 Binary files /dev/null and b/flags/flags-iso/flat/icns/BE.icns differ diff --git a/flags/flags-iso/flat/icns/BF.icns b/flags/flags-iso/flat/icns/BF.icns new file mode 100644 index 0000000..703fe88 Binary files /dev/null and b/flags/flags-iso/flat/icns/BF.icns differ diff --git a/flags/flags-iso/flat/icns/BG.icns b/flags/flags-iso/flat/icns/BG.icns new file mode 100644 index 0000000..b429e99 Binary files /dev/null and b/flags/flags-iso/flat/icns/BG.icns differ diff --git a/flags/flags-iso/flat/icns/BH.icns b/flags/flags-iso/flat/icns/BH.icns new file mode 100644 index 0000000..fb34bc5 Binary files /dev/null and b/flags/flags-iso/flat/icns/BH.icns differ diff --git a/flags/flags-iso/flat/icns/BI.icns b/flags/flags-iso/flat/icns/BI.icns new file mode 100644 index 0000000..7bed862 Binary files /dev/null and b/flags/flags-iso/flat/icns/BI.icns differ diff --git a/flags/flags-iso/flat/icns/BJ.icns b/flags/flags-iso/flat/icns/BJ.icns new file mode 100644 index 0000000..f32cd6f Binary files /dev/null and b/flags/flags-iso/flat/icns/BJ.icns differ diff --git a/flags/flags-iso/flat/icns/BL.icns b/flags/flags-iso/flat/icns/BL.icns new file mode 100644 index 0000000..f9217ae Binary files /dev/null and b/flags/flags-iso/flat/icns/BL.icns differ diff --git a/flags/flags-iso/flat/icns/BM.icns b/flags/flags-iso/flat/icns/BM.icns new file mode 100644 index 0000000..84c758e Binary files /dev/null and b/flags/flags-iso/flat/icns/BM.icns differ diff --git a/flags/flags-iso/flat/icns/BN.icns b/flags/flags-iso/flat/icns/BN.icns new file mode 100644 index 0000000..557123c Binary files /dev/null and b/flags/flags-iso/flat/icns/BN.icns differ diff --git a/flags/flags-iso/flat/icns/BO.icns b/flags/flags-iso/flat/icns/BO.icns new file mode 100644 index 0000000..bc0d31d Binary files /dev/null and b/flags/flags-iso/flat/icns/BO.icns differ diff --git a/flags/flags-iso/flat/icns/BR.icns b/flags/flags-iso/flat/icns/BR.icns new file mode 100644 index 0000000..4257319 Binary files /dev/null and b/flags/flags-iso/flat/icns/BR.icns differ diff --git a/flags/flags-iso/flat/icns/BS.icns b/flags/flags-iso/flat/icns/BS.icns new file mode 100644 index 0000000..f275163 Binary files /dev/null and b/flags/flags-iso/flat/icns/BS.icns differ diff --git a/flags/flags-iso/flat/icns/BT.icns b/flags/flags-iso/flat/icns/BT.icns new file mode 100644 index 0000000..a3a3cb3 Binary files /dev/null and b/flags/flags-iso/flat/icns/BT.icns differ diff --git a/flags/flags-iso/flat/icns/BW.icns b/flags/flags-iso/flat/icns/BW.icns new file mode 100644 index 0000000..8fbaf7e Binary files /dev/null and b/flags/flags-iso/flat/icns/BW.icns differ diff --git a/flags/flags-iso/flat/icns/BY.icns b/flags/flags-iso/flat/icns/BY.icns new file mode 100644 index 0000000..eeafd5a Binary files /dev/null and b/flags/flags-iso/flat/icns/BY.icns differ diff --git a/flags/flags-iso/flat/icns/BZ.icns b/flags/flags-iso/flat/icns/BZ.icns new file mode 100644 index 0000000..69d67e7 Binary files /dev/null and b/flags/flags-iso/flat/icns/BZ.icns differ diff --git a/flags/flags-iso/flat/icns/CA.icns b/flags/flags-iso/flat/icns/CA.icns new file mode 100644 index 0000000..99d1336 Binary files /dev/null and b/flags/flags-iso/flat/icns/CA.icns differ diff --git a/flags/flags-iso/flat/icns/CC.icns b/flags/flags-iso/flat/icns/CC.icns new file mode 100644 index 0000000..256a062 Binary files /dev/null and b/flags/flags-iso/flat/icns/CC.icns differ diff --git a/flags/flags-iso/flat/icns/CD.icns b/flags/flags-iso/flat/icns/CD.icns new file mode 100644 index 0000000..f04f1ae Binary files /dev/null and b/flags/flags-iso/flat/icns/CD.icns differ diff --git a/flags/flags-iso/flat/icns/CF.icns b/flags/flags-iso/flat/icns/CF.icns new file mode 100644 index 0000000..27d7de5 Binary files /dev/null and b/flags/flags-iso/flat/icns/CF.icns differ diff --git a/flags/flags-iso/flat/icns/CG.icns b/flags/flags-iso/flat/icns/CG.icns new file mode 100644 index 0000000..56f0950 Binary files /dev/null and b/flags/flags-iso/flat/icns/CG.icns differ diff --git a/flags/flags-iso/flat/icns/CH.icns b/flags/flags-iso/flat/icns/CH.icns new file mode 100644 index 0000000..080f7a2 Binary files /dev/null and b/flags/flags-iso/flat/icns/CH.icns differ diff --git a/flags/flags-iso/flat/icns/CI.icns b/flags/flags-iso/flat/icns/CI.icns new file mode 100644 index 0000000..00cc073 Binary files /dev/null and b/flags/flags-iso/flat/icns/CI.icns differ diff --git a/flags/flags-iso/flat/icns/CK.icns b/flags/flags-iso/flat/icns/CK.icns new file mode 100644 index 0000000..c22b35d Binary files /dev/null and b/flags/flags-iso/flat/icns/CK.icns differ diff --git a/flags/flags-iso/flat/icns/CL.icns b/flags/flags-iso/flat/icns/CL.icns new file mode 100644 index 0000000..074d3c2 Binary files /dev/null and b/flags/flags-iso/flat/icns/CL.icns differ diff --git a/flags/flags-iso/flat/icns/CM.icns b/flags/flags-iso/flat/icns/CM.icns new file mode 100644 index 0000000..312ebff Binary files /dev/null and b/flags/flags-iso/flat/icns/CM.icns differ diff --git a/flags/flags-iso/flat/icns/CN.icns b/flags/flags-iso/flat/icns/CN.icns new file mode 100644 index 0000000..7a8f6af Binary files /dev/null and b/flags/flags-iso/flat/icns/CN.icns differ diff --git a/flags/flags-iso/flat/icns/CO.icns b/flags/flags-iso/flat/icns/CO.icns new file mode 100644 index 0000000..4d9be46 Binary files /dev/null and b/flags/flags-iso/flat/icns/CO.icns differ diff --git a/flags/flags-iso/flat/icns/CR.icns b/flags/flags-iso/flat/icns/CR.icns new file mode 100644 index 0000000..668903f Binary files /dev/null and b/flags/flags-iso/flat/icns/CR.icns differ diff --git a/flags/flags-iso/flat/icns/CU.icns b/flags/flags-iso/flat/icns/CU.icns new file mode 100644 index 0000000..e6ff79f Binary files /dev/null and b/flags/flags-iso/flat/icns/CU.icns differ diff --git a/flags/flags-iso/flat/icns/CV.icns b/flags/flags-iso/flat/icns/CV.icns new file mode 100644 index 0000000..88e73df Binary files /dev/null and b/flags/flags-iso/flat/icns/CV.icns differ diff --git a/flags/flags-iso/flat/icns/CX.icns b/flags/flags-iso/flat/icns/CX.icns new file mode 100644 index 0000000..10050e4 Binary files /dev/null and b/flags/flags-iso/flat/icns/CX.icns differ diff --git a/flags/flags-iso/flat/icns/CY.icns b/flags/flags-iso/flat/icns/CY.icns new file mode 100644 index 0000000..fd571a5 Binary files /dev/null and b/flags/flags-iso/flat/icns/CY.icns differ diff --git a/flags/flags-iso/flat/icns/CZ.icns b/flags/flags-iso/flat/icns/CZ.icns new file mode 100644 index 0000000..0965d64 Binary files /dev/null and b/flags/flags-iso/flat/icns/CZ.icns differ diff --git a/flags/flags-iso/flat/icns/DE.icns b/flags/flags-iso/flat/icns/DE.icns new file mode 100644 index 0000000..53fc8ac Binary files /dev/null and b/flags/flags-iso/flat/icns/DE.icns differ diff --git a/flags/flags-iso/flat/icns/DJ.icns b/flags/flags-iso/flat/icns/DJ.icns new file mode 100644 index 0000000..64b0bf9 Binary files /dev/null and b/flags/flags-iso/flat/icns/DJ.icns differ diff --git a/flags/flags-iso/flat/icns/DK.icns b/flags/flags-iso/flat/icns/DK.icns new file mode 100644 index 0000000..8518b55 Binary files /dev/null and b/flags/flags-iso/flat/icns/DK.icns differ diff --git a/flags/flags-iso/flat/icns/DM.icns b/flags/flags-iso/flat/icns/DM.icns new file mode 100644 index 0000000..832a177 Binary files /dev/null and b/flags/flags-iso/flat/icns/DM.icns differ diff --git a/flags/flags-iso/flat/icns/DO.icns b/flags/flags-iso/flat/icns/DO.icns new file mode 100644 index 0000000..2cd5737 Binary files /dev/null and b/flags/flags-iso/flat/icns/DO.icns differ diff --git a/flags/flags-iso/flat/icns/DZ.icns b/flags/flags-iso/flat/icns/DZ.icns new file mode 100644 index 0000000..7fdfddd Binary files /dev/null and b/flags/flags-iso/flat/icns/DZ.icns differ diff --git a/flags/flags-iso/flat/icns/EC.icns b/flags/flags-iso/flat/icns/EC.icns new file mode 100644 index 0000000..81fcac2 Binary files /dev/null and b/flags/flags-iso/flat/icns/EC.icns differ diff --git a/flags/flags-iso/flat/icns/EE.icns b/flags/flags-iso/flat/icns/EE.icns new file mode 100644 index 0000000..6b77365 Binary files /dev/null and b/flags/flags-iso/flat/icns/EE.icns differ diff --git a/flags/flags-iso/flat/icns/EG.icns b/flags/flags-iso/flat/icns/EG.icns new file mode 100644 index 0000000..72b0f49 Binary files /dev/null and b/flags/flags-iso/flat/icns/EG.icns differ diff --git a/flags/flags-iso/flat/icns/EH.icns b/flags/flags-iso/flat/icns/EH.icns new file mode 100644 index 0000000..b60956b Binary files /dev/null and b/flags/flags-iso/flat/icns/EH.icns differ diff --git a/flags/flags-iso/flat/icns/ER.icns b/flags/flags-iso/flat/icns/ER.icns new file mode 100644 index 0000000..807deaf Binary files /dev/null and b/flags/flags-iso/flat/icns/ER.icns differ diff --git a/flags/flags-iso/flat/icns/ES.icns b/flags/flags-iso/flat/icns/ES.icns new file mode 100644 index 0000000..7dfae51 Binary files /dev/null and b/flags/flags-iso/flat/icns/ES.icns differ diff --git a/flags/flags-iso/flat/icns/ET.icns b/flags/flags-iso/flat/icns/ET.icns new file mode 100644 index 0000000..9860902 Binary files /dev/null and b/flags/flags-iso/flat/icns/ET.icns differ diff --git a/flags/flags-iso/flat/icns/EU.icns b/flags/flags-iso/flat/icns/EU.icns new file mode 100644 index 0000000..d063a49 Binary files /dev/null and b/flags/flags-iso/flat/icns/EU.icns differ diff --git a/flags/flags-iso/flat/icns/FI.icns b/flags/flags-iso/flat/icns/FI.icns new file mode 100644 index 0000000..db565b9 Binary files /dev/null and b/flags/flags-iso/flat/icns/FI.icns differ diff --git a/flags/flags-iso/flat/icns/FJ.icns b/flags/flags-iso/flat/icns/FJ.icns new file mode 100644 index 0000000..5382e11 Binary files /dev/null and b/flags/flags-iso/flat/icns/FJ.icns differ diff --git a/flags/flags-iso/flat/icns/FK.icns b/flags/flags-iso/flat/icns/FK.icns new file mode 100644 index 0000000..c0caddc Binary files /dev/null and b/flags/flags-iso/flat/icns/FK.icns differ diff --git a/flags/flags-iso/flat/icns/FM.icns b/flags/flags-iso/flat/icns/FM.icns new file mode 100644 index 0000000..dcd5068 Binary files /dev/null and b/flags/flags-iso/flat/icns/FM.icns differ diff --git a/flags/flags-iso/flat/icns/FO.icns b/flags/flags-iso/flat/icns/FO.icns new file mode 100644 index 0000000..dbe5e58 Binary files /dev/null and b/flags/flags-iso/flat/icns/FO.icns differ diff --git a/flags/flags-iso/flat/icns/FR.icns b/flags/flags-iso/flat/icns/FR.icns new file mode 100644 index 0000000..fd96924 Binary files /dev/null and b/flags/flags-iso/flat/icns/FR.icns differ diff --git a/flags/flags-iso/flat/icns/GA.icns b/flags/flags-iso/flat/icns/GA.icns new file mode 100644 index 0000000..aeb0d26 Binary files /dev/null and b/flags/flags-iso/flat/icns/GA.icns differ diff --git a/flags/flags-iso/flat/icns/GB.icns b/flags/flags-iso/flat/icns/GB.icns new file mode 100644 index 0000000..6f60a9b Binary files /dev/null and b/flags/flags-iso/flat/icns/GB.icns differ diff --git a/flags/flags-iso/flat/icns/GD.icns b/flags/flags-iso/flat/icns/GD.icns new file mode 100644 index 0000000..b5b9739 Binary files /dev/null and b/flags/flags-iso/flat/icns/GD.icns differ diff --git a/flags/flags-iso/flat/icns/GE.icns b/flags/flags-iso/flat/icns/GE.icns new file mode 100644 index 0000000..46f1d6e Binary files /dev/null and b/flags/flags-iso/flat/icns/GE.icns differ diff --git a/flags/flags-iso/flat/icns/GG.icns b/flags/flags-iso/flat/icns/GG.icns new file mode 100644 index 0000000..6b70daf Binary files /dev/null and b/flags/flags-iso/flat/icns/GG.icns differ diff --git a/flags/flags-iso/flat/icns/GH.icns b/flags/flags-iso/flat/icns/GH.icns new file mode 100644 index 0000000..ff1326f Binary files /dev/null and b/flags/flags-iso/flat/icns/GH.icns differ diff --git a/flags/flags-iso/flat/icns/GI.icns b/flags/flags-iso/flat/icns/GI.icns new file mode 100644 index 0000000..d27c1e9 Binary files /dev/null and b/flags/flags-iso/flat/icns/GI.icns differ diff --git a/flags/flags-iso/flat/icns/GL.icns b/flags/flags-iso/flat/icns/GL.icns new file mode 100644 index 0000000..15df6a0 Binary files /dev/null and b/flags/flags-iso/flat/icns/GL.icns differ diff --git a/flags/flags-iso/flat/icns/GM.icns b/flags/flags-iso/flat/icns/GM.icns new file mode 100644 index 0000000..d6a10c0 Binary files /dev/null and b/flags/flags-iso/flat/icns/GM.icns differ diff --git a/flags/flags-iso/flat/icns/GN.icns b/flags/flags-iso/flat/icns/GN.icns new file mode 100644 index 0000000..939f3e2 Binary files /dev/null and b/flags/flags-iso/flat/icns/GN.icns differ diff --git a/flags/flags-iso/flat/icns/GQ.icns b/flags/flags-iso/flat/icns/GQ.icns new file mode 100644 index 0000000..d5a3851 Binary files /dev/null and b/flags/flags-iso/flat/icns/GQ.icns differ diff --git a/flags/flags-iso/flat/icns/GR.icns b/flags/flags-iso/flat/icns/GR.icns new file mode 100644 index 0000000..33de70f Binary files /dev/null and b/flags/flags-iso/flat/icns/GR.icns differ diff --git a/flags/flags-iso/flat/icns/GS.icns b/flags/flags-iso/flat/icns/GS.icns new file mode 100644 index 0000000..13f1dd0 Binary files /dev/null and b/flags/flags-iso/flat/icns/GS.icns differ diff --git a/flags/flags-iso/flat/icns/GT.icns b/flags/flags-iso/flat/icns/GT.icns new file mode 100644 index 0000000..e80667c Binary files /dev/null and b/flags/flags-iso/flat/icns/GT.icns differ diff --git a/flags/flags-iso/flat/icns/GU.icns b/flags/flags-iso/flat/icns/GU.icns new file mode 100644 index 0000000..aa5f45e Binary files /dev/null and b/flags/flags-iso/flat/icns/GU.icns differ diff --git a/flags/flags-iso/flat/icns/GW.icns b/flags/flags-iso/flat/icns/GW.icns new file mode 100644 index 0000000..2728ce6 Binary files /dev/null and b/flags/flags-iso/flat/icns/GW.icns differ diff --git a/flags/flags-iso/flat/icns/GY.icns b/flags/flags-iso/flat/icns/GY.icns new file mode 100644 index 0000000..85c8acd Binary files /dev/null and b/flags/flags-iso/flat/icns/GY.icns differ diff --git a/flags/flags-iso/flat/icns/HK.icns b/flags/flags-iso/flat/icns/HK.icns new file mode 100644 index 0000000..e295167 Binary files /dev/null and b/flags/flags-iso/flat/icns/HK.icns differ diff --git a/flags/flags-iso/flat/icns/HN.icns b/flags/flags-iso/flat/icns/HN.icns new file mode 100644 index 0000000..a3180ee Binary files /dev/null and b/flags/flags-iso/flat/icns/HN.icns differ diff --git a/flags/flags-iso/flat/icns/HR.icns b/flags/flags-iso/flat/icns/HR.icns new file mode 100644 index 0000000..346ee62 Binary files /dev/null and b/flags/flags-iso/flat/icns/HR.icns differ diff --git a/flags/flags-iso/flat/icns/HT.icns b/flags/flags-iso/flat/icns/HT.icns new file mode 100644 index 0000000..ef4b7ce Binary files /dev/null and b/flags/flags-iso/flat/icns/HT.icns differ diff --git a/flags/flags-iso/flat/icns/HU.icns b/flags/flags-iso/flat/icns/HU.icns new file mode 100644 index 0000000..f6658da Binary files /dev/null and b/flags/flags-iso/flat/icns/HU.icns differ diff --git a/flags/flags-iso/flat/icns/ID.icns b/flags/flags-iso/flat/icns/ID.icns new file mode 100644 index 0000000..66522a4 Binary files /dev/null and b/flags/flags-iso/flat/icns/ID.icns differ diff --git a/flags/flags-iso/flat/icns/IE.icns b/flags/flags-iso/flat/icns/IE.icns new file mode 100644 index 0000000..9488251 Binary files /dev/null and b/flags/flags-iso/flat/icns/IE.icns differ diff --git a/flags/flags-iso/flat/icns/IL.icns b/flags/flags-iso/flat/icns/IL.icns new file mode 100644 index 0000000..0e4f447 Binary files /dev/null and b/flags/flags-iso/flat/icns/IL.icns differ diff --git a/flags/flags-iso/flat/icns/IM.icns b/flags/flags-iso/flat/icns/IM.icns new file mode 100644 index 0000000..0dfbbc6 Binary files /dev/null and b/flags/flags-iso/flat/icns/IM.icns differ diff --git a/flags/flags-iso/flat/icns/IN.icns b/flags/flags-iso/flat/icns/IN.icns new file mode 100644 index 0000000..405b822 Binary files /dev/null and b/flags/flags-iso/flat/icns/IN.icns differ diff --git a/flags/flags-iso/flat/icns/IQ.icns b/flags/flags-iso/flat/icns/IQ.icns new file mode 100644 index 0000000..0736da8 Binary files /dev/null and b/flags/flags-iso/flat/icns/IQ.icns differ diff --git a/flags/flags-iso/flat/icns/IR.icns b/flags/flags-iso/flat/icns/IR.icns new file mode 100644 index 0000000..d67b7e5 Binary files /dev/null and b/flags/flags-iso/flat/icns/IR.icns differ diff --git a/flags/flags-iso/flat/icns/IS.icns b/flags/flags-iso/flat/icns/IS.icns new file mode 100644 index 0000000..86e3dcb Binary files /dev/null and b/flags/flags-iso/flat/icns/IS.icns differ diff --git a/flags/flags-iso/flat/icns/IT.icns b/flags/flags-iso/flat/icns/IT.icns new file mode 100644 index 0000000..c81f96a Binary files /dev/null and b/flags/flags-iso/flat/icns/IT.icns differ diff --git a/flags/flags-iso/flat/icns/JE.icns b/flags/flags-iso/flat/icns/JE.icns new file mode 100644 index 0000000..6b7ebdb Binary files /dev/null and b/flags/flags-iso/flat/icns/JE.icns differ diff --git a/flags/flags-iso/flat/icns/JM.icns b/flags/flags-iso/flat/icns/JM.icns new file mode 100644 index 0000000..625da47 Binary files /dev/null and b/flags/flags-iso/flat/icns/JM.icns differ diff --git a/flags/flags-iso/flat/icns/JO.icns b/flags/flags-iso/flat/icns/JO.icns new file mode 100644 index 0000000..19873d6 Binary files /dev/null and b/flags/flags-iso/flat/icns/JO.icns differ diff --git a/flags/flags-iso/flat/icns/JP.icns b/flags/flags-iso/flat/icns/JP.icns new file mode 100644 index 0000000..a2087e5 Binary files /dev/null and b/flags/flags-iso/flat/icns/JP.icns differ diff --git a/flags/flags-iso/flat/icns/KE.icns b/flags/flags-iso/flat/icns/KE.icns new file mode 100644 index 0000000..233410d Binary files /dev/null and b/flags/flags-iso/flat/icns/KE.icns differ diff --git a/flags/flags-iso/flat/icns/KG.icns b/flags/flags-iso/flat/icns/KG.icns new file mode 100644 index 0000000..1279853 Binary files /dev/null and b/flags/flags-iso/flat/icns/KG.icns differ diff --git a/flags/flags-iso/flat/icns/KH.icns b/flags/flags-iso/flat/icns/KH.icns new file mode 100644 index 0000000..6cd9e54 Binary files /dev/null and b/flags/flags-iso/flat/icns/KH.icns differ diff --git a/flags/flags-iso/flat/icns/KI.icns b/flags/flags-iso/flat/icns/KI.icns new file mode 100644 index 0000000..51b85d8 Binary files /dev/null and b/flags/flags-iso/flat/icns/KI.icns differ diff --git a/flags/flags-iso/flat/icns/KM.icns b/flags/flags-iso/flat/icns/KM.icns new file mode 100644 index 0000000..d718595 Binary files /dev/null and b/flags/flags-iso/flat/icns/KM.icns differ diff --git a/flags/flags-iso/flat/icns/KN.icns b/flags/flags-iso/flat/icns/KN.icns new file mode 100644 index 0000000..f4001c9 Binary files /dev/null and b/flags/flags-iso/flat/icns/KN.icns differ diff --git a/flags/flags-iso/flat/icns/KP.icns b/flags/flags-iso/flat/icns/KP.icns new file mode 100644 index 0000000..81a95a3 Binary files /dev/null and b/flags/flags-iso/flat/icns/KP.icns differ diff --git a/flags/flags-iso/flat/icns/KR.icns b/flags/flags-iso/flat/icns/KR.icns new file mode 100644 index 0000000..52ce69c Binary files /dev/null and b/flags/flags-iso/flat/icns/KR.icns differ diff --git a/flags/flags-iso/flat/icns/KW.icns b/flags/flags-iso/flat/icns/KW.icns new file mode 100644 index 0000000..612bbc4 Binary files /dev/null and b/flags/flags-iso/flat/icns/KW.icns differ diff --git a/flags/flags-iso/flat/icns/KY.icns b/flags/flags-iso/flat/icns/KY.icns new file mode 100644 index 0000000..32a9eff Binary files /dev/null and b/flags/flags-iso/flat/icns/KY.icns differ diff --git a/flags/flags-iso/flat/icns/KZ.icns b/flags/flags-iso/flat/icns/KZ.icns new file mode 100644 index 0000000..3358d88 Binary files /dev/null and b/flags/flags-iso/flat/icns/KZ.icns differ diff --git a/flags/flags-iso/flat/icns/LA.icns b/flags/flags-iso/flat/icns/LA.icns new file mode 100644 index 0000000..2f9f326 Binary files /dev/null and b/flags/flags-iso/flat/icns/LA.icns differ diff --git a/flags/flags-iso/flat/icns/LB.icns b/flags/flags-iso/flat/icns/LB.icns new file mode 100644 index 0000000..fd2c085 Binary files /dev/null and b/flags/flags-iso/flat/icns/LB.icns differ diff --git a/flags/flags-iso/flat/icns/LC.icns b/flags/flags-iso/flat/icns/LC.icns new file mode 100644 index 0000000..2cdd1dc Binary files /dev/null and b/flags/flags-iso/flat/icns/LC.icns differ diff --git a/flags/flags-iso/flat/icns/LI.icns b/flags/flags-iso/flat/icns/LI.icns new file mode 100644 index 0000000..e3bf91a Binary files /dev/null and b/flags/flags-iso/flat/icns/LI.icns differ diff --git a/flags/flags-iso/flat/icns/LK.icns b/flags/flags-iso/flat/icns/LK.icns new file mode 100644 index 0000000..d0ade29 Binary files /dev/null and b/flags/flags-iso/flat/icns/LK.icns differ diff --git a/flags/flags-iso/flat/icns/LR.icns b/flags/flags-iso/flat/icns/LR.icns new file mode 100644 index 0000000..26f68e5 Binary files /dev/null and b/flags/flags-iso/flat/icns/LR.icns differ diff --git a/flags/flags-iso/flat/icns/LS.icns b/flags/flags-iso/flat/icns/LS.icns new file mode 100644 index 0000000..39e8a1c Binary files /dev/null and b/flags/flags-iso/flat/icns/LS.icns differ diff --git a/flags/flags-iso/flat/icns/LT.icns b/flags/flags-iso/flat/icns/LT.icns new file mode 100644 index 0000000..8d0ab1a Binary files /dev/null and b/flags/flags-iso/flat/icns/LT.icns differ diff --git a/flags/flags-iso/flat/icns/LU.icns b/flags/flags-iso/flat/icns/LU.icns new file mode 100644 index 0000000..c8931d9 Binary files /dev/null and b/flags/flags-iso/flat/icns/LU.icns differ diff --git a/flags/flags-iso/flat/icns/LV.icns b/flags/flags-iso/flat/icns/LV.icns new file mode 100644 index 0000000..5ee92b0 Binary files /dev/null and b/flags/flags-iso/flat/icns/LV.icns differ diff --git a/flags/flags-iso/flat/icns/LY.icns b/flags/flags-iso/flat/icns/LY.icns new file mode 100644 index 0000000..ccb80a3 Binary files /dev/null and b/flags/flags-iso/flat/icns/LY.icns differ diff --git a/flags/flags-iso/flat/icns/MA.icns b/flags/flags-iso/flat/icns/MA.icns new file mode 100644 index 0000000..b9e9d9c Binary files /dev/null and b/flags/flags-iso/flat/icns/MA.icns differ diff --git a/flags/flags-iso/flat/icns/MC.icns b/flags/flags-iso/flat/icns/MC.icns new file mode 100644 index 0000000..66522a4 Binary files /dev/null and b/flags/flags-iso/flat/icns/MC.icns differ diff --git a/flags/flags-iso/flat/icns/MD.icns b/flags/flags-iso/flat/icns/MD.icns new file mode 100644 index 0000000..b7a478e Binary files /dev/null and b/flags/flags-iso/flat/icns/MD.icns differ diff --git a/flags/flags-iso/flat/icns/ME.icns b/flags/flags-iso/flat/icns/ME.icns new file mode 100644 index 0000000..360d9a6 Binary files /dev/null and b/flags/flags-iso/flat/icns/ME.icns differ diff --git a/flags/flags-iso/flat/icns/MG.icns b/flags/flags-iso/flat/icns/MG.icns new file mode 100644 index 0000000..ec942dc Binary files /dev/null and b/flags/flags-iso/flat/icns/MG.icns differ diff --git a/flags/flags-iso/flat/icns/MH.icns b/flags/flags-iso/flat/icns/MH.icns new file mode 100644 index 0000000..28cae1a Binary files /dev/null and b/flags/flags-iso/flat/icns/MH.icns differ diff --git a/flags/flags-iso/flat/icns/MK.icns b/flags/flags-iso/flat/icns/MK.icns new file mode 100644 index 0000000..05e9398 Binary files /dev/null and b/flags/flags-iso/flat/icns/MK.icns differ diff --git a/flags/flags-iso/flat/icns/ML.icns b/flags/flags-iso/flat/icns/ML.icns new file mode 100644 index 0000000..575f4eb Binary files /dev/null and b/flags/flags-iso/flat/icns/ML.icns differ diff --git a/flags/flags-iso/flat/icns/MM.icns b/flags/flags-iso/flat/icns/MM.icns new file mode 100644 index 0000000..e5be0ba Binary files /dev/null and b/flags/flags-iso/flat/icns/MM.icns differ diff --git a/flags/flags-iso/flat/icns/MN.icns b/flags/flags-iso/flat/icns/MN.icns new file mode 100644 index 0000000..f8d8d83 Binary files /dev/null and b/flags/flags-iso/flat/icns/MN.icns differ diff --git a/flags/flags-iso/flat/icns/MO.icns b/flags/flags-iso/flat/icns/MO.icns new file mode 100644 index 0000000..cddd0c7 Binary files /dev/null and b/flags/flags-iso/flat/icns/MO.icns differ diff --git a/flags/flags-iso/flat/icns/MP.icns b/flags/flags-iso/flat/icns/MP.icns new file mode 100644 index 0000000..c328090 Binary files /dev/null and b/flags/flags-iso/flat/icns/MP.icns differ diff --git a/flags/flags-iso/flat/icns/MR.icns b/flags/flags-iso/flat/icns/MR.icns new file mode 100644 index 0000000..397fde0 Binary files /dev/null and b/flags/flags-iso/flat/icns/MR.icns differ diff --git a/flags/flags-iso/flat/icns/MS.icns b/flags/flags-iso/flat/icns/MS.icns new file mode 100644 index 0000000..18afd0f Binary files /dev/null and b/flags/flags-iso/flat/icns/MS.icns differ diff --git a/flags/flags-iso/flat/icns/MT.icns b/flags/flags-iso/flat/icns/MT.icns new file mode 100644 index 0000000..b6fff47 Binary files /dev/null and b/flags/flags-iso/flat/icns/MT.icns differ diff --git a/flags/flags-iso/flat/icns/MU.icns b/flags/flags-iso/flat/icns/MU.icns new file mode 100644 index 0000000..3df74fa Binary files /dev/null and b/flags/flags-iso/flat/icns/MU.icns differ diff --git a/flags/flags-iso/flat/icns/MV.icns b/flags/flags-iso/flat/icns/MV.icns new file mode 100644 index 0000000..6dbaa40 Binary files /dev/null and b/flags/flags-iso/flat/icns/MV.icns differ diff --git a/flags/flags-iso/flat/icns/MW.icns b/flags/flags-iso/flat/icns/MW.icns new file mode 100644 index 0000000..c21ab3a Binary files /dev/null and b/flags/flags-iso/flat/icns/MW.icns differ diff --git a/flags/flags-iso/flat/icns/MX.icns b/flags/flags-iso/flat/icns/MX.icns new file mode 100644 index 0000000..6972e1f Binary files /dev/null and b/flags/flags-iso/flat/icns/MX.icns differ diff --git a/flags/flags-iso/flat/icns/MY.icns b/flags/flags-iso/flat/icns/MY.icns new file mode 100644 index 0000000..278af24 Binary files /dev/null and b/flags/flags-iso/flat/icns/MY.icns differ diff --git a/flags/flags-iso/flat/icns/MZ.icns b/flags/flags-iso/flat/icns/MZ.icns new file mode 100644 index 0000000..72ab6f8 Binary files /dev/null and b/flags/flags-iso/flat/icns/MZ.icns differ diff --git a/flags/flags-iso/flat/icns/NA.icns b/flags/flags-iso/flat/icns/NA.icns new file mode 100644 index 0000000..187091e Binary files /dev/null and b/flags/flags-iso/flat/icns/NA.icns differ diff --git a/flags/flags-iso/flat/icns/NC.icns b/flags/flags-iso/flat/icns/NC.icns new file mode 100644 index 0000000..449be0c Binary files /dev/null and b/flags/flags-iso/flat/icns/NC.icns differ diff --git a/flags/flags-iso/flat/icns/NE.icns b/flags/flags-iso/flat/icns/NE.icns new file mode 100644 index 0000000..6e0f201 Binary files /dev/null and b/flags/flags-iso/flat/icns/NE.icns differ diff --git a/flags/flags-iso/flat/icns/NF.icns b/flags/flags-iso/flat/icns/NF.icns new file mode 100644 index 0000000..d8ddd03 Binary files /dev/null and b/flags/flags-iso/flat/icns/NF.icns differ diff --git a/flags/flags-iso/flat/icns/NG.icns b/flags/flags-iso/flat/icns/NG.icns new file mode 100644 index 0000000..c67059a Binary files /dev/null and b/flags/flags-iso/flat/icns/NG.icns differ diff --git a/flags/flags-iso/flat/icns/NI.icns b/flags/flags-iso/flat/icns/NI.icns new file mode 100644 index 0000000..da7932e Binary files /dev/null and b/flags/flags-iso/flat/icns/NI.icns differ diff --git a/flags/flags-iso/flat/icns/NL.icns b/flags/flags-iso/flat/icns/NL.icns new file mode 100644 index 0000000..192c217 Binary files /dev/null and b/flags/flags-iso/flat/icns/NL.icns differ diff --git a/flags/flags-iso/flat/icns/NO.icns b/flags/flags-iso/flat/icns/NO.icns new file mode 100644 index 0000000..cd57689 Binary files /dev/null and b/flags/flags-iso/flat/icns/NO.icns differ diff --git a/flags/flags-iso/flat/icns/NP.icns b/flags/flags-iso/flat/icns/NP.icns new file mode 100644 index 0000000..1bd1c54 Binary files /dev/null and b/flags/flags-iso/flat/icns/NP.icns differ diff --git a/flags/flags-iso/flat/icns/NR.icns b/flags/flags-iso/flat/icns/NR.icns new file mode 100644 index 0000000..474beca Binary files /dev/null and b/flags/flags-iso/flat/icns/NR.icns differ diff --git a/flags/flags-iso/flat/icns/NU.icns b/flags/flags-iso/flat/icns/NU.icns new file mode 100644 index 0000000..e3c5b37 Binary files /dev/null and b/flags/flags-iso/flat/icns/NU.icns differ diff --git a/flags/flags-iso/flat/icns/NZ.icns b/flags/flags-iso/flat/icns/NZ.icns new file mode 100644 index 0000000..62ef9e5 Binary files /dev/null and b/flags/flags-iso/flat/icns/NZ.icns differ diff --git a/flags/flags-iso/flat/icns/OM.icns b/flags/flags-iso/flat/icns/OM.icns new file mode 100644 index 0000000..1a09a65 Binary files /dev/null and b/flags/flags-iso/flat/icns/OM.icns differ diff --git a/flags/flags-iso/flat/icns/PA.icns b/flags/flags-iso/flat/icns/PA.icns new file mode 100644 index 0000000..2a272d7 Binary files /dev/null and b/flags/flags-iso/flat/icns/PA.icns differ diff --git a/flags/flags-iso/flat/icns/PE.icns b/flags/flags-iso/flat/icns/PE.icns new file mode 100644 index 0000000..0841265 Binary files /dev/null and b/flags/flags-iso/flat/icns/PE.icns differ diff --git a/flags/flags-iso/flat/icns/PF.icns b/flags/flags-iso/flat/icns/PF.icns new file mode 100644 index 0000000..bec5e8d Binary files /dev/null and b/flags/flags-iso/flat/icns/PF.icns differ diff --git a/flags/flags-iso/flat/icns/PG.icns b/flags/flags-iso/flat/icns/PG.icns new file mode 100644 index 0000000..b6aae0e Binary files /dev/null and b/flags/flags-iso/flat/icns/PG.icns differ diff --git a/flags/flags-iso/flat/icns/PH.icns b/flags/flags-iso/flat/icns/PH.icns new file mode 100644 index 0000000..6259df2 Binary files /dev/null and b/flags/flags-iso/flat/icns/PH.icns differ diff --git a/flags/flags-iso/flat/icns/PK.icns b/flags/flags-iso/flat/icns/PK.icns new file mode 100644 index 0000000..a3d8745 Binary files /dev/null and b/flags/flags-iso/flat/icns/PK.icns differ diff --git a/flags/flags-iso/flat/icns/PL.icns b/flags/flags-iso/flat/icns/PL.icns new file mode 100644 index 0000000..bf67ef4 Binary files /dev/null and b/flags/flags-iso/flat/icns/PL.icns differ diff --git a/flags/flags-iso/flat/icns/PN.icns b/flags/flags-iso/flat/icns/PN.icns new file mode 100644 index 0000000..49c0a8d Binary files /dev/null and b/flags/flags-iso/flat/icns/PN.icns differ diff --git a/flags/flags-iso/flat/icns/PR.icns b/flags/flags-iso/flat/icns/PR.icns new file mode 100644 index 0000000..3b9ad5a Binary files /dev/null and b/flags/flags-iso/flat/icns/PR.icns differ diff --git a/flags/flags-iso/flat/icns/PS.icns b/flags/flags-iso/flat/icns/PS.icns new file mode 100644 index 0000000..ab0d897 Binary files /dev/null and b/flags/flags-iso/flat/icns/PS.icns differ diff --git a/flags/flags-iso/flat/icns/PT.icns b/flags/flags-iso/flat/icns/PT.icns new file mode 100644 index 0000000..fae7e13 Binary files /dev/null and b/flags/flags-iso/flat/icns/PT.icns differ diff --git a/flags/flags-iso/flat/icns/PW.icns b/flags/flags-iso/flat/icns/PW.icns new file mode 100644 index 0000000..3c7b128 Binary files /dev/null and b/flags/flags-iso/flat/icns/PW.icns differ diff --git a/flags/flags-iso/flat/icns/PY.icns b/flags/flags-iso/flat/icns/PY.icns new file mode 100644 index 0000000..bb26553 Binary files /dev/null and b/flags/flags-iso/flat/icns/PY.icns differ diff --git a/flags/flags-iso/flat/icns/QA.icns b/flags/flags-iso/flat/icns/QA.icns new file mode 100644 index 0000000..925d6c0 Binary files /dev/null and b/flags/flags-iso/flat/icns/QA.icns differ diff --git a/flags/flags-iso/flat/icns/RO.icns b/flags/flags-iso/flat/icns/RO.icns new file mode 100644 index 0000000..171fc73 Binary files /dev/null and b/flags/flags-iso/flat/icns/RO.icns differ diff --git a/flags/flags-iso/flat/icns/RS.icns b/flags/flags-iso/flat/icns/RS.icns new file mode 100644 index 0000000..b13fb39 Binary files /dev/null and b/flags/flags-iso/flat/icns/RS.icns differ diff --git a/flags/flags-iso/flat/icns/RU.icns b/flags/flags-iso/flat/icns/RU.icns new file mode 100644 index 0000000..8244075 Binary files /dev/null and b/flags/flags-iso/flat/icns/RU.icns differ diff --git a/flags/flags-iso/flat/icns/RW.icns b/flags/flags-iso/flat/icns/RW.icns new file mode 100644 index 0000000..bd49ec6 Binary files /dev/null and b/flags/flags-iso/flat/icns/RW.icns differ diff --git a/flags/flags-iso/flat/icns/SA.icns b/flags/flags-iso/flat/icns/SA.icns new file mode 100644 index 0000000..edb2dec Binary files /dev/null and b/flags/flags-iso/flat/icns/SA.icns differ diff --git a/flags/flags-iso/flat/icns/SB.icns b/flags/flags-iso/flat/icns/SB.icns new file mode 100644 index 0000000..9ced476 Binary files /dev/null and b/flags/flags-iso/flat/icns/SB.icns differ diff --git a/flags/flags-iso/flat/icns/SC.icns b/flags/flags-iso/flat/icns/SC.icns new file mode 100644 index 0000000..c82f290 Binary files /dev/null and b/flags/flags-iso/flat/icns/SC.icns differ diff --git a/flags/flags-iso/flat/icns/SD.icns b/flags/flags-iso/flat/icns/SD.icns new file mode 100644 index 0000000..539558a Binary files /dev/null and b/flags/flags-iso/flat/icns/SD.icns differ diff --git a/flags/flags-iso/flat/icns/SE.icns b/flags/flags-iso/flat/icns/SE.icns new file mode 100644 index 0000000..f01095e Binary files /dev/null and b/flags/flags-iso/flat/icns/SE.icns differ diff --git a/flags/flags-iso/flat/icns/SG.icns b/flags/flags-iso/flat/icns/SG.icns new file mode 100644 index 0000000..9b8e1c3 Binary files /dev/null and b/flags/flags-iso/flat/icns/SG.icns differ diff --git a/flags/flags-iso/flat/icns/SH.icns b/flags/flags-iso/flat/icns/SH.icns new file mode 100644 index 0000000..3d95a21 Binary files /dev/null and b/flags/flags-iso/flat/icns/SH.icns differ diff --git a/flags/flags-iso/flat/icns/SI.icns b/flags/flags-iso/flat/icns/SI.icns new file mode 100644 index 0000000..eba99e5 Binary files /dev/null and b/flags/flags-iso/flat/icns/SI.icns differ diff --git a/flags/flags-iso/flat/icns/SK.icns b/flags/flags-iso/flat/icns/SK.icns new file mode 100644 index 0000000..b1338f6 Binary files /dev/null and b/flags/flags-iso/flat/icns/SK.icns differ diff --git a/flags/flags-iso/flat/icns/SL.icns b/flags/flags-iso/flat/icns/SL.icns new file mode 100644 index 0000000..d3ebb8c Binary files /dev/null and b/flags/flags-iso/flat/icns/SL.icns differ diff --git a/flags/flags-iso/flat/icns/SM.icns b/flags/flags-iso/flat/icns/SM.icns new file mode 100644 index 0000000..490ad8a Binary files /dev/null and b/flags/flags-iso/flat/icns/SM.icns differ diff --git a/flags/flags-iso/flat/icns/SN.icns b/flags/flags-iso/flat/icns/SN.icns new file mode 100644 index 0000000..0a8fe28 Binary files /dev/null and b/flags/flags-iso/flat/icns/SN.icns differ diff --git a/flags/flags-iso/flat/icns/SO.icns b/flags/flags-iso/flat/icns/SO.icns new file mode 100644 index 0000000..1cd15cb Binary files /dev/null and b/flags/flags-iso/flat/icns/SO.icns differ diff --git a/flags/flags-iso/flat/icns/SR.icns b/flags/flags-iso/flat/icns/SR.icns new file mode 100644 index 0000000..7cba06d Binary files /dev/null and b/flags/flags-iso/flat/icns/SR.icns differ diff --git a/flags/flags-iso/flat/icns/SS.icns b/flags/flags-iso/flat/icns/SS.icns new file mode 100644 index 0000000..597984d Binary files /dev/null and b/flags/flags-iso/flat/icns/SS.icns differ diff --git a/flags/flags-iso/flat/icns/ST.icns b/flags/flags-iso/flat/icns/ST.icns new file mode 100644 index 0000000..4f03b6b Binary files /dev/null and b/flags/flags-iso/flat/icns/ST.icns differ diff --git a/flags/flags-iso/flat/icns/SV.icns b/flags/flags-iso/flat/icns/SV.icns new file mode 100644 index 0000000..9b3caea Binary files /dev/null and b/flags/flags-iso/flat/icns/SV.icns differ diff --git a/flags/flags-iso/flat/icns/SY.icns b/flags/flags-iso/flat/icns/SY.icns new file mode 100644 index 0000000..ac6519e Binary files /dev/null and b/flags/flags-iso/flat/icns/SY.icns differ diff --git a/flags/flags-iso/flat/icns/SZ.icns b/flags/flags-iso/flat/icns/SZ.icns new file mode 100644 index 0000000..3867796 Binary files /dev/null and b/flags/flags-iso/flat/icns/SZ.icns differ diff --git a/flags/flags-iso/flat/icns/TC.icns b/flags/flags-iso/flat/icns/TC.icns new file mode 100644 index 0000000..597b4ec Binary files /dev/null and b/flags/flags-iso/flat/icns/TC.icns differ diff --git a/flags/flags-iso/flat/icns/TD.icns b/flags/flags-iso/flat/icns/TD.icns new file mode 100644 index 0000000..2107e1d Binary files /dev/null and b/flags/flags-iso/flat/icns/TD.icns differ diff --git a/flags/flags-iso/flat/icns/TF.icns b/flags/flags-iso/flat/icns/TF.icns new file mode 100644 index 0000000..8e83108 Binary files /dev/null and b/flags/flags-iso/flat/icns/TF.icns differ diff --git a/flags/flags-iso/flat/icns/TG.icns b/flags/flags-iso/flat/icns/TG.icns new file mode 100644 index 0000000..30ed77f Binary files /dev/null and b/flags/flags-iso/flat/icns/TG.icns differ diff --git a/flags/flags-iso/flat/icns/TH.icns b/flags/flags-iso/flat/icns/TH.icns new file mode 100644 index 0000000..3a79eb6 Binary files /dev/null and b/flags/flags-iso/flat/icns/TH.icns differ diff --git a/flags/flags-iso/flat/icns/TJ.icns b/flags/flags-iso/flat/icns/TJ.icns new file mode 100644 index 0000000..6d0fc7a Binary files /dev/null and b/flags/flags-iso/flat/icns/TJ.icns differ diff --git a/flags/flags-iso/flat/icns/TK.icns b/flags/flags-iso/flat/icns/TK.icns new file mode 100644 index 0000000..5dcd13c Binary files /dev/null and b/flags/flags-iso/flat/icns/TK.icns differ diff --git a/flags/flags-iso/flat/icns/TL.icns b/flags/flags-iso/flat/icns/TL.icns new file mode 100644 index 0000000..f4dfa77 Binary files /dev/null and b/flags/flags-iso/flat/icns/TL.icns differ diff --git a/flags/flags-iso/flat/icns/TM.icns b/flags/flags-iso/flat/icns/TM.icns new file mode 100644 index 0000000..5d9d849 Binary files /dev/null and b/flags/flags-iso/flat/icns/TM.icns differ diff --git a/flags/flags-iso/flat/icns/TN.icns b/flags/flags-iso/flat/icns/TN.icns new file mode 100644 index 0000000..2fcef9e Binary files /dev/null and b/flags/flags-iso/flat/icns/TN.icns differ diff --git a/flags/flags-iso/flat/icns/TO.icns b/flags/flags-iso/flat/icns/TO.icns new file mode 100644 index 0000000..2f84b27 Binary files /dev/null and b/flags/flags-iso/flat/icns/TO.icns differ diff --git a/flags/flags-iso/flat/icns/TR.icns b/flags/flags-iso/flat/icns/TR.icns new file mode 100644 index 0000000..65df45f Binary files /dev/null and b/flags/flags-iso/flat/icns/TR.icns differ diff --git a/flags/flags-iso/flat/icns/TT.icns b/flags/flags-iso/flat/icns/TT.icns new file mode 100644 index 0000000..17f4944 Binary files /dev/null and b/flags/flags-iso/flat/icns/TT.icns differ diff --git a/flags/flags-iso/flat/icns/TV.icns b/flags/flags-iso/flat/icns/TV.icns new file mode 100644 index 0000000..1d16ebb Binary files /dev/null and b/flags/flags-iso/flat/icns/TV.icns differ diff --git a/flags/flags-iso/flat/icns/TW.icns b/flags/flags-iso/flat/icns/TW.icns new file mode 100644 index 0000000..6ff528c Binary files /dev/null and b/flags/flags-iso/flat/icns/TW.icns differ diff --git a/flags/flags-iso/flat/icns/TZ.icns b/flags/flags-iso/flat/icns/TZ.icns new file mode 100644 index 0000000..9fcab79 Binary files /dev/null and b/flags/flags-iso/flat/icns/TZ.icns differ diff --git a/flags/flags-iso/flat/icns/UA.icns b/flags/flags-iso/flat/icns/UA.icns new file mode 100644 index 0000000..cbc4d31 Binary files /dev/null and b/flags/flags-iso/flat/icns/UA.icns differ diff --git a/flags/flags-iso/flat/icns/UG.icns b/flags/flags-iso/flat/icns/UG.icns new file mode 100644 index 0000000..21bada8 Binary files /dev/null and b/flags/flags-iso/flat/icns/UG.icns differ diff --git a/flags/flags-iso/flat/icns/US.icns b/flags/flags-iso/flat/icns/US.icns new file mode 100644 index 0000000..957d2de Binary files /dev/null and b/flags/flags-iso/flat/icns/US.icns differ diff --git a/flags/flags-iso/flat/icns/UY.icns b/flags/flags-iso/flat/icns/UY.icns new file mode 100644 index 0000000..d9abb81 Binary files /dev/null and b/flags/flags-iso/flat/icns/UY.icns differ diff --git a/flags/flags-iso/flat/icns/UZ.icns b/flags/flags-iso/flat/icns/UZ.icns new file mode 100644 index 0000000..fb0a553 Binary files /dev/null and b/flags/flags-iso/flat/icns/UZ.icns differ diff --git a/flags/flags-iso/flat/icns/VA.icns b/flags/flags-iso/flat/icns/VA.icns new file mode 100644 index 0000000..0e75328 Binary files /dev/null and b/flags/flags-iso/flat/icns/VA.icns differ diff --git a/flags/flags-iso/flat/icns/VC.icns b/flags/flags-iso/flat/icns/VC.icns new file mode 100644 index 0000000..460759c Binary files /dev/null and b/flags/flags-iso/flat/icns/VC.icns differ diff --git a/flags/flags-iso/flat/icns/VE.icns b/flags/flags-iso/flat/icns/VE.icns new file mode 100644 index 0000000..e2ee002 Binary files /dev/null and b/flags/flags-iso/flat/icns/VE.icns differ diff --git a/flags/flags-iso/flat/icns/VG.icns b/flags/flags-iso/flat/icns/VG.icns new file mode 100644 index 0000000..39ffac4 Binary files /dev/null and b/flags/flags-iso/flat/icns/VG.icns differ diff --git a/flags/flags-iso/flat/icns/VI.icns b/flags/flags-iso/flat/icns/VI.icns new file mode 100644 index 0000000..3dd332f Binary files /dev/null and b/flags/flags-iso/flat/icns/VI.icns differ diff --git a/flags/flags-iso/flat/icns/VN.icns b/flags/flags-iso/flat/icns/VN.icns new file mode 100644 index 0000000..657d0f8 Binary files /dev/null and b/flags/flags-iso/flat/icns/VN.icns differ diff --git a/flags/flags-iso/flat/icns/VU.icns b/flags/flags-iso/flat/icns/VU.icns new file mode 100644 index 0000000..8de77bb Binary files /dev/null and b/flags/flags-iso/flat/icns/VU.icns differ diff --git a/flags/flags-iso/flat/icns/WS.icns b/flags/flags-iso/flat/icns/WS.icns new file mode 100644 index 0000000..fc088e0 Binary files /dev/null and b/flags/flags-iso/flat/icns/WS.icns differ diff --git a/flags/flags-iso/flat/icns/YE.icns b/flags/flags-iso/flat/icns/YE.icns new file mode 100644 index 0000000..a0235d2 Binary files /dev/null and b/flags/flags-iso/flat/icns/YE.icns differ diff --git a/flags/flags-iso/flat/icns/YT.icns b/flags/flags-iso/flat/icns/YT.icns new file mode 100644 index 0000000..bd400bc Binary files /dev/null and b/flags/flags-iso/flat/icns/YT.icns differ diff --git a/flags/flags-iso/flat/icns/ZA.icns b/flags/flags-iso/flat/icns/ZA.icns new file mode 100644 index 0000000..8bb7eee Binary files /dev/null and b/flags/flags-iso/flat/icns/ZA.icns differ diff --git a/flags/flags-iso/flat/icns/ZM.icns b/flags/flags-iso/flat/icns/ZM.icns new file mode 100644 index 0000000..956cf16 Binary files /dev/null and b/flags/flags-iso/flat/icns/ZM.icns differ diff --git a/flags/flags-iso/flat/icns/ZW.icns b/flags/flags-iso/flat/icns/ZW.icns new file mode 100644 index 0000000..c40b4e9 Binary files /dev/null and b/flags/flags-iso/flat/icns/ZW.icns differ diff --git a/flags/flags-iso/flat/icns/_abkhazia.icns b/flags/flags-iso/flat/icns/_abkhazia.icns new file mode 100644 index 0000000..9de99d2 Binary files /dev/null and b/flags/flags-iso/flat/icns/_abkhazia.icns differ diff --git a/flags/flags-iso/flat/icns/_british-antarctic-territory.icns b/flags/flags-iso/flat/icns/_british-antarctic-territory.icns new file mode 100644 index 0000000..05f19b0 Binary files /dev/null and b/flags/flags-iso/flat/icns/_british-antarctic-territory.icns differ diff --git a/flags/flags-iso/flat/icns/_commonwealth.icns b/flags/flags-iso/flat/icns/_commonwealth.icns new file mode 100644 index 0000000..36403ad Binary files /dev/null and b/flags/flags-iso/flat/icns/_commonwealth.icns differ diff --git a/flags/flags-iso/flat/icns/_england.icns b/flags/flags-iso/flat/icns/_england.icns new file mode 100644 index 0000000..f5e37b2 Binary files /dev/null and b/flags/flags-iso/flat/icns/_england.icns differ diff --git a/flags/flags-iso/flat/icns/_gosquared.icns b/flags/flags-iso/flat/icns/_gosquared.icns new file mode 100644 index 0000000..db112e9 Binary files /dev/null and b/flags/flags-iso/flat/icns/_gosquared.icns differ diff --git a/flags/flags-iso/flat/icns/_kosovo.icns b/flags/flags-iso/flat/icns/_kosovo.icns new file mode 100644 index 0000000..97c15ca Binary files /dev/null and b/flags/flags-iso/flat/icns/_kosovo.icns differ diff --git a/flags/flags-iso/flat/icns/_mars.icns b/flags/flags-iso/flat/icns/_mars.icns new file mode 100644 index 0000000..c31e91a Binary files /dev/null and b/flags/flags-iso/flat/icns/_mars.icns differ diff --git a/flags/flags-iso/flat/icns/_nagorno-karabakh.icns b/flags/flags-iso/flat/icns/_nagorno-karabakh.icns new file mode 100644 index 0000000..2ddf244 Binary files /dev/null and b/flags/flags-iso/flat/icns/_nagorno-karabakh.icns differ diff --git a/flags/flags-iso/flat/icns/_nato.icns b/flags/flags-iso/flat/icns/_nato.icns new file mode 100644 index 0000000..59e4986 Binary files /dev/null and b/flags/flags-iso/flat/icns/_nato.icns differ diff --git a/flags/flags-iso/flat/icns/_northern-cyprus.icns b/flags/flags-iso/flat/icns/_northern-cyprus.icns new file mode 100644 index 0000000..b709a64 Binary files /dev/null and b/flags/flags-iso/flat/icns/_northern-cyprus.icns differ diff --git a/flags/flags-iso/flat/icns/_olympics.icns b/flags/flags-iso/flat/icns/_olympics.icns new file mode 100644 index 0000000..1c9615b Binary files /dev/null and b/flags/flags-iso/flat/icns/_olympics.icns differ diff --git a/flags/flags-iso/flat/icns/_red-cross.icns b/flags/flags-iso/flat/icns/_red-cross.icns new file mode 100644 index 0000000..0873ef7 Binary files /dev/null and b/flags/flags-iso/flat/icns/_red-cross.icns differ diff --git a/flags/flags-iso/flat/icns/_scotland.icns b/flags/flags-iso/flat/icns/_scotland.icns new file mode 100644 index 0000000..07ecadc Binary files /dev/null and b/flags/flags-iso/flat/icns/_scotland.icns differ diff --git a/flags/flags-iso/flat/icns/_somaliland.icns b/flags/flags-iso/flat/icns/_somaliland.icns new file mode 100644 index 0000000..3077537 Binary files /dev/null and b/flags/flags-iso/flat/icns/_somaliland.icns differ diff --git a/flags/flags-iso/flat/icns/_south-ossetia.icns b/flags/flags-iso/flat/icns/_south-ossetia.icns new file mode 100644 index 0000000..9d4c7d7 Binary files /dev/null and b/flags/flags-iso/flat/icns/_south-ossetia.icns differ diff --git a/flags/flags-iso/flat/icns/_united-nations.icns b/flags/flags-iso/flat/icns/_united-nations.icns new file mode 100644 index 0000000..de86916 Binary files /dev/null and b/flags/flags-iso/flat/icns/_united-nations.icns differ diff --git a/flags/flags-iso/flat/icns/_wales.icns b/flags/flags-iso/flat/icns/_wales.icns new file mode 100644 index 0000000..f9a31b7 Binary files /dev/null and b/flags/flags-iso/flat/icns/_wales.icns differ diff --git a/flags/flags-iso/flat/ico/.ico b/flags/flags-iso/flat/ico/.ico new file mode 100644 index 0000000..6b9e9d6 Binary files /dev/null and b/flags/flags-iso/flat/ico/.ico differ diff --git a/flags/flags-iso/flat/ico/AD.ico b/flags/flags-iso/flat/ico/AD.ico new file mode 100644 index 0000000..ae8ab18 Binary files /dev/null and b/flags/flags-iso/flat/ico/AD.ico differ diff --git a/flags/flags-iso/flat/ico/AE.ico b/flags/flags-iso/flat/ico/AE.ico new file mode 100644 index 0000000..d96ee3e Binary files /dev/null and b/flags/flags-iso/flat/ico/AE.ico differ diff --git a/flags/flags-iso/flat/ico/AF.ico b/flags/flags-iso/flat/ico/AF.ico new file mode 100644 index 0000000..9659d77 Binary files /dev/null and b/flags/flags-iso/flat/ico/AF.ico differ diff --git a/flags/flags-iso/flat/ico/AG.ico b/flags/flags-iso/flat/ico/AG.ico new file mode 100644 index 0000000..2899dcd Binary files /dev/null and b/flags/flags-iso/flat/ico/AG.ico differ diff --git a/flags/flags-iso/flat/ico/AI.ico b/flags/flags-iso/flat/ico/AI.ico new file mode 100644 index 0000000..7f30297 Binary files /dev/null and b/flags/flags-iso/flat/ico/AI.ico differ diff --git a/flags/flags-iso/flat/ico/AL.ico b/flags/flags-iso/flat/ico/AL.ico new file mode 100644 index 0000000..0ab5ed1 Binary files /dev/null and b/flags/flags-iso/flat/ico/AL.ico differ diff --git a/flags/flags-iso/flat/ico/AM.ico b/flags/flags-iso/flat/ico/AM.ico new file mode 100644 index 0000000..58df3a4 Binary files /dev/null and b/flags/flags-iso/flat/ico/AM.ico differ diff --git a/flags/flags-iso/flat/ico/AN.ico b/flags/flags-iso/flat/ico/AN.ico new file mode 100644 index 0000000..f910305 Binary files /dev/null and b/flags/flags-iso/flat/ico/AN.ico differ diff --git a/flags/flags-iso/flat/ico/AO.ico b/flags/flags-iso/flat/ico/AO.ico new file mode 100644 index 0000000..e6e1681 Binary files /dev/null and b/flags/flags-iso/flat/ico/AO.ico differ diff --git a/flags/flags-iso/flat/ico/AQ.ico b/flags/flags-iso/flat/ico/AQ.ico new file mode 100644 index 0000000..53a4fee Binary files /dev/null and b/flags/flags-iso/flat/ico/AQ.ico differ diff --git a/flags/flags-iso/flat/ico/AR.ico b/flags/flags-iso/flat/ico/AR.ico new file mode 100644 index 0000000..844cafb Binary files /dev/null and b/flags/flags-iso/flat/ico/AR.ico differ diff --git a/flags/flags-iso/flat/ico/AS.ico b/flags/flags-iso/flat/ico/AS.ico new file mode 100644 index 0000000..659962b Binary files /dev/null and b/flags/flags-iso/flat/ico/AS.ico differ diff --git a/flags/flags-iso/flat/ico/AT.ico b/flags/flags-iso/flat/ico/AT.ico new file mode 100644 index 0000000..232f9a4 Binary files /dev/null and b/flags/flags-iso/flat/ico/AT.ico differ diff --git a/flags/flags-iso/flat/ico/AU.ico b/flags/flags-iso/flat/ico/AU.ico new file mode 100644 index 0000000..d2d104b Binary files /dev/null and b/flags/flags-iso/flat/ico/AU.ico differ diff --git a/flags/flags-iso/flat/ico/AW.ico b/flags/flags-iso/flat/ico/AW.ico new file mode 100644 index 0000000..899c32a Binary files /dev/null and b/flags/flags-iso/flat/ico/AW.ico differ diff --git a/flags/flags-iso/flat/ico/AX.ico b/flags/flags-iso/flat/ico/AX.ico new file mode 100644 index 0000000..64c4f0e Binary files /dev/null and b/flags/flags-iso/flat/ico/AX.ico differ diff --git a/flags/flags-iso/flat/ico/AZ.ico b/flags/flags-iso/flat/ico/AZ.ico new file mode 100644 index 0000000..e8120cf Binary files /dev/null and b/flags/flags-iso/flat/ico/AZ.ico differ diff --git a/flags/flags-iso/flat/ico/BA.ico b/flags/flags-iso/flat/ico/BA.ico new file mode 100644 index 0000000..ca3ec12 Binary files /dev/null and b/flags/flags-iso/flat/ico/BA.ico differ diff --git a/flags/flags-iso/flat/ico/BB.ico b/flags/flags-iso/flat/ico/BB.ico new file mode 100644 index 0000000..42e0b5e Binary files /dev/null and b/flags/flags-iso/flat/ico/BB.ico differ diff --git a/flags/flags-iso/flat/ico/BD.ico b/flags/flags-iso/flat/ico/BD.ico new file mode 100644 index 0000000..054649b Binary files /dev/null and b/flags/flags-iso/flat/ico/BD.ico differ diff --git a/flags/flags-iso/flat/ico/BE.ico b/flags/flags-iso/flat/ico/BE.ico new file mode 100644 index 0000000..2941c53 Binary files /dev/null and b/flags/flags-iso/flat/ico/BE.ico differ diff --git a/flags/flags-iso/flat/ico/BF.ico b/flags/flags-iso/flat/ico/BF.ico new file mode 100644 index 0000000..8dda53f Binary files /dev/null and b/flags/flags-iso/flat/ico/BF.ico differ diff --git a/flags/flags-iso/flat/ico/BG.ico b/flags/flags-iso/flat/ico/BG.ico new file mode 100644 index 0000000..0df5e53 Binary files /dev/null and b/flags/flags-iso/flat/ico/BG.ico differ diff --git a/flags/flags-iso/flat/ico/BH.ico b/flags/flags-iso/flat/ico/BH.ico new file mode 100644 index 0000000..396dd9c Binary files /dev/null and b/flags/flags-iso/flat/ico/BH.ico differ diff --git a/flags/flags-iso/flat/ico/BI.ico b/flags/flags-iso/flat/ico/BI.ico new file mode 100644 index 0000000..89a913e Binary files /dev/null and b/flags/flags-iso/flat/ico/BI.ico differ diff --git a/flags/flags-iso/flat/ico/BJ.ico b/flags/flags-iso/flat/ico/BJ.ico new file mode 100644 index 0000000..25a7536 Binary files /dev/null and b/flags/flags-iso/flat/ico/BJ.ico differ diff --git a/flags/flags-iso/flat/ico/BL.ico b/flags/flags-iso/flat/ico/BL.ico new file mode 100644 index 0000000..f949fb0 Binary files /dev/null and b/flags/flags-iso/flat/ico/BL.ico differ diff --git a/flags/flags-iso/flat/ico/BM.ico b/flags/flags-iso/flat/ico/BM.ico new file mode 100644 index 0000000..9d0b57b Binary files /dev/null and b/flags/flags-iso/flat/ico/BM.ico differ diff --git a/flags/flags-iso/flat/ico/BN.ico b/flags/flags-iso/flat/ico/BN.ico new file mode 100644 index 0000000..8761fd8 Binary files /dev/null and b/flags/flags-iso/flat/ico/BN.ico differ diff --git a/flags/flags-iso/flat/ico/BO.ico b/flags/flags-iso/flat/ico/BO.ico new file mode 100644 index 0000000..f2fbbb8 Binary files /dev/null and b/flags/flags-iso/flat/ico/BO.ico differ diff --git a/flags/flags-iso/flat/ico/BR.ico b/flags/flags-iso/flat/ico/BR.ico new file mode 100644 index 0000000..9c5dd5c Binary files /dev/null and b/flags/flags-iso/flat/ico/BR.ico differ diff --git a/flags/flags-iso/flat/ico/BS.ico b/flags/flags-iso/flat/ico/BS.ico new file mode 100644 index 0000000..09a7d0d Binary files /dev/null and b/flags/flags-iso/flat/ico/BS.ico differ diff --git a/flags/flags-iso/flat/ico/BT.ico b/flags/flags-iso/flat/ico/BT.ico new file mode 100644 index 0000000..aef52ce Binary files /dev/null and b/flags/flags-iso/flat/ico/BT.ico differ diff --git a/flags/flags-iso/flat/ico/BW.ico b/flags/flags-iso/flat/ico/BW.ico new file mode 100644 index 0000000..8ed667d Binary files /dev/null and b/flags/flags-iso/flat/ico/BW.ico differ diff --git a/flags/flags-iso/flat/ico/BY.ico b/flags/flags-iso/flat/ico/BY.ico new file mode 100644 index 0000000..9d92a8a Binary files /dev/null and b/flags/flags-iso/flat/ico/BY.ico differ diff --git a/flags/flags-iso/flat/ico/BZ.ico b/flags/flags-iso/flat/ico/BZ.ico new file mode 100644 index 0000000..2c74512 Binary files /dev/null and b/flags/flags-iso/flat/ico/BZ.ico differ diff --git a/flags/flags-iso/flat/ico/CA.ico b/flags/flags-iso/flat/ico/CA.ico new file mode 100644 index 0000000..b258145 Binary files /dev/null and b/flags/flags-iso/flat/ico/CA.ico differ diff --git a/flags/flags-iso/flat/ico/CC.ico b/flags/flags-iso/flat/ico/CC.ico new file mode 100644 index 0000000..07df1cc Binary files /dev/null and b/flags/flags-iso/flat/ico/CC.ico differ diff --git a/flags/flags-iso/flat/ico/CD.ico b/flags/flags-iso/flat/ico/CD.ico new file mode 100644 index 0000000..172dfd3 Binary files /dev/null and b/flags/flags-iso/flat/ico/CD.ico differ diff --git a/flags/flags-iso/flat/ico/CF.ico b/flags/flags-iso/flat/ico/CF.ico new file mode 100644 index 0000000..1f321e3 Binary files /dev/null and b/flags/flags-iso/flat/ico/CF.ico differ diff --git a/flags/flags-iso/flat/ico/CG.ico b/flags/flags-iso/flat/ico/CG.ico new file mode 100644 index 0000000..e877292 Binary files /dev/null and b/flags/flags-iso/flat/ico/CG.ico differ diff --git a/flags/flags-iso/flat/ico/CH.ico b/flags/flags-iso/flat/ico/CH.ico new file mode 100644 index 0000000..8203a0d Binary files /dev/null and b/flags/flags-iso/flat/ico/CH.ico differ diff --git a/flags/flags-iso/flat/ico/CI.ico b/flags/flags-iso/flat/ico/CI.ico new file mode 100644 index 0000000..fd6954c Binary files /dev/null and b/flags/flags-iso/flat/ico/CI.ico differ diff --git a/flags/flags-iso/flat/ico/CK.ico b/flags/flags-iso/flat/ico/CK.ico new file mode 100644 index 0000000..22b4a40 Binary files /dev/null and b/flags/flags-iso/flat/ico/CK.ico differ diff --git a/flags/flags-iso/flat/ico/CL.ico b/flags/flags-iso/flat/ico/CL.ico new file mode 100644 index 0000000..9c599ce Binary files /dev/null and b/flags/flags-iso/flat/ico/CL.ico differ diff --git a/flags/flags-iso/flat/ico/CM.ico b/flags/flags-iso/flat/ico/CM.ico new file mode 100644 index 0000000..ee35c75 Binary files /dev/null and b/flags/flags-iso/flat/ico/CM.ico differ diff --git a/flags/flags-iso/flat/ico/CN.ico b/flags/flags-iso/flat/ico/CN.ico new file mode 100644 index 0000000..55cc3d9 Binary files /dev/null and b/flags/flags-iso/flat/ico/CN.ico differ diff --git a/flags/flags-iso/flat/ico/CO.ico b/flags/flags-iso/flat/ico/CO.ico new file mode 100644 index 0000000..17db460 Binary files /dev/null and b/flags/flags-iso/flat/ico/CO.ico differ diff --git a/flags/flags-iso/flat/ico/CR.ico b/flags/flags-iso/flat/ico/CR.ico new file mode 100644 index 0000000..7ea5601 Binary files /dev/null and b/flags/flags-iso/flat/ico/CR.ico differ diff --git a/flags/flags-iso/flat/ico/CU.ico b/flags/flags-iso/flat/ico/CU.ico new file mode 100644 index 0000000..dcdf746 Binary files /dev/null and b/flags/flags-iso/flat/ico/CU.ico differ diff --git a/flags/flags-iso/flat/ico/CV.ico b/flags/flags-iso/flat/ico/CV.ico new file mode 100644 index 0000000..299f147 Binary files /dev/null and b/flags/flags-iso/flat/ico/CV.ico differ diff --git a/flags/flags-iso/flat/ico/CX.ico b/flags/flags-iso/flat/ico/CX.ico new file mode 100644 index 0000000..5bbac42 Binary files /dev/null and b/flags/flags-iso/flat/ico/CX.ico differ diff --git a/flags/flags-iso/flat/ico/CY.ico b/flags/flags-iso/flat/ico/CY.ico new file mode 100644 index 0000000..1a7e336 Binary files /dev/null and b/flags/flags-iso/flat/ico/CY.ico differ diff --git a/flags/flags-iso/flat/ico/CZ.ico b/flags/flags-iso/flat/ico/CZ.ico new file mode 100644 index 0000000..bbc512a Binary files /dev/null and b/flags/flags-iso/flat/ico/CZ.ico differ diff --git a/flags/flags-iso/flat/ico/DE.ico b/flags/flags-iso/flat/ico/DE.ico new file mode 100644 index 0000000..a64eef0 Binary files /dev/null and b/flags/flags-iso/flat/ico/DE.ico differ diff --git a/flags/flags-iso/flat/ico/DJ.ico b/flags/flags-iso/flat/ico/DJ.ico new file mode 100644 index 0000000..b39e1d8 Binary files /dev/null and b/flags/flags-iso/flat/ico/DJ.ico differ diff --git a/flags/flags-iso/flat/ico/DK.ico b/flags/flags-iso/flat/ico/DK.ico new file mode 100644 index 0000000..1326715 Binary files /dev/null and b/flags/flags-iso/flat/ico/DK.ico differ diff --git a/flags/flags-iso/flat/ico/DM.ico b/flags/flags-iso/flat/ico/DM.ico new file mode 100644 index 0000000..5a9b9cc Binary files /dev/null and b/flags/flags-iso/flat/ico/DM.ico differ diff --git a/flags/flags-iso/flat/ico/DO.ico b/flags/flags-iso/flat/ico/DO.ico new file mode 100644 index 0000000..1437e3e Binary files /dev/null and b/flags/flags-iso/flat/ico/DO.ico differ diff --git a/flags/flags-iso/flat/ico/DZ.ico b/flags/flags-iso/flat/ico/DZ.ico new file mode 100644 index 0000000..9d2fff9 Binary files /dev/null and b/flags/flags-iso/flat/ico/DZ.ico differ diff --git a/flags/flags-iso/flat/ico/EC.ico b/flags/flags-iso/flat/ico/EC.ico new file mode 100644 index 0000000..e724c96 Binary files /dev/null and b/flags/flags-iso/flat/ico/EC.ico differ diff --git a/flags/flags-iso/flat/ico/EE.ico b/flags/flags-iso/flat/ico/EE.ico new file mode 100644 index 0000000..c51f1be Binary files /dev/null and b/flags/flags-iso/flat/ico/EE.ico differ diff --git a/flags/flags-iso/flat/ico/EG.ico b/flags/flags-iso/flat/ico/EG.ico new file mode 100644 index 0000000..e6cf745 Binary files /dev/null and b/flags/flags-iso/flat/ico/EG.ico differ diff --git a/flags/flags-iso/flat/ico/EH.ico b/flags/flags-iso/flat/ico/EH.ico new file mode 100644 index 0000000..54b138e Binary files /dev/null and b/flags/flags-iso/flat/ico/EH.ico differ diff --git a/flags/flags-iso/flat/ico/ER.ico b/flags/flags-iso/flat/ico/ER.ico new file mode 100644 index 0000000..8650734 Binary files /dev/null and b/flags/flags-iso/flat/ico/ER.ico differ diff --git a/flags/flags-iso/flat/ico/ES.ico b/flags/flags-iso/flat/ico/ES.ico new file mode 100644 index 0000000..47a06ec Binary files /dev/null and b/flags/flags-iso/flat/ico/ES.ico differ diff --git a/flags/flags-iso/flat/ico/ET.ico b/flags/flags-iso/flat/ico/ET.ico new file mode 100644 index 0000000..4e4756b Binary files /dev/null and b/flags/flags-iso/flat/ico/ET.ico differ diff --git a/flags/flags-iso/flat/ico/EU.ico b/flags/flags-iso/flat/ico/EU.ico new file mode 100644 index 0000000..eef9b3f Binary files /dev/null and b/flags/flags-iso/flat/ico/EU.ico differ diff --git a/flags/flags-iso/flat/ico/FI.ico b/flags/flags-iso/flat/ico/FI.ico new file mode 100644 index 0000000..50f5618 Binary files /dev/null and b/flags/flags-iso/flat/ico/FI.ico differ diff --git a/flags/flags-iso/flat/ico/FJ.ico b/flags/flags-iso/flat/ico/FJ.ico new file mode 100644 index 0000000..dc5ade6 Binary files /dev/null and b/flags/flags-iso/flat/ico/FJ.ico differ diff --git a/flags/flags-iso/flat/ico/FK.ico b/flags/flags-iso/flat/ico/FK.ico new file mode 100644 index 0000000..7e5adca Binary files /dev/null and b/flags/flags-iso/flat/ico/FK.ico differ diff --git a/flags/flags-iso/flat/ico/FM.ico b/flags/flags-iso/flat/ico/FM.ico new file mode 100644 index 0000000..5319e0c Binary files /dev/null and b/flags/flags-iso/flat/ico/FM.ico differ diff --git a/flags/flags-iso/flat/ico/FO.ico b/flags/flags-iso/flat/ico/FO.ico new file mode 100644 index 0000000..081f153 Binary files /dev/null and b/flags/flags-iso/flat/ico/FO.ico differ diff --git a/flags/flags-iso/flat/ico/FR.ico b/flags/flags-iso/flat/ico/FR.ico new file mode 100644 index 0000000..438380e Binary files /dev/null and b/flags/flags-iso/flat/ico/FR.ico differ diff --git a/flags/flags-iso/flat/ico/GA.ico b/flags/flags-iso/flat/ico/GA.ico new file mode 100644 index 0000000..b808606 Binary files /dev/null and b/flags/flags-iso/flat/ico/GA.ico differ diff --git a/flags/flags-iso/flat/ico/GB.ico b/flags/flags-iso/flat/ico/GB.ico new file mode 100644 index 0000000..5f87d4c Binary files /dev/null and b/flags/flags-iso/flat/ico/GB.ico differ diff --git a/flags/flags-iso/flat/ico/GD.ico b/flags/flags-iso/flat/ico/GD.ico new file mode 100644 index 0000000..5bfa015 Binary files /dev/null and b/flags/flags-iso/flat/ico/GD.ico differ diff --git a/flags/flags-iso/flat/ico/GE.ico b/flags/flags-iso/flat/ico/GE.ico new file mode 100644 index 0000000..3e7d71e Binary files /dev/null and b/flags/flags-iso/flat/ico/GE.ico differ diff --git a/flags/flags-iso/flat/ico/GG.ico b/flags/flags-iso/flat/ico/GG.ico new file mode 100644 index 0000000..0c648f4 Binary files /dev/null and b/flags/flags-iso/flat/ico/GG.ico differ diff --git a/flags/flags-iso/flat/ico/GH.ico b/flags/flags-iso/flat/ico/GH.ico new file mode 100644 index 0000000..b4899db Binary files /dev/null and b/flags/flags-iso/flat/ico/GH.ico differ diff --git a/flags/flags-iso/flat/ico/GI.ico b/flags/flags-iso/flat/ico/GI.ico new file mode 100644 index 0000000..f077ea3 Binary files /dev/null and b/flags/flags-iso/flat/ico/GI.ico differ diff --git a/flags/flags-iso/flat/ico/GL.ico b/flags/flags-iso/flat/ico/GL.ico new file mode 100644 index 0000000..eb66c98 Binary files /dev/null and b/flags/flags-iso/flat/ico/GL.ico differ diff --git a/flags/flags-iso/flat/ico/GM.ico b/flags/flags-iso/flat/ico/GM.ico new file mode 100644 index 0000000..76704b3 Binary files /dev/null and b/flags/flags-iso/flat/ico/GM.ico differ diff --git a/flags/flags-iso/flat/ico/GN.ico b/flags/flags-iso/flat/ico/GN.ico new file mode 100644 index 0000000..c4dd20e Binary files /dev/null and b/flags/flags-iso/flat/ico/GN.ico differ diff --git a/flags/flags-iso/flat/ico/GQ.ico b/flags/flags-iso/flat/ico/GQ.ico new file mode 100644 index 0000000..e8d3f05 Binary files /dev/null and b/flags/flags-iso/flat/ico/GQ.ico differ diff --git a/flags/flags-iso/flat/ico/GR.ico b/flags/flags-iso/flat/ico/GR.ico new file mode 100644 index 0000000..ed5ce06 Binary files /dev/null and b/flags/flags-iso/flat/ico/GR.ico differ diff --git a/flags/flags-iso/flat/ico/GS.ico b/flags/flags-iso/flat/ico/GS.ico new file mode 100644 index 0000000..f998d01 Binary files /dev/null and b/flags/flags-iso/flat/ico/GS.ico differ diff --git a/flags/flags-iso/flat/ico/GT.ico b/flags/flags-iso/flat/ico/GT.ico new file mode 100644 index 0000000..d931334 Binary files /dev/null and b/flags/flags-iso/flat/ico/GT.ico differ diff --git a/flags/flags-iso/flat/ico/GU.ico b/flags/flags-iso/flat/ico/GU.ico new file mode 100644 index 0000000..b01c356 Binary files /dev/null and b/flags/flags-iso/flat/ico/GU.ico differ diff --git a/flags/flags-iso/flat/ico/GW.ico b/flags/flags-iso/flat/ico/GW.ico new file mode 100644 index 0000000..14a888e Binary files /dev/null and b/flags/flags-iso/flat/ico/GW.ico differ diff --git a/flags/flags-iso/flat/ico/GY.ico b/flags/flags-iso/flat/ico/GY.ico new file mode 100644 index 0000000..bc63583 Binary files /dev/null and b/flags/flags-iso/flat/ico/GY.ico differ diff --git a/flags/flags-iso/flat/ico/HK.ico b/flags/flags-iso/flat/ico/HK.ico new file mode 100644 index 0000000..fe1caf7 Binary files /dev/null and b/flags/flags-iso/flat/ico/HK.ico differ diff --git a/flags/flags-iso/flat/ico/HN.ico b/flags/flags-iso/flat/ico/HN.ico new file mode 100644 index 0000000..18a07c1 Binary files /dev/null and b/flags/flags-iso/flat/ico/HN.ico differ diff --git a/flags/flags-iso/flat/ico/HR.ico b/flags/flags-iso/flat/ico/HR.ico new file mode 100644 index 0000000..96365f8 Binary files /dev/null and b/flags/flags-iso/flat/ico/HR.ico differ diff --git a/flags/flags-iso/flat/ico/HT.ico b/flags/flags-iso/flat/ico/HT.ico new file mode 100644 index 0000000..1234019 Binary files /dev/null and b/flags/flags-iso/flat/ico/HT.ico differ diff --git a/flags/flags-iso/flat/ico/HU.ico b/flags/flags-iso/flat/ico/HU.ico new file mode 100644 index 0000000..f2413b0 Binary files /dev/null and b/flags/flags-iso/flat/ico/HU.ico differ diff --git a/flags/flags-iso/flat/ico/ID.ico b/flags/flags-iso/flat/ico/ID.ico new file mode 100644 index 0000000..855b630 Binary files /dev/null and b/flags/flags-iso/flat/ico/ID.ico differ diff --git a/flags/flags-iso/flat/ico/IE.ico b/flags/flags-iso/flat/ico/IE.ico new file mode 100644 index 0000000..2eb1873 Binary files /dev/null and b/flags/flags-iso/flat/ico/IE.ico differ diff --git a/flags/flags-iso/flat/ico/IL.ico b/flags/flags-iso/flat/ico/IL.ico new file mode 100644 index 0000000..f5441e3 Binary files /dev/null and b/flags/flags-iso/flat/ico/IL.ico differ diff --git a/flags/flags-iso/flat/ico/IM.ico b/flags/flags-iso/flat/ico/IM.ico new file mode 100644 index 0000000..6615764 Binary files /dev/null and b/flags/flags-iso/flat/ico/IM.ico differ diff --git a/flags/flags-iso/flat/ico/IN.ico b/flags/flags-iso/flat/ico/IN.ico new file mode 100644 index 0000000..4d87d4e Binary files /dev/null and b/flags/flags-iso/flat/ico/IN.ico differ diff --git a/flags/flags-iso/flat/ico/IQ.ico b/flags/flags-iso/flat/ico/IQ.ico new file mode 100644 index 0000000..480f8e9 Binary files /dev/null and b/flags/flags-iso/flat/ico/IQ.ico differ diff --git a/flags/flags-iso/flat/ico/IR.ico b/flags/flags-iso/flat/ico/IR.ico new file mode 100644 index 0000000..07800e8 Binary files /dev/null and b/flags/flags-iso/flat/ico/IR.ico differ diff --git a/flags/flags-iso/flat/ico/IS.ico b/flags/flags-iso/flat/ico/IS.ico new file mode 100644 index 0000000..dcaaa24 Binary files /dev/null and b/flags/flags-iso/flat/ico/IS.ico differ diff --git a/flags/flags-iso/flat/ico/IT.ico b/flags/flags-iso/flat/ico/IT.ico new file mode 100644 index 0000000..c3ad843 Binary files /dev/null and b/flags/flags-iso/flat/ico/IT.ico differ diff --git a/flags/flags-iso/flat/ico/JE.ico b/flags/flags-iso/flat/ico/JE.ico new file mode 100644 index 0000000..c738b1c Binary files /dev/null and b/flags/flags-iso/flat/ico/JE.ico differ diff --git a/flags/flags-iso/flat/ico/JM.ico b/flags/flags-iso/flat/ico/JM.ico new file mode 100644 index 0000000..1d8d016 Binary files /dev/null and b/flags/flags-iso/flat/ico/JM.ico differ diff --git a/flags/flags-iso/flat/ico/JO.ico b/flags/flags-iso/flat/ico/JO.ico new file mode 100644 index 0000000..f5cc152 Binary files /dev/null and b/flags/flags-iso/flat/ico/JO.ico differ diff --git a/flags/flags-iso/flat/ico/JP.ico b/flags/flags-iso/flat/ico/JP.ico new file mode 100644 index 0000000..7ea95d7 Binary files /dev/null and b/flags/flags-iso/flat/ico/JP.ico differ diff --git a/flags/flags-iso/flat/ico/KE.ico b/flags/flags-iso/flat/ico/KE.ico new file mode 100644 index 0000000..2a3e919 Binary files /dev/null and b/flags/flags-iso/flat/ico/KE.ico differ diff --git a/flags/flags-iso/flat/ico/KG.ico b/flags/flags-iso/flat/ico/KG.ico new file mode 100644 index 0000000..d601e0b Binary files /dev/null and b/flags/flags-iso/flat/ico/KG.ico differ diff --git a/flags/flags-iso/flat/ico/KH.ico b/flags/flags-iso/flat/ico/KH.ico new file mode 100644 index 0000000..f62cc96 Binary files /dev/null and b/flags/flags-iso/flat/ico/KH.ico differ diff --git a/flags/flags-iso/flat/ico/KI.ico b/flags/flags-iso/flat/ico/KI.ico new file mode 100644 index 0000000..75b54a4 Binary files /dev/null and b/flags/flags-iso/flat/ico/KI.ico differ diff --git a/flags/flags-iso/flat/ico/KM.ico b/flags/flags-iso/flat/ico/KM.ico new file mode 100644 index 0000000..e8164fc Binary files /dev/null and b/flags/flags-iso/flat/ico/KM.ico differ diff --git a/flags/flags-iso/flat/ico/KN.ico b/flags/flags-iso/flat/ico/KN.ico new file mode 100644 index 0000000..1d9ec0a Binary files /dev/null and b/flags/flags-iso/flat/ico/KN.ico differ diff --git a/flags/flags-iso/flat/ico/KP.ico b/flags/flags-iso/flat/ico/KP.ico new file mode 100644 index 0000000..af22689 Binary files /dev/null and b/flags/flags-iso/flat/ico/KP.ico differ diff --git a/flags/flags-iso/flat/ico/KR.ico b/flags/flags-iso/flat/ico/KR.ico new file mode 100644 index 0000000..a51501b Binary files /dev/null and b/flags/flags-iso/flat/ico/KR.ico differ diff --git a/flags/flags-iso/flat/ico/KW.ico b/flags/flags-iso/flat/ico/KW.ico new file mode 100644 index 0000000..8b036d4 Binary files /dev/null and b/flags/flags-iso/flat/ico/KW.ico differ diff --git a/flags/flags-iso/flat/ico/KY.ico b/flags/flags-iso/flat/ico/KY.ico new file mode 100644 index 0000000..52e0825 Binary files /dev/null and b/flags/flags-iso/flat/ico/KY.ico differ diff --git a/flags/flags-iso/flat/ico/KZ.ico b/flags/flags-iso/flat/ico/KZ.ico new file mode 100644 index 0000000..3c2686f Binary files /dev/null and b/flags/flags-iso/flat/ico/KZ.ico differ diff --git a/flags/flags-iso/flat/ico/LA.ico b/flags/flags-iso/flat/ico/LA.ico new file mode 100644 index 0000000..b6682e9 Binary files /dev/null and b/flags/flags-iso/flat/ico/LA.ico differ diff --git a/flags/flags-iso/flat/ico/LB.ico b/flags/flags-iso/flat/ico/LB.ico new file mode 100644 index 0000000..ae64066 Binary files /dev/null and b/flags/flags-iso/flat/ico/LB.ico differ diff --git a/flags/flags-iso/flat/ico/LC.ico b/flags/flags-iso/flat/ico/LC.ico new file mode 100644 index 0000000..990c953 Binary files /dev/null and b/flags/flags-iso/flat/ico/LC.ico differ diff --git a/flags/flags-iso/flat/ico/LI.ico b/flags/flags-iso/flat/ico/LI.ico new file mode 100644 index 0000000..8b96b10 Binary files /dev/null and b/flags/flags-iso/flat/ico/LI.ico differ diff --git a/flags/flags-iso/flat/ico/LK.ico b/flags/flags-iso/flat/ico/LK.ico new file mode 100644 index 0000000..12c2fb3 Binary files /dev/null and b/flags/flags-iso/flat/ico/LK.ico differ diff --git a/flags/flags-iso/flat/ico/LR.ico b/flags/flags-iso/flat/ico/LR.ico new file mode 100644 index 0000000..54048f0 Binary files /dev/null and b/flags/flags-iso/flat/ico/LR.ico differ diff --git a/flags/flags-iso/flat/ico/LS.ico b/flags/flags-iso/flat/ico/LS.ico new file mode 100644 index 0000000..12aecae Binary files /dev/null and b/flags/flags-iso/flat/ico/LS.ico differ diff --git a/flags/flags-iso/flat/ico/LT.ico b/flags/flags-iso/flat/ico/LT.ico new file mode 100644 index 0000000..3f132f6 Binary files /dev/null and b/flags/flags-iso/flat/ico/LT.ico differ diff --git a/flags/flags-iso/flat/ico/LU.ico b/flags/flags-iso/flat/ico/LU.ico new file mode 100644 index 0000000..49d9322 Binary files /dev/null and b/flags/flags-iso/flat/ico/LU.ico differ diff --git a/flags/flags-iso/flat/ico/LV.ico b/flags/flags-iso/flat/ico/LV.ico new file mode 100644 index 0000000..954f27b Binary files /dev/null and b/flags/flags-iso/flat/ico/LV.ico differ diff --git a/flags/flags-iso/flat/ico/LY.ico b/flags/flags-iso/flat/ico/LY.ico new file mode 100644 index 0000000..dc1733b Binary files /dev/null and b/flags/flags-iso/flat/ico/LY.ico differ diff --git a/flags/flags-iso/flat/ico/MA.ico b/flags/flags-iso/flat/ico/MA.ico new file mode 100644 index 0000000..1954648 Binary files /dev/null and b/flags/flags-iso/flat/ico/MA.ico differ diff --git a/flags/flags-iso/flat/ico/MC.ico b/flags/flags-iso/flat/ico/MC.ico new file mode 100644 index 0000000..855b630 Binary files /dev/null and b/flags/flags-iso/flat/ico/MC.ico differ diff --git a/flags/flags-iso/flat/ico/MD.ico b/flags/flags-iso/flat/ico/MD.ico new file mode 100644 index 0000000..03242f6 Binary files /dev/null and b/flags/flags-iso/flat/ico/MD.ico differ diff --git a/flags/flags-iso/flat/ico/ME.ico b/flags/flags-iso/flat/ico/ME.ico new file mode 100644 index 0000000..ae6ca65 Binary files /dev/null and b/flags/flags-iso/flat/ico/ME.ico differ diff --git a/flags/flags-iso/flat/ico/MG.ico b/flags/flags-iso/flat/ico/MG.ico new file mode 100644 index 0000000..c0fcc4a Binary files /dev/null and b/flags/flags-iso/flat/ico/MG.ico differ diff --git a/flags/flags-iso/flat/ico/MH.ico b/flags/flags-iso/flat/ico/MH.ico new file mode 100644 index 0000000..500aa7c Binary files /dev/null and b/flags/flags-iso/flat/ico/MH.ico differ diff --git a/flags/flags-iso/flat/ico/MK.ico b/flags/flags-iso/flat/ico/MK.ico new file mode 100644 index 0000000..612c570 Binary files /dev/null and b/flags/flags-iso/flat/ico/MK.ico differ diff --git a/flags/flags-iso/flat/ico/ML.ico b/flags/flags-iso/flat/ico/ML.ico new file mode 100644 index 0000000..cee1b14 Binary files /dev/null and b/flags/flags-iso/flat/ico/ML.ico differ diff --git a/flags/flags-iso/flat/ico/MM.ico b/flags/flags-iso/flat/ico/MM.ico new file mode 100644 index 0000000..16dd4db Binary files /dev/null and b/flags/flags-iso/flat/ico/MM.ico differ diff --git a/flags/flags-iso/flat/ico/MN.ico b/flags/flags-iso/flat/ico/MN.ico new file mode 100644 index 0000000..243e614 Binary files /dev/null and b/flags/flags-iso/flat/ico/MN.ico differ diff --git a/flags/flags-iso/flat/ico/MO.ico b/flags/flags-iso/flat/ico/MO.ico new file mode 100644 index 0000000..fccd33e Binary files /dev/null and b/flags/flags-iso/flat/ico/MO.ico differ diff --git a/flags/flags-iso/flat/ico/MP.ico b/flags/flags-iso/flat/ico/MP.ico new file mode 100644 index 0000000..c863699 Binary files /dev/null and b/flags/flags-iso/flat/ico/MP.ico differ diff --git a/flags/flags-iso/flat/ico/MR.ico b/flags/flags-iso/flat/ico/MR.ico new file mode 100644 index 0000000..5ccb5b3 Binary files /dev/null and b/flags/flags-iso/flat/ico/MR.ico differ diff --git a/flags/flags-iso/flat/ico/MS.ico b/flags/flags-iso/flat/ico/MS.ico new file mode 100644 index 0000000..8c91ceb Binary files /dev/null and b/flags/flags-iso/flat/ico/MS.ico differ diff --git a/flags/flags-iso/flat/ico/MT.ico b/flags/flags-iso/flat/ico/MT.ico new file mode 100644 index 0000000..d70054f Binary files /dev/null and b/flags/flags-iso/flat/ico/MT.ico differ diff --git a/flags/flags-iso/flat/ico/MU.ico b/flags/flags-iso/flat/ico/MU.ico new file mode 100644 index 0000000..c46e9b2 Binary files /dev/null and b/flags/flags-iso/flat/ico/MU.ico differ diff --git a/flags/flags-iso/flat/ico/MV.ico b/flags/flags-iso/flat/ico/MV.ico new file mode 100644 index 0000000..aac3a13 Binary files /dev/null and b/flags/flags-iso/flat/ico/MV.ico differ diff --git a/flags/flags-iso/flat/ico/MW.ico b/flags/flags-iso/flat/ico/MW.ico new file mode 100644 index 0000000..22d93db Binary files /dev/null and b/flags/flags-iso/flat/ico/MW.ico differ diff --git a/flags/flags-iso/flat/ico/MX.ico b/flags/flags-iso/flat/ico/MX.ico new file mode 100644 index 0000000..3892f45 Binary files /dev/null and b/flags/flags-iso/flat/ico/MX.ico differ diff --git a/flags/flags-iso/flat/ico/MY.ico b/flags/flags-iso/flat/ico/MY.ico new file mode 100644 index 0000000..49eb911 Binary files /dev/null and b/flags/flags-iso/flat/ico/MY.ico differ diff --git a/flags/flags-iso/flat/ico/MZ.ico b/flags/flags-iso/flat/ico/MZ.ico new file mode 100644 index 0000000..3d1011f Binary files /dev/null and b/flags/flags-iso/flat/ico/MZ.ico differ diff --git a/flags/flags-iso/flat/ico/NA.ico b/flags/flags-iso/flat/ico/NA.ico new file mode 100644 index 0000000..a2bd0c8 Binary files /dev/null and b/flags/flags-iso/flat/ico/NA.ico differ diff --git a/flags/flags-iso/flat/ico/NC.ico b/flags/flags-iso/flat/ico/NC.ico new file mode 100644 index 0000000..893f792 Binary files /dev/null and b/flags/flags-iso/flat/ico/NC.ico differ diff --git a/flags/flags-iso/flat/ico/NE.ico b/flags/flags-iso/flat/ico/NE.ico new file mode 100644 index 0000000..c2b4e21 Binary files /dev/null and b/flags/flags-iso/flat/ico/NE.ico differ diff --git a/flags/flags-iso/flat/ico/NF.ico b/flags/flags-iso/flat/ico/NF.ico new file mode 100644 index 0000000..05156d7 Binary files /dev/null and b/flags/flags-iso/flat/ico/NF.ico differ diff --git a/flags/flags-iso/flat/ico/NG.ico b/flags/flags-iso/flat/ico/NG.ico new file mode 100644 index 0000000..1248bff Binary files /dev/null and b/flags/flags-iso/flat/ico/NG.ico differ diff --git a/flags/flags-iso/flat/ico/NI.ico b/flags/flags-iso/flat/ico/NI.ico new file mode 100644 index 0000000..17ba82e Binary files /dev/null and b/flags/flags-iso/flat/ico/NI.ico differ diff --git a/flags/flags-iso/flat/ico/NL.ico b/flags/flags-iso/flat/ico/NL.ico new file mode 100644 index 0000000..4a57ec9 Binary files /dev/null and b/flags/flags-iso/flat/ico/NL.ico differ diff --git a/flags/flags-iso/flat/ico/NO.ico b/flags/flags-iso/flat/ico/NO.ico new file mode 100644 index 0000000..9a332a9 Binary files /dev/null and b/flags/flags-iso/flat/ico/NO.ico differ diff --git a/flags/flags-iso/flat/ico/NP.ico b/flags/flags-iso/flat/ico/NP.ico new file mode 100644 index 0000000..2df5321 Binary files /dev/null and b/flags/flags-iso/flat/ico/NP.ico differ diff --git a/flags/flags-iso/flat/ico/NR.ico b/flags/flags-iso/flat/ico/NR.ico new file mode 100644 index 0000000..5202663 Binary files /dev/null and b/flags/flags-iso/flat/ico/NR.ico differ diff --git a/flags/flags-iso/flat/ico/NU.ico b/flags/flags-iso/flat/ico/NU.ico new file mode 100644 index 0000000..1c39ca8 Binary files /dev/null and b/flags/flags-iso/flat/ico/NU.ico differ diff --git a/flags/flags-iso/flat/ico/NZ.ico b/flags/flags-iso/flat/ico/NZ.ico new file mode 100644 index 0000000..4c902f7 Binary files /dev/null and b/flags/flags-iso/flat/ico/NZ.ico differ diff --git a/flags/flags-iso/flat/ico/OM.ico b/flags/flags-iso/flat/ico/OM.ico new file mode 100644 index 0000000..3476865 Binary files /dev/null and b/flags/flags-iso/flat/ico/OM.ico differ diff --git a/flags/flags-iso/flat/ico/PA.ico b/flags/flags-iso/flat/ico/PA.ico new file mode 100644 index 0000000..c407aec Binary files /dev/null and b/flags/flags-iso/flat/ico/PA.ico differ diff --git a/flags/flags-iso/flat/ico/PE.ico b/flags/flags-iso/flat/ico/PE.ico new file mode 100644 index 0000000..1016597 Binary files /dev/null and b/flags/flags-iso/flat/ico/PE.ico differ diff --git a/flags/flags-iso/flat/ico/PF.ico b/flags/flags-iso/flat/ico/PF.ico new file mode 100644 index 0000000..408b004 Binary files /dev/null and b/flags/flags-iso/flat/ico/PF.ico differ diff --git a/flags/flags-iso/flat/ico/PG.ico b/flags/flags-iso/flat/ico/PG.ico new file mode 100644 index 0000000..4996910 Binary files /dev/null and b/flags/flags-iso/flat/ico/PG.ico differ diff --git a/flags/flags-iso/flat/ico/PH.ico b/flags/flags-iso/flat/ico/PH.ico new file mode 100644 index 0000000..22d90be Binary files /dev/null and b/flags/flags-iso/flat/ico/PH.ico differ diff --git a/flags/flags-iso/flat/ico/PK.ico b/flags/flags-iso/flat/ico/PK.ico new file mode 100644 index 0000000..be8f3a6 Binary files /dev/null and b/flags/flags-iso/flat/ico/PK.ico differ diff --git a/flags/flags-iso/flat/ico/PL.ico b/flags/flags-iso/flat/ico/PL.ico new file mode 100644 index 0000000..c89e6bd Binary files /dev/null and b/flags/flags-iso/flat/ico/PL.ico differ diff --git a/flags/flags-iso/flat/ico/PN.ico b/flags/flags-iso/flat/ico/PN.ico new file mode 100644 index 0000000..ac482f5 Binary files /dev/null and b/flags/flags-iso/flat/ico/PN.ico differ diff --git a/flags/flags-iso/flat/ico/PR.ico b/flags/flags-iso/flat/ico/PR.ico new file mode 100644 index 0000000..8a6862b Binary files /dev/null and b/flags/flags-iso/flat/ico/PR.ico differ diff --git a/flags/flags-iso/flat/ico/PS.ico b/flags/flags-iso/flat/ico/PS.ico new file mode 100644 index 0000000..fcab572 Binary files /dev/null and b/flags/flags-iso/flat/ico/PS.ico differ diff --git a/flags/flags-iso/flat/ico/PT.ico b/flags/flags-iso/flat/ico/PT.ico new file mode 100644 index 0000000..84c62ec Binary files /dev/null and b/flags/flags-iso/flat/ico/PT.ico differ diff --git a/flags/flags-iso/flat/ico/PW.ico b/flags/flags-iso/flat/ico/PW.ico new file mode 100644 index 0000000..b5921e7 Binary files /dev/null and b/flags/flags-iso/flat/ico/PW.ico differ diff --git a/flags/flags-iso/flat/ico/PY.ico b/flags/flags-iso/flat/ico/PY.ico new file mode 100644 index 0000000..7e6d351 Binary files /dev/null and b/flags/flags-iso/flat/ico/PY.ico differ diff --git a/flags/flags-iso/flat/ico/QA.ico b/flags/flags-iso/flat/ico/QA.ico new file mode 100644 index 0000000..a5d08d9 Binary files /dev/null and b/flags/flags-iso/flat/ico/QA.ico differ diff --git a/flags/flags-iso/flat/ico/RO.ico b/flags/flags-iso/flat/ico/RO.ico new file mode 100644 index 0000000..c2d46c5 Binary files /dev/null and b/flags/flags-iso/flat/ico/RO.ico differ diff --git a/flags/flags-iso/flat/ico/RS.ico b/flags/flags-iso/flat/ico/RS.ico new file mode 100644 index 0000000..76c2e73 Binary files /dev/null and b/flags/flags-iso/flat/ico/RS.ico differ diff --git a/flags/flags-iso/flat/ico/RU.ico b/flags/flags-iso/flat/ico/RU.ico new file mode 100644 index 0000000..67a24d9 Binary files /dev/null and b/flags/flags-iso/flat/ico/RU.ico differ diff --git a/flags/flags-iso/flat/ico/RW.ico b/flags/flags-iso/flat/ico/RW.ico new file mode 100644 index 0000000..ab10ecf Binary files /dev/null and b/flags/flags-iso/flat/ico/RW.ico differ diff --git a/flags/flags-iso/flat/ico/SA.ico b/flags/flags-iso/flat/ico/SA.ico new file mode 100644 index 0000000..f4f8254 Binary files /dev/null and b/flags/flags-iso/flat/ico/SA.ico differ diff --git a/flags/flags-iso/flat/ico/SB.ico b/flags/flags-iso/flat/ico/SB.ico new file mode 100644 index 0000000..65a1abe Binary files /dev/null and b/flags/flags-iso/flat/ico/SB.ico differ diff --git a/flags/flags-iso/flat/ico/SC.ico b/flags/flags-iso/flat/ico/SC.ico new file mode 100644 index 0000000..aa860e6 Binary files /dev/null and b/flags/flags-iso/flat/ico/SC.ico differ diff --git a/flags/flags-iso/flat/ico/SD.ico b/flags/flags-iso/flat/ico/SD.ico new file mode 100644 index 0000000..bff31ce Binary files /dev/null and b/flags/flags-iso/flat/ico/SD.ico differ diff --git a/flags/flags-iso/flat/ico/SE.ico b/flags/flags-iso/flat/ico/SE.ico new file mode 100644 index 0000000..8a65a96 Binary files /dev/null and b/flags/flags-iso/flat/ico/SE.ico differ diff --git a/flags/flags-iso/flat/ico/SG.ico b/flags/flags-iso/flat/ico/SG.ico new file mode 100644 index 0000000..babc988 Binary files /dev/null and b/flags/flags-iso/flat/ico/SG.ico differ diff --git a/flags/flags-iso/flat/ico/SH.ico b/flags/flags-iso/flat/ico/SH.ico new file mode 100644 index 0000000..35dbbcf Binary files /dev/null and b/flags/flags-iso/flat/ico/SH.ico differ diff --git a/flags/flags-iso/flat/ico/SI.ico b/flags/flags-iso/flat/ico/SI.ico new file mode 100644 index 0000000..51a72ea Binary files /dev/null and b/flags/flags-iso/flat/ico/SI.ico differ diff --git a/flags/flags-iso/flat/ico/SK.ico b/flags/flags-iso/flat/ico/SK.ico new file mode 100644 index 0000000..7d57fc5 Binary files /dev/null and b/flags/flags-iso/flat/ico/SK.ico differ diff --git a/flags/flags-iso/flat/ico/SL.ico b/flags/flags-iso/flat/ico/SL.ico new file mode 100644 index 0000000..772b52a Binary files /dev/null and b/flags/flags-iso/flat/ico/SL.ico differ diff --git a/flags/flags-iso/flat/ico/SM.ico b/flags/flags-iso/flat/ico/SM.ico new file mode 100644 index 0000000..8d522f7 Binary files /dev/null and b/flags/flags-iso/flat/ico/SM.ico differ diff --git a/flags/flags-iso/flat/ico/SN.ico b/flags/flags-iso/flat/ico/SN.ico new file mode 100644 index 0000000..1de8e8d Binary files /dev/null and b/flags/flags-iso/flat/ico/SN.ico differ diff --git a/flags/flags-iso/flat/ico/SO.ico b/flags/flags-iso/flat/ico/SO.ico new file mode 100644 index 0000000..ebde4c1 Binary files /dev/null and b/flags/flags-iso/flat/ico/SO.ico differ diff --git a/flags/flags-iso/flat/ico/SR.ico b/flags/flags-iso/flat/ico/SR.ico new file mode 100644 index 0000000..763d4f1 Binary files /dev/null and b/flags/flags-iso/flat/ico/SR.ico differ diff --git a/flags/flags-iso/flat/ico/SS.ico b/flags/flags-iso/flat/ico/SS.ico new file mode 100644 index 0000000..6e7c381 Binary files /dev/null and b/flags/flags-iso/flat/ico/SS.ico differ diff --git a/flags/flags-iso/flat/ico/ST.ico b/flags/flags-iso/flat/ico/ST.ico new file mode 100644 index 0000000..55f48c1 Binary files /dev/null and b/flags/flags-iso/flat/ico/ST.ico differ diff --git a/flags/flags-iso/flat/ico/SV.ico b/flags/flags-iso/flat/ico/SV.ico new file mode 100644 index 0000000..fefae71 Binary files /dev/null and b/flags/flags-iso/flat/ico/SV.ico differ diff --git a/flags/flags-iso/flat/ico/SY.ico b/flags/flags-iso/flat/ico/SY.ico new file mode 100644 index 0000000..4f47fe8 Binary files /dev/null and b/flags/flags-iso/flat/ico/SY.ico differ diff --git a/flags/flags-iso/flat/ico/SZ.ico b/flags/flags-iso/flat/ico/SZ.ico new file mode 100644 index 0000000..03a6a92 Binary files /dev/null and b/flags/flags-iso/flat/ico/SZ.ico differ diff --git a/flags/flags-iso/flat/ico/TC.ico b/flags/flags-iso/flat/ico/TC.ico new file mode 100644 index 0000000..2d2e763 Binary files /dev/null and b/flags/flags-iso/flat/ico/TC.ico differ diff --git a/flags/flags-iso/flat/ico/TD.ico b/flags/flags-iso/flat/ico/TD.ico new file mode 100644 index 0000000..77c4fcc Binary files /dev/null and b/flags/flags-iso/flat/ico/TD.ico differ diff --git a/flags/flags-iso/flat/ico/TF.ico b/flags/flags-iso/flat/ico/TF.ico new file mode 100644 index 0000000..44db656 Binary files /dev/null and b/flags/flags-iso/flat/ico/TF.ico differ diff --git a/flags/flags-iso/flat/ico/TG.ico b/flags/flags-iso/flat/ico/TG.ico new file mode 100644 index 0000000..c46f742 Binary files /dev/null and b/flags/flags-iso/flat/ico/TG.ico differ diff --git a/flags/flags-iso/flat/ico/TH.ico b/flags/flags-iso/flat/ico/TH.ico new file mode 100644 index 0000000..f14aec8 Binary files /dev/null and b/flags/flags-iso/flat/ico/TH.ico differ diff --git a/flags/flags-iso/flat/ico/TJ.ico b/flags/flags-iso/flat/ico/TJ.ico new file mode 100644 index 0000000..ae872de Binary files /dev/null and b/flags/flags-iso/flat/ico/TJ.ico differ diff --git a/flags/flags-iso/flat/ico/TK.ico b/flags/flags-iso/flat/ico/TK.ico new file mode 100644 index 0000000..9ca43ff Binary files /dev/null and b/flags/flags-iso/flat/ico/TK.ico differ diff --git a/flags/flags-iso/flat/ico/TL.ico b/flags/flags-iso/flat/ico/TL.ico new file mode 100644 index 0000000..a7e6272 Binary files /dev/null and b/flags/flags-iso/flat/ico/TL.ico differ diff --git a/flags/flags-iso/flat/ico/TM.ico b/flags/flags-iso/flat/ico/TM.ico new file mode 100644 index 0000000..8d074ec Binary files /dev/null and b/flags/flags-iso/flat/ico/TM.ico differ diff --git a/flags/flags-iso/flat/ico/TN.ico b/flags/flags-iso/flat/ico/TN.ico new file mode 100644 index 0000000..7d06f67 Binary files /dev/null and b/flags/flags-iso/flat/ico/TN.ico differ diff --git a/flags/flags-iso/flat/ico/TO.ico b/flags/flags-iso/flat/ico/TO.ico new file mode 100644 index 0000000..5d7e632 Binary files /dev/null and b/flags/flags-iso/flat/ico/TO.ico differ diff --git a/flags/flags-iso/flat/ico/TR.ico b/flags/flags-iso/flat/ico/TR.ico new file mode 100644 index 0000000..2709f69 Binary files /dev/null and b/flags/flags-iso/flat/ico/TR.ico differ diff --git a/flags/flags-iso/flat/ico/TT.ico b/flags/flags-iso/flat/ico/TT.ico new file mode 100644 index 0000000..01ac330 Binary files /dev/null and b/flags/flags-iso/flat/ico/TT.ico differ diff --git a/flags/flags-iso/flat/ico/TV.ico b/flags/flags-iso/flat/ico/TV.ico new file mode 100644 index 0000000..4e32a39 Binary files /dev/null and b/flags/flags-iso/flat/ico/TV.ico differ diff --git a/flags/flags-iso/flat/ico/TW.ico b/flags/flags-iso/flat/ico/TW.ico new file mode 100644 index 0000000..f086ac2 Binary files /dev/null and b/flags/flags-iso/flat/ico/TW.ico differ diff --git a/flags/flags-iso/flat/ico/TZ.ico b/flags/flags-iso/flat/ico/TZ.ico new file mode 100644 index 0000000..d1ba481 Binary files /dev/null and b/flags/flags-iso/flat/ico/TZ.ico differ diff --git a/flags/flags-iso/flat/ico/UA.ico b/flags/flags-iso/flat/ico/UA.ico new file mode 100644 index 0000000..653c3d7 Binary files /dev/null and b/flags/flags-iso/flat/ico/UA.ico differ diff --git a/flags/flags-iso/flat/ico/UG.ico b/flags/flags-iso/flat/ico/UG.ico new file mode 100644 index 0000000..1fafb7a Binary files /dev/null and b/flags/flags-iso/flat/ico/UG.ico differ diff --git a/flags/flags-iso/flat/ico/US.ico b/flags/flags-iso/flat/ico/US.ico new file mode 100644 index 0000000..e774243 Binary files /dev/null and b/flags/flags-iso/flat/ico/US.ico differ diff --git a/flags/flags-iso/flat/ico/UY.ico b/flags/flags-iso/flat/ico/UY.ico new file mode 100644 index 0000000..569e3b0 Binary files /dev/null and b/flags/flags-iso/flat/ico/UY.ico differ diff --git a/flags/flags-iso/flat/ico/UZ.ico b/flags/flags-iso/flat/ico/UZ.ico new file mode 100644 index 0000000..7727dfc Binary files /dev/null and b/flags/flags-iso/flat/ico/UZ.ico differ diff --git a/flags/flags-iso/flat/ico/VA.ico b/flags/flags-iso/flat/ico/VA.ico new file mode 100644 index 0000000..55a3642 Binary files /dev/null and b/flags/flags-iso/flat/ico/VA.ico differ diff --git a/flags/flags-iso/flat/ico/VC.ico b/flags/flags-iso/flat/ico/VC.ico new file mode 100644 index 0000000..0643151 Binary files /dev/null and b/flags/flags-iso/flat/ico/VC.ico differ diff --git a/flags/flags-iso/flat/ico/VE.ico b/flags/flags-iso/flat/ico/VE.ico new file mode 100644 index 0000000..5c1e472 Binary files /dev/null and b/flags/flags-iso/flat/ico/VE.ico differ diff --git a/flags/flags-iso/flat/ico/VG.ico b/flags/flags-iso/flat/ico/VG.ico new file mode 100644 index 0000000..7716ad4 Binary files /dev/null and b/flags/flags-iso/flat/ico/VG.ico differ diff --git a/flags/flags-iso/flat/ico/VI.ico b/flags/flags-iso/flat/ico/VI.ico new file mode 100644 index 0000000..69a582e Binary files /dev/null and b/flags/flags-iso/flat/ico/VI.ico differ diff --git a/flags/flags-iso/flat/ico/VN.ico b/flags/flags-iso/flat/ico/VN.ico new file mode 100644 index 0000000..6dcc1d6 Binary files /dev/null and b/flags/flags-iso/flat/ico/VN.ico differ diff --git a/flags/flags-iso/flat/ico/VU.ico b/flags/flags-iso/flat/ico/VU.ico new file mode 100644 index 0000000..d191f19 Binary files /dev/null and b/flags/flags-iso/flat/ico/VU.ico differ diff --git a/flags/flags-iso/flat/ico/WS.ico b/flags/flags-iso/flat/ico/WS.ico new file mode 100644 index 0000000..e3baca1 Binary files /dev/null and b/flags/flags-iso/flat/ico/WS.ico differ diff --git a/flags/flags-iso/flat/ico/YE.ico b/flags/flags-iso/flat/ico/YE.ico new file mode 100644 index 0000000..94134a1 Binary files /dev/null and b/flags/flags-iso/flat/ico/YE.ico differ diff --git a/flags/flags-iso/flat/ico/YT.ico b/flags/flags-iso/flat/ico/YT.ico new file mode 100644 index 0000000..ca69454 Binary files /dev/null and b/flags/flags-iso/flat/ico/YT.ico differ diff --git a/flags/flags-iso/flat/ico/ZA.ico b/flags/flags-iso/flat/ico/ZA.ico new file mode 100644 index 0000000..6ad2bb7 Binary files /dev/null and b/flags/flags-iso/flat/ico/ZA.ico differ diff --git a/flags/flags-iso/flat/ico/ZM.ico b/flags/flags-iso/flat/ico/ZM.ico new file mode 100644 index 0000000..48b28df Binary files /dev/null and b/flags/flags-iso/flat/ico/ZM.ico differ diff --git a/flags/flags-iso/flat/ico/ZW.ico b/flags/flags-iso/flat/ico/ZW.ico new file mode 100644 index 0000000..fbc489c Binary files /dev/null and b/flags/flags-iso/flat/ico/ZW.ico differ diff --git a/flags/flags-iso/flat/ico/_abkhazia.ico b/flags/flags-iso/flat/ico/_abkhazia.ico new file mode 100644 index 0000000..5cb6c8a Binary files /dev/null and b/flags/flags-iso/flat/ico/_abkhazia.ico differ diff --git a/flags/flags-iso/flat/ico/_british-antarctic-territory.ico b/flags/flags-iso/flat/ico/_british-antarctic-territory.ico new file mode 100644 index 0000000..11acb9f Binary files /dev/null and b/flags/flags-iso/flat/ico/_british-antarctic-territory.ico differ diff --git a/flags/flags-iso/flat/ico/_commonwealth.ico b/flags/flags-iso/flat/ico/_commonwealth.ico new file mode 100644 index 0000000..544548f Binary files /dev/null and b/flags/flags-iso/flat/ico/_commonwealth.ico differ diff --git a/flags/flags-iso/flat/ico/_england.ico b/flags/flags-iso/flat/ico/_england.ico new file mode 100644 index 0000000..e64e9b4 Binary files /dev/null and b/flags/flags-iso/flat/ico/_england.ico differ diff --git a/flags/flags-iso/flat/ico/_gosquared.ico b/flags/flags-iso/flat/ico/_gosquared.ico new file mode 100644 index 0000000..9d6d9db Binary files /dev/null and b/flags/flags-iso/flat/ico/_gosquared.ico differ diff --git a/flags/flags-iso/flat/ico/_kosovo.ico b/flags/flags-iso/flat/ico/_kosovo.ico new file mode 100644 index 0000000..dc781c8 Binary files /dev/null and b/flags/flags-iso/flat/ico/_kosovo.ico differ diff --git a/flags/flags-iso/flat/ico/_mars.ico b/flags/flags-iso/flat/ico/_mars.ico new file mode 100644 index 0000000..a702afb Binary files /dev/null and b/flags/flags-iso/flat/ico/_mars.ico differ diff --git a/flags/flags-iso/flat/ico/_nagorno-karabakh.ico b/flags/flags-iso/flat/ico/_nagorno-karabakh.ico new file mode 100644 index 0000000..8f77d44 Binary files /dev/null and b/flags/flags-iso/flat/ico/_nagorno-karabakh.ico differ diff --git a/flags/flags-iso/flat/ico/_nato.ico b/flags/flags-iso/flat/ico/_nato.ico new file mode 100644 index 0000000..7f52c54 Binary files /dev/null and b/flags/flags-iso/flat/ico/_nato.ico differ diff --git a/flags/flags-iso/flat/ico/_northern-cyprus.ico b/flags/flags-iso/flat/ico/_northern-cyprus.ico new file mode 100644 index 0000000..02795dd Binary files /dev/null and b/flags/flags-iso/flat/ico/_northern-cyprus.ico differ diff --git a/flags/flags-iso/flat/ico/_olympics.ico b/flags/flags-iso/flat/ico/_olympics.ico new file mode 100644 index 0000000..0783341 Binary files /dev/null and b/flags/flags-iso/flat/ico/_olympics.ico differ diff --git a/flags/flags-iso/flat/ico/_red-cross.ico b/flags/flags-iso/flat/ico/_red-cross.ico new file mode 100644 index 0000000..915ba93 Binary files /dev/null and b/flags/flags-iso/flat/ico/_red-cross.ico differ diff --git a/flags/flags-iso/flat/ico/_scotland.ico b/flags/flags-iso/flat/ico/_scotland.ico new file mode 100644 index 0000000..a85b5e8 Binary files /dev/null and b/flags/flags-iso/flat/ico/_scotland.ico differ diff --git a/flags/flags-iso/flat/ico/_somaliland.ico b/flags/flags-iso/flat/ico/_somaliland.ico new file mode 100644 index 0000000..d75b34c Binary files /dev/null and b/flags/flags-iso/flat/ico/_somaliland.ico differ diff --git a/flags/flags-iso/flat/ico/_south-ossetia.ico b/flags/flags-iso/flat/ico/_south-ossetia.ico new file mode 100644 index 0000000..63735a7 Binary files /dev/null and b/flags/flags-iso/flat/ico/_south-ossetia.ico differ diff --git a/flags/flags-iso/flat/ico/_united-nations.ico b/flags/flags-iso/flat/ico/_united-nations.ico new file mode 100644 index 0000000..2507c44 Binary files /dev/null and b/flags/flags-iso/flat/ico/_united-nations.ico differ diff --git a/flags/flags-iso/flat/ico/_wales.ico b/flags/flags-iso/flat/ico/_wales.ico new file mode 100644 index 0000000..b4c5daa Binary files /dev/null and b/flags/flags-iso/flat/ico/_wales.ico differ diff --git a/flags/flags-iso/shiny/16/.png b/flags/flags-iso/shiny/16/.png new file mode 100644 index 0000000..79bf057 Binary files /dev/null and b/flags/flags-iso/shiny/16/.png differ diff --git a/flags/flags-iso/shiny/16/AD.png b/flags/flags-iso/shiny/16/AD.png new file mode 100644 index 0000000..bdbe434 Binary files /dev/null and b/flags/flags-iso/shiny/16/AD.png differ diff --git a/flags/flags-iso/shiny/16/AE.png b/flags/flags-iso/shiny/16/AE.png new file mode 100644 index 0000000..501ebc6 Binary files /dev/null and b/flags/flags-iso/shiny/16/AE.png differ diff --git a/flags/flags-iso/shiny/16/AF.png b/flags/flags-iso/shiny/16/AF.png new file mode 100644 index 0000000..61e9518 Binary files /dev/null and b/flags/flags-iso/shiny/16/AF.png differ diff --git a/flags/flags-iso/shiny/16/AG.png b/flags/flags-iso/shiny/16/AG.png new file mode 100644 index 0000000..cb6b940 Binary files /dev/null and b/flags/flags-iso/shiny/16/AG.png differ diff --git a/flags/flags-iso/shiny/16/AI.png b/flags/flags-iso/shiny/16/AI.png new file mode 100644 index 0000000..3206b92 Binary files /dev/null and b/flags/flags-iso/shiny/16/AI.png differ diff --git a/flags/flags-iso/shiny/16/AL.png b/flags/flags-iso/shiny/16/AL.png new file mode 100644 index 0000000..5bd4986 Binary files /dev/null and b/flags/flags-iso/shiny/16/AL.png differ diff --git a/flags/flags-iso/shiny/16/AM.png b/flags/flags-iso/shiny/16/AM.png new file mode 100644 index 0000000..83df09a Binary files /dev/null and b/flags/flags-iso/shiny/16/AM.png differ diff --git a/flags/flags-iso/shiny/16/AN.png b/flags/flags-iso/shiny/16/AN.png new file mode 100644 index 0000000..0fc1c3b Binary files /dev/null and b/flags/flags-iso/shiny/16/AN.png differ diff --git a/flags/flags-iso/shiny/16/AO.png b/flags/flags-iso/shiny/16/AO.png new file mode 100644 index 0000000..fa426da Binary files /dev/null and b/flags/flags-iso/shiny/16/AO.png differ diff --git a/flags/flags-iso/shiny/16/AQ.png b/flags/flags-iso/shiny/16/AQ.png new file mode 100644 index 0000000..cfa0b9f Binary files /dev/null and b/flags/flags-iso/shiny/16/AQ.png differ diff --git a/flags/flags-iso/shiny/16/AR.png b/flags/flags-iso/shiny/16/AR.png new file mode 100644 index 0000000..e1fa97b Binary files /dev/null and b/flags/flags-iso/shiny/16/AR.png differ diff --git a/flags/flags-iso/shiny/16/AS.png b/flags/flags-iso/shiny/16/AS.png new file mode 100644 index 0000000..43b5aec Binary files /dev/null and b/flags/flags-iso/shiny/16/AS.png differ diff --git a/flags/flags-iso/shiny/16/AT.png b/flags/flags-iso/shiny/16/AT.png new file mode 100644 index 0000000..794bd2f Binary files /dev/null and b/flags/flags-iso/shiny/16/AT.png differ diff --git a/flags/flags-iso/shiny/16/AU.png b/flags/flags-iso/shiny/16/AU.png new file mode 100644 index 0000000..11f4d1c Binary files /dev/null and b/flags/flags-iso/shiny/16/AU.png differ diff --git a/flags/flags-iso/shiny/16/AW.png b/flags/flags-iso/shiny/16/AW.png new file mode 100644 index 0000000..b21c2ea Binary files /dev/null and b/flags/flags-iso/shiny/16/AW.png differ diff --git a/flags/flags-iso/shiny/16/AX.png b/flags/flags-iso/shiny/16/AX.png new file mode 100644 index 0000000..46a1802 Binary files /dev/null and b/flags/flags-iso/shiny/16/AX.png differ diff --git a/flags/flags-iso/shiny/16/AZ.png b/flags/flags-iso/shiny/16/AZ.png new file mode 100644 index 0000000..878e559 Binary files /dev/null and b/flags/flags-iso/shiny/16/AZ.png differ diff --git a/flags/flags-iso/shiny/16/BA.png b/flags/flags-iso/shiny/16/BA.png new file mode 100644 index 0000000..b484edb Binary files /dev/null and b/flags/flags-iso/shiny/16/BA.png differ diff --git a/flags/flags-iso/shiny/16/BB.png b/flags/flags-iso/shiny/16/BB.png new file mode 100644 index 0000000..be3d149 Binary files /dev/null and b/flags/flags-iso/shiny/16/BB.png differ diff --git a/flags/flags-iso/shiny/16/BD.png b/flags/flags-iso/shiny/16/BD.png new file mode 100644 index 0000000..b6c440a Binary files /dev/null and b/flags/flags-iso/shiny/16/BD.png differ diff --git a/flags/flags-iso/shiny/16/BE.png b/flags/flags-iso/shiny/16/BE.png new file mode 100644 index 0000000..5e47a3a Binary files /dev/null and b/flags/flags-iso/shiny/16/BE.png differ diff --git a/flags/flags-iso/shiny/16/BF.png b/flags/flags-iso/shiny/16/BF.png new file mode 100644 index 0000000..9e0643c Binary files /dev/null and b/flags/flags-iso/shiny/16/BF.png differ diff --git a/flags/flags-iso/shiny/16/BG.png b/flags/flags-iso/shiny/16/BG.png new file mode 100644 index 0000000..775550c Binary files /dev/null and b/flags/flags-iso/shiny/16/BG.png differ diff --git a/flags/flags-iso/shiny/16/BH.png b/flags/flags-iso/shiny/16/BH.png new file mode 100644 index 0000000..b3eb851 Binary files /dev/null and b/flags/flags-iso/shiny/16/BH.png differ diff --git a/flags/flags-iso/shiny/16/BI.png b/flags/flags-iso/shiny/16/BI.png new file mode 100644 index 0000000..394a829 Binary files /dev/null and b/flags/flags-iso/shiny/16/BI.png differ diff --git a/flags/flags-iso/shiny/16/BJ.png b/flags/flags-iso/shiny/16/BJ.png new file mode 100644 index 0000000..688797f Binary files /dev/null and b/flags/flags-iso/shiny/16/BJ.png differ diff --git a/flags/flags-iso/shiny/16/BL.png b/flags/flags-iso/shiny/16/BL.png new file mode 100644 index 0000000..79e24d2 Binary files /dev/null and b/flags/flags-iso/shiny/16/BL.png differ diff --git a/flags/flags-iso/shiny/16/BM.png b/flags/flags-iso/shiny/16/BM.png new file mode 100644 index 0000000..132e990 Binary files /dev/null and b/flags/flags-iso/shiny/16/BM.png differ diff --git a/flags/flags-iso/shiny/16/BN.png b/flags/flags-iso/shiny/16/BN.png new file mode 100644 index 0000000..62882e8 Binary files /dev/null and b/flags/flags-iso/shiny/16/BN.png differ diff --git a/flags/flags-iso/shiny/16/BO.png b/flags/flags-iso/shiny/16/BO.png new file mode 100644 index 0000000..63d8e76 Binary files /dev/null and b/flags/flags-iso/shiny/16/BO.png differ diff --git a/flags/flags-iso/shiny/16/BR.png b/flags/flags-iso/shiny/16/BR.png new file mode 100644 index 0000000..42e1849 Binary files /dev/null and b/flags/flags-iso/shiny/16/BR.png differ diff --git a/flags/flags-iso/shiny/16/BS.png b/flags/flags-iso/shiny/16/BS.png new file mode 100644 index 0000000..aabafab Binary files /dev/null and b/flags/flags-iso/shiny/16/BS.png differ diff --git a/flags/flags-iso/shiny/16/BT.png b/flags/flags-iso/shiny/16/BT.png new file mode 100644 index 0000000..026fde3 Binary files /dev/null and b/flags/flags-iso/shiny/16/BT.png differ diff --git a/flags/flags-iso/shiny/16/BW.png b/flags/flags-iso/shiny/16/BW.png new file mode 100644 index 0000000..b4a502b Binary files /dev/null and b/flags/flags-iso/shiny/16/BW.png differ diff --git a/flags/flags-iso/shiny/16/BY.png b/flags/flags-iso/shiny/16/BY.png new file mode 100644 index 0000000..0376c98 Binary files /dev/null and b/flags/flags-iso/shiny/16/BY.png differ diff --git a/flags/flags-iso/shiny/16/BZ.png b/flags/flags-iso/shiny/16/BZ.png new file mode 100644 index 0000000..0291200 Binary files /dev/null and b/flags/flags-iso/shiny/16/BZ.png differ diff --git a/flags/flags-iso/shiny/16/CA.png b/flags/flags-iso/shiny/16/CA.png new file mode 100644 index 0000000..0906eca Binary files /dev/null and b/flags/flags-iso/shiny/16/CA.png differ diff --git a/flags/flags-iso/shiny/16/CC.png b/flags/flags-iso/shiny/16/CC.png new file mode 100644 index 0000000..d599e12 Binary files /dev/null and b/flags/flags-iso/shiny/16/CC.png differ diff --git a/flags/flags-iso/shiny/16/CD.png b/flags/flags-iso/shiny/16/CD.png new file mode 100644 index 0000000..de00b2f Binary files /dev/null and b/flags/flags-iso/shiny/16/CD.png differ diff --git a/flags/flags-iso/shiny/16/CF.png b/flags/flags-iso/shiny/16/CF.png new file mode 100644 index 0000000..32cb360 Binary files /dev/null and b/flags/flags-iso/shiny/16/CF.png differ diff --git a/flags/flags-iso/shiny/16/CG.png b/flags/flags-iso/shiny/16/CG.png new file mode 100644 index 0000000..f35021f Binary files /dev/null and b/flags/flags-iso/shiny/16/CG.png differ diff --git a/flags/flags-iso/shiny/16/CH.png b/flags/flags-iso/shiny/16/CH.png new file mode 100644 index 0000000..de304f3 Binary files /dev/null and b/flags/flags-iso/shiny/16/CH.png differ diff --git a/flags/flags-iso/shiny/16/CI.png b/flags/flags-iso/shiny/16/CI.png new file mode 100644 index 0000000..e519e0b Binary files /dev/null and b/flags/flags-iso/shiny/16/CI.png differ diff --git a/flags/flags-iso/shiny/16/CK.png b/flags/flags-iso/shiny/16/CK.png new file mode 100644 index 0000000..e07ed83 Binary files /dev/null and b/flags/flags-iso/shiny/16/CK.png differ diff --git a/flags/flags-iso/shiny/16/CL.png b/flags/flags-iso/shiny/16/CL.png new file mode 100644 index 0000000..57bf33e Binary files /dev/null and b/flags/flags-iso/shiny/16/CL.png differ diff --git a/flags/flags-iso/shiny/16/CM.png b/flags/flags-iso/shiny/16/CM.png new file mode 100644 index 0000000..7b21abc Binary files /dev/null and b/flags/flags-iso/shiny/16/CM.png differ diff --git a/flags/flags-iso/shiny/16/CN.png b/flags/flags-iso/shiny/16/CN.png new file mode 100644 index 0000000..8c35f25 Binary files /dev/null and b/flags/flags-iso/shiny/16/CN.png differ diff --git a/flags/flags-iso/shiny/16/CO.png b/flags/flags-iso/shiny/16/CO.png new file mode 100644 index 0000000..25142bc Binary files /dev/null and b/flags/flags-iso/shiny/16/CO.png differ diff --git a/flags/flags-iso/shiny/16/CR.png b/flags/flags-iso/shiny/16/CR.png new file mode 100644 index 0000000..17eeb62 Binary files /dev/null and b/flags/flags-iso/shiny/16/CR.png differ diff --git a/flags/flags-iso/shiny/16/CU.png b/flags/flags-iso/shiny/16/CU.png new file mode 100644 index 0000000..cd80f6d Binary files /dev/null and b/flags/flags-iso/shiny/16/CU.png differ diff --git a/flags/flags-iso/shiny/16/CV.png b/flags/flags-iso/shiny/16/CV.png new file mode 100644 index 0000000..f0c6fb0 Binary files /dev/null and b/flags/flags-iso/shiny/16/CV.png differ diff --git a/flags/flags-iso/shiny/16/CX.png b/flags/flags-iso/shiny/16/CX.png new file mode 100644 index 0000000..6d068d8 Binary files /dev/null and b/flags/flags-iso/shiny/16/CX.png differ diff --git a/flags/flags-iso/shiny/16/CY.png b/flags/flags-iso/shiny/16/CY.png new file mode 100644 index 0000000..3aff6b8 Binary files /dev/null and b/flags/flags-iso/shiny/16/CY.png differ diff --git a/flags/flags-iso/shiny/16/CZ.png b/flags/flags-iso/shiny/16/CZ.png new file mode 100644 index 0000000..1bbbf0d Binary files /dev/null and b/flags/flags-iso/shiny/16/CZ.png differ diff --git a/flags/flags-iso/shiny/16/DE.png b/flags/flags-iso/shiny/16/DE.png new file mode 100644 index 0000000..d282989 Binary files /dev/null and b/flags/flags-iso/shiny/16/DE.png differ diff --git a/flags/flags-iso/shiny/16/DJ.png b/flags/flags-iso/shiny/16/DJ.png new file mode 100644 index 0000000..78660a1 Binary files /dev/null and b/flags/flags-iso/shiny/16/DJ.png differ diff --git a/flags/flags-iso/shiny/16/DK.png b/flags/flags-iso/shiny/16/DK.png new file mode 100644 index 0000000..a81768c Binary files /dev/null and b/flags/flags-iso/shiny/16/DK.png differ diff --git a/flags/flags-iso/shiny/16/DM.png b/flags/flags-iso/shiny/16/DM.png new file mode 100644 index 0000000..93700d7 Binary files /dev/null and b/flags/flags-iso/shiny/16/DM.png differ diff --git a/flags/flags-iso/shiny/16/DO.png b/flags/flags-iso/shiny/16/DO.png new file mode 100644 index 0000000..4b2c207 Binary files /dev/null and b/flags/flags-iso/shiny/16/DO.png differ diff --git a/flags/flags-iso/shiny/16/DZ.png b/flags/flags-iso/shiny/16/DZ.png new file mode 100644 index 0000000..65a50f3 Binary files /dev/null and b/flags/flags-iso/shiny/16/DZ.png differ diff --git a/flags/flags-iso/shiny/16/EC.png b/flags/flags-iso/shiny/16/EC.png new file mode 100644 index 0000000..204c631 Binary files /dev/null and b/flags/flags-iso/shiny/16/EC.png differ diff --git a/flags/flags-iso/shiny/16/EE.png b/flags/flags-iso/shiny/16/EE.png new file mode 100644 index 0000000..6c19913 Binary files /dev/null and b/flags/flags-iso/shiny/16/EE.png differ diff --git a/flags/flags-iso/shiny/16/EG.png b/flags/flags-iso/shiny/16/EG.png new file mode 100644 index 0000000..96c93ed Binary files /dev/null and b/flags/flags-iso/shiny/16/EG.png differ diff --git a/flags/flags-iso/shiny/16/EH.png b/flags/flags-iso/shiny/16/EH.png new file mode 100644 index 0000000..2a53959 Binary files /dev/null and b/flags/flags-iso/shiny/16/EH.png differ diff --git a/flags/flags-iso/shiny/16/ER.png b/flags/flags-iso/shiny/16/ER.png new file mode 100644 index 0000000..273ef15 Binary files /dev/null and b/flags/flags-iso/shiny/16/ER.png differ diff --git a/flags/flags-iso/shiny/16/ES.png b/flags/flags-iso/shiny/16/ES.png new file mode 100644 index 0000000..df2315f Binary files /dev/null and b/flags/flags-iso/shiny/16/ES.png differ diff --git a/flags/flags-iso/shiny/16/ET.png b/flags/flags-iso/shiny/16/ET.png new file mode 100644 index 0000000..c66f7ac Binary files /dev/null and b/flags/flags-iso/shiny/16/ET.png differ diff --git a/flags/flags-iso/shiny/16/EU.png b/flags/flags-iso/shiny/16/EU.png new file mode 100644 index 0000000..7652407 Binary files /dev/null and b/flags/flags-iso/shiny/16/EU.png differ diff --git a/flags/flags-iso/shiny/16/FI.png b/flags/flags-iso/shiny/16/FI.png new file mode 100644 index 0000000..627ad2e Binary files /dev/null and b/flags/flags-iso/shiny/16/FI.png differ diff --git a/flags/flags-iso/shiny/16/FJ.png b/flags/flags-iso/shiny/16/FJ.png new file mode 100644 index 0000000..a90ae00 Binary files /dev/null and b/flags/flags-iso/shiny/16/FJ.png differ diff --git a/flags/flags-iso/shiny/16/FK.png b/flags/flags-iso/shiny/16/FK.png new file mode 100644 index 0000000..8c4e4a7 Binary files /dev/null and b/flags/flags-iso/shiny/16/FK.png differ diff --git a/flags/flags-iso/shiny/16/FM.png b/flags/flags-iso/shiny/16/FM.png new file mode 100644 index 0000000..bf420a8 Binary files /dev/null and b/flags/flags-iso/shiny/16/FM.png differ diff --git a/flags/flags-iso/shiny/16/FO.png b/flags/flags-iso/shiny/16/FO.png new file mode 100644 index 0000000..4264083 Binary files /dev/null and b/flags/flags-iso/shiny/16/FO.png differ diff --git a/flags/flags-iso/shiny/16/FR.png b/flags/flags-iso/shiny/16/FR.png new file mode 100644 index 0000000..b18c5ff Binary files /dev/null and b/flags/flags-iso/shiny/16/FR.png differ diff --git a/flags/flags-iso/shiny/16/GA.png b/flags/flags-iso/shiny/16/GA.png new file mode 100644 index 0000000..2b198db Binary files /dev/null and b/flags/flags-iso/shiny/16/GA.png differ diff --git a/flags/flags-iso/shiny/16/GB.png b/flags/flags-iso/shiny/16/GB.png new file mode 100644 index 0000000..a1d267e Binary files /dev/null and b/flags/flags-iso/shiny/16/GB.png differ diff --git a/flags/flags-iso/shiny/16/GD.png b/flags/flags-iso/shiny/16/GD.png new file mode 100644 index 0000000..5ec83c4 Binary files /dev/null and b/flags/flags-iso/shiny/16/GD.png differ diff --git a/flags/flags-iso/shiny/16/GE.png b/flags/flags-iso/shiny/16/GE.png new file mode 100644 index 0000000..b6b33ec Binary files /dev/null and b/flags/flags-iso/shiny/16/GE.png differ diff --git a/flags/flags-iso/shiny/16/GG.png b/flags/flags-iso/shiny/16/GG.png new file mode 100644 index 0000000..f2c1b71 Binary files /dev/null and b/flags/flags-iso/shiny/16/GG.png differ diff --git a/flags/flags-iso/shiny/16/GH.png b/flags/flags-iso/shiny/16/GH.png new file mode 100644 index 0000000..3ba2af7 Binary files /dev/null and b/flags/flags-iso/shiny/16/GH.png differ diff --git a/flags/flags-iso/shiny/16/GI.png b/flags/flags-iso/shiny/16/GI.png new file mode 100644 index 0000000..7a79f3e Binary files /dev/null and b/flags/flags-iso/shiny/16/GI.png differ diff --git a/flags/flags-iso/shiny/16/GL.png b/flags/flags-iso/shiny/16/GL.png new file mode 100644 index 0000000..6f27d69 Binary files /dev/null and b/flags/flags-iso/shiny/16/GL.png differ diff --git a/flags/flags-iso/shiny/16/GM.png b/flags/flags-iso/shiny/16/GM.png new file mode 100644 index 0000000..b056657 Binary files /dev/null and b/flags/flags-iso/shiny/16/GM.png differ diff --git a/flags/flags-iso/shiny/16/GN.png b/flags/flags-iso/shiny/16/GN.png new file mode 100644 index 0000000..4b4a25a Binary files /dev/null and b/flags/flags-iso/shiny/16/GN.png differ diff --git a/flags/flags-iso/shiny/16/GQ.png b/flags/flags-iso/shiny/16/GQ.png new file mode 100644 index 0000000..22e85d7 Binary files /dev/null and b/flags/flags-iso/shiny/16/GQ.png differ diff --git a/flags/flags-iso/shiny/16/GR.png b/flags/flags-iso/shiny/16/GR.png new file mode 100644 index 0000000..9321a1e Binary files /dev/null and b/flags/flags-iso/shiny/16/GR.png differ diff --git a/flags/flags-iso/shiny/16/GS.png b/flags/flags-iso/shiny/16/GS.png new file mode 100644 index 0000000..fbd3fd7 Binary files /dev/null and b/flags/flags-iso/shiny/16/GS.png differ diff --git a/flags/flags-iso/shiny/16/GT.png b/flags/flags-iso/shiny/16/GT.png new file mode 100644 index 0000000..dacd490 Binary files /dev/null and b/flags/flags-iso/shiny/16/GT.png differ diff --git a/flags/flags-iso/shiny/16/GU.png b/flags/flags-iso/shiny/16/GU.png new file mode 100644 index 0000000..fa0cc49 Binary files /dev/null and b/flags/flags-iso/shiny/16/GU.png differ diff --git a/flags/flags-iso/shiny/16/GW.png b/flags/flags-iso/shiny/16/GW.png new file mode 100644 index 0000000..4f48bec Binary files /dev/null and b/flags/flags-iso/shiny/16/GW.png differ diff --git a/flags/flags-iso/shiny/16/GY.png b/flags/flags-iso/shiny/16/GY.png new file mode 100644 index 0000000..17a1692 Binary files /dev/null and b/flags/flags-iso/shiny/16/GY.png differ diff --git a/flags/flags-iso/shiny/16/HK.png b/flags/flags-iso/shiny/16/HK.png new file mode 100644 index 0000000..a2bd2ea Binary files /dev/null and b/flags/flags-iso/shiny/16/HK.png differ diff --git a/flags/flags-iso/shiny/16/HN.png b/flags/flags-iso/shiny/16/HN.png new file mode 100644 index 0000000..4aadec8 Binary files /dev/null and b/flags/flags-iso/shiny/16/HN.png differ diff --git a/flags/flags-iso/shiny/16/HR.png b/flags/flags-iso/shiny/16/HR.png new file mode 100644 index 0000000..d0b5266 Binary files /dev/null and b/flags/flags-iso/shiny/16/HR.png differ diff --git a/flags/flags-iso/shiny/16/HT.png b/flags/flags-iso/shiny/16/HT.png new file mode 100644 index 0000000..d20cf24 Binary files /dev/null and b/flags/flags-iso/shiny/16/HT.png differ diff --git a/flags/flags-iso/shiny/16/HU.png b/flags/flags-iso/shiny/16/HU.png new file mode 100644 index 0000000..ae5c6c9 Binary files /dev/null and b/flags/flags-iso/shiny/16/HU.png differ diff --git a/flags/flags-iso/shiny/16/ID.png b/flags/flags-iso/shiny/16/ID.png new file mode 100644 index 0000000..9881b87 Binary files /dev/null and b/flags/flags-iso/shiny/16/ID.png differ diff --git a/flags/flags-iso/shiny/16/IE.png b/flags/flags-iso/shiny/16/IE.png new file mode 100644 index 0000000..ec9ba0f Binary files /dev/null and b/flags/flags-iso/shiny/16/IE.png differ diff --git a/flags/flags-iso/shiny/16/IL.png b/flags/flags-iso/shiny/16/IL.png new file mode 100644 index 0000000..13e3503 Binary files /dev/null and b/flags/flags-iso/shiny/16/IL.png differ diff --git a/flags/flags-iso/shiny/16/IM.png b/flags/flags-iso/shiny/16/IM.png new file mode 100644 index 0000000..06ee5c4 Binary files /dev/null and b/flags/flags-iso/shiny/16/IM.png differ diff --git a/flags/flags-iso/shiny/16/IN.png b/flags/flags-iso/shiny/16/IN.png new file mode 100644 index 0000000..e5dd9d2 Binary files /dev/null and b/flags/flags-iso/shiny/16/IN.png differ diff --git a/flags/flags-iso/shiny/16/IQ.png b/flags/flags-iso/shiny/16/IQ.png new file mode 100644 index 0000000..1f28ebd Binary files /dev/null and b/flags/flags-iso/shiny/16/IQ.png differ diff --git a/flags/flags-iso/shiny/16/IR.png b/flags/flags-iso/shiny/16/IR.png new file mode 100644 index 0000000..5388dfb Binary files /dev/null and b/flags/flags-iso/shiny/16/IR.png differ diff --git a/flags/flags-iso/shiny/16/IS.png b/flags/flags-iso/shiny/16/IS.png new file mode 100644 index 0000000..d535f7f Binary files /dev/null and b/flags/flags-iso/shiny/16/IS.png differ diff --git a/flags/flags-iso/shiny/16/IT.png b/flags/flags-iso/shiny/16/IT.png new file mode 100644 index 0000000..42d1677 Binary files /dev/null and b/flags/flags-iso/shiny/16/IT.png differ diff --git a/flags/flags-iso/shiny/16/JE.png b/flags/flags-iso/shiny/16/JE.png new file mode 100644 index 0000000..407e319 Binary files /dev/null and b/flags/flags-iso/shiny/16/JE.png differ diff --git a/flags/flags-iso/shiny/16/JM.png b/flags/flags-iso/shiny/16/JM.png new file mode 100644 index 0000000..6237052 Binary files /dev/null and b/flags/flags-iso/shiny/16/JM.png differ diff --git a/flags/flags-iso/shiny/16/JO.png b/flags/flags-iso/shiny/16/JO.png new file mode 100644 index 0000000..8e11b7b Binary files /dev/null and b/flags/flags-iso/shiny/16/JO.png differ diff --git a/flags/flags-iso/shiny/16/JP.png b/flags/flags-iso/shiny/16/JP.png new file mode 100644 index 0000000..a742140 Binary files /dev/null and b/flags/flags-iso/shiny/16/JP.png differ diff --git a/flags/flags-iso/shiny/16/KE.png b/flags/flags-iso/shiny/16/KE.png new file mode 100644 index 0000000..e1ac097 Binary files /dev/null and b/flags/flags-iso/shiny/16/KE.png differ diff --git a/flags/flags-iso/shiny/16/KG.png b/flags/flags-iso/shiny/16/KG.png new file mode 100644 index 0000000..2de2061 Binary files /dev/null and b/flags/flags-iso/shiny/16/KG.png differ diff --git a/flags/flags-iso/shiny/16/KH.png b/flags/flags-iso/shiny/16/KH.png new file mode 100644 index 0000000..4f80d8c Binary files /dev/null and b/flags/flags-iso/shiny/16/KH.png differ diff --git a/flags/flags-iso/shiny/16/KI.png b/flags/flags-iso/shiny/16/KI.png new file mode 100644 index 0000000..1990c8d Binary files /dev/null and b/flags/flags-iso/shiny/16/KI.png differ diff --git a/flags/flags-iso/shiny/16/KM.png b/flags/flags-iso/shiny/16/KM.png new file mode 100644 index 0000000..5eedfeb Binary files /dev/null and b/flags/flags-iso/shiny/16/KM.png differ diff --git a/flags/flags-iso/shiny/16/KN.png b/flags/flags-iso/shiny/16/KN.png new file mode 100644 index 0000000..be930df Binary files /dev/null and b/flags/flags-iso/shiny/16/KN.png differ diff --git a/flags/flags-iso/shiny/16/KP.png b/flags/flags-iso/shiny/16/KP.png new file mode 100644 index 0000000..9716adc Binary files /dev/null and b/flags/flags-iso/shiny/16/KP.png differ diff --git a/flags/flags-iso/shiny/16/KR.png b/flags/flags-iso/shiny/16/KR.png new file mode 100644 index 0000000..7878247 Binary files /dev/null and b/flags/flags-iso/shiny/16/KR.png differ diff --git a/flags/flags-iso/shiny/16/KW.png b/flags/flags-iso/shiny/16/KW.png new file mode 100644 index 0000000..af0191c Binary files /dev/null and b/flags/flags-iso/shiny/16/KW.png differ diff --git a/flags/flags-iso/shiny/16/KY.png b/flags/flags-iso/shiny/16/KY.png new file mode 100644 index 0000000..c787eb0 Binary files /dev/null and b/flags/flags-iso/shiny/16/KY.png differ diff --git a/flags/flags-iso/shiny/16/KZ.png b/flags/flags-iso/shiny/16/KZ.png new file mode 100644 index 0000000..5fe5a82 Binary files /dev/null and b/flags/flags-iso/shiny/16/KZ.png differ diff --git a/flags/flags-iso/shiny/16/LA.png b/flags/flags-iso/shiny/16/LA.png new file mode 100644 index 0000000..d68c937 Binary files /dev/null and b/flags/flags-iso/shiny/16/LA.png differ diff --git a/flags/flags-iso/shiny/16/LB.png b/flags/flags-iso/shiny/16/LB.png new file mode 100644 index 0000000..627a3aa Binary files /dev/null and b/flags/flags-iso/shiny/16/LB.png differ diff --git a/flags/flags-iso/shiny/16/LC.png b/flags/flags-iso/shiny/16/LC.png new file mode 100644 index 0000000..8e93f66 Binary files /dev/null and b/flags/flags-iso/shiny/16/LC.png differ diff --git a/flags/flags-iso/shiny/16/LI.png b/flags/flags-iso/shiny/16/LI.png new file mode 100644 index 0000000..7d65fba Binary files /dev/null and b/flags/flags-iso/shiny/16/LI.png differ diff --git a/flags/flags-iso/shiny/16/LK.png b/flags/flags-iso/shiny/16/LK.png new file mode 100644 index 0000000..e926ca3 Binary files /dev/null and b/flags/flags-iso/shiny/16/LK.png differ diff --git a/flags/flags-iso/shiny/16/LR.png b/flags/flags-iso/shiny/16/LR.png new file mode 100644 index 0000000..4918491 Binary files /dev/null and b/flags/flags-iso/shiny/16/LR.png differ diff --git a/flags/flags-iso/shiny/16/LS.png b/flags/flags-iso/shiny/16/LS.png new file mode 100644 index 0000000..c8a5493 Binary files /dev/null and b/flags/flags-iso/shiny/16/LS.png differ diff --git a/flags/flags-iso/shiny/16/LT.png b/flags/flags-iso/shiny/16/LT.png new file mode 100644 index 0000000..f12a14b Binary files /dev/null and b/flags/flags-iso/shiny/16/LT.png differ diff --git a/flags/flags-iso/shiny/16/LU.png b/flags/flags-iso/shiny/16/LU.png new file mode 100644 index 0000000..59b08cc Binary files /dev/null and b/flags/flags-iso/shiny/16/LU.png differ diff --git a/flags/flags-iso/shiny/16/LV.png b/flags/flags-iso/shiny/16/LV.png new file mode 100644 index 0000000..c31180d Binary files /dev/null and b/flags/flags-iso/shiny/16/LV.png differ diff --git a/flags/flags-iso/shiny/16/LY.png b/flags/flags-iso/shiny/16/LY.png new file mode 100644 index 0000000..6847120 Binary files /dev/null and b/flags/flags-iso/shiny/16/LY.png differ diff --git a/flags/flags-iso/shiny/16/MA.png b/flags/flags-iso/shiny/16/MA.png new file mode 100644 index 0000000..67fe432 Binary files /dev/null and b/flags/flags-iso/shiny/16/MA.png differ diff --git a/flags/flags-iso/shiny/16/MC.png b/flags/flags-iso/shiny/16/MC.png new file mode 100644 index 0000000..9881b87 Binary files /dev/null and b/flags/flags-iso/shiny/16/MC.png differ diff --git a/flags/flags-iso/shiny/16/MD.png b/flags/flags-iso/shiny/16/MD.png new file mode 100644 index 0000000..4ebe0d6 Binary files /dev/null and b/flags/flags-iso/shiny/16/MD.png differ diff --git a/flags/flags-iso/shiny/16/ME.png b/flags/flags-iso/shiny/16/ME.png new file mode 100644 index 0000000..96e74b0 Binary files /dev/null and b/flags/flags-iso/shiny/16/ME.png differ diff --git a/flags/flags-iso/shiny/16/MG.png b/flags/flags-iso/shiny/16/MG.png new file mode 100644 index 0000000..c55a2f4 Binary files /dev/null and b/flags/flags-iso/shiny/16/MG.png differ diff --git a/flags/flags-iso/shiny/16/MH.png b/flags/flags-iso/shiny/16/MH.png new file mode 100644 index 0000000..7ffbb41 Binary files /dev/null and b/flags/flags-iso/shiny/16/MH.png differ diff --git a/flags/flags-iso/shiny/16/MK.png b/flags/flags-iso/shiny/16/MK.png new file mode 100644 index 0000000..1f6b1c7 Binary files /dev/null and b/flags/flags-iso/shiny/16/MK.png differ diff --git a/flags/flags-iso/shiny/16/ML.png b/flags/flags-iso/shiny/16/ML.png new file mode 100644 index 0000000..530e5c5 Binary files /dev/null and b/flags/flags-iso/shiny/16/ML.png differ diff --git a/flags/flags-iso/shiny/16/MM.png b/flags/flags-iso/shiny/16/MM.png new file mode 100644 index 0000000..102f811 Binary files /dev/null and b/flags/flags-iso/shiny/16/MM.png differ diff --git a/flags/flags-iso/shiny/16/MN.png b/flags/flags-iso/shiny/16/MN.png new file mode 100644 index 0000000..8589e8d Binary files /dev/null and b/flags/flags-iso/shiny/16/MN.png differ diff --git a/flags/flags-iso/shiny/16/MO.png b/flags/flags-iso/shiny/16/MO.png new file mode 100644 index 0000000..ff2e117 Binary files /dev/null and b/flags/flags-iso/shiny/16/MO.png differ diff --git a/flags/flags-iso/shiny/16/MP.png b/flags/flags-iso/shiny/16/MP.png new file mode 100644 index 0000000..0a80d84 Binary files /dev/null and b/flags/flags-iso/shiny/16/MP.png differ diff --git a/flags/flags-iso/shiny/16/MR.png b/flags/flags-iso/shiny/16/MR.png new file mode 100644 index 0000000..f25680e Binary files /dev/null and b/flags/flags-iso/shiny/16/MR.png differ diff --git a/flags/flags-iso/shiny/16/MS.png b/flags/flags-iso/shiny/16/MS.png new file mode 100644 index 0000000..1689556 Binary files /dev/null and b/flags/flags-iso/shiny/16/MS.png differ diff --git a/flags/flags-iso/shiny/16/MT.png b/flags/flags-iso/shiny/16/MT.png new file mode 100644 index 0000000..e77d8b2 Binary files /dev/null and b/flags/flags-iso/shiny/16/MT.png differ diff --git a/flags/flags-iso/shiny/16/MU.png b/flags/flags-iso/shiny/16/MU.png new file mode 100644 index 0000000..d7d7e1c Binary files /dev/null and b/flags/flags-iso/shiny/16/MU.png differ diff --git a/flags/flags-iso/shiny/16/MV.png b/flags/flags-iso/shiny/16/MV.png new file mode 100644 index 0000000..94d63cf Binary files /dev/null and b/flags/flags-iso/shiny/16/MV.png differ diff --git a/flags/flags-iso/shiny/16/MW.png b/flags/flags-iso/shiny/16/MW.png new file mode 100644 index 0000000..9b70c79 Binary files /dev/null and b/flags/flags-iso/shiny/16/MW.png differ diff --git a/flags/flags-iso/shiny/16/MX.png b/flags/flags-iso/shiny/16/MX.png new file mode 100644 index 0000000..d05b37a Binary files /dev/null and b/flags/flags-iso/shiny/16/MX.png differ diff --git a/flags/flags-iso/shiny/16/MY.png b/flags/flags-iso/shiny/16/MY.png new file mode 100644 index 0000000..9b7b458 Binary files /dev/null and b/flags/flags-iso/shiny/16/MY.png differ diff --git a/flags/flags-iso/shiny/16/MZ.png b/flags/flags-iso/shiny/16/MZ.png new file mode 100644 index 0000000..a919a16 Binary files /dev/null and b/flags/flags-iso/shiny/16/MZ.png differ diff --git a/flags/flags-iso/shiny/16/NA.png b/flags/flags-iso/shiny/16/NA.png new file mode 100644 index 0000000..a053026 Binary files /dev/null and b/flags/flags-iso/shiny/16/NA.png differ diff --git a/flags/flags-iso/shiny/16/NC.png b/flags/flags-iso/shiny/16/NC.png new file mode 100644 index 0000000..d04c592 Binary files /dev/null and b/flags/flags-iso/shiny/16/NC.png differ diff --git a/flags/flags-iso/shiny/16/NE.png b/flags/flags-iso/shiny/16/NE.png new file mode 100644 index 0000000..94c9512 Binary files /dev/null and b/flags/flags-iso/shiny/16/NE.png differ diff --git a/flags/flags-iso/shiny/16/NF.png b/flags/flags-iso/shiny/16/NF.png new file mode 100644 index 0000000..d09be06 Binary files /dev/null and b/flags/flags-iso/shiny/16/NF.png differ diff --git a/flags/flags-iso/shiny/16/NG.png b/flags/flags-iso/shiny/16/NG.png new file mode 100644 index 0000000..4265810 Binary files /dev/null and b/flags/flags-iso/shiny/16/NG.png differ diff --git a/flags/flags-iso/shiny/16/NI.png b/flags/flags-iso/shiny/16/NI.png new file mode 100644 index 0000000..3b542e4 Binary files /dev/null and b/flags/flags-iso/shiny/16/NI.png differ diff --git a/flags/flags-iso/shiny/16/NL.png b/flags/flags-iso/shiny/16/NL.png new file mode 100644 index 0000000..e1ede53 Binary files /dev/null and b/flags/flags-iso/shiny/16/NL.png differ diff --git a/flags/flags-iso/shiny/16/NO.png b/flags/flags-iso/shiny/16/NO.png new file mode 100644 index 0000000..9f79424 Binary files /dev/null and b/flags/flags-iso/shiny/16/NO.png differ diff --git a/flags/flags-iso/shiny/16/NP.png b/flags/flags-iso/shiny/16/NP.png new file mode 100644 index 0000000..23c3c6d Binary files /dev/null and b/flags/flags-iso/shiny/16/NP.png differ diff --git a/flags/flags-iso/shiny/16/NR.png b/flags/flags-iso/shiny/16/NR.png new file mode 100644 index 0000000..ee4d01e Binary files /dev/null and b/flags/flags-iso/shiny/16/NR.png differ diff --git a/flags/flags-iso/shiny/16/NU.png b/flags/flags-iso/shiny/16/NU.png new file mode 100644 index 0000000..354a67c Binary files /dev/null and b/flags/flags-iso/shiny/16/NU.png differ diff --git a/flags/flags-iso/shiny/16/NZ.png b/flags/flags-iso/shiny/16/NZ.png new file mode 100644 index 0000000..c44ca79 Binary files /dev/null and b/flags/flags-iso/shiny/16/NZ.png differ diff --git a/flags/flags-iso/shiny/16/OM.png b/flags/flags-iso/shiny/16/OM.png new file mode 100644 index 0000000..0e12bf9 Binary files /dev/null and b/flags/flags-iso/shiny/16/OM.png differ diff --git a/flags/flags-iso/shiny/16/PA.png b/flags/flags-iso/shiny/16/PA.png new file mode 100644 index 0000000..87f2a4b Binary files /dev/null and b/flags/flags-iso/shiny/16/PA.png differ diff --git a/flags/flags-iso/shiny/16/PE.png b/flags/flags-iso/shiny/16/PE.png new file mode 100644 index 0000000..792a9ce Binary files /dev/null and b/flags/flags-iso/shiny/16/PE.png differ diff --git a/flags/flags-iso/shiny/16/PF.png b/flags/flags-iso/shiny/16/PF.png new file mode 100644 index 0000000..5f9a5a5 Binary files /dev/null and b/flags/flags-iso/shiny/16/PF.png differ diff --git a/flags/flags-iso/shiny/16/PG.png b/flags/flags-iso/shiny/16/PG.png new file mode 100644 index 0000000..a7d1d23 Binary files /dev/null and b/flags/flags-iso/shiny/16/PG.png differ diff --git a/flags/flags-iso/shiny/16/PH.png b/flags/flags-iso/shiny/16/PH.png new file mode 100644 index 0000000..fd9d8fb Binary files /dev/null and b/flags/flags-iso/shiny/16/PH.png differ diff --git a/flags/flags-iso/shiny/16/PK.png b/flags/flags-iso/shiny/16/PK.png new file mode 100644 index 0000000..2f2550c Binary files /dev/null and b/flags/flags-iso/shiny/16/PK.png differ diff --git a/flags/flags-iso/shiny/16/PL.png b/flags/flags-iso/shiny/16/PL.png new file mode 100644 index 0000000..e30222e Binary files /dev/null and b/flags/flags-iso/shiny/16/PL.png differ diff --git a/flags/flags-iso/shiny/16/PN.png b/flags/flags-iso/shiny/16/PN.png new file mode 100644 index 0000000..18b8e38 Binary files /dev/null and b/flags/flags-iso/shiny/16/PN.png differ diff --git a/flags/flags-iso/shiny/16/PR.png b/flags/flags-iso/shiny/16/PR.png new file mode 100644 index 0000000..bac124c Binary files /dev/null and b/flags/flags-iso/shiny/16/PR.png differ diff --git a/flags/flags-iso/shiny/16/PS.png b/flags/flags-iso/shiny/16/PS.png new file mode 100644 index 0000000..7145cbe Binary files /dev/null and b/flags/flags-iso/shiny/16/PS.png differ diff --git a/flags/flags-iso/shiny/16/PT.png b/flags/flags-iso/shiny/16/PT.png new file mode 100644 index 0000000..eab3f39 Binary files /dev/null and b/flags/flags-iso/shiny/16/PT.png differ diff --git a/flags/flags-iso/shiny/16/PW.png b/flags/flags-iso/shiny/16/PW.png new file mode 100644 index 0000000..a5b01c3 Binary files /dev/null and b/flags/flags-iso/shiny/16/PW.png differ diff --git a/flags/flags-iso/shiny/16/PY.png b/flags/flags-iso/shiny/16/PY.png new file mode 100644 index 0000000..ab391d7 Binary files /dev/null and b/flags/flags-iso/shiny/16/PY.png differ diff --git a/flags/flags-iso/shiny/16/QA.png b/flags/flags-iso/shiny/16/QA.png new file mode 100644 index 0000000..c3f3d57 Binary files /dev/null and b/flags/flags-iso/shiny/16/QA.png differ diff --git a/flags/flags-iso/shiny/16/RO.png b/flags/flags-iso/shiny/16/RO.png new file mode 100644 index 0000000..79a7d55 Binary files /dev/null and b/flags/flags-iso/shiny/16/RO.png differ diff --git a/flags/flags-iso/shiny/16/RS.png b/flags/flags-iso/shiny/16/RS.png new file mode 100644 index 0000000..5a6f9a3 Binary files /dev/null and b/flags/flags-iso/shiny/16/RS.png differ diff --git a/flags/flags-iso/shiny/16/RU.png b/flags/flags-iso/shiny/16/RU.png new file mode 100644 index 0000000..0d74832 Binary files /dev/null and b/flags/flags-iso/shiny/16/RU.png differ diff --git a/flags/flags-iso/shiny/16/RW.png b/flags/flags-iso/shiny/16/RW.png new file mode 100644 index 0000000..64d72c9 Binary files /dev/null and b/flags/flags-iso/shiny/16/RW.png differ diff --git a/flags/flags-iso/shiny/16/SA.png b/flags/flags-iso/shiny/16/SA.png new file mode 100644 index 0000000..b9f78ad Binary files /dev/null and b/flags/flags-iso/shiny/16/SA.png differ diff --git a/flags/flags-iso/shiny/16/SB.png b/flags/flags-iso/shiny/16/SB.png new file mode 100644 index 0000000..bfd2624 Binary files /dev/null and b/flags/flags-iso/shiny/16/SB.png differ diff --git a/flags/flags-iso/shiny/16/SC.png b/flags/flags-iso/shiny/16/SC.png new file mode 100644 index 0000000..0ff3930 Binary files /dev/null and b/flags/flags-iso/shiny/16/SC.png differ diff --git a/flags/flags-iso/shiny/16/SD.png b/flags/flags-iso/shiny/16/SD.png new file mode 100644 index 0000000..25e8425 Binary files /dev/null and b/flags/flags-iso/shiny/16/SD.png differ diff --git a/flags/flags-iso/shiny/16/SE.png b/flags/flags-iso/shiny/16/SE.png new file mode 100644 index 0000000..f9ad787 Binary files /dev/null and b/flags/flags-iso/shiny/16/SE.png differ diff --git a/flags/flags-iso/shiny/16/SG.png b/flags/flags-iso/shiny/16/SG.png new file mode 100644 index 0000000..b274a5d Binary files /dev/null and b/flags/flags-iso/shiny/16/SG.png differ diff --git a/flags/flags-iso/shiny/16/SH.png b/flags/flags-iso/shiny/16/SH.png new file mode 100644 index 0000000..8640c10 Binary files /dev/null and b/flags/flags-iso/shiny/16/SH.png differ diff --git a/flags/flags-iso/shiny/16/SI.png b/flags/flags-iso/shiny/16/SI.png new file mode 100644 index 0000000..5b257f2 Binary files /dev/null and b/flags/flags-iso/shiny/16/SI.png differ diff --git a/flags/flags-iso/shiny/16/SK.png b/flags/flags-iso/shiny/16/SK.png new file mode 100644 index 0000000..1409b5f Binary files /dev/null and b/flags/flags-iso/shiny/16/SK.png differ diff --git a/flags/flags-iso/shiny/16/SL.png b/flags/flags-iso/shiny/16/SL.png new file mode 100644 index 0000000..23695b3 Binary files /dev/null and b/flags/flags-iso/shiny/16/SL.png differ diff --git a/flags/flags-iso/shiny/16/SM.png b/flags/flags-iso/shiny/16/SM.png new file mode 100644 index 0000000..64e5428 Binary files /dev/null and b/flags/flags-iso/shiny/16/SM.png differ diff --git a/flags/flags-iso/shiny/16/SN.png b/flags/flags-iso/shiny/16/SN.png new file mode 100644 index 0000000..08ba0f5 Binary files /dev/null and b/flags/flags-iso/shiny/16/SN.png differ diff --git a/flags/flags-iso/shiny/16/SO.png b/flags/flags-iso/shiny/16/SO.png new file mode 100644 index 0000000..021f6ca Binary files /dev/null and b/flags/flags-iso/shiny/16/SO.png differ diff --git a/flags/flags-iso/shiny/16/SR.png b/flags/flags-iso/shiny/16/SR.png new file mode 100644 index 0000000..2b114de Binary files /dev/null and b/flags/flags-iso/shiny/16/SR.png differ diff --git a/flags/flags-iso/shiny/16/SS.png b/flags/flags-iso/shiny/16/SS.png new file mode 100644 index 0000000..8c6616c Binary files /dev/null and b/flags/flags-iso/shiny/16/SS.png differ diff --git a/flags/flags-iso/shiny/16/ST.png b/flags/flags-iso/shiny/16/ST.png new file mode 100644 index 0000000..8eab5c5 Binary files /dev/null and b/flags/flags-iso/shiny/16/ST.png differ diff --git a/flags/flags-iso/shiny/16/SV.png b/flags/flags-iso/shiny/16/SV.png new file mode 100644 index 0000000..82fc634 Binary files /dev/null and b/flags/flags-iso/shiny/16/SV.png differ diff --git a/flags/flags-iso/shiny/16/SY.png b/flags/flags-iso/shiny/16/SY.png new file mode 100644 index 0000000..82ab48c Binary files /dev/null and b/flags/flags-iso/shiny/16/SY.png differ diff --git a/flags/flags-iso/shiny/16/SZ.png b/flags/flags-iso/shiny/16/SZ.png new file mode 100644 index 0000000..555a279 Binary files /dev/null and b/flags/flags-iso/shiny/16/SZ.png differ diff --git a/flags/flags-iso/shiny/16/TC.png b/flags/flags-iso/shiny/16/TC.png new file mode 100644 index 0000000..5edc6e9 Binary files /dev/null and b/flags/flags-iso/shiny/16/TC.png differ diff --git a/flags/flags-iso/shiny/16/TD.png b/flags/flags-iso/shiny/16/TD.png new file mode 100644 index 0000000..d382728 Binary files /dev/null and b/flags/flags-iso/shiny/16/TD.png differ diff --git a/flags/flags-iso/shiny/16/TF.png b/flags/flags-iso/shiny/16/TF.png new file mode 100644 index 0000000..0cb1a01 Binary files /dev/null and b/flags/flags-iso/shiny/16/TF.png differ diff --git a/flags/flags-iso/shiny/16/TG.png b/flags/flags-iso/shiny/16/TG.png new file mode 100644 index 0000000..52e3a51 Binary files /dev/null and b/flags/flags-iso/shiny/16/TG.png differ diff --git a/flags/flags-iso/shiny/16/TH.png b/flags/flags-iso/shiny/16/TH.png new file mode 100644 index 0000000..485709a Binary files /dev/null and b/flags/flags-iso/shiny/16/TH.png differ diff --git a/flags/flags-iso/shiny/16/TJ.png b/flags/flags-iso/shiny/16/TJ.png new file mode 100644 index 0000000..2731fd5 Binary files /dev/null and b/flags/flags-iso/shiny/16/TJ.png differ diff --git a/flags/flags-iso/shiny/16/TK.png b/flags/flags-iso/shiny/16/TK.png new file mode 100644 index 0000000..78c1a29 Binary files /dev/null and b/flags/flags-iso/shiny/16/TK.png differ diff --git a/flags/flags-iso/shiny/16/TL.png b/flags/flags-iso/shiny/16/TL.png new file mode 100644 index 0000000..7e17f16 Binary files /dev/null and b/flags/flags-iso/shiny/16/TL.png differ diff --git a/flags/flags-iso/shiny/16/TM.png b/flags/flags-iso/shiny/16/TM.png new file mode 100644 index 0000000..4a31703 Binary files /dev/null and b/flags/flags-iso/shiny/16/TM.png differ diff --git a/flags/flags-iso/shiny/16/TN.png b/flags/flags-iso/shiny/16/TN.png new file mode 100644 index 0000000..fd2b160 Binary files /dev/null and b/flags/flags-iso/shiny/16/TN.png differ diff --git a/flags/flags-iso/shiny/16/TO.png b/flags/flags-iso/shiny/16/TO.png new file mode 100644 index 0000000..ea666d2 Binary files /dev/null and b/flags/flags-iso/shiny/16/TO.png differ diff --git a/flags/flags-iso/shiny/16/TR.png b/flags/flags-iso/shiny/16/TR.png new file mode 100644 index 0000000..d5a384a Binary files /dev/null and b/flags/flags-iso/shiny/16/TR.png differ diff --git a/flags/flags-iso/shiny/16/TT.png b/flags/flags-iso/shiny/16/TT.png new file mode 100644 index 0000000..e929812 Binary files /dev/null and b/flags/flags-iso/shiny/16/TT.png differ diff --git a/flags/flags-iso/shiny/16/TV.png b/flags/flags-iso/shiny/16/TV.png new file mode 100644 index 0000000..40a5323 Binary files /dev/null and b/flags/flags-iso/shiny/16/TV.png differ diff --git a/flags/flags-iso/shiny/16/TW.png b/flags/flags-iso/shiny/16/TW.png new file mode 100644 index 0000000..cb691b3 Binary files /dev/null and b/flags/flags-iso/shiny/16/TW.png differ diff --git a/flags/flags-iso/shiny/16/TZ.png b/flags/flags-iso/shiny/16/TZ.png new file mode 100644 index 0000000..5b7395e Binary files /dev/null and b/flags/flags-iso/shiny/16/TZ.png differ diff --git a/flags/flags-iso/shiny/16/UA.png b/flags/flags-iso/shiny/16/UA.png new file mode 100644 index 0000000..70db400 Binary files /dev/null and b/flags/flags-iso/shiny/16/UA.png differ diff --git a/flags/flags-iso/shiny/16/UG.png b/flags/flags-iso/shiny/16/UG.png new file mode 100644 index 0000000..d07682e Binary files /dev/null and b/flags/flags-iso/shiny/16/UG.png differ diff --git a/flags/flags-iso/shiny/16/US.png b/flags/flags-iso/shiny/16/US.png new file mode 100644 index 0000000..5706b57 Binary files /dev/null and b/flags/flags-iso/shiny/16/US.png differ diff --git a/flags/flags-iso/shiny/16/UY.png b/flags/flags-iso/shiny/16/UY.png new file mode 100644 index 0000000..419d11f Binary files /dev/null and b/flags/flags-iso/shiny/16/UY.png differ diff --git a/flags/flags-iso/shiny/16/UZ.png b/flags/flags-iso/shiny/16/UZ.png new file mode 100644 index 0000000..b88e27e Binary files /dev/null and b/flags/flags-iso/shiny/16/UZ.png differ diff --git a/flags/flags-iso/shiny/16/VA.png b/flags/flags-iso/shiny/16/VA.png new file mode 100644 index 0000000..da76146 Binary files /dev/null and b/flags/flags-iso/shiny/16/VA.png differ diff --git a/flags/flags-iso/shiny/16/VC.png b/flags/flags-iso/shiny/16/VC.png new file mode 100644 index 0000000..28b71cf Binary files /dev/null and b/flags/flags-iso/shiny/16/VC.png differ diff --git a/flags/flags-iso/shiny/16/VE.png b/flags/flags-iso/shiny/16/VE.png new file mode 100644 index 0000000..9e51f9a Binary files /dev/null and b/flags/flags-iso/shiny/16/VE.png differ diff --git a/flags/flags-iso/shiny/16/VG.png b/flags/flags-iso/shiny/16/VG.png new file mode 100644 index 0000000..d337635 Binary files /dev/null and b/flags/flags-iso/shiny/16/VG.png differ diff --git a/flags/flags-iso/shiny/16/VI.png b/flags/flags-iso/shiny/16/VI.png new file mode 100644 index 0000000..5fa3126 Binary files /dev/null and b/flags/flags-iso/shiny/16/VI.png differ diff --git a/flags/flags-iso/shiny/16/VN.png b/flags/flags-iso/shiny/16/VN.png new file mode 100644 index 0000000..06b9498 Binary files /dev/null and b/flags/flags-iso/shiny/16/VN.png differ diff --git a/flags/flags-iso/shiny/16/VU.png b/flags/flags-iso/shiny/16/VU.png new file mode 100644 index 0000000..e898000 Binary files /dev/null and b/flags/flags-iso/shiny/16/VU.png differ diff --git a/flags/flags-iso/shiny/16/WS.png b/flags/flags-iso/shiny/16/WS.png new file mode 100644 index 0000000..45fe25f Binary files /dev/null and b/flags/flags-iso/shiny/16/WS.png differ diff --git a/flags/flags-iso/shiny/16/YE.png b/flags/flags-iso/shiny/16/YE.png new file mode 100644 index 0000000..19a9e90 Binary files /dev/null and b/flags/flags-iso/shiny/16/YE.png differ diff --git a/flags/flags-iso/shiny/16/YT.png b/flags/flags-iso/shiny/16/YT.png new file mode 100644 index 0000000..877ddf8 Binary files /dev/null and b/flags/flags-iso/shiny/16/YT.png differ diff --git a/flags/flags-iso/shiny/16/ZA.png b/flags/flags-iso/shiny/16/ZA.png new file mode 100644 index 0000000..2c2eff8 Binary files /dev/null and b/flags/flags-iso/shiny/16/ZA.png differ diff --git a/flags/flags-iso/shiny/16/ZM.png b/flags/flags-iso/shiny/16/ZM.png new file mode 100644 index 0000000..cd3d06a Binary files /dev/null and b/flags/flags-iso/shiny/16/ZM.png differ diff --git a/flags/flags-iso/shiny/16/ZW.png b/flags/flags-iso/shiny/16/ZW.png new file mode 100644 index 0000000..a40454d Binary files /dev/null and b/flags/flags-iso/shiny/16/ZW.png differ diff --git a/flags/flags-iso/shiny/16/_abkhazia.png b/flags/flags-iso/shiny/16/_abkhazia.png new file mode 100644 index 0000000..ad5d130 Binary files /dev/null and b/flags/flags-iso/shiny/16/_abkhazia.png differ diff --git a/flags/flags-iso/shiny/16/_british-antarctic-territory.png b/flags/flags-iso/shiny/16/_british-antarctic-territory.png new file mode 100644 index 0000000..74a1847 Binary files /dev/null and b/flags/flags-iso/shiny/16/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/shiny/16/_commonwealth.png b/flags/flags-iso/shiny/16/_commonwealth.png new file mode 100644 index 0000000..8f0aaa0 Binary files /dev/null and b/flags/flags-iso/shiny/16/_commonwealth.png differ diff --git a/flags/flags-iso/shiny/16/_england.png b/flags/flags-iso/shiny/16/_england.png new file mode 100644 index 0000000..87d6ded Binary files /dev/null and b/flags/flags-iso/shiny/16/_england.png differ diff --git a/flags/flags-iso/shiny/16/_gosquared.png b/flags/flags-iso/shiny/16/_gosquared.png new file mode 100644 index 0000000..6c5fb56 Binary files /dev/null and b/flags/flags-iso/shiny/16/_gosquared.png differ diff --git a/flags/flags-iso/shiny/16/_kosovo.png b/flags/flags-iso/shiny/16/_kosovo.png new file mode 100644 index 0000000..cf0ad17 Binary files /dev/null and b/flags/flags-iso/shiny/16/_kosovo.png differ diff --git a/flags/flags-iso/shiny/16/_mars.png b/flags/flags-iso/shiny/16/_mars.png new file mode 100644 index 0000000..ba98c22 Binary files /dev/null and b/flags/flags-iso/shiny/16/_mars.png differ diff --git a/flags/flags-iso/shiny/16/_nagorno-karabakh.png b/flags/flags-iso/shiny/16/_nagorno-karabakh.png new file mode 100644 index 0000000..0edf82f Binary files /dev/null and b/flags/flags-iso/shiny/16/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/shiny/16/_nato.png b/flags/flags-iso/shiny/16/_nato.png new file mode 100644 index 0000000..f52845a Binary files /dev/null and b/flags/flags-iso/shiny/16/_nato.png differ diff --git a/flags/flags-iso/shiny/16/_northern-cyprus.png b/flags/flags-iso/shiny/16/_northern-cyprus.png new file mode 100644 index 0000000..600c7f2 Binary files /dev/null and b/flags/flags-iso/shiny/16/_northern-cyprus.png differ diff --git a/flags/flags-iso/shiny/16/_olympics.png b/flags/flags-iso/shiny/16/_olympics.png new file mode 100644 index 0000000..2109917 Binary files /dev/null and b/flags/flags-iso/shiny/16/_olympics.png differ diff --git a/flags/flags-iso/shiny/16/_red-cross.png b/flags/flags-iso/shiny/16/_red-cross.png new file mode 100644 index 0000000..c672f88 Binary files /dev/null and b/flags/flags-iso/shiny/16/_red-cross.png differ diff --git a/flags/flags-iso/shiny/16/_scotland.png b/flags/flags-iso/shiny/16/_scotland.png new file mode 100644 index 0000000..53864fd Binary files /dev/null and b/flags/flags-iso/shiny/16/_scotland.png differ diff --git a/flags/flags-iso/shiny/16/_somaliland.png b/flags/flags-iso/shiny/16/_somaliland.png new file mode 100644 index 0000000..46ce0d5 Binary files /dev/null and b/flags/flags-iso/shiny/16/_somaliland.png differ diff --git a/flags/flags-iso/shiny/16/_south-ossetia.png b/flags/flags-iso/shiny/16/_south-ossetia.png new file mode 100644 index 0000000..c076713 Binary files /dev/null and b/flags/flags-iso/shiny/16/_south-ossetia.png differ diff --git a/flags/flags-iso/shiny/16/_united-nations.png b/flags/flags-iso/shiny/16/_united-nations.png new file mode 100644 index 0000000..42b3e1e Binary files /dev/null and b/flags/flags-iso/shiny/16/_united-nations.png differ diff --git a/flags/flags-iso/shiny/16/_wales.png b/flags/flags-iso/shiny/16/_wales.png new file mode 100644 index 0000000..aad4ede Binary files /dev/null and b/flags/flags-iso/shiny/16/_wales.png differ diff --git a/flags/flags-iso/shiny/24/.png b/flags/flags-iso/shiny/24/.png new file mode 100644 index 0000000..97678d8 Binary files /dev/null and b/flags/flags-iso/shiny/24/.png differ diff --git a/flags/flags-iso/shiny/24/AD.png b/flags/flags-iso/shiny/24/AD.png new file mode 100644 index 0000000..52b3f8d Binary files /dev/null and b/flags/flags-iso/shiny/24/AD.png differ diff --git a/flags/flags-iso/shiny/24/AE.png b/flags/flags-iso/shiny/24/AE.png new file mode 100644 index 0000000..a4383d2 Binary files /dev/null and b/flags/flags-iso/shiny/24/AE.png differ diff --git a/flags/flags-iso/shiny/24/AF.png b/flags/flags-iso/shiny/24/AF.png new file mode 100644 index 0000000..11074cc Binary files /dev/null and b/flags/flags-iso/shiny/24/AF.png differ diff --git a/flags/flags-iso/shiny/24/AG.png b/flags/flags-iso/shiny/24/AG.png new file mode 100644 index 0000000..ca68482 Binary files /dev/null and b/flags/flags-iso/shiny/24/AG.png differ diff --git a/flags/flags-iso/shiny/24/AI.png b/flags/flags-iso/shiny/24/AI.png new file mode 100644 index 0000000..c2d32a3 Binary files /dev/null and b/flags/flags-iso/shiny/24/AI.png differ diff --git a/flags/flags-iso/shiny/24/AL.png b/flags/flags-iso/shiny/24/AL.png new file mode 100644 index 0000000..9b6ce18 Binary files /dev/null and b/flags/flags-iso/shiny/24/AL.png differ diff --git a/flags/flags-iso/shiny/24/AM.png b/flags/flags-iso/shiny/24/AM.png new file mode 100644 index 0000000..30975d0 Binary files /dev/null and b/flags/flags-iso/shiny/24/AM.png differ diff --git a/flags/flags-iso/shiny/24/AN.png b/flags/flags-iso/shiny/24/AN.png new file mode 100644 index 0000000..b09f152 Binary files /dev/null and b/flags/flags-iso/shiny/24/AN.png differ diff --git a/flags/flags-iso/shiny/24/AO.png b/flags/flags-iso/shiny/24/AO.png new file mode 100644 index 0000000..f73e6e3 Binary files /dev/null and b/flags/flags-iso/shiny/24/AO.png differ diff --git a/flags/flags-iso/shiny/24/AQ.png b/flags/flags-iso/shiny/24/AQ.png new file mode 100644 index 0000000..cfd62d0 Binary files /dev/null and b/flags/flags-iso/shiny/24/AQ.png differ diff --git a/flags/flags-iso/shiny/24/AR.png b/flags/flags-iso/shiny/24/AR.png new file mode 100644 index 0000000..3f11d75 Binary files /dev/null and b/flags/flags-iso/shiny/24/AR.png differ diff --git a/flags/flags-iso/shiny/24/AS.png b/flags/flags-iso/shiny/24/AS.png new file mode 100644 index 0000000..bc04b1d Binary files /dev/null and b/flags/flags-iso/shiny/24/AS.png differ diff --git a/flags/flags-iso/shiny/24/AT.png b/flags/flags-iso/shiny/24/AT.png new file mode 100644 index 0000000..563e011 Binary files /dev/null and b/flags/flags-iso/shiny/24/AT.png differ diff --git a/flags/flags-iso/shiny/24/AU.png b/flags/flags-iso/shiny/24/AU.png new file mode 100644 index 0000000..1f60807 Binary files /dev/null and b/flags/flags-iso/shiny/24/AU.png differ diff --git a/flags/flags-iso/shiny/24/AW.png b/flags/flags-iso/shiny/24/AW.png new file mode 100644 index 0000000..6416975 Binary files /dev/null and b/flags/flags-iso/shiny/24/AW.png differ diff --git a/flags/flags-iso/shiny/24/AX.png b/flags/flags-iso/shiny/24/AX.png new file mode 100644 index 0000000..32d8161 Binary files /dev/null and b/flags/flags-iso/shiny/24/AX.png differ diff --git a/flags/flags-iso/shiny/24/AZ.png b/flags/flags-iso/shiny/24/AZ.png new file mode 100644 index 0000000..f2c8a78 Binary files /dev/null and b/flags/flags-iso/shiny/24/AZ.png differ diff --git a/flags/flags-iso/shiny/24/BA.png b/flags/flags-iso/shiny/24/BA.png new file mode 100644 index 0000000..a4b3d21 Binary files /dev/null and b/flags/flags-iso/shiny/24/BA.png differ diff --git a/flags/flags-iso/shiny/24/BB.png b/flags/flags-iso/shiny/24/BB.png new file mode 100644 index 0000000..863a347 Binary files /dev/null and b/flags/flags-iso/shiny/24/BB.png differ diff --git a/flags/flags-iso/shiny/24/BD.png b/flags/flags-iso/shiny/24/BD.png new file mode 100644 index 0000000..88e78d7 Binary files /dev/null and b/flags/flags-iso/shiny/24/BD.png differ diff --git a/flags/flags-iso/shiny/24/BE.png b/flags/flags-iso/shiny/24/BE.png new file mode 100644 index 0000000..c3ea8ce Binary files /dev/null and b/flags/flags-iso/shiny/24/BE.png differ diff --git a/flags/flags-iso/shiny/24/BF.png b/flags/flags-iso/shiny/24/BF.png new file mode 100644 index 0000000..cb5daf2 Binary files /dev/null and b/flags/flags-iso/shiny/24/BF.png differ diff --git a/flags/flags-iso/shiny/24/BG.png b/flags/flags-iso/shiny/24/BG.png new file mode 100644 index 0000000..ffb444a Binary files /dev/null and b/flags/flags-iso/shiny/24/BG.png differ diff --git a/flags/flags-iso/shiny/24/BH.png b/flags/flags-iso/shiny/24/BH.png new file mode 100644 index 0000000..3ac5bae Binary files /dev/null and b/flags/flags-iso/shiny/24/BH.png differ diff --git a/flags/flags-iso/shiny/24/BI.png b/flags/flags-iso/shiny/24/BI.png new file mode 100644 index 0000000..ebe14f3 Binary files /dev/null and b/flags/flags-iso/shiny/24/BI.png differ diff --git a/flags/flags-iso/shiny/24/BJ.png b/flags/flags-iso/shiny/24/BJ.png new file mode 100644 index 0000000..d78c94c Binary files /dev/null and b/flags/flags-iso/shiny/24/BJ.png differ diff --git a/flags/flags-iso/shiny/24/BL.png b/flags/flags-iso/shiny/24/BL.png new file mode 100644 index 0000000..ade01d4 Binary files /dev/null and b/flags/flags-iso/shiny/24/BL.png differ diff --git a/flags/flags-iso/shiny/24/BM.png b/flags/flags-iso/shiny/24/BM.png new file mode 100644 index 0000000..ed7fb2f Binary files /dev/null and b/flags/flags-iso/shiny/24/BM.png differ diff --git a/flags/flags-iso/shiny/24/BN.png b/flags/flags-iso/shiny/24/BN.png new file mode 100644 index 0000000..d6d0d6c Binary files /dev/null and b/flags/flags-iso/shiny/24/BN.png differ diff --git a/flags/flags-iso/shiny/24/BO.png b/flags/flags-iso/shiny/24/BO.png new file mode 100644 index 0000000..ac32cdf Binary files /dev/null and b/flags/flags-iso/shiny/24/BO.png differ diff --git a/flags/flags-iso/shiny/24/BR.png b/flags/flags-iso/shiny/24/BR.png new file mode 100644 index 0000000..e660338 Binary files /dev/null and b/flags/flags-iso/shiny/24/BR.png differ diff --git a/flags/flags-iso/shiny/24/BS.png b/flags/flags-iso/shiny/24/BS.png new file mode 100644 index 0000000..24db9da Binary files /dev/null and b/flags/flags-iso/shiny/24/BS.png differ diff --git a/flags/flags-iso/shiny/24/BT.png b/flags/flags-iso/shiny/24/BT.png new file mode 100644 index 0000000..13989ed Binary files /dev/null and b/flags/flags-iso/shiny/24/BT.png differ diff --git a/flags/flags-iso/shiny/24/BW.png b/flags/flags-iso/shiny/24/BW.png new file mode 100644 index 0000000..77c3761 Binary files /dev/null and b/flags/flags-iso/shiny/24/BW.png differ diff --git a/flags/flags-iso/shiny/24/BY.png b/flags/flags-iso/shiny/24/BY.png new file mode 100644 index 0000000..784f69c Binary files /dev/null and b/flags/flags-iso/shiny/24/BY.png differ diff --git a/flags/flags-iso/shiny/24/BZ.png b/flags/flags-iso/shiny/24/BZ.png new file mode 100644 index 0000000..ca66a15 Binary files /dev/null and b/flags/flags-iso/shiny/24/BZ.png differ diff --git a/flags/flags-iso/shiny/24/CA.png b/flags/flags-iso/shiny/24/CA.png new file mode 100644 index 0000000..fd089c2 Binary files /dev/null and b/flags/flags-iso/shiny/24/CA.png differ diff --git a/flags/flags-iso/shiny/24/CC.png b/flags/flags-iso/shiny/24/CC.png new file mode 100644 index 0000000..35cfe7f Binary files /dev/null and b/flags/flags-iso/shiny/24/CC.png differ diff --git a/flags/flags-iso/shiny/24/CD.png b/flags/flags-iso/shiny/24/CD.png new file mode 100644 index 0000000..bec710d Binary files /dev/null and b/flags/flags-iso/shiny/24/CD.png differ diff --git a/flags/flags-iso/shiny/24/CF.png b/flags/flags-iso/shiny/24/CF.png new file mode 100644 index 0000000..ae33452 Binary files /dev/null and b/flags/flags-iso/shiny/24/CF.png differ diff --git a/flags/flags-iso/shiny/24/CG.png b/flags/flags-iso/shiny/24/CG.png new file mode 100644 index 0000000..c0b72bc Binary files /dev/null and b/flags/flags-iso/shiny/24/CG.png differ diff --git a/flags/flags-iso/shiny/24/CH.png b/flags/flags-iso/shiny/24/CH.png new file mode 100644 index 0000000..2f22b90 Binary files /dev/null and b/flags/flags-iso/shiny/24/CH.png differ diff --git a/flags/flags-iso/shiny/24/CI.png b/flags/flags-iso/shiny/24/CI.png new file mode 100644 index 0000000..8326e1d Binary files /dev/null and b/flags/flags-iso/shiny/24/CI.png differ diff --git a/flags/flags-iso/shiny/24/CK.png b/flags/flags-iso/shiny/24/CK.png new file mode 100644 index 0000000..fbdb7dd Binary files /dev/null and b/flags/flags-iso/shiny/24/CK.png differ diff --git a/flags/flags-iso/shiny/24/CL.png b/flags/flags-iso/shiny/24/CL.png new file mode 100644 index 0000000..6768c75 Binary files /dev/null and b/flags/flags-iso/shiny/24/CL.png differ diff --git a/flags/flags-iso/shiny/24/CM.png b/flags/flags-iso/shiny/24/CM.png new file mode 100644 index 0000000..c03409b Binary files /dev/null and b/flags/flags-iso/shiny/24/CM.png differ diff --git a/flags/flags-iso/shiny/24/CN.png b/flags/flags-iso/shiny/24/CN.png new file mode 100644 index 0000000..08fca13 Binary files /dev/null and b/flags/flags-iso/shiny/24/CN.png differ diff --git a/flags/flags-iso/shiny/24/CO.png b/flags/flags-iso/shiny/24/CO.png new file mode 100644 index 0000000..af86cd0 Binary files /dev/null and b/flags/flags-iso/shiny/24/CO.png differ diff --git a/flags/flags-iso/shiny/24/CR.png b/flags/flags-iso/shiny/24/CR.png new file mode 100644 index 0000000..9de7a24 Binary files /dev/null and b/flags/flags-iso/shiny/24/CR.png differ diff --git a/flags/flags-iso/shiny/24/CU.png b/flags/flags-iso/shiny/24/CU.png new file mode 100644 index 0000000..4ba1a41 Binary files /dev/null and b/flags/flags-iso/shiny/24/CU.png differ diff --git a/flags/flags-iso/shiny/24/CV.png b/flags/flags-iso/shiny/24/CV.png new file mode 100644 index 0000000..b8bf179 Binary files /dev/null and b/flags/flags-iso/shiny/24/CV.png differ diff --git a/flags/flags-iso/shiny/24/CX.png b/flags/flags-iso/shiny/24/CX.png new file mode 100644 index 0000000..0916464 Binary files /dev/null and b/flags/flags-iso/shiny/24/CX.png differ diff --git a/flags/flags-iso/shiny/24/CY.png b/flags/flags-iso/shiny/24/CY.png new file mode 100644 index 0000000..885bfd6 Binary files /dev/null and b/flags/flags-iso/shiny/24/CY.png differ diff --git a/flags/flags-iso/shiny/24/CZ.png b/flags/flags-iso/shiny/24/CZ.png new file mode 100644 index 0000000..73ac442 Binary files /dev/null and b/flags/flags-iso/shiny/24/CZ.png differ diff --git a/flags/flags-iso/shiny/24/DE.png b/flags/flags-iso/shiny/24/DE.png new file mode 100644 index 0000000..0c229c3 Binary files /dev/null and b/flags/flags-iso/shiny/24/DE.png differ diff --git a/flags/flags-iso/shiny/24/DJ.png b/flags/flags-iso/shiny/24/DJ.png new file mode 100644 index 0000000..68a297b Binary files /dev/null and b/flags/flags-iso/shiny/24/DJ.png differ diff --git a/flags/flags-iso/shiny/24/DK.png b/flags/flags-iso/shiny/24/DK.png new file mode 100644 index 0000000..6edf00b Binary files /dev/null and b/flags/flags-iso/shiny/24/DK.png differ diff --git a/flags/flags-iso/shiny/24/DM.png b/flags/flags-iso/shiny/24/DM.png new file mode 100644 index 0000000..7cd1131 Binary files /dev/null and b/flags/flags-iso/shiny/24/DM.png differ diff --git a/flags/flags-iso/shiny/24/DO.png b/flags/flags-iso/shiny/24/DO.png new file mode 100644 index 0000000..d2ae5b6 Binary files /dev/null and b/flags/flags-iso/shiny/24/DO.png differ diff --git a/flags/flags-iso/shiny/24/DZ.png b/flags/flags-iso/shiny/24/DZ.png new file mode 100644 index 0000000..9cde087 Binary files /dev/null and b/flags/flags-iso/shiny/24/DZ.png differ diff --git a/flags/flags-iso/shiny/24/EC.png b/flags/flags-iso/shiny/24/EC.png new file mode 100644 index 0000000..ba11aaa Binary files /dev/null and b/flags/flags-iso/shiny/24/EC.png differ diff --git a/flags/flags-iso/shiny/24/EE.png b/flags/flags-iso/shiny/24/EE.png new file mode 100644 index 0000000..20150fc Binary files /dev/null and b/flags/flags-iso/shiny/24/EE.png differ diff --git a/flags/flags-iso/shiny/24/EG.png b/flags/flags-iso/shiny/24/EG.png new file mode 100644 index 0000000..9b157a4 Binary files /dev/null and b/flags/flags-iso/shiny/24/EG.png differ diff --git a/flags/flags-iso/shiny/24/EH.png b/flags/flags-iso/shiny/24/EH.png new file mode 100644 index 0000000..caec718 Binary files /dev/null and b/flags/flags-iso/shiny/24/EH.png differ diff --git a/flags/flags-iso/shiny/24/ER.png b/flags/flags-iso/shiny/24/ER.png new file mode 100644 index 0000000..c36d218 Binary files /dev/null and b/flags/flags-iso/shiny/24/ER.png differ diff --git a/flags/flags-iso/shiny/24/ES.png b/flags/flags-iso/shiny/24/ES.png new file mode 100644 index 0000000..39d0c76 Binary files /dev/null and b/flags/flags-iso/shiny/24/ES.png differ diff --git a/flags/flags-iso/shiny/24/ET.png b/flags/flags-iso/shiny/24/ET.png new file mode 100644 index 0000000..87da26f Binary files /dev/null and b/flags/flags-iso/shiny/24/ET.png differ diff --git a/flags/flags-iso/shiny/24/EU.png b/flags/flags-iso/shiny/24/EU.png new file mode 100644 index 0000000..ccdf7d8 Binary files /dev/null and b/flags/flags-iso/shiny/24/EU.png differ diff --git a/flags/flags-iso/shiny/24/FI.png b/flags/flags-iso/shiny/24/FI.png new file mode 100644 index 0000000..c9f17f6 Binary files /dev/null and b/flags/flags-iso/shiny/24/FI.png differ diff --git a/flags/flags-iso/shiny/24/FJ.png b/flags/flags-iso/shiny/24/FJ.png new file mode 100644 index 0000000..13a8bfd Binary files /dev/null and b/flags/flags-iso/shiny/24/FJ.png differ diff --git a/flags/flags-iso/shiny/24/FK.png b/flags/flags-iso/shiny/24/FK.png new file mode 100644 index 0000000..f9ebef2 Binary files /dev/null and b/flags/flags-iso/shiny/24/FK.png differ diff --git a/flags/flags-iso/shiny/24/FM.png b/flags/flags-iso/shiny/24/FM.png new file mode 100644 index 0000000..e4596ce Binary files /dev/null and b/flags/flags-iso/shiny/24/FM.png differ diff --git a/flags/flags-iso/shiny/24/FO.png b/flags/flags-iso/shiny/24/FO.png new file mode 100644 index 0000000..8cb6c90 Binary files /dev/null and b/flags/flags-iso/shiny/24/FO.png differ diff --git a/flags/flags-iso/shiny/24/FR.png b/flags/flags-iso/shiny/24/FR.png new file mode 100644 index 0000000..f27f411 Binary files /dev/null and b/flags/flags-iso/shiny/24/FR.png differ diff --git a/flags/flags-iso/shiny/24/GA.png b/flags/flags-iso/shiny/24/GA.png new file mode 100644 index 0000000..317dd67 Binary files /dev/null and b/flags/flags-iso/shiny/24/GA.png differ diff --git a/flags/flags-iso/shiny/24/GB.png b/flags/flags-iso/shiny/24/GB.png new file mode 100644 index 0000000..02fa2a1 Binary files /dev/null and b/flags/flags-iso/shiny/24/GB.png differ diff --git a/flags/flags-iso/shiny/24/GD.png b/flags/flags-iso/shiny/24/GD.png new file mode 100644 index 0000000..1670317 Binary files /dev/null and b/flags/flags-iso/shiny/24/GD.png differ diff --git a/flags/flags-iso/shiny/24/GE.png b/flags/flags-iso/shiny/24/GE.png new file mode 100644 index 0000000..eda18d8 Binary files /dev/null and b/flags/flags-iso/shiny/24/GE.png differ diff --git a/flags/flags-iso/shiny/24/GG.png b/flags/flags-iso/shiny/24/GG.png new file mode 100644 index 0000000..273e5e7 Binary files /dev/null and b/flags/flags-iso/shiny/24/GG.png differ diff --git a/flags/flags-iso/shiny/24/GH.png b/flags/flags-iso/shiny/24/GH.png new file mode 100644 index 0000000..4fcc198 Binary files /dev/null and b/flags/flags-iso/shiny/24/GH.png differ diff --git a/flags/flags-iso/shiny/24/GI.png b/flags/flags-iso/shiny/24/GI.png new file mode 100644 index 0000000..8b76b45 Binary files /dev/null and b/flags/flags-iso/shiny/24/GI.png differ diff --git a/flags/flags-iso/shiny/24/GL.png b/flags/flags-iso/shiny/24/GL.png new file mode 100644 index 0000000..a3835b7 Binary files /dev/null and b/flags/flags-iso/shiny/24/GL.png differ diff --git a/flags/flags-iso/shiny/24/GM.png b/flags/flags-iso/shiny/24/GM.png new file mode 100644 index 0000000..814d391 Binary files /dev/null and b/flags/flags-iso/shiny/24/GM.png differ diff --git a/flags/flags-iso/shiny/24/GN.png b/flags/flags-iso/shiny/24/GN.png new file mode 100644 index 0000000..1c3b5b2 Binary files /dev/null and b/flags/flags-iso/shiny/24/GN.png differ diff --git a/flags/flags-iso/shiny/24/GQ.png b/flags/flags-iso/shiny/24/GQ.png new file mode 100644 index 0000000..ce53907 Binary files /dev/null and b/flags/flags-iso/shiny/24/GQ.png differ diff --git a/flags/flags-iso/shiny/24/GR.png b/flags/flags-iso/shiny/24/GR.png new file mode 100644 index 0000000..5f6320f Binary files /dev/null and b/flags/flags-iso/shiny/24/GR.png differ diff --git a/flags/flags-iso/shiny/24/GS.png b/flags/flags-iso/shiny/24/GS.png new file mode 100644 index 0000000..00d20b6 Binary files /dev/null and b/flags/flags-iso/shiny/24/GS.png differ diff --git a/flags/flags-iso/shiny/24/GT.png b/flags/flags-iso/shiny/24/GT.png new file mode 100644 index 0000000..a587b51 Binary files /dev/null and b/flags/flags-iso/shiny/24/GT.png differ diff --git a/flags/flags-iso/shiny/24/GU.png b/flags/flags-iso/shiny/24/GU.png new file mode 100644 index 0000000..5004db6 Binary files /dev/null and b/flags/flags-iso/shiny/24/GU.png differ diff --git a/flags/flags-iso/shiny/24/GW.png b/flags/flags-iso/shiny/24/GW.png new file mode 100644 index 0000000..808a1ef Binary files /dev/null and b/flags/flags-iso/shiny/24/GW.png differ diff --git a/flags/flags-iso/shiny/24/GY.png b/flags/flags-iso/shiny/24/GY.png new file mode 100644 index 0000000..b94d736 Binary files /dev/null and b/flags/flags-iso/shiny/24/GY.png differ diff --git a/flags/flags-iso/shiny/24/HK.png b/flags/flags-iso/shiny/24/HK.png new file mode 100644 index 0000000..c17e4ce Binary files /dev/null and b/flags/flags-iso/shiny/24/HK.png differ diff --git a/flags/flags-iso/shiny/24/HN.png b/flags/flags-iso/shiny/24/HN.png new file mode 100644 index 0000000..9635f7e Binary files /dev/null and b/flags/flags-iso/shiny/24/HN.png differ diff --git a/flags/flags-iso/shiny/24/HR.png b/flags/flags-iso/shiny/24/HR.png new file mode 100644 index 0000000..e4fc75a Binary files /dev/null and b/flags/flags-iso/shiny/24/HR.png differ diff --git a/flags/flags-iso/shiny/24/HT.png b/flags/flags-iso/shiny/24/HT.png new file mode 100644 index 0000000..9f52fc4 Binary files /dev/null and b/flags/flags-iso/shiny/24/HT.png differ diff --git a/flags/flags-iso/shiny/24/HU.png b/flags/flags-iso/shiny/24/HU.png new file mode 100644 index 0000000..6d4478f Binary files /dev/null and b/flags/flags-iso/shiny/24/HU.png differ diff --git a/flags/flags-iso/shiny/24/ID.png b/flags/flags-iso/shiny/24/ID.png new file mode 100644 index 0000000..63ad1fc Binary files /dev/null and b/flags/flags-iso/shiny/24/ID.png differ diff --git a/flags/flags-iso/shiny/24/IE.png b/flags/flags-iso/shiny/24/IE.png new file mode 100644 index 0000000..44062f6 Binary files /dev/null and b/flags/flags-iso/shiny/24/IE.png differ diff --git a/flags/flags-iso/shiny/24/IL.png b/flags/flags-iso/shiny/24/IL.png new file mode 100644 index 0000000..8a8d4a8 Binary files /dev/null and b/flags/flags-iso/shiny/24/IL.png differ diff --git a/flags/flags-iso/shiny/24/IM.png b/flags/flags-iso/shiny/24/IM.png new file mode 100644 index 0000000..3f30b7a Binary files /dev/null and b/flags/flags-iso/shiny/24/IM.png differ diff --git a/flags/flags-iso/shiny/24/IN.png b/flags/flags-iso/shiny/24/IN.png new file mode 100644 index 0000000..3e43337 Binary files /dev/null and b/flags/flags-iso/shiny/24/IN.png differ diff --git a/flags/flags-iso/shiny/24/IQ.png b/flags/flags-iso/shiny/24/IQ.png new file mode 100644 index 0000000..6418593 Binary files /dev/null and b/flags/flags-iso/shiny/24/IQ.png differ diff --git a/flags/flags-iso/shiny/24/IR.png b/flags/flags-iso/shiny/24/IR.png new file mode 100644 index 0000000..1506e99 Binary files /dev/null and b/flags/flags-iso/shiny/24/IR.png differ diff --git a/flags/flags-iso/shiny/24/IS.png b/flags/flags-iso/shiny/24/IS.png new file mode 100644 index 0000000..33d2499 Binary files /dev/null and b/flags/flags-iso/shiny/24/IS.png differ diff --git a/flags/flags-iso/shiny/24/IT.png b/flags/flags-iso/shiny/24/IT.png new file mode 100644 index 0000000..53ec702 Binary files /dev/null and b/flags/flags-iso/shiny/24/IT.png differ diff --git a/flags/flags-iso/shiny/24/JE.png b/flags/flags-iso/shiny/24/JE.png new file mode 100644 index 0000000..2e3a1a7 Binary files /dev/null and b/flags/flags-iso/shiny/24/JE.png differ diff --git a/flags/flags-iso/shiny/24/JM.png b/flags/flags-iso/shiny/24/JM.png new file mode 100644 index 0000000..b55ccfc Binary files /dev/null and b/flags/flags-iso/shiny/24/JM.png differ diff --git a/flags/flags-iso/shiny/24/JO.png b/flags/flags-iso/shiny/24/JO.png new file mode 100644 index 0000000..7a3be3f Binary files /dev/null and b/flags/flags-iso/shiny/24/JO.png differ diff --git a/flags/flags-iso/shiny/24/JP.png b/flags/flags-iso/shiny/24/JP.png new file mode 100644 index 0000000..0516af4 Binary files /dev/null and b/flags/flags-iso/shiny/24/JP.png differ diff --git a/flags/flags-iso/shiny/24/KE.png b/flags/flags-iso/shiny/24/KE.png new file mode 100644 index 0000000..7296684 Binary files /dev/null and b/flags/flags-iso/shiny/24/KE.png differ diff --git a/flags/flags-iso/shiny/24/KG.png b/flags/flags-iso/shiny/24/KG.png new file mode 100644 index 0000000..1b38e31 Binary files /dev/null and b/flags/flags-iso/shiny/24/KG.png differ diff --git a/flags/flags-iso/shiny/24/KH.png b/flags/flags-iso/shiny/24/KH.png new file mode 100644 index 0000000..4881570 Binary files /dev/null and b/flags/flags-iso/shiny/24/KH.png differ diff --git a/flags/flags-iso/shiny/24/KI.png b/flags/flags-iso/shiny/24/KI.png new file mode 100644 index 0000000..0bf057e Binary files /dev/null and b/flags/flags-iso/shiny/24/KI.png differ diff --git a/flags/flags-iso/shiny/24/KM.png b/flags/flags-iso/shiny/24/KM.png new file mode 100644 index 0000000..eef9dcb Binary files /dev/null and b/flags/flags-iso/shiny/24/KM.png differ diff --git a/flags/flags-iso/shiny/24/KN.png b/flags/flags-iso/shiny/24/KN.png new file mode 100644 index 0000000..55a0a88 Binary files /dev/null and b/flags/flags-iso/shiny/24/KN.png differ diff --git a/flags/flags-iso/shiny/24/KP.png b/flags/flags-iso/shiny/24/KP.png new file mode 100644 index 0000000..8323a97 Binary files /dev/null and b/flags/flags-iso/shiny/24/KP.png differ diff --git a/flags/flags-iso/shiny/24/KR.png b/flags/flags-iso/shiny/24/KR.png new file mode 100644 index 0000000..f6f6baa Binary files /dev/null and b/flags/flags-iso/shiny/24/KR.png differ diff --git a/flags/flags-iso/shiny/24/KW.png b/flags/flags-iso/shiny/24/KW.png new file mode 100644 index 0000000..3e899f6 Binary files /dev/null and b/flags/flags-iso/shiny/24/KW.png differ diff --git a/flags/flags-iso/shiny/24/KY.png b/flags/flags-iso/shiny/24/KY.png new file mode 100644 index 0000000..49e4c7c Binary files /dev/null and b/flags/flags-iso/shiny/24/KY.png differ diff --git a/flags/flags-iso/shiny/24/KZ.png b/flags/flags-iso/shiny/24/KZ.png new file mode 100644 index 0000000..04e0e42 Binary files /dev/null and b/flags/flags-iso/shiny/24/KZ.png differ diff --git a/flags/flags-iso/shiny/24/LA.png b/flags/flags-iso/shiny/24/LA.png new file mode 100644 index 0000000..e3d22fd Binary files /dev/null and b/flags/flags-iso/shiny/24/LA.png differ diff --git a/flags/flags-iso/shiny/24/LB.png b/flags/flags-iso/shiny/24/LB.png new file mode 100644 index 0000000..04d889c Binary files /dev/null and b/flags/flags-iso/shiny/24/LB.png differ diff --git a/flags/flags-iso/shiny/24/LC.png b/flags/flags-iso/shiny/24/LC.png new file mode 100644 index 0000000..fbba84e Binary files /dev/null and b/flags/flags-iso/shiny/24/LC.png differ diff --git a/flags/flags-iso/shiny/24/LI.png b/flags/flags-iso/shiny/24/LI.png new file mode 100644 index 0000000..78ddc1f Binary files /dev/null and b/flags/flags-iso/shiny/24/LI.png differ diff --git a/flags/flags-iso/shiny/24/LK.png b/flags/flags-iso/shiny/24/LK.png new file mode 100644 index 0000000..d393119 Binary files /dev/null and b/flags/flags-iso/shiny/24/LK.png differ diff --git a/flags/flags-iso/shiny/24/LR.png b/flags/flags-iso/shiny/24/LR.png new file mode 100644 index 0000000..17954ee Binary files /dev/null and b/flags/flags-iso/shiny/24/LR.png differ diff --git a/flags/flags-iso/shiny/24/LS.png b/flags/flags-iso/shiny/24/LS.png new file mode 100644 index 0000000..9eca793 Binary files /dev/null and b/flags/flags-iso/shiny/24/LS.png differ diff --git a/flags/flags-iso/shiny/24/LT.png b/flags/flags-iso/shiny/24/LT.png new file mode 100644 index 0000000..3d2b525 Binary files /dev/null and b/flags/flags-iso/shiny/24/LT.png differ diff --git a/flags/flags-iso/shiny/24/LU.png b/flags/flags-iso/shiny/24/LU.png new file mode 100644 index 0000000..36171c8 Binary files /dev/null and b/flags/flags-iso/shiny/24/LU.png differ diff --git a/flags/flags-iso/shiny/24/LV.png b/flags/flags-iso/shiny/24/LV.png new file mode 100644 index 0000000..89f459f Binary files /dev/null and b/flags/flags-iso/shiny/24/LV.png differ diff --git a/flags/flags-iso/shiny/24/LY.png b/flags/flags-iso/shiny/24/LY.png new file mode 100644 index 0000000..58ad284 Binary files /dev/null and b/flags/flags-iso/shiny/24/LY.png differ diff --git a/flags/flags-iso/shiny/24/MA.png b/flags/flags-iso/shiny/24/MA.png new file mode 100644 index 0000000..055948e Binary files /dev/null and b/flags/flags-iso/shiny/24/MA.png differ diff --git a/flags/flags-iso/shiny/24/MC.png b/flags/flags-iso/shiny/24/MC.png new file mode 100644 index 0000000..63ad1fc Binary files /dev/null and b/flags/flags-iso/shiny/24/MC.png differ diff --git a/flags/flags-iso/shiny/24/MD.png b/flags/flags-iso/shiny/24/MD.png new file mode 100644 index 0000000..6713c38 Binary files /dev/null and b/flags/flags-iso/shiny/24/MD.png differ diff --git a/flags/flags-iso/shiny/24/ME.png b/flags/flags-iso/shiny/24/ME.png new file mode 100644 index 0000000..663cd07 Binary files /dev/null and b/flags/flags-iso/shiny/24/ME.png differ diff --git a/flags/flags-iso/shiny/24/MG.png b/flags/flags-iso/shiny/24/MG.png new file mode 100644 index 0000000..78baaa8 Binary files /dev/null and b/flags/flags-iso/shiny/24/MG.png differ diff --git a/flags/flags-iso/shiny/24/MH.png b/flags/flags-iso/shiny/24/MH.png new file mode 100644 index 0000000..3ead7c0 Binary files /dev/null and b/flags/flags-iso/shiny/24/MH.png differ diff --git a/flags/flags-iso/shiny/24/MK.png b/flags/flags-iso/shiny/24/MK.png new file mode 100644 index 0000000..3bdb9a8 Binary files /dev/null and b/flags/flags-iso/shiny/24/MK.png differ diff --git a/flags/flags-iso/shiny/24/ML.png b/flags/flags-iso/shiny/24/ML.png new file mode 100644 index 0000000..a027a3c Binary files /dev/null and b/flags/flags-iso/shiny/24/ML.png differ diff --git a/flags/flags-iso/shiny/24/MM.png b/flags/flags-iso/shiny/24/MM.png new file mode 100644 index 0000000..798d802 Binary files /dev/null and b/flags/flags-iso/shiny/24/MM.png differ diff --git a/flags/flags-iso/shiny/24/MN.png b/flags/flags-iso/shiny/24/MN.png new file mode 100644 index 0000000..2f71455 Binary files /dev/null and b/flags/flags-iso/shiny/24/MN.png differ diff --git a/flags/flags-iso/shiny/24/MO.png b/flags/flags-iso/shiny/24/MO.png new file mode 100644 index 0000000..3d9e0e0 Binary files /dev/null and b/flags/flags-iso/shiny/24/MO.png differ diff --git a/flags/flags-iso/shiny/24/MP.png b/flags/flags-iso/shiny/24/MP.png new file mode 100644 index 0000000..5b59f91 Binary files /dev/null and b/flags/flags-iso/shiny/24/MP.png differ diff --git a/flags/flags-iso/shiny/24/MR.png b/flags/flags-iso/shiny/24/MR.png new file mode 100644 index 0000000..e5f0792 Binary files /dev/null and b/flags/flags-iso/shiny/24/MR.png differ diff --git a/flags/flags-iso/shiny/24/MS.png b/flags/flags-iso/shiny/24/MS.png new file mode 100644 index 0000000..7f9ee94 Binary files /dev/null and b/flags/flags-iso/shiny/24/MS.png differ diff --git a/flags/flags-iso/shiny/24/MT.png b/flags/flags-iso/shiny/24/MT.png new file mode 100644 index 0000000..a44e22f Binary files /dev/null and b/flags/flags-iso/shiny/24/MT.png differ diff --git a/flags/flags-iso/shiny/24/MU.png b/flags/flags-iso/shiny/24/MU.png new file mode 100644 index 0000000..1c27411 Binary files /dev/null and b/flags/flags-iso/shiny/24/MU.png differ diff --git a/flags/flags-iso/shiny/24/MV.png b/flags/flags-iso/shiny/24/MV.png new file mode 100644 index 0000000..4e92401 Binary files /dev/null and b/flags/flags-iso/shiny/24/MV.png differ diff --git a/flags/flags-iso/shiny/24/MW.png b/flags/flags-iso/shiny/24/MW.png new file mode 100644 index 0000000..149a1d1 Binary files /dev/null and b/flags/flags-iso/shiny/24/MW.png differ diff --git a/flags/flags-iso/shiny/24/MX.png b/flags/flags-iso/shiny/24/MX.png new file mode 100644 index 0000000..86f1272 Binary files /dev/null and b/flags/flags-iso/shiny/24/MX.png differ diff --git a/flags/flags-iso/shiny/24/MY.png b/flags/flags-iso/shiny/24/MY.png new file mode 100644 index 0000000..7ba7b03 Binary files /dev/null and b/flags/flags-iso/shiny/24/MY.png differ diff --git a/flags/flags-iso/shiny/24/MZ.png b/flags/flags-iso/shiny/24/MZ.png new file mode 100644 index 0000000..f20e525 Binary files /dev/null and b/flags/flags-iso/shiny/24/MZ.png differ diff --git a/flags/flags-iso/shiny/24/NA.png b/flags/flags-iso/shiny/24/NA.png new file mode 100644 index 0000000..100b38e Binary files /dev/null and b/flags/flags-iso/shiny/24/NA.png differ diff --git a/flags/flags-iso/shiny/24/NC.png b/flags/flags-iso/shiny/24/NC.png new file mode 100644 index 0000000..2c8bb2a Binary files /dev/null and b/flags/flags-iso/shiny/24/NC.png differ diff --git a/flags/flags-iso/shiny/24/NE.png b/flags/flags-iso/shiny/24/NE.png new file mode 100644 index 0000000..8f501cd Binary files /dev/null and b/flags/flags-iso/shiny/24/NE.png differ diff --git a/flags/flags-iso/shiny/24/NF.png b/flags/flags-iso/shiny/24/NF.png new file mode 100644 index 0000000..be1ed10 Binary files /dev/null and b/flags/flags-iso/shiny/24/NF.png differ diff --git a/flags/flags-iso/shiny/24/NG.png b/flags/flags-iso/shiny/24/NG.png new file mode 100644 index 0000000..4a00307 Binary files /dev/null and b/flags/flags-iso/shiny/24/NG.png differ diff --git a/flags/flags-iso/shiny/24/NI.png b/flags/flags-iso/shiny/24/NI.png new file mode 100644 index 0000000..709fcc6 Binary files /dev/null and b/flags/flags-iso/shiny/24/NI.png differ diff --git a/flags/flags-iso/shiny/24/NL.png b/flags/flags-iso/shiny/24/NL.png new file mode 100644 index 0000000..505b9ce Binary files /dev/null and b/flags/flags-iso/shiny/24/NL.png differ diff --git a/flags/flags-iso/shiny/24/NO.png b/flags/flags-iso/shiny/24/NO.png new file mode 100644 index 0000000..20d6534 Binary files /dev/null and b/flags/flags-iso/shiny/24/NO.png differ diff --git a/flags/flags-iso/shiny/24/NP.png b/flags/flags-iso/shiny/24/NP.png new file mode 100644 index 0000000..75c012e Binary files /dev/null and b/flags/flags-iso/shiny/24/NP.png differ diff --git a/flags/flags-iso/shiny/24/NR.png b/flags/flags-iso/shiny/24/NR.png new file mode 100644 index 0000000..a970507 Binary files /dev/null and b/flags/flags-iso/shiny/24/NR.png differ diff --git a/flags/flags-iso/shiny/24/NU.png b/flags/flags-iso/shiny/24/NU.png new file mode 100644 index 0000000..cd3c5dc Binary files /dev/null and b/flags/flags-iso/shiny/24/NU.png differ diff --git a/flags/flags-iso/shiny/24/NZ.png b/flags/flags-iso/shiny/24/NZ.png new file mode 100644 index 0000000..0c5a8e0 Binary files /dev/null and b/flags/flags-iso/shiny/24/NZ.png differ diff --git a/flags/flags-iso/shiny/24/OM.png b/flags/flags-iso/shiny/24/OM.png new file mode 100644 index 0000000..384def2 Binary files /dev/null and b/flags/flags-iso/shiny/24/OM.png differ diff --git a/flags/flags-iso/shiny/24/PA.png b/flags/flags-iso/shiny/24/PA.png new file mode 100644 index 0000000..e20a743 Binary files /dev/null and b/flags/flags-iso/shiny/24/PA.png differ diff --git a/flags/flags-iso/shiny/24/PE.png b/flags/flags-iso/shiny/24/PE.png new file mode 100644 index 0000000..616b655 Binary files /dev/null and b/flags/flags-iso/shiny/24/PE.png differ diff --git a/flags/flags-iso/shiny/24/PF.png b/flags/flags-iso/shiny/24/PF.png new file mode 100644 index 0000000..2ad2502 Binary files /dev/null and b/flags/flags-iso/shiny/24/PF.png differ diff --git a/flags/flags-iso/shiny/24/PG.png b/flags/flags-iso/shiny/24/PG.png new file mode 100644 index 0000000..13dc48a Binary files /dev/null and b/flags/flags-iso/shiny/24/PG.png differ diff --git a/flags/flags-iso/shiny/24/PH.png b/flags/flags-iso/shiny/24/PH.png new file mode 100644 index 0000000..36b3612 Binary files /dev/null and b/flags/flags-iso/shiny/24/PH.png differ diff --git a/flags/flags-iso/shiny/24/PK.png b/flags/flags-iso/shiny/24/PK.png new file mode 100644 index 0000000..317e02d Binary files /dev/null and b/flags/flags-iso/shiny/24/PK.png differ diff --git a/flags/flags-iso/shiny/24/PL.png b/flags/flags-iso/shiny/24/PL.png new file mode 100644 index 0000000..92cd1ca Binary files /dev/null and b/flags/flags-iso/shiny/24/PL.png differ diff --git a/flags/flags-iso/shiny/24/PN.png b/flags/flags-iso/shiny/24/PN.png new file mode 100644 index 0000000..e26fad9 Binary files /dev/null and b/flags/flags-iso/shiny/24/PN.png differ diff --git a/flags/flags-iso/shiny/24/PR.png b/flags/flags-iso/shiny/24/PR.png new file mode 100644 index 0000000..b466682 Binary files /dev/null and b/flags/flags-iso/shiny/24/PR.png differ diff --git a/flags/flags-iso/shiny/24/PS.png b/flags/flags-iso/shiny/24/PS.png new file mode 100644 index 0000000..d95bacb Binary files /dev/null and b/flags/flags-iso/shiny/24/PS.png differ diff --git a/flags/flags-iso/shiny/24/PT.png b/flags/flags-iso/shiny/24/PT.png new file mode 100644 index 0000000..6e4d734 Binary files /dev/null and b/flags/flags-iso/shiny/24/PT.png differ diff --git a/flags/flags-iso/shiny/24/PW.png b/flags/flags-iso/shiny/24/PW.png new file mode 100644 index 0000000..6852102 Binary files /dev/null and b/flags/flags-iso/shiny/24/PW.png differ diff --git a/flags/flags-iso/shiny/24/PY.png b/flags/flags-iso/shiny/24/PY.png new file mode 100644 index 0000000..e4445d5 Binary files /dev/null and b/flags/flags-iso/shiny/24/PY.png differ diff --git a/flags/flags-iso/shiny/24/QA.png b/flags/flags-iso/shiny/24/QA.png new file mode 100644 index 0000000..e3fa51f Binary files /dev/null and b/flags/flags-iso/shiny/24/QA.png differ diff --git a/flags/flags-iso/shiny/24/RO.png b/flags/flags-iso/shiny/24/RO.png new file mode 100644 index 0000000..e7fa4f5 Binary files /dev/null and b/flags/flags-iso/shiny/24/RO.png differ diff --git a/flags/flags-iso/shiny/24/RS.png b/flags/flags-iso/shiny/24/RS.png new file mode 100644 index 0000000..4c1e9f5 Binary files /dev/null and b/flags/flags-iso/shiny/24/RS.png differ diff --git a/flags/flags-iso/shiny/24/RU.png b/flags/flags-iso/shiny/24/RU.png new file mode 100644 index 0000000..d9624ca Binary files /dev/null and b/flags/flags-iso/shiny/24/RU.png differ diff --git a/flags/flags-iso/shiny/24/RW.png b/flags/flags-iso/shiny/24/RW.png new file mode 100644 index 0000000..6f5f588 Binary files /dev/null and b/flags/flags-iso/shiny/24/RW.png differ diff --git a/flags/flags-iso/shiny/24/SA.png b/flags/flags-iso/shiny/24/SA.png new file mode 100644 index 0000000..d386dc0 Binary files /dev/null and b/flags/flags-iso/shiny/24/SA.png differ diff --git a/flags/flags-iso/shiny/24/SB.png b/flags/flags-iso/shiny/24/SB.png new file mode 100644 index 0000000..1c25553 Binary files /dev/null and b/flags/flags-iso/shiny/24/SB.png differ diff --git a/flags/flags-iso/shiny/24/SC.png b/flags/flags-iso/shiny/24/SC.png new file mode 100644 index 0000000..dd27a21 Binary files /dev/null and b/flags/flags-iso/shiny/24/SC.png differ diff --git a/flags/flags-iso/shiny/24/SD.png b/flags/flags-iso/shiny/24/SD.png new file mode 100644 index 0000000..4cbba36 Binary files /dev/null and b/flags/flags-iso/shiny/24/SD.png differ diff --git a/flags/flags-iso/shiny/24/SE.png b/flags/flags-iso/shiny/24/SE.png new file mode 100644 index 0000000..fd0b55b Binary files /dev/null and b/flags/flags-iso/shiny/24/SE.png differ diff --git a/flags/flags-iso/shiny/24/SG.png b/flags/flags-iso/shiny/24/SG.png new file mode 100644 index 0000000..a3dbbfc Binary files /dev/null and b/flags/flags-iso/shiny/24/SG.png differ diff --git a/flags/flags-iso/shiny/24/SH.png b/flags/flags-iso/shiny/24/SH.png new file mode 100644 index 0000000..2250413 Binary files /dev/null and b/flags/flags-iso/shiny/24/SH.png differ diff --git a/flags/flags-iso/shiny/24/SI.png b/flags/flags-iso/shiny/24/SI.png new file mode 100644 index 0000000..9938bee Binary files /dev/null and b/flags/flags-iso/shiny/24/SI.png differ diff --git a/flags/flags-iso/shiny/24/SK.png b/flags/flags-iso/shiny/24/SK.png new file mode 100644 index 0000000..bf7a247 Binary files /dev/null and b/flags/flags-iso/shiny/24/SK.png differ diff --git a/flags/flags-iso/shiny/24/SL.png b/flags/flags-iso/shiny/24/SL.png new file mode 100644 index 0000000..f5ccc93 Binary files /dev/null and b/flags/flags-iso/shiny/24/SL.png differ diff --git a/flags/flags-iso/shiny/24/SM.png b/flags/flags-iso/shiny/24/SM.png new file mode 100644 index 0000000..fc5036c Binary files /dev/null and b/flags/flags-iso/shiny/24/SM.png differ diff --git a/flags/flags-iso/shiny/24/SN.png b/flags/flags-iso/shiny/24/SN.png new file mode 100644 index 0000000..861df13 Binary files /dev/null and b/flags/flags-iso/shiny/24/SN.png differ diff --git a/flags/flags-iso/shiny/24/SO.png b/flags/flags-iso/shiny/24/SO.png new file mode 100644 index 0000000..ea7eb21 Binary files /dev/null and b/flags/flags-iso/shiny/24/SO.png differ diff --git a/flags/flags-iso/shiny/24/SR.png b/flags/flags-iso/shiny/24/SR.png new file mode 100644 index 0000000..4fa6114 Binary files /dev/null and b/flags/flags-iso/shiny/24/SR.png differ diff --git a/flags/flags-iso/shiny/24/SS.png b/flags/flags-iso/shiny/24/SS.png new file mode 100644 index 0000000..7e64489 Binary files /dev/null and b/flags/flags-iso/shiny/24/SS.png differ diff --git a/flags/flags-iso/shiny/24/ST.png b/flags/flags-iso/shiny/24/ST.png new file mode 100644 index 0000000..3486853 Binary files /dev/null and b/flags/flags-iso/shiny/24/ST.png differ diff --git a/flags/flags-iso/shiny/24/SV.png b/flags/flags-iso/shiny/24/SV.png new file mode 100644 index 0000000..a369796 Binary files /dev/null and b/flags/flags-iso/shiny/24/SV.png differ diff --git a/flags/flags-iso/shiny/24/SY.png b/flags/flags-iso/shiny/24/SY.png new file mode 100644 index 0000000..aee3c96 Binary files /dev/null and b/flags/flags-iso/shiny/24/SY.png differ diff --git a/flags/flags-iso/shiny/24/SZ.png b/flags/flags-iso/shiny/24/SZ.png new file mode 100644 index 0000000..b89f4d1 Binary files /dev/null and b/flags/flags-iso/shiny/24/SZ.png differ diff --git a/flags/flags-iso/shiny/24/TC.png b/flags/flags-iso/shiny/24/TC.png new file mode 100644 index 0000000..f076b4a Binary files /dev/null and b/flags/flags-iso/shiny/24/TC.png differ diff --git a/flags/flags-iso/shiny/24/TD.png b/flags/flags-iso/shiny/24/TD.png new file mode 100644 index 0000000..8b17d5c Binary files /dev/null and b/flags/flags-iso/shiny/24/TD.png differ diff --git a/flags/flags-iso/shiny/24/TF.png b/flags/flags-iso/shiny/24/TF.png new file mode 100644 index 0000000..64a3748 Binary files /dev/null and b/flags/flags-iso/shiny/24/TF.png differ diff --git a/flags/flags-iso/shiny/24/TG.png b/flags/flags-iso/shiny/24/TG.png new file mode 100644 index 0000000..00933c4 Binary files /dev/null and b/flags/flags-iso/shiny/24/TG.png differ diff --git a/flags/flags-iso/shiny/24/TH.png b/flags/flags-iso/shiny/24/TH.png new file mode 100644 index 0000000..0ea4ed8 Binary files /dev/null and b/flags/flags-iso/shiny/24/TH.png differ diff --git a/flags/flags-iso/shiny/24/TJ.png b/flags/flags-iso/shiny/24/TJ.png new file mode 100644 index 0000000..6922244 Binary files /dev/null and b/flags/flags-iso/shiny/24/TJ.png differ diff --git a/flags/flags-iso/shiny/24/TK.png b/flags/flags-iso/shiny/24/TK.png new file mode 100644 index 0000000..466a67b Binary files /dev/null and b/flags/flags-iso/shiny/24/TK.png differ diff --git a/flags/flags-iso/shiny/24/TL.png b/flags/flags-iso/shiny/24/TL.png new file mode 100644 index 0000000..a8e5a43 Binary files /dev/null and b/flags/flags-iso/shiny/24/TL.png differ diff --git a/flags/flags-iso/shiny/24/TM.png b/flags/flags-iso/shiny/24/TM.png new file mode 100644 index 0000000..e0813d0 Binary files /dev/null and b/flags/flags-iso/shiny/24/TM.png differ diff --git a/flags/flags-iso/shiny/24/TN.png b/flags/flags-iso/shiny/24/TN.png new file mode 100644 index 0000000..deacc5b Binary files /dev/null and b/flags/flags-iso/shiny/24/TN.png differ diff --git a/flags/flags-iso/shiny/24/TO.png b/flags/flags-iso/shiny/24/TO.png new file mode 100644 index 0000000..f2e9026 Binary files /dev/null and b/flags/flags-iso/shiny/24/TO.png differ diff --git a/flags/flags-iso/shiny/24/TR.png b/flags/flags-iso/shiny/24/TR.png new file mode 100644 index 0000000..786d736 Binary files /dev/null and b/flags/flags-iso/shiny/24/TR.png differ diff --git a/flags/flags-iso/shiny/24/TT.png b/flags/flags-iso/shiny/24/TT.png new file mode 100644 index 0000000..99b1d60 Binary files /dev/null and b/flags/flags-iso/shiny/24/TT.png differ diff --git a/flags/flags-iso/shiny/24/TV.png b/flags/flags-iso/shiny/24/TV.png new file mode 100644 index 0000000..3c36378 Binary files /dev/null and b/flags/flags-iso/shiny/24/TV.png differ diff --git a/flags/flags-iso/shiny/24/TW.png b/flags/flags-iso/shiny/24/TW.png new file mode 100644 index 0000000..0bd4125 Binary files /dev/null and b/flags/flags-iso/shiny/24/TW.png differ diff --git a/flags/flags-iso/shiny/24/TZ.png b/flags/flags-iso/shiny/24/TZ.png new file mode 100644 index 0000000..c927c65 Binary files /dev/null and b/flags/flags-iso/shiny/24/TZ.png differ diff --git a/flags/flags-iso/shiny/24/UA.png b/flags/flags-iso/shiny/24/UA.png new file mode 100644 index 0000000..e46611f Binary files /dev/null and b/flags/flags-iso/shiny/24/UA.png differ diff --git a/flags/flags-iso/shiny/24/UG.png b/flags/flags-iso/shiny/24/UG.png new file mode 100644 index 0000000..209aa45 Binary files /dev/null and b/flags/flags-iso/shiny/24/UG.png differ diff --git a/flags/flags-iso/shiny/24/US.png b/flags/flags-iso/shiny/24/US.png new file mode 100644 index 0000000..2b04dcf Binary files /dev/null and b/flags/flags-iso/shiny/24/US.png differ diff --git a/flags/flags-iso/shiny/24/UY.png b/flags/flags-iso/shiny/24/UY.png new file mode 100644 index 0000000..0edaf69 Binary files /dev/null and b/flags/flags-iso/shiny/24/UY.png differ diff --git a/flags/flags-iso/shiny/24/UZ.png b/flags/flags-iso/shiny/24/UZ.png new file mode 100644 index 0000000..19f5c39 Binary files /dev/null and b/flags/flags-iso/shiny/24/UZ.png differ diff --git a/flags/flags-iso/shiny/24/VA.png b/flags/flags-iso/shiny/24/VA.png new file mode 100644 index 0000000..ed1d70a Binary files /dev/null and b/flags/flags-iso/shiny/24/VA.png differ diff --git a/flags/flags-iso/shiny/24/VC.png b/flags/flags-iso/shiny/24/VC.png new file mode 100644 index 0000000..5191c65 Binary files /dev/null and b/flags/flags-iso/shiny/24/VC.png differ diff --git a/flags/flags-iso/shiny/24/VE.png b/flags/flags-iso/shiny/24/VE.png new file mode 100644 index 0000000..e28cbf7 Binary files /dev/null and b/flags/flags-iso/shiny/24/VE.png differ diff --git a/flags/flags-iso/shiny/24/VG.png b/flags/flags-iso/shiny/24/VG.png new file mode 100644 index 0000000..00c72f8 Binary files /dev/null and b/flags/flags-iso/shiny/24/VG.png differ diff --git a/flags/flags-iso/shiny/24/VI.png b/flags/flags-iso/shiny/24/VI.png new file mode 100644 index 0000000..bce202d Binary files /dev/null and b/flags/flags-iso/shiny/24/VI.png differ diff --git a/flags/flags-iso/shiny/24/VN.png b/flags/flags-iso/shiny/24/VN.png new file mode 100644 index 0000000..33385c1 Binary files /dev/null and b/flags/flags-iso/shiny/24/VN.png differ diff --git a/flags/flags-iso/shiny/24/VU.png b/flags/flags-iso/shiny/24/VU.png new file mode 100644 index 0000000..08534b9 Binary files /dev/null and b/flags/flags-iso/shiny/24/VU.png differ diff --git a/flags/flags-iso/shiny/24/WS.png b/flags/flags-iso/shiny/24/WS.png new file mode 100644 index 0000000..520b84f Binary files /dev/null and b/flags/flags-iso/shiny/24/WS.png differ diff --git a/flags/flags-iso/shiny/24/YE.png b/flags/flags-iso/shiny/24/YE.png new file mode 100644 index 0000000..651c4f0 Binary files /dev/null and b/flags/flags-iso/shiny/24/YE.png differ diff --git a/flags/flags-iso/shiny/24/YT.png b/flags/flags-iso/shiny/24/YT.png new file mode 100644 index 0000000..dea0a0f Binary files /dev/null and b/flags/flags-iso/shiny/24/YT.png differ diff --git a/flags/flags-iso/shiny/24/ZA.png b/flags/flags-iso/shiny/24/ZA.png new file mode 100644 index 0000000..177fe75 Binary files /dev/null and b/flags/flags-iso/shiny/24/ZA.png differ diff --git a/flags/flags-iso/shiny/24/ZM.png b/flags/flags-iso/shiny/24/ZM.png new file mode 100644 index 0000000..26f9969 Binary files /dev/null and b/flags/flags-iso/shiny/24/ZM.png differ diff --git a/flags/flags-iso/shiny/24/ZW.png b/flags/flags-iso/shiny/24/ZW.png new file mode 100644 index 0000000..6cccf56 Binary files /dev/null and b/flags/flags-iso/shiny/24/ZW.png differ diff --git a/flags/flags-iso/shiny/24/_abkhazia.png b/flags/flags-iso/shiny/24/_abkhazia.png new file mode 100644 index 0000000..267eb2f Binary files /dev/null and b/flags/flags-iso/shiny/24/_abkhazia.png differ diff --git a/flags/flags-iso/shiny/24/_british-antarctic-territory.png b/flags/flags-iso/shiny/24/_british-antarctic-territory.png new file mode 100644 index 0000000..fae8b5e Binary files /dev/null and b/flags/flags-iso/shiny/24/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/shiny/24/_commonwealth.png b/flags/flags-iso/shiny/24/_commonwealth.png new file mode 100644 index 0000000..52ded7e Binary files /dev/null and b/flags/flags-iso/shiny/24/_commonwealth.png differ diff --git a/flags/flags-iso/shiny/24/_england.png b/flags/flags-iso/shiny/24/_england.png new file mode 100644 index 0000000..ce1d226 Binary files /dev/null and b/flags/flags-iso/shiny/24/_england.png differ diff --git a/flags/flags-iso/shiny/24/_gosquared.png b/flags/flags-iso/shiny/24/_gosquared.png new file mode 100644 index 0000000..ae596b4 Binary files /dev/null and b/flags/flags-iso/shiny/24/_gosquared.png differ diff --git a/flags/flags-iso/shiny/24/_kosovo.png b/flags/flags-iso/shiny/24/_kosovo.png new file mode 100644 index 0000000..a919bba Binary files /dev/null and b/flags/flags-iso/shiny/24/_kosovo.png differ diff --git a/flags/flags-iso/shiny/24/_mars.png b/flags/flags-iso/shiny/24/_mars.png new file mode 100644 index 0000000..cf80d89 Binary files /dev/null and b/flags/flags-iso/shiny/24/_mars.png differ diff --git a/flags/flags-iso/shiny/24/_nagorno-karabakh.png b/flags/flags-iso/shiny/24/_nagorno-karabakh.png new file mode 100644 index 0000000..a7f3845 Binary files /dev/null and b/flags/flags-iso/shiny/24/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/shiny/24/_nato.png b/flags/flags-iso/shiny/24/_nato.png new file mode 100644 index 0000000..faa5f76 Binary files /dev/null and b/flags/flags-iso/shiny/24/_nato.png differ diff --git a/flags/flags-iso/shiny/24/_northern-cyprus.png b/flags/flags-iso/shiny/24/_northern-cyprus.png new file mode 100644 index 0000000..45a987f Binary files /dev/null and b/flags/flags-iso/shiny/24/_northern-cyprus.png differ diff --git a/flags/flags-iso/shiny/24/_olympics.png b/flags/flags-iso/shiny/24/_olympics.png new file mode 100644 index 0000000..9f4b7e4 Binary files /dev/null and b/flags/flags-iso/shiny/24/_olympics.png differ diff --git a/flags/flags-iso/shiny/24/_red-cross.png b/flags/flags-iso/shiny/24/_red-cross.png new file mode 100644 index 0000000..201b1c6 Binary files /dev/null and b/flags/flags-iso/shiny/24/_red-cross.png differ diff --git a/flags/flags-iso/shiny/24/_scotland.png b/flags/flags-iso/shiny/24/_scotland.png new file mode 100644 index 0000000..c11234a Binary files /dev/null and b/flags/flags-iso/shiny/24/_scotland.png differ diff --git a/flags/flags-iso/shiny/24/_somaliland.png b/flags/flags-iso/shiny/24/_somaliland.png new file mode 100644 index 0000000..00a975f Binary files /dev/null and b/flags/flags-iso/shiny/24/_somaliland.png differ diff --git a/flags/flags-iso/shiny/24/_south-ossetia.png b/flags/flags-iso/shiny/24/_south-ossetia.png new file mode 100644 index 0000000..7b3324e Binary files /dev/null and b/flags/flags-iso/shiny/24/_south-ossetia.png differ diff --git a/flags/flags-iso/shiny/24/_united-nations.png b/flags/flags-iso/shiny/24/_united-nations.png new file mode 100644 index 0000000..7d0dda1 Binary files /dev/null and b/flags/flags-iso/shiny/24/_united-nations.png differ diff --git a/flags/flags-iso/shiny/24/_wales.png b/flags/flags-iso/shiny/24/_wales.png new file mode 100644 index 0000000..30d99d6 Binary files /dev/null and b/flags/flags-iso/shiny/24/_wales.png differ diff --git a/flags/flags-iso/shiny/32/.png b/flags/flags-iso/shiny/32/.png new file mode 100644 index 0000000..cd668bc Binary files /dev/null and b/flags/flags-iso/shiny/32/.png differ diff --git a/flags/flags-iso/shiny/32/AD.png b/flags/flags-iso/shiny/32/AD.png new file mode 100644 index 0000000..1052256 Binary files /dev/null and b/flags/flags-iso/shiny/32/AD.png differ diff --git a/flags/flags-iso/shiny/32/AE.png b/flags/flags-iso/shiny/32/AE.png new file mode 100644 index 0000000..b3053ef Binary files /dev/null and b/flags/flags-iso/shiny/32/AE.png differ diff --git a/flags/flags-iso/shiny/32/AF.png b/flags/flags-iso/shiny/32/AF.png new file mode 100644 index 0000000..594d060 Binary files /dev/null and b/flags/flags-iso/shiny/32/AF.png differ diff --git a/flags/flags-iso/shiny/32/AG.png b/flags/flags-iso/shiny/32/AG.png new file mode 100644 index 0000000..29dded8 Binary files /dev/null and b/flags/flags-iso/shiny/32/AG.png differ diff --git a/flags/flags-iso/shiny/32/AI.png b/flags/flags-iso/shiny/32/AI.png new file mode 100644 index 0000000..e1aae86 Binary files /dev/null and b/flags/flags-iso/shiny/32/AI.png differ diff --git a/flags/flags-iso/shiny/32/AL.png b/flags/flags-iso/shiny/32/AL.png new file mode 100644 index 0000000..ff840aa Binary files /dev/null and b/flags/flags-iso/shiny/32/AL.png differ diff --git a/flags/flags-iso/shiny/32/AM.png b/flags/flags-iso/shiny/32/AM.png new file mode 100644 index 0000000..3a6e11b Binary files /dev/null and b/flags/flags-iso/shiny/32/AM.png differ diff --git a/flags/flags-iso/shiny/32/AN.png b/flags/flags-iso/shiny/32/AN.png new file mode 100644 index 0000000..dd8b999 Binary files /dev/null and b/flags/flags-iso/shiny/32/AN.png differ diff --git a/flags/flags-iso/shiny/32/AO.png b/flags/flags-iso/shiny/32/AO.png new file mode 100644 index 0000000..ef33703 Binary files /dev/null and b/flags/flags-iso/shiny/32/AO.png differ diff --git a/flags/flags-iso/shiny/32/AQ.png b/flags/flags-iso/shiny/32/AQ.png new file mode 100644 index 0000000..39e5e2f Binary files /dev/null and b/flags/flags-iso/shiny/32/AQ.png differ diff --git a/flags/flags-iso/shiny/32/AR.png b/flags/flags-iso/shiny/32/AR.png new file mode 100644 index 0000000..eb3f0d8 Binary files /dev/null and b/flags/flags-iso/shiny/32/AR.png differ diff --git a/flags/flags-iso/shiny/32/AS.png b/flags/flags-iso/shiny/32/AS.png new file mode 100644 index 0000000..5d89b3b Binary files /dev/null and b/flags/flags-iso/shiny/32/AS.png differ diff --git a/flags/flags-iso/shiny/32/AT.png b/flags/flags-iso/shiny/32/AT.png new file mode 100644 index 0000000..c699394 Binary files /dev/null and b/flags/flags-iso/shiny/32/AT.png differ diff --git a/flags/flags-iso/shiny/32/AU.png b/flags/flags-iso/shiny/32/AU.png new file mode 100644 index 0000000..5135f7c Binary files /dev/null and b/flags/flags-iso/shiny/32/AU.png differ diff --git a/flags/flags-iso/shiny/32/AW.png b/flags/flags-iso/shiny/32/AW.png new file mode 100644 index 0000000..5841373 Binary files /dev/null and b/flags/flags-iso/shiny/32/AW.png differ diff --git a/flags/flags-iso/shiny/32/AX.png b/flags/flags-iso/shiny/32/AX.png new file mode 100644 index 0000000..66f2830 Binary files /dev/null and b/flags/flags-iso/shiny/32/AX.png differ diff --git a/flags/flags-iso/shiny/32/AZ.png b/flags/flags-iso/shiny/32/AZ.png new file mode 100644 index 0000000..de44c66 Binary files /dev/null and b/flags/flags-iso/shiny/32/AZ.png differ diff --git a/flags/flags-iso/shiny/32/BA.png b/flags/flags-iso/shiny/32/BA.png new file mode 100644 index 0000000..20cae4d Binary files /dev/null and b/flags/flags-iso/shiny/32/BA.png differ diff --git a/flags/flags-iso/shiny/32/BB.png b/flags/flags-iso/shiny/32/BB.png new file mode 100644 index 0000000..b631ef0 Binary files /dev/null and b/flags/flags-iso/shiny/32/BB.png differ diff --git a/flags/flags-iso/shiny/32/BD.png b/flags/flags-iso/shiny/32/BD.png new file mode 100644 index 0000000..12c1f8a Binary files /dev/null and b/flags/flags-iso/shiny/32/BD.png differ diff --git a/flags/flags-iso/shiny/32/BE.png b/flags/flags-iso/shiny/32/BE.png new file mode 100644 index 0000000..38c2e8a Binary files /dev/null and b/flags/flags-iso/shiny/32/BE.png differ diff --git a/flags/flags-iso/shiny/32/BF.png b/flags/flags-iso/shiny/32/BF.png new file mode 100644 index 0000000..a0b176e Binary files /dev/null and b/flags/flags-iso/shiny/32/BF.png differ diff --git a/flags/flags-iso/shiny/32/BG.png b/flags/flags-iso/shiny/32/BG.png new file mode 100644 index 0000000..6bdf9b1 Binary files /dev/null and b/flags/flags-iso/shiny/32/BG.png differ diff --git a/flags/flags-iso/shiny/32/BH.png b/flags/flags-iso/shiny/32/BH.png new file mode 100644 index 0000000..b753f24 Binary files /dev/null and b/flags/flags-iso/shiny/32/BH.png differ diff --git a/flags/flags-iso/shiny/32/BI.png b/flags/flags-iso/shiny/32/BI.png new file mode 100644 index 0000000..348b5d4 Binary files /dev/null and b/flags/flags-iso/shiny/32/BI.png differ diff --git a/flags/flags-iso/shiny/32/BJ.png b/flags/flags-iso/shiny/32/BJ.png new file mode 100644 index 0000000..4999b28 Binary files /dev/null and b/flags/flags-iso/shiny/32/BJ.png differ diff --git a/flags/flags-iso/shiny/32/BL.png b/flags/flags-iso/shiny/32/BL.png new file mode 100644 index 0000000..b4677c7 Binary files /dev/null and b/flags/flags-iso/shiny/32/BL.png differ diff --git a/flags/flags-iso/shiny/32/BM.png b/flags/flags-iso/shiny/32/BM.png new file mode 100644 index 0000000..3b5d2b7 Binary files /dev/null and b/flags/flags-iso/shiny/32/BM.png differ diff --git a/flags/flags-iso/shiny/32/BN.png b/flags/flags-iso/shiny/32/BN.png new file mode 100644 index 0000000..0da9406 Binary files /dev/null and b/flags/flags-iso/shiny/32/BN.png differ diff --git a/flags/flags-iso/shiny/32/BO.png b/flags/flags-iso/shiny/32/BO.png new file mode 100644 index 0000000..3cecb07 Binary files /dev/null and b/flags/flags-iso/shiny/32/BO.png differ diff --git a/flags/flags-iso/shiny/32/BR.png b/flags/flags-iso/shiny/32/BR.png new file mode 100644 index 0000000..79ecfcb Binary files /dev/null and b/flags/flags-iso/shiny/32/BR.png differ diff --git a/flags/flags-iso/shiny/32/BS.png b/flags/flags-iso/shiny/32/BS.png new file mode 100644 index 0000000..2517602 Binary files /dev/null and b/flags/flags-iso/shiny/32/BS.png differ diff --git a/flags/flags-iso/shiny/32/BT.png b/flags/flags-iso/shiny/32/BT.png new file mode 100644 index 0000000..4290f0a Binary files /dev/null and b/flags/flags-iso/shiny/32/BT.png differ diff --git a/flags/flags-iso/shiny/32/BW.png b/flags/flags-iso/shiny/32/BW.png new file mode 100644 index 0000000..8bd54e9 Binary files /dev/null and b/flags/flags-iso/shiny/32/BW.png differ diff --git a/flags/flags-iso/shiny/32/BY.png b/flags/flags-iso/shiny/32/BY.png new file mode 100644 index 0000000..ded745b Binary files /dev/null and b/flags/flags-iso/shiny/32/BY.png differ diff --git a/flags/flags-iso/shiny/32/BZ.png b/flags/flags-iso/shiny/32/BZ.png new file mode 100644 index 0000000..9fc1b47 Binary files /dev/null and b/flags/flags-iso/shiny/32/BZ.png differ diff --git a/flags/flags-iso/shiny/32/CA.png b/flags/flags-iso/shiny/32/CA.png new file mode 100644 index 0000000..3f1ab11 Binary files /dev/null and b/flags/flags-iso/shiny/32/CA.png differ diff --git a/flags/flags-iso/shiny/32/CC.png b/flags/flags-iso/shiny/32/CC.png new file mode 100644 index 0000000..64f68f9 Binary files /dev/null and b/flags/flags-iso/shiny/32/CC.png differ diff --git a/flags/flags-iso/shiny/32/CD.png b/flags/flags-iso/shiny/32/CD.png new file mode 100644 index 0000000..1c2932d Binary files /dev/null and b/flags/flags-iso/shiny/32/CD.png differ diff --git a/flags/flags-iso/shiny/32/CF.png b/flags/flags-iso/shiny/32/CF.png new file mode 100644 index 0000000..52cfc90 Binary files /dev/null and b/flags/flags-iso/shiny/32/CF.png differ diff --git a/flags/flags-iso/shiny/32/CG.png b/flags/flags-iso/shiny/32/CG.png new file mode 100644 index 0000000..358de44 Binary files /dev/null and b/flags/flags-iso/shiny/32/CG.png differ diff --git a/flags/flags-iso/shiny/32/CH.png b/flags/flags-iso/shiny/32/CH.png new file mode 100644 index 0000000..8f7c95b Binary files /dev/null and b/flags/flags-iso/shiny/32/CH.png differ diff --git a/flags/flags-iso/shiny/32/CI.png b/flags/flags-iso/shiny/32/CI.png new file mode 100644 index 0000000..8ef4d98 Binary files /dev/null and b/flags/flags-iso/shiny/32/CI.png differ diff --git a/flags/flags-iso/shiny/32/CK.png b/flags/flags-iso/shiny/32/CK.png new file mode 100644 index 0000000..e3210e6 Binary files /dev/null and b/flags/flags-iso/shiny/32/CK.png differ diff --git a/flags/flags-iso/shiny/32/CL.png b/flags/flags-iso/shiny/32/CL.png new file mode 100644 index 0000000..a00af03 Binary files /dev/null and b/flags/flags-iso/shiny/32/CL.png differ diff --git a/flags/flags-iso/shiny/32/CM.png b/flags/flags-iso/shiny/32/CM.png new file mode 100644 index 0000000..977580d Binary files /dev/null and b/flags/flags-iso/shiny/32/CM.png differ diff --git a/flags/flags-iso/shiny/32/CN.png b/flags/flags-iso/shiny/32/CN.png new file mode 100644 index 0000000..eea8471 Binary files /dev/null and b/flags/flags-iso/shiny/32/CN.png differ diff --git a/flags/flags-iso/shiny/32/CO.png b/flags/flags-iso/shiny/32/CO.png new file mode 100644 index 0000000..69935e6 Binary files /dev/null and b/flags/flags-iso/shiny/32/CO.png differ diff --git a/flags/flags-iso/shiny/32/CR.png b/flags/flags-iso/shiny/32/CR.png new file mode 100644 index 0000000..87df0cc Binary files /dev/null and b/flags/flags-iso/shiny/32/CR.png differ diff --git a/flags/flags-iso/shiny/32/CU.png b/flags/flags-iso/shiny/32/CU.png new file mode 100644 index 0000000..ea4f238 Binary files /dev/null and b/flags/flags-iso/shiny/32/CU.png differ diff --git a/flags/flags-iso/shiny/32/CV.png b/flags/flags-iso/shiny/32/CV.png new file mode 100644 index 0000000..2e54a57 Binary files /dev/null and b/flags/flags-iso/shiny/32/CV.png differ diff --git a/flags/flags-iso/shiny/32/CX.png b/flags/flags-iso/shiny/32/CX.png new file mode 100644 index 0000000..d6182ac Binary files /dev/null and b/flags/flags-iso/shiny/32/CX.png differ diff --git a/flags/flags-iso/shiny/32/CY.png b/flags/flags-iso/shiny/32/CY.png new file mode 100644 index 0000000..b359ba9 Binary files /dev/null and b/flags/flags-iso/shiny/32/CY.png differ diff --git a/flags/flags-iso/shiny/32/CZ.png b/flags/flags-iso/shiny/32/CZ.png new file mode 100644 index 0000000..7a45980 Binary files /dev/null and b/flags/flags-iso/shiny/32/CZ.png differ diff --git a/flags/flags-iso/shiny/32/DE.png b/flags/flags-iso/shiny/32/DE.png new file mode 100644 index 0000000..4e84b6e Binary files /dev/null and b/flags/flags-iso/shiny/32/DE.png differ diff --git a/flags/flags-iso/shiny/32/DJ.png b/flags/flags-iso/shiny/32/DJ.png new file mode 100644 index 0000000..7598d19 Binary files /dev/null and b/flags/flags-iso/shiny/32/DJ.png differ diff --git a/flags/flags-iso/shiny/32/DK.png b/flags/flags-iso/shiny/32/DK.png new file mode 100644 index 0000000..9cb5c29 Binary files /dev/null and b/flags/flags-iso/shiny/32/DK.png differ diff --git a/flags/flags-iso/shiny/32/DM.png b/flags/flags-iso/shiny/32/DM.png new file mode 100644 index 0000000..e4d5e6a Binary files /dev/null and b/flags/flags-iso/shiny/32/DM.png differ diff --git a/flags/flags-iso/shiny/32/DO.png b/flags/flags-iso/shiny/32/DO.png new file mode 100644 index 0000000..80bbe51 Binary files /dev/null and b/flags/flags-iso/shiny/32/DO.png differ diff --git a/flags/flags-iso/shiny/32/DZ.png b/flags/flags-iso/shiny/32/DZ.png new file mode 100644 index 0000000..e4eef52 Binary files /dev/null and b/flags/flags-iso/shiny/32/DZ.png differ diff --git a/flags/flags-iso/shiny/32/EC.png b/flags/flags-iso/shiny/32/EC.png new file mode 100644 index 0000000..86c720d Binary files /dev/null and b/flags/flags-iso/shiny/32/EC.png differ diff --git a/flags/flags-iso/shiny/32/EE.png b/flags/flags-iso/shiny/32/EE.png new file mode 100644 index 0000000..41dc640 Binary files /dev/null and b/flags/flags-iso/shiny/32/EE.png differ diff --git a/flags/flags-iso/shiny/32/EG.png b/flags/flags-iso/shiny/32/EG.png new file mode 100644 index 0000000..15e5194 Binary files /dev/null and b/flags/flags-iso/shiny/32/EG.png differ diff --git a/flags/flags-iso/shiny/32/EH.png b/flags/flags-iso/shiny/32/EH.png new file mode 100644 index 0000000..d25fe2a Binary files /dev/null and b/flags/flags-iso/shiny/32/EH.png differ diff --git a/flags/flags-iso/shiny/32/ER.png b/flags/flags-iso/shiny/32/ER.png new file mode 100644 index 0000000..29c2c5a Binary files /dev/null and b/flags/flags-iso/shiny/32/ER.png differ diff --git a/flags/flags-iso/shiny/32/ES.png b/flags/flags-iso/shiny/32/ES.png new file mode 100644 index 0000000..65814c3 Binary files /dev/null and b/flags/flags-iso/shiny/32/ES.png differ diff --git a/flags/flags-iso/shiny/32/ET.png b/flags/flags-iso/shiny/32/ET.png new file mode 100644 index 0000000..07c7b40 Binary files /dev/null and b/flags/flags-iso/shiny/32/ET.png differ diff --git a/flags/flags-iso/shiny/32/EU.png b/flags/flags-iso/shiny/32/EU.png new file mode 100644 index 0000000..f2936a0 Binary files /dev/null and b/flags/flags-iso/shiny/32/EU.png differ diff --git a/flags/flags-iso/shiny/32/FI.png b/flags/flags-iso/shiny/32/FI.png new file mode 100644 index 0000000..e665307 Binary files /dev/null and b/flags/flags-iso/shiny/32/FI.png differ diff --git a/flags/flags-iso/shiny/32/FJ.png b/flags/flags-iso/shiny/32/FJ.png new file mode 100644 index 0000000..0b19ac1 Binary files /dev/null and b/flags/flags-iso/shiny/32/FJ.png differ diff --git a/flags/flags-iso/shiny/32/FK.png b/flags/flags-iso/shiny/32/FK.png new file mode 100644 index 0000000..af12c55 Binary files /dev/null and b/flags/flags-iso/shiny/32/FK.png differ diff --git a/flags/flags-iso/shiny/32/FM.png b/flags/flags-iso/shiny/32/FM.png new file mode 100644 index 0000000..3dc51be Binary files /dev/null and b/flags/flags-iso/shiny/32/FM.png differ diff --git a/flags/flags-iso/shiny/32/FO.png b/flags/flags-iso/shiny/32/FO.png new file mode 100644 index 0000000..30e2338 Binary files /dev/null and b/flags/flags-iso/shiny/32/FO.png differ diff --git a/flags/flags-iso/shiny/32/FR.png b/flags/flags-iso/shiny/32/FR.png new file mode 100644 index 0000000..00c2b42 Binary files /dev/null and b/flags/flags-iso/shiny/32/FR.png differ diff --git a/flags/flags-iso/shiny/32/GA.png b/flags/flags-iso/shiny/32/GA.png new file mode 100644 index 0000000..4e2cae3 Binary files /dev/null and b/flags/flags-iso/shiny/32/GA.png differ diff --git a/flags/flags-iso/shiny/32/GB.png b/flags/flags-iso/shiny/32/GB.png new file mode 100644 index 0000000..531836e Binary files /dev/null and b/flags/flags-iso/shiny/32/GB.png differ diff --git a/flags/flags-iso/shiny/32/GD.png b/flags/flags-iso/shiny/32/GD.png new file mode 100644 index 0000000..f33143c Binary files /dev/null and b/flags/flags-iso/shiny/32/GD.png differ diff --git a/flags/flags-iso/shiny/32/GE.png b/flags/flags-iso/shiny/32/GE.png new file mode 100644 index 0000000..754f405 Binary files /dev/null and b/flags/flags-iso/shiny/32/GE.png differ diff --git a/flags/flags-iso/shiny/32/GG.png b/flags/flags-iso/shiny/32/GG.png new file mode 100644 index 0000000..37fabcc Binary files /dev/null and b/flags/flags-iso/shiny/32/GG.png differ diff --git a/flags/flags-iso/shiny/32/GH.png b/flags/flags-iso/shiny/32/GH.png new file mode 100644 index 0000000..0f7e735 Binary files /dev/null and b/flags/flags-iso/shiny/32/GH.png differ diff --git a/flags/flags-iso/shiny/32/GI.png b/flags/flags-iso/shiny/32/GI.png new file mode 100644 index 0000000..f487f82 Binary files /dev/null and b/flags/flags-iso/shiny/32/GI.png differ diff --git a/flags/flags-iso/shiny/32/GL.png b/flags/flags-iso/shiny/32/GL.png new file mode 100644 index 0000000..dac9998 Binary files /dev/null and b/flags/flags-iso/shiny/32/GL.png differ diff --git a/flags/flags-iso/shiny/32/GM.png b/flags/flags-iso/shiny/32/GM.png new file mode 100644 index 0000000..0e6c447 Binary files /dev/null and b/flags/flags-iso/shiny/32/GM.png differ diff --git a/flags/flags-iso/shiny/32/GN.png b/flags/flags-iso/shiny/32/GN.png new file mode 100644 index 0000000..b37e3e9 Binary files /dev/null and b/flags/flags-iso/shiny/32/GN.png differ diff --git a/flags/flags-iso/shiny/32/GQ.png b/flags/flags-iso/shiny/32/GQ.png new file mode 100644 index 0000000..19bb7a3 Binary files /dev/null and b/flags/flags-iso/shiny/32/GQ.png differ diff --git a/flags/flags-iso/shiny/32/GR.png b/flags/flags-iso/shiny/32/GR.png new file mode 100644 index 0000000..0f202d5 Binary files /dev/null and b/flags/flags-iso/shiny/32/GR.png differ diff --git a/flags/flags-iso/shiny/32/GS.png b/flags/flags-iso/shiny/32/GS.png new file mode 100644 index 0000000..fcaa793 Binary files /dev/null and b/flags/flags-iso/shiny/32/GS.png differ diff --git a/flags/flags-iso/shiny/32/GT.png b/flags/flags-iso/shiny/32/GT.png new file mode 100644 index 0000000..7d85788 Binary files /dev/null and b/flags/flags-iso/shiny/32/GT.png differ diff --git a/flags/flags-iso/shiny/32/GU.png b/flags/flags-iso/shiny/32/GU.png new file mode 100644 index 0000000..1b1213f Binary files /dev/null and b/flags/flags-iso/shiny/32/GU.png differ diff --git a/flags/flags-iso/shiny/32/GW.png b/flags/flags-iso/shiny/32/GW.png new file mode 100644 index 0000000..4fd1490 Binary files /dev/null and b/flags/flags-iso/shiny/32/GW.png differ diff --git a/flags/flags-iso/shiny/32/GY.png b/flags/flags-iso/shiny/32/GY.png new file mode 100644 index 0000000..f60142d Binary files /dev/null and b/flags/flags-iso/shiny/32/GY.png differ diff --git a/flags/flags-iso/shiny/32/HK.png b/flags/flags-iso/shiny/32/HK.png new file mode 100644 index 0000000..d94644b Binary files /dev/null and b/flags/flags-iso/shiny/32/HK.png differ diff --git a/flags/flags-iso/shiny/32/HN.png b/flags/flags-iso/shiny/32/HN.png new file mode 100644 index 0000000..1bc0783 Binary files /dev/null and b/flags/flags-iso/shiny/32/HN.png differ diff --git a/flags/flags-iso/shiny/32/HR.png b/flags/flags-iso/shiny/32/HR.png new file mode 100644 index 0000000..35da777 Binary files /dev/null and b/flags/flags-iso/shiny/32/HR.png differ diff --git a/flags/flags-iso/shiny/32/HT.png b/flags/flags-iso/shiny/32/HT.png new file mode 100644 index 0000000..3db16a0 Binary files /dev/null and b/flags/flags-iso/shiny/32/HT.png differ diff --git a/flags/flags-iso/shiny/32/HU.png b/flags/flags-iso/shiny/32/HU.png new file mode 100644 index 0000000..1a03bc7 Binary files /dev/null and b/flags/flags-iso/shiny/32/HU.png differ diff --git a/flags/flags-iso/shiny/32/ID.png b/flags/flags-iso/shiny/32/ID.png new file mode 100644 index 0000000..05fb3d7 Binary files /dev/null and b/flags/flags-iso/shiny/32/ID.png differ diff --git a/flags/flags-iso/shiny/32/IE.png b/flags/flags-iso/shiny/32/IE.png new file mode 100644 index 0000000..197bc80 Binary files /dev/null and b/flags/flags-iso/shiny/32/IE.png differ diff --git a/flags/flags-iso/shiny/32/IL.png b/flags/flags-iso/shiny/32/IL.png new file mode 100644 index 0000000..1edb473 Binary files /dev/null and b/flags/flags-iso/shiny/32/IL.png differ diff --git a/flags/flags-iso/shiny/32/IM.png b/flags/flags-iso/shiny/32/IM.png new file mode 100644 index 0000000..403ab16 Binary files /dev/null and b/flags/flags-iso/shiny/32/IM.png differ diff --git a/flags/flags-iso/shiny/32/IN.png b/flags/flags-iso/shiny/32/IN.png new file mode 100644 index 0000000..4614f30 Binary files /dev/null and b/flags/flags-iso/shiny/32/IN.png differ diff --git a/flags/flags-iso/shiny/32/IQ.png b/flags/flags-iso/shiny/32/IQ.png new file mode 100644 index 0000000..fd397b3 Binary files /dev/null and b/flags/flags-iso/shiny/32/IQ.png differ diff --git a/flags/flags-iso/shiny/32/IR.png b/flags/flags-iso/shiny/32/IR.png new file mode 100644 index 0000000..58c142c Binary files /dev/null and b/flags/flags-iso/shiny/32/IR.png differ diff --git a/flags/flags-iso/shiny/32/IS.png b/flags/flags-iso/shiny/32/IS.png new file mode 100644 index 0000000..a996642 Binary files /dev/null and b/flags/flags-iso/shiny/32/IS.png differ diff --git a/flags/flags-iso/shiny/32/IT.png b/flags/flags-iso/shiny/32/IT.png new file mode 100644 index 0000000..26071b1 Binary files /dev/null and b/flags/flags-iso/shiny/32/IT.png differ diff --git a/flags/flags-iso/shiny/32/JE.png b/flags/flags-iso/shiny/32/JE.png new file mode 100644 index 0000000..b621e1b Binary files /dev/null and b/flags/flags-iso/shiny/32/JE.png differ diff --git a/flags/flags-iso/shiny/32/JM.png b/flags/flags-iso/shiny/32/JM.png new file mode 100644 index 0000000..d327699 Binary files /dev/null and b/flags/flags-iso/shiny/32/JM.png differ diff --git a/flags/flags-iso/shiny/32/JO.png b/flags/flags-iso/shiny/32/JO.png new file mode 100644 index 0000000..92dcae5 Binary files /dev/null and b/flags/flags-iso/shiny/32/JO.png differ diff --git a/flags/flags-iso/shiny/32/JP.png b/flags/flags-iso/shiny/32/JP.png new file mode 100644 index 0000000..69cca05 Binary files /dev/null and b/flags/flags-iso/shiny/32/JP.png differ diff --git a/flags/flags-iso/shiny/32/KE.png b/flags/flags-iso/shiny/32/KE.png new file mode 100644 index 0000000..e677cd6 Binary files /dev/null and b/flags/flags-iso/shiny/32/KE.png differ diff --git a/flags/flags-iso/shiny/32/KG.png b/flags/flags-iso/shiny/32/KG.png new file mode 100644 index 0000000..23f3c3f Binary files /dev/null and b/flags/flags-iso/shiny/32/KG.png differ diff --git a/flags/flags-iso/shiny/32/KH.png b/flags/flags-iso/shiny/32/KH.png new file mode 100644 index 0000000..be536d0 Binary files /dev/null and b/flags/flags-iso/shiny/32/KH.png differ diff --git a/flags/flags-iso/shiny/32/KI.png b/flags/flags-iso/shiny/32/KI.png new file mode 100644 index 0000000..d2c4406 Binary files /dev/null and b/flags/flags-iso/shiny/32/KI.png differ diff --git a/flags/flags-iso/shiny/32/KM.png b/flags/flags-iso/shiny/32/KM.png new file mode 100644 index 0000000..6a7126c Binary files /dev/null and b/flags/flags-iso/shiny/32/KM.png differ diff --git a/flags/flags-iso/shiny/32/KN.png b/flags/flags-iso/shiny/32/KN.png new file mode 100644 index 0000000..b299794 Binary files /dev/null and b/flags/flags-iso/shiny/32/KN.png differ diff --git a/flags/flags-iso/shiny/32/KP.png b/flags/flags-iso/shiny/32/KP.png new file mode 100644 index 0000000..f109971 Binary files /dev/null and b/flags/flags-iso/shiny/32/KP.png differ diff --git a/flags/flags-iso/shiny/32/KR.png b/flags/flags-iso/shiny/32/KR.png new file mode 100644 index 0000000..2a3a7ee Binary files /dev/null and b/flags/flags-iso/shiny/32/KR.png differ diff --git a/flags/flags-iso/shiny/32/KW.png b/flags/flags-iso/shiny/32/KW.png new file mode 100644 index 0000000..70f2946 Binary files /dev/null and b/flags/flags-iso/shiny/32/KW.png differ diff --git a/flags/flags-iso/shiny/32/KY.png b/flags/flags-iso/shiny/32/KY.png new file mode 100644 index 0000000..0ad539e Binary files /dev/null and b/flags/flags-iso/shiny/32/KY.png differ diff --git a/flags/flags-iso/shiny/32/KZ.png b/flags/flags-iso/shiny/32/KZ.png new file mode 100644 index 0000000..c71047b Binary files /dev/null and b/flags/flags-iso/shiny/32/KZ.png differ diff --git a/flags/flags-iso/shiny/32/LA.png b/flags/flags-iso/shiny/32/LA.png new file mode 100644 index 0000000..1fb2fee Binary files /dev/null and b/flags/flags-iso/shiny/32/LA.png differ diff --git a/flags/flags-iso/shiny/32/LB.png b/flags/flags-iso/shiny/32/LB.png new file mode 100644 index 0000000..2817bcc Binary files /dev/null and b/flags/flags-iso/shiny/32/LB.png differ diff --git a/flags/flags-iso/shiny/32/LC.png b/flags/flags-iso/shiny/32/LC.png new file mode 100644 index 0000000..a86b4ea Binary files /dev/null and b/flags/flags-iso/shiny/32/LC.png differ diff --git a/flags/flags-iso/shiny/32/LI.png b/flags/flags-iso/shiny/32/LI.png new file mode 100644 index 0000000..eaf426a Binary files /dev/null and b/flags/flags-iso/shiny/32/LI.png differ diff --git a/flags/flags-iso/shiny/32/LK.png b/flags/flags-iso/shiny/32/LK.png new file mode 100644 index 0000000..5bc19e8 Binary files /dev/null and b/flags/flags-iso/shiny/32/LK.png differ diff --git a/flags/flags-iso/shiny/32/LR.png b/flags/flags-iso/shiny/32/LR.png new file mode 100644 index 0000000..eb821ae Binary files /dev/null and b/flags/flags-iso/shiny/32/LR.png differ diff --git a/flags/flags-iso/shiny/32/LS.png b/flags/flags-iso/shiny/32/LS.png new file mode 100644 index 0000000..2a91042 Binary files /dev/null and b/flags/flags-iso/shiny/32/LS.png differ diff --git a/flags/flags-iso/shiny/32/LT.png b/flags/flags-iso/shiny/32/LT.png new file mode 100644 index 0000000..2979c00 Binary files /dev/null and b/flags/flags-iso/shiny/32/LT.png differ diff --git a/flags/flags-iso/shiny/32/LU.png b/flags/flags-iso/shiny/32/LU.png new file mode 100644 index 0000000..fd0197b Binary files /dev/null and b/flags/flags-iso/shiny/32/LU.png differ diff --git a/flags/flags-iso/shiny/32/LV.png b/flags/flags-iso/shiny/32/LV.png new file mode 100644 index 0000000..63e7c44 Binary files /dev/null and b/flags/flags-iso/shiny/32/LV.png differ diff --git a/flags/flags-iso/shiny/32/LY.png b/flags/flags-iso/shiny/32/LY.png new file mode 100644 index 0000000..40c3f84 Binary files /dev/null and b/flags/flags-iso/shiny/32/LY.png differ diff --git a/flags/flags-iso/shiny/32/MA.png b/flags/flags-iso/shiny/32/MA.png new file mode 100644 index 0000000..0536263 Binary files /dev/null and b/flags/flags-iso/shiny/32/MA.png differ diff --git a/flags/flags-iso/shiny/32/MC.png b/flags/flags-iso/shiny/32/MC.png new file mode 100644 index 0000000..05fb3d7 Binary files /dev/null and b/flags/flags-iso/shiny/32/MC.png differ diff --git a/flags/flags-iso/shiny/32/MD.png b/flags/flags-iso/shiny/32/MD.png new file mode 100644 index 0000000..4e2e489 Binary files /dev/null and b/flags/flags-iso/shiny/32/MD.png differ diff --git a/flags/flags-iso/shiny/32/ME.png b/flags/flags-iso/shiny/32/ME.png new file mode 100644 index 0000000..25be583 Binary files /dev/null and b/flags/flags-iso/shiny/32/ME.png differ diff --git a/flags/flags-iso/shiny/32/MG.png b/flags/flags-iso/shiny/32/MG.png new file mode 100644 index 0000000..c5d65b4 Binary files /dev/null and b/flags/flags-iso/shiny/32/MG.png differ diff --git a/flags/flags-iso/shiny/32/MH.png b/flags/flags-iso/shiny/32/MH.png new file mode 100644 index 0000000..e7e3acd Binary files /dev/null and b/flags/flags-iso/shiny/32/MH.png differ diff --git a/flags/flags-iso/shiny/32/MK.png b/flags/flags-iso/shiny/32/MK.png new file mode 100644 index 0000000..1aa93b7 Binary files /dev/null and b/flags/flags-iso/shiny/32/MK.png differ diff --git a/flags/flags-iso/shiny/32/ML.png b/flags/flags-iso/shiny/32/ML.png new file mode 100644 index 0000000..90b36c8 Binary files /dev/null and b/flags/flags-iso/shiny/32/ML.png differ diff --git a/flags/flags-iso/shiny/32/MM.png b/flags/flags-iso/shiny/32/MM.png new file mode 100644 index 0000000..283508d Binary files /dev/null and b/flags/flags-iso/shiny/32/MM.png differ diff --git a/flags/flags-iso/shiny/32/MN.png b/flags/flags-iso/shiny/32/MN.png new file mode 100644 index 0000000..700cfde Binary files /dev/null and b/flags/flags-iso/shiny/32/MN.png differ diff --git a/flags/flags-iso/shiny/32/MO.png b/flags/flags-iso/shiny/32/MO.png new file mode 100644 index 0000000..26d9990 Binary files /dev/null and b/flags/flags-iso/shiny/32/MO.png differ diff --git a/flags/flags-iso/shiny/32/MP.png b/flags/flags-iso/shiny/32/MP.png new file mode 100644 index 0000000..218978c Binary files /dev/null and b/flags/flags-iso/shiny/32/MP.png differ diff --git a/flags/flags-iso/shiny/32/MR.png b/flags/flags-iso/shiny/32/MR.png new file mode 100644 index 0000000..5ea54ba Binary files /dev/null and b/flags/flags-iso/shiny/32/MR.png differ diff --git a/flags/flags-iso/shiny/32/MS.png b/flags/flags-iso/shiny/32/MS.png new file mode 100644 index 0000000..28faa78 Binary files /dev/null and b/flags/flags-iso/shiny/32/MS.png differ diff --git a/flags/flags-iso/shiny/32/MT.png b/flags/flags-iso/shiny/32/MT.png new file mode 100644 index 0000000..cdd6f44 Binary files /dev/null and b/flags/flags-iso/shiny/32/MT.png differ diff --git a/flags/flags-iso/shiny/32/MU.png b/flags/flags-iso/shiny/32/MU.png new file mode 100644 index 0000000..75aa760 Binary files /dev/null and b/flags/flags-iso/shiny/32/MU.png differ diff --git a/flags/flags-iso/shiny/32/MV.png b/flags/flags-iso/shiny/32/MV.png new file mode 100644 index 0000000..d0b2e78 Binary files /dev/null and b/flags/flags-iso/shiny/32/MV.png differ diff --git a/flags/flags-iso/shiny/32/MW.png b/flags/flags-iso/shiny/32/MW.png new file mode 100644 index 0000000..3911698 Binary files /dev/null and b/flags/flags-iso/shiny/32/MW.png differ diff --git a/flags/flags-iso/shiny/32/MX.png b/flags/flags-iso/shiny/32/MX.png new file mode 100644 index 0000000..5fc1e67 Binary files /dev/null and b/flags/flags-iso/shiny/32/MX.png differ diff --git a/flags/flags-iso/shiny/32/MY.png b/flags/flags-iso/shiny/32/MY.png new file mode 100644 index 0000000..f8b6b98 Binary files /dev/null and b/flags/flags-iso/shiny/32/MY.png differ diff --git a/flags/flags-iso/shiny/32/MZ.png b/flags/flags-iso/shiny/32/MZ.png new file mode 100644 index 0000000..b10b18a Binary files /dev/null and b/flags/flags-iso/shiny/32/MZ.png differ diff --git a/flags/flags-iso/shiny/32/NA.png b/flags/flags-iso/shiny/32/NA.png new file mode 100644 index 0000000..0c79cba Binary files /dev/null and b/flags/flags-iso/shiny/32/NA.png differ diff --git a/flags/flags-iso/shiny/32/NC.png b/flags/flags-iso/shiny/32/NC.png new file mode 100644 index 0000000..5a2d759 Binary files /dev/null and b/flags/flags-iso/shiny/32/NC.png differ diff --git a/flags/flags-iso/shiny/32/NE.png b/flags/flags-iso/shiny/32/NE.png new file mode 100644 index 0000000..7108759 Binary files /dev/null and b/flags/flags-iso/shiny/32/NE.png differ diff --git a/flags/flags-iso/shiny/32/NF.png b/flags/flags-iso/shiny/32/NF.png new file mode 100644 index 0000000..9f1bd9b Binary files /dev/null and b/flags/flags-iso/shiny/32/NF.png differ diff --git a/flags/flags-iso/shiny/32/NG.png b/flags/flags-iso/shiny/32/NG.png new file mode 100644 index 0000000..57db1c3 Binary files /dev/null and b/flags/flags-iso/shiny/32/NG.png differ diff --git a/flags/flags-iso/shiny/32/NI.png b/flags/flags-iso/shiny/32/NI.png new file mode 100644 index 0000000..d454076 Binary files /dev/null and b/flags/flags-iso/shiny/32/NI.png differ diff --git a/flags/flags-iso/shiny/32/NL.png b/flags/flags-iso/shiny/32/NL.png new file mode 100644 index 0000000..01b1612 Binary files /dev/null and b/flags/flags-iso/shiny/32/NL.png differ diff --git a/flags/flags-iso/shiny/32/NO.png b/flags/flags-iso/shiny/32/NO.png new file mode 100644 index 0000000..dc0d858 Binary files /dev/null and b/flags/flags-iso/shiny/32/NO.png differ diff --git a/flags/flags-iso/shiny/32/NP.png b/flags/flags-iso/shiny/32/NP.png new file mode 100644 index 0000000..50f04ac Binary files /dev/null and b/flags/flags-iso/shiny/32/NP.png differ diff --git a/flags/flags-iso/shiny/32/NR.png b/flags/flags-iso/shiny/32/NR.png new file mode 100644 index 0000000..2d9038a Binary files /dev/null and b/flags/flags-iso/shiny/32/NR.png differ diff --git a/flags/flags-iso/shiny/32/NU.png b/flags/flags-iso/shiny/32/NU.png new file mode 100644 index 0000000..f712b41 Binary files /dev/null and b/flags/flags-iso/shiny/32/NU.png differ diff --git a/flags/flags-iso/shiny/32/NZ.png b/flags/flags-iso/shiny/32/NZ.png new file mode 100644 index 0000000..6034fde Binary files /dev/null and b/flags/flags-iso/shiny/32/NZ.png differ diff --git a/flags/flags-iso/shiny/32/OM.png b/flags/flags-iso/shiny/32/OM.png new file mode 100644 index 0000000..3f65141 Binary files /dev/null and b/flags/flags-iso/shiny/32/OM.png differ diff --git a/flags/flags-iso/shiny/32/PA.png b/flags/flags-iso/shiny/32/PA.png new file mode 100644 index 0000000..99f9884 Binary files /dev/null and b/flags/flags-iso/shiny/32/PA.png differ diff --git a/flags/flags-iso/shiny/32/PE.png b/flags/flags-iso/shiny/32/PE.png new file mode 100644 index 0000000..210a0b8 Binary files /dev/null and b/flags/flags-iso/shiny/32/PE.png differ diff --git a/flags/flags-iso/shiny/32/PF.png b/flags/flags-iso/shiny/32/PF.png new file mode 100644 index 0000000..2bd5247 Binary files /dev/null and b/flags/flags-iso/shiny/32/PF.png differ diff --git a/flags/flags-iso/shiny/32/PG.png b/flags/flags-iso/shiny/32/PG.png new file mode 100644 index 0000000..3e59c8b Binary files /dev/null and b/flags/flags-iso/shiny/32/PG.png differ diff --git a/flags/flags-iso/shiny/32/PH.png b/flags/flags-iso/shiny/32/PH.png new file mode 100644 index 0000000..aad946d Binary files /dev/null and b/flags/flags-iso/shiny/32/PH.png differ diff --git a/flags/flags-iso/shiny/32/PK.png b/flags/flags-iso/shiny/32/PK.png new file mode 100644 index 0000000..f24fe2b Binary files /dev/null and b/flags/flags-iso/shiny/32/PK.png differ diff --git a/flags/flags-iso/shiny/32/PL.png b/flags/flags-iso/shiny/32/PL.png new file mode 100644 index 0000000..60cb1b4 Binary files /dev/null and b/flags/flags-iso/shiny/32/PL.png differ diff --git a/flags/flags-iso/shiny/32/PN.png b/flags/flags-iso/shiny/32/PN.png new file mode 100644 index 0000000..01dead4 Binary files /dev/null and b/flags/flags-iso/shiny/32/PN.png differ diff --git a/flags/flags-iso/shiny/32/PR.png b/flags/flags-iso/shiny/32/PR.png new file mode 100644 index 0000000..31fbcd3 Binary files /dev/null and b/flags/flags-iso/shiny/32/PR.png differ diff --git a/flags/flags-iso/shiny/32/PS.png b/flags/flags-iso/shiny/32/PS.png new file mode 100644 index 0000000..8efd0d1 Binary files /dev/null and b/flags/flags-iso/shiny/32/PS.png differ diff --git a/flags/flags-iso/shiny/32/PT.png b/flags/flags-iso/shiny/32/PT.png new file mode 100644 index 0000000..d9c2383 Binary files /dev/null and b/flags/flags-iso/shiny/32/PT.png differ diff --git a/flags/flags-iso/shiny/32/PW.png b/flags/flags-iso/shiny/32/PW.png new file mode 100644 index 0000000..b384ef3 Binary files /dev/null and b/flags/flags-iso/shiny/32/PW.png differ diff --git a/flags/flags-iso/shiny/32/PY.png b/flags/flags-iso/shiny/32/PY.png new file mode 100644 index 0000000..84ff0f9 Binary files /dev/null and b/flags/flags-iso/shiny/32/PY.png differ diff --git a/flags/flags-iso/shiny/32/QA.png b/flags/flags-iso/shiny/32/QA.png new file mode 100644 index 0000000..55ebe0a Binary files /dev/null and b/flags/flags-iso/shiny/32/QA.png differ diff --git a/flags/flags-iso/shiny/32/RO.png b/flags/flags-iso/shiny/32/RO.png new file mode 100644 index 0000000..5c68926 Binary files /dev/null and b/flags/flags-iso/shiny/32/RO.png differ diff --git a/flags/flags-iso/shiny/32/RS.png b/flags/flags-iso/shiny/32/RS.png new file mode 100644 index 0000000..5576a0f Binary files /dev/null and b/flags/flags-iso/shiny/32/RS.png differ diff --git a/flags/flags-iso/shiny/32/RU.png b/flags/flags-iso/shiny/32/RU.png new file mode 100644 index 0000000..6ec5b90 Binary files /dev/null and b/flags/flags-iso/shiny/32/RU.png differ diff --git a/flags/flags-iso/shiny/32/RW.png b/flags/flags-iso/shiny/32/RW.png new file mode 100644 index 0000000..0ce3a11 Binary files /dev/null and b/flags/flags-iso/shiny/32/RW.png differ diff --git a/flags/flags-iso/shiny/32/SA.png b/flags/flags-iso/shiny/32/SA.png new file mode 100644 index 0000000..27f6c90 Binary files /dev/null and b/flags/flags-iso/shiny/32/SA.png differ diff --git a/flags/flags-iso/shiny/32/SB.png b/flags/flags-iso/shiny/32/SB.png new file mode 100644 index 0000000..379674d Binary files /dev/null and b/flags/flags-iso/shiny/32/SB.png differ diff --git a/flags/flags-iso/shiny/32/SC.png b/flags/flags-iso/shiny/32/SC.png new file mode 100644 index 0000000..437d688 Binary files /dev/null and b/flags/flags-iso/shiny/32/SC.png differ diff --git a/flags/flags-iso/shiny/32/SD.png b/flags/flags-iso/shiny/32/SD.png new file mode 100644 index 0000000..45a7c91 Binary files /dev/null and b/flags/flags-iso/shiny/32/SD.png differ diff --git a/flags/flags-iso/shiny/32/SE.png b/flags/flags-iso/shiny/32/SE.png new file mode 100644 index 0000000..c114237 Binary files /dev/null and b/flags/flags-iso/shiny/32/SE.png differ diff --git a/flags/flags-iso/shiny/32/SG.png b/flags/flags-iso/shiny/32/SG.png new file mode 100644 index 0000000..9f67797 Binary files /dev/null and b/flags/flags-iso/shiny/32/SG.png differ diff --git a/flags/flags-iso/shiny/32/SH.png b/flags/flags-iso/shiny/32/SH.png new file mode 100644 index 0000000..169d5a7 Binary files /dev/null and b/flags/flags-iso/shiny/32/SH.png differ diff --git a/flags/flags-iso/shiny/32/SI.png b/flags/flags-iso/shiny/32/SI.png new file mode 100644 index 0000000..5bd7049 Binary files /dev/null and b/flags/flags-iso/shiny/32/SI.png differ diff --git a/flags/flags-iso/shiny/32/SK.png b/flags/flags-iso/shiny/32/SK.png new file mode 100644 index 0000000..0628ea0 Binary files /dev/null and b/flags/flags-iso/shiny/32/SK.png differ diff --git a/flags/flags-iso/shiny/32/SL.png b/flags/flags-iso/shiny/32/SL.png new file mode 100644 index 0000000..d56037b Binary files /dev/null and b/flags/flags-iso/shiny/32/SL.png differ diff --git a/flags/flags-iso/shiny/32/SM.png b/flags/flags-iso/shiny/32/SM.png new file mode 100644 index 0000000..194e1cd Binary files /dev/null and b/flags/flags-iso/shiny/32/SM.png differ diff --git a/flags/flags-iso/shiny/32/SN.png b/flags/flags-iso/shiny/32/SN.png new file mode 100644 index 0000000..b3b9b10 Binary files /dev/null and b/flags/flags-iso/shiny/32/SN.png differ diff --git a/flags/flags-iso/shiny/32/SO.png b/flags/flags-iso/shiny/32/SO.png new file mode 100644 index 0000000..6824850 Binary files /dev/null and b/flags/flags-iso/shiny/32/SO.png differ diff --git a/flags/flags-iso/shiny/32/SR.png b/flags/flags-iso/shiny/32/SR.png new file mode 100644 index 0000000..659c0b0 Binary files /dev/null and b/flags/flags-iso/shiny/32/SR.png differ diff --git a/flags/flags-iso/shiny/32/SS.png b/flags/flags-iso/shiny/32/SS.png new file mode 100644 index 0000000..805b169 Binary files /dev/null and b/flags/flags-iso/shiny/32/SS.png differ diff --git a/flags/flags-iso/shiny/32/ST.png b/flags/flags-iso/shiny/32/ST.png new file mode 100644 index 0000000..61125ea Binary files /dev/null and b/flags/flags-iso/shiny/32/ST.png differ diff --git a/flags/flags-iso/shiny/32/SV.png b/flags/flags-iso/shiny/32/SV.png new file mode 100644 index 0000000..3dad13f Binary files /dev/null and b/flags/flags-iso/shiny/32/SV.png differ diff --git a/flags/flags-iso/shiny/32/SY.png b/flags/flags-iso/shiny/32/SY.png new file mode 100644 index 0000000..dd5d0a2 Binary files /dev/null and b/flags/flags-iso/shiny/32/SY.png differ diff --git a/flags/flags-iso/shiny/32/SZ.png b/flags/flags-iso/shiny/32/SZ.png new file mode 100644 index 0000000..1c7406c Binary files /dev/null and b/flags/flags-iso/shiny/32/SZ.png differ diff --git a/flags/flags-iso/shiny/32/TC.png b/flags/flags-iso/shiny/32/TC.png new file mode 100644 index 0000000..aea447f Binary files /dev/null and b/flags/flags-iso/shiny/32/TC.png differ diff --git a/flags/flags-iso/shiny/32/TD.png b/flags/flags-iso/shiny/32/TD.png new file mode 100644 index 0000000..4c8a5d4 Binary files /dev/null and b/flags/flags-iso/shiny/32/TD.png differ diff --git a/flags/flags-iso/shiny/32/TF.png b/flags/flags-iso/shiny/32/TF.png new file mode 100644 index 0000000..eda6af3 Binary files /dev/null and b/flags/flags-iso/shiny/32/TF.png differ diff --git a/flags/flags-iso/shiny/32/TG.png b/flags/flags-iso/shiny/32/TG.png new file mode 100644 index 0000000..7653f21 Binary files /dev/null and b/flags/flags-iso/shiny/32/TG.png differ diff --git a/flags/flags-iso/shiny/32/TH.png b/flags/flags-iso/shiny/32/TH.png new file mode 100644 index 0000000..68d10bb Binary files /dev/null and b/flags/flags-iso/shiny/32/TH.png differ diff --git a/flags/flags-iso/shiny/32/TJ.png b/flags/flags-iso/shiny/32/TJ.png new file mode 100644 index 0000000..97eb04e Binary files /dev/null and b/flags/flags-iso/shiny/32/TJ.png differ diff --git a/flags/flags-iso/shiny/32/TK.png b/flags/flags-iso/shiny/32/TK.png new file mode 100644 index 0000000..61da295 Binary files /dev/null and b/flags/flags-iso/shiny/32/TK.png differ diff --git a/flags/flags-iso/shiny/32/TL.png b/flags/flags-iso/shiny/32/TL.png new file mode 100644 index 0000000..da70cca Binary files /dev/null and b/flags/flags-iso/shiny/32/TL.png differ diff --git a/flags/flags-iso/shiny/32/TM.png b/flags/flags-iso/shiny/32/TM.png new file mode 100644 index 0000000..14c6046 Binary files /dev/null and b/flags/flags-iso/shiny/32/TM.png differ diff --git a/flags/flags-iso/shiny/32/TN.png b/flags/flags-iso/shiny/32/TN.png new file mode 100644 index 0000000..512c47a Binary files /dev/null and b/flags/flags-iso/shiny/32/TN.png differ diff --git a/flags/flags-iso/shiny/32/TO.png b/flags/flags-iso/shiny/32/TO.png new file mode 100644 index 0000000..a903c36 Binary files /dev/null and b/flags/flags-iso/shiny/32/TO.png differ diff --git a/flags/flags-iso/shiny/32/TR.png b/flags/flags-iso/shiny/32/TR.png new file mode 100644 index 0000000..e854a8d Binary files /dev/null and b/flags/flags-iso/shiny/32/TR.png differ diff --git a/flags/flags-iso/shiny/32/TT.png b/flags/flags-iso/shiny/32/TT.png new file mode 100644 index 0000000..6ce562b Binary files /dev/null and b/flags/flags-iso/shiny/32/TT.png differ diff --git a/flags/flags-iso/shiny/32/TV.png b/flags/flags-iso/shiny/32/TV.png new file mode 100644 index 0000000..db0897a Binary files /dev/null and b/flags/flags-iso/shiny/32/TV.png differ diff --git a/flags/flags-iso/shiny/32/TW.png b/flags/flags-iso/shiny/32/TW.png new file mode 100644 index 0000000..9265d85 Binary files /dev/null and b/flags/flags-iso/shiny/32/TW.png differ diff --git a/flags/flags-iso/shiny/32/TZ.png b/flags/flags-iso/shiny/32/TZ.png new file mode 100644 index 0000000..ba1dcf0 Binary files /dev/null and b/flags/flags-iso/shiny/32/TZ.png differ diff --git a/flags/flags-iso/shiny/32/UA.png b/flags/flags-iso/shiny/32/UA.png new file mode 100644 index 0000000..151d87a Binary files /dev/null and b/flags/flags-iso/shiny/32/UA.png differ diff --git a/flags/flags-iso/shiny/32/UG.png b/flags/flags-iso/shiny/32/UG.png new file mode 100644 index 0000000..6e60b7a Binary files /dev/null and b/flags/flags-iso/shiny/32/UG.png differ diff --git a/flags/flags-iso/shiny/32/US.png b/flags/flags-iso/shiny/32/US.png new file mode 100644 index 0000000..44b3c28 Binary files /dev/null and b/flags/flags-iso/shiny/32/US.png differ diff --git a/flags/flags-iso/shiny/32/UY.png b/flags/flags-iso/shiny/32/UY.png new file mode 100644 index 0000000..97cb920 Binary files /dev/null and b/flags/flags-iso/shiny/32/UY.png differ diff --git a/flags/flags-iso/shiny/32/UZ.png b/flags/flags-iso/shiny/32/UZ.png new file mode 100644 index 0000000..1aa66d8 Binary files /dev/null and b/flags/flags-iso/shiny/32/UZ.png differ diff --git a/flags/flags-iso/shiny/32/VA.png b/flags/flags-iso/shiny/32/VA.png new file mode 100644 index 0000000..d73feed Binary files /dev/null and b/flags/flags-iso/shiny/32/VA.png differ diff --git a/flags/flags-iso/shiny/32/VC.png b/flags/flags-iso/shiny/32/VC.png new file mode 100644 index 0000000..e734896 Binary files /dev/null and b/flags/flags-iso/shiny/32/VC.png differ diff --git a/flags/flags-iso/shiny/32/VE.png b/flags/flags-iso/shiny/32/VE.png new file mode 100644 index 0000000..319645f Binary files /dev/null and b/flags/flags-iso/shiny/32/VE.png differ diff --git a/flags/flags-iso/shiny/32/VG.png b/flags/flags-iso/shiny/32/VG.png new file mode 100644 index 0000000..810e982 Binary files /dev/null and b/flags/flags-iso/shiny/32/VG.png differ diff --git a/flags/flags-iso/shiny/32/VI.png b/flags/flags-iso/shiny/32/VI.png new file mode 100644 index 0000000..2fe609b Binary files /dev/null and b/flags/flags-iso/shiny/32/VI.png differ diff --git a/flags/flags-iso/shiny/32/VN.png b/flags/flags-iso/shiny/32/VN.png new file mode 100644 index 0000000..02bdd0d Binary files /dev/null and b/flags/flags-iso/shiny/32/VN.png differ diff --git a/flags/flags-iso/shiny/32/VU.png b/flags/flags-iso/shiny/32/VU.png new file mode 100644 index 0000000..1caa6cd Binary files /dev/null and b/flags/flags-iso/shiny/32/VU.png differ diff --git a/flags/flags-iso/shiny/32/WS.png b/flags/flags-iso/shiny/32/WS.png new file mode 100644 index 0000000..c53c22d Binary files /dev/null and b/flags/flags-iso/shiny/32/WS.png differ diff --git a/flags/flags-iso/shiny/32/YE.png b/flags/flags-iso/shiny/32/YE.png new file mode 100644 index 0000000..3362041 Binary files /dev/null and b/flags/flags-iso/shiny/32/YE.png differ diff --git a/flags/flags-iso/shiny/32/YT.png b/flags/flags-iso/shiny/32/YT.png new file mode 100644 index 0000000..1420291 Binary files /dev/null and b/flags/flags-iso/shiny/32/YT.png differ diff --git a/flags/flags-iso/shiny/32/ZA.png b/flags/flags-iso/shiny/32/ZA.png new file mode 100644 index 0000000..3d792b6 Binary files /dev/null and b/flags/flags-iso/shiny/32/ZA.png differ diff --git a/flags/flags-iso/shiny/32/ZM.png b/flags/flags-iso/shiny/32/ZM.png new file mode 100644 index 0000000..685c2cd Binary files /dev/null and b/flags/flags-iso/shiny/32/ZM.png differ diff --git a/flags/flags-iso/shiny/32/ZW.png b/flags/flags-iso/shiny/32/ZW.png new file mode 100644 index 0000000..e80faec Binary files /dev/null and b/flags/flags-iso/shiny/32/ZW.png differ diff --git a/flags/flags-iso/shiny/32/_abkhazia.png b/flags/flags-iso/shiny/32/_abkhazia.png new file mode 100644 index 0000000..159f1ba Binary files /dev/null and b/flags/flags-iso/shiny/32/_abkhazia.png differ diff --git a/flags/flags-iso/shiny/32/_british-antarctic-territory.png b/flags/flags-iso/shiny/32/_british-antarctic-territory.png new file mode 100644 index 0000000..e4031c8 Binary files /dev/null and b/flags/flags-iso/shiny/32/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/shiny/32/_commonwealth.png b/flags/flags-iso/shiny/32/_commonwealth.png new file mode 100644 index 0000000..b9c057e Binary files /dev/null and b/flags/flags-iso/shiny/32/_commonwealth.png differ diff --git a/flags/flags-iso/shiny/32/_england.png b/flags/flags-iso/shiny/32/_england.png new file mode 100644 index 0000000..3d05378 Binary files /dev/null and b/flags/flags-iso/shiny/32/_england.png differ diff --git a/flags/flags-iso/shiny/32/_gosquared.png b/flags/flags-iso/shiny/32/_gosquared.png new file mode 100644 index 0000000..6e26513 Binary files /dev/null and b/flags/flags-iso/shiny/32/_gosquared.png differ diff --git a/flags/flags-iso/shiny/32/_kosovo.png b/flags/flags-iso/shiny/32/_kosovo.png new file mode 100644 index 0000000..bcdfe73 Binary files /dev/null and b/flags/flags-iso/shiny/32/_kosovo.png differ diff --git a/flags/flags-iso/shiny/32/_mars.png b/flags/flags-iso/shiny/32/_mars.png new file mode 100644 index 0000000..93c4521 Binary files /dev/null and b/flags/flags-iso/shiny/32/_mars.png differ diff --git a/flags/flags-iso/shiny/32/_nagorno-karabakh.png b/flags/flags-iso/shiny/32/_nagorno-karabakh.png new file mode 100644 index 0000000..d95e66f Binary files /dev/null and b/flags/flags-iso/shiny/32/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/shiny/32/_nato.png b/flags/flags-iso/shiny/32/_nato.png new file mode 100644 index 0000000..a837cab Binary files /dev/null and b/flags/flags-iso/shiny/32/_nato.png differ diff --git a/flags/flags-iso/shiny/32/_northern-cyprus.png b/flags/flags-iso/shiny/32/_northern-cyprus.png new file mode 100644 index 0000000..a904bcf Binary files /dev/null and b/flags/flags-iso/shiny/32/_northern-cyprus.png differ diff --git a/flags/flags-iso/shiny/32/_olympics.png b/flags/flags-iso/shiny/32/_olympics.png new file mode 100644 index 0000000..18605fd Binary files /dev/null and b/flags/flags-iso/shiny/32/_olympics.png differ diff --git a/flags/flags-iso/shiny/32/_red-cross.png b/flags/flags-iso/shiny/32/_red-cross.png new file mode 100644 index 0000000..c13cd8d Binary files /dev/null and b/flags/flags-iso/shiny/32/_red-cross.png differ diff --git a/flags/flags-iso/shiny/32/_scotland.png b/flags/flags-iso/shiny/32/_scotland.png new file mode 100644 index 0000000..38f8d1d Binary files /dev/null and b/flags/flags-iso/shiny/32/_scotland.png differ diff --git a/flags/flags-iso/shiny/32/_somaliland.png b/flags/flags-iso/shiny/32/_somaliland.png new file mode 100644 index 0000000..0f45e1e Binary files /dev/null and b/flags/flags-iso/shiny/32/_somaliland.png differ diff --git a/flags/flags-iso/shiny/32/_south-ossetia.png b/flags/flags-iso/shiny/32/_south-ossetia.png new file mode 100644 index 0000000..c5d5630 Binary files /dev/null and b/flags/flags-iso/shiny/32/_south-ossetia.png differ diff --git a/flags/flags-iso/shiny/32/_united-nations.png b/flags/flags-iso/shiny/32/_united-nations.png new file mode 100644 index 0000000..a48c0e5 Binary files /dev/null and b/flags/flags-iso/shiny/32/_united-nations.png differ diff --git a/flags/flags-iso/shiny/32/_wales.png b/flags/flags-iso/shiny/32/_wales.png new file mode 100644 index 0000000..fb77f7d Binary files /dev/null and b/flags/flags-iso/shiny/32/_wales.png differ diff --git a/flags/flags-iso/shiny/48/.png b/flags/flags-iso/shiny/48/.png new file mode 100644 index 0000000..1e8e5f7 Binary files /dev/null and b/flags/flags-iso/shiny/48/.png differ diff --git a/flags/flags-iso/shiny/48/AD.png b/flags/flags-iso/shiny/48/AD.png new file mode 100644 index 0000000..7e34545 Binary files /dev/null and b/flags/flags-iso/shiny/48/AD.png differ diff --git a/flags/flags-iso/shiny/48/AE.png b/flags/flags-iso/shiny/48/AE.png new file mode 100644 index 0000000..c3be97b Binary files /dev/null and b/flags/flags-iso/shiny/48/AE.png differ diff --git a/flags/flags-iso/shiny/48/AF.png b/flags/flags-iso/shiny/48/AF.png new file mode 100644 index 0000000..f8a2089 Binary files /dev/null and b/flags/flags-iso/shiny/48/AF.png differ diff --git a/flags/flags-iso/shiny/48/AG.png b/flags/flags-iso/shiny/48/AG.png new file mode 100644 index 0000000..81e03f6 Binary files /dev/null and b/flags/flags-iso/shiny/48/AG.png differ diff --git a/flags/flags-iso/shiny/48/AI.png b/flags/flags-iso/shiny/48/AI.png new file mode 100644 index 0000000..f443518 Binary files /dev/null and b/flags/flags-iso/shiny/48/AI.png differ diff --git a/flags/flags-iso/shiny/48/AL.png b/flags/flags-iso/shiny/48/AL.png new file mode 100644 index 0000000..f2972da Binary files /dev/null and b/flags/flags-iso/shiny/48/AL.png differ diff --git a/flags/flags-iso/shiny/48/AM.png b/flags/flags-iso/shiny/48/AM.png new file mode 100644 index 0000000..dff6909 Binary files /dev/null and b/flags/flags-iso/shiny/48/AM.png differ diff --git a/flags/flags-iso/shiny/48/AN.png b/flags/flags-iso/shiny/48/AN.png new file mode 100644 index 0000000..b6afdee Binary files /dev/null and b/flags/flags-iso/shiny/48/AN.png differ diff --git a/flags/flags-iso/shiny/48/AO.png b/flags/flags-iso/shiny/48/AO.png new file mode 100644 index 0000000..6094813 Binary files /dev/null and b/flags/flags-iso/shiny/48/AO.png differ diff --git a/flags/flags-iso/shiny/48/AQ.png b/flags/flags-iso/shiny/48/AQ.png new file mode 100644 index 0000000..f82aea6 Binary files /dev/null and b/flags/flags-iso/shiny/48/AQ.png differ diff --git a/flags/flags-iso/shiny/48/AR.png b/flags/flags-iso/shiny/48/AR.png new file mode 100644 index 0000000..6c0248b Binary files /dev/null and b/flags/flags-iso/shiny/48/AR.png differ diff --git a/flags/flags-iso/shiny/48/AS.png b/flags/flags-iso/shiny/48/AS.png new file mode 100644 index 0000000..f6701ad Binary files /dev/null and b/flags/flags-iso/shiny/48/AS.png differ diff --git a/flags/flags-iso/shiny/48/AT.png b/flags/flags-iso/shiny/48/AT.png new file mode 100644 index 0000000..64aaca4 Binary files /dev/null and b/flags/flags-iso/shiny/48/AT.png differ diff --git a/flags/flags-iso/shiny/48/AU.png b/flags/flags-iso/shiny/48/AU.png new file mode 100644 index 0000000..5dee590 Binary files /dev/null and b/flags/flags-iso/shiny/48/AU.png differ diff --git a/flags/flags-iso/shiny/48/AW.png b/flags/flags-iso/shiny/48/AW.png new file mode 100644 index 0000000..12f96e7 Binary files /dev/null and b/flags/flags-iso/shiny/48/AW.png differ diff --git a/flags/flags-iso/shiny/48/AX.png b/flags/flags-iso/shiny/48/AX.png new file mode 100644 index 0000000..2f4bd4a Binary files /dev/null and b/flags/flags-iso/shiny/48/AX.png differ diff --git a/flags/flags-iso/shiny/48/AZ.png b/flags/flags-iso/shiny/48/AZ.png new file mode 100644 index 0000000..fcca9a0 Binary files /dev/null and b/flags/flags-iso/shiny/48/AZ.png differ diff --git a/flags/flags-iso/shiny/48/BA.png b/flags/flags-iso/shiny/48/BA.png new file mode 100644 index 0000000..bcd7223 Binary files /dev/null and b/flags/flags-iso/shiny/48/BA.png differ diff --git a/flags/flags-iso/shiny/48/BB.png b/flags/flags-iso/shiny/48/BB.png new file mode 100644 index 0000000..26f9355 Binary files /dev/null and b/flags/flags-iso/shiny/48/BB.png differ diff --git a/flags/flags-iso/shiny/48/BD.png b/flags/flags-iso/shiny/48/BD.png new file mode 100644 index 0000000..66a2f99 Binary files /dev/null and b/flags/flags-iso/shiny/48/BD.png differ diff --git a/flags/flags-iso/shiny/48/BE.png b/flags/flags-iso/shiny/48/BE.png new file mode 100644 index 0000000..f94127e Binary files /dev/null and b/flags/flags-iso/shiny/48/BE.png differ diff --git a/flags/flags-iso/shiny/48/BF.png b/flags/flags-iso/shiny/48/BF.png new file mode 100644 index 0000000..db65c36 Binary files /dev/null and b/flags/flags-iso/shiny/48/BF.png differ diff --git a/flags/flags-iso/shiny/48/BG.png b/flags/flags-iso/shiny/48/BG.png new file mode 100644 index 0000000..96987ee Binary files /dev/null and b/flags/flags-iso/shiny/48/BG.png differ diff --git a/flags/flags-iso/shiny/48/BH.png b/flags/flags-iso/shiny/48/BH.png new file mode 100644 index 0000000..02f86ed Binary files /dev/null and b/flags/flags-iso/shiny/48/BH.png differ diff --git a/flags/flags-iso/shiny/48/BI.png b/flags/flags-iso/shiny/48/BI.png new file mode 100644 index 0000000..b680aac Binary files /dev/null and b/flags/flags-iso/shiny/48/BI.png differ diff --git a/flags/flags-iso/shiny/48/BJ.png b/flags/flags-iso/shiny/48/BJ.png new file mode 100644 index 0000000..f35ae52 Binary files /dev/null and b/flags/flags-iso/shiny/48/BJ.png differ diff --git a/flags/flags-iso/shiny/48/BL.png b/flags/flags-iso/shiny/48/BL.png new file mode 100644 index 0000000..e64f96b Binary files /dev/null and b/flags/flags-iso/shiny/48/BL.png differ diff --git a/flags/flags-iso/shiny/48/BM.png b/flags/flags-iso/shiny/48/BM.png new file mode 100644 index 0000000..9288df5 Binary files /dev/null and b/flags/flags-iso/shiny/48/BM.png differ diff --git a/flags/flags-iso/shiny/48/BN.png b/flags/flags-iso/shiny/48/BN.png new file mode 100644 index 0000000..61aa7a0 Binary files /dev/null and b/flags/flags-iso/shiny/48/BN.png differ diff --git a/flags/flags-iso/shiny/48/BO.png b/flags/flags-iso/shiny/48/BO.png new file mode 100644 index 0000000..f3e14a7 Binary files /dev/null and b/flags/flags-iso/shiny/48/BO.png differ diff --git a/flags/flags-iso/shiny/48/BR.png b/flags/flags-iso/shiny/48/BR.png new file mode 100644 index 0000000..56d6933 Binary files /dev/null and b/flags/flags-iso/shiny/48/BR.png differ diff --git a/flags/flags-iso/shiny/48/BS.png b/flags/flags-iso/shiny/48/BS.png new file mode 100644 index 0000000..3e06289 Binary files /dev/null and b/flags/flags-iso/shiny/48/BS.png differ diff --git a/flags/flags-iso/shiny/48/BT.png b/flags/flags-iso/shiny/48/BT.png new file mode 100644 index 0000000..dab69cc Binary files /dev/null and b/flags/flags-iso/shiny/48/BT.png differ diff --git a/flags/flags-iso/shiny/48/BW.png b/flags/flags-iso/shiny/48/BW.png new file mode 100644 index 0000000..ea95524 Binary files /dev/null and b/flags/flags-iso/shiny/48/BW.png differ diff --git a/flags/flags-iso/shiny/48/BY.png b/flags/flags-iso/shiny/48/BY.png new file mode 100644 index 0000000..654cc13 Binary files /dev/null and b/flags/flags-iso/shiny/48/BY.png differ diff --git a/flags/flags-iso/shiny/48/BZ.png b/flags/flags-iso/shiny/48/BZ.png new file mode 100644 index 0000000..6bfeea6 Binary files /dev/null and b/flags/flags-iso/shiny/48/BZ.png differ diff --git a/flags/flags-iso/shiny/48/CA.png b/flags/flags-iso/shiny/48/CA.png new file mode 100644 index 0000000..48f5907 Binary files /dev/null and b/flags/flags-iso/shiny/48/CA.png differ diff --git a/flags/flags-iso/shiny/48/CC.png b/flags/flags-iso/shiny/48/CC.png new file mode 100644 index 0000000..32ca763 Binary files /dev/null and b/flags/flags-iso/shiny/48/CC.png differ diff --git a/flags/flags-iso/shiny/48/CD.png b/flags/flags-iso/shiny/48/CD.png new file mode 100644 index 0000000..762e022 Binary files /dev/null and b/flags/flags-iso/shiny/48/CD.png differ diff --git a/flags/flags-iso/shiny/48/CF.png b/flags/flags-iso/shiny/48/CF.png new file mode 100644 index 0000000..b5329ff Binary files /dev/null and b/flags/flags-iso/shiny/48/CF.png differ diff --git a/flags/flags-iso/shiny/48/CG.png b/flags/flags-iso/shiny/48/CG.png new file mode 100644 index 0000000..b9637a0 Binary files /dev/null and b/flags/flags-iso/shiny/48/CG.png differ diff --git a/flags/flags-iso/shiny/48/CH.png b/flags/flags-iso/shiny/48/CH.png new file mode 100644 index 0000000..e6ff9a0 Binary files /dev/null and b/flags/flags-iso/shiny/48/CH.png differ diff --git a/flags/flags-iso/shiny/48/CI.png b/flags/flags-iso/shiny/48/CI.png new file mode 100644 index 0000000..55b166a Binary files /dev/null and b/flags/flags-iso/shiny/48/CI.png differ diff --git a/flags/flags-iso/shiny/48/CK.png b/flags/flags-iso/shiny/48/CK.png new file mode 100644 index 0000000..53b530a Binary files /dev/null and b/flags/flags-iso/shiny/48/CK.png differ diff --git a/flags/flags-iso/shiny/48/CL.png b/flags/flags-iso/shiny/48/CL.png new file mode 100644 index 0000000..7c0fa84 Binary files /dev/null and b/flags/flags-iso/shiny/48/CL.png differ diff --git a/flags/flags-iso/shiny/48/CM.png b/flags/flags-iso/shiny/48/CM.png new file mode 100644 index 0000000..fce39d5 Binary files /dev/null and b/flags/flags-iso/shiny/48/CM.png differ diff --git a/flags/flags-iso/shiny/48/CN.png b/flags/flags-iso/shiny/48/CN.png new file mode 100644 index 0000000..5252856 Binary files /dev/null and b/flags/flags-iso/shiny/48/CN.png differ diff --git a/flags/flags-iso/shiny/48/CO.png b/flags/flags-iso/shiny/48/CO.png new file mode 100644 index 0000000..d12519e Binary files /dev/null and b/flags/flags-iso/shiny/48/CO.png differ diff --git a/flags/flags-iso/shiny/48/CR.png b/flags/flags-iso/shiny/48/CR.png new file mode 100644 index 0000000..33de629 Binary files /dev/null and b/flags/flags-iso/shiny/48/CR.png differ diff --git a/flags/flags-iso/shiny/48/CU.png b/flags/flags-iso/shiny/48/CU.png new file mode 100644 index 0000000..4c68fe4 Binary files /dev/null and b/flags/flags-iso/shiny/48/CU.png differ diff --git a/flags/flags-iso/shiny/48/CV.png b/flags/flags-iso/shiny/48/CV.png new file mode 100644 index 0000000..4d6bba9 Binary files /dev/null and b/flags/flags-iso/shiny/48/CV.png differ diff --git a/flags/flags-iso/shiny/48/CX.png b/flags/flags-iso/shiny/48/CX.png new file mode 100644 index 0000000..b04c93c Binary files /dev/null and b/flags/flags-iso/shiny/48/CX.png differ diff --git a/flags/flags-iso/shiny/48/CY.png b/flags/flags-iso/shiny/48/CY.png new file mode 100644 index 0000000..5249cbd Binary files /dev/null and b/flags/flags-iso/shiny/48/CY.png differ diff --git a/flags/flags-iso/shiny/48/CZ.png b/flags/flags-iso/shiny/48/CZ.png new file mode 100644 index 0000000..bd5ab6d Binary files /dev/null and b/flags/flags-iso/shiny/48/CZ.png differ diff --git a/flags/flags-iso/shiny/48/DE.png b/flags/flags-iso/shiny/48/DE.png new file mode 100644 index 0000000..2eae857 Binary files /dev/null and b/flags/flags-iso/shiny/48/DE.png differ diff --git a/flags/flags-iso/shiny/48/DJ.png b/flags/flags-iso/shiny/48/DJ.png new file mode 100644 index 0000000..d277e5c Binary files /dev/null and b/flags/flags-iso/shiny/48/DJ.png differ diff --git a/flags/flags-iso/shiny/48/DK.png b/flags/flags-iso/shiny/48/DK.png new file mode 100644 index 0000000..c9a7728 Binary files /dev/null and b/flags/flags-iso/shiny/48/DK.png differ diff --git a/flags/flags-iso/shiny/48/DM.png b/flags/flags-iso/shiny/48/DM.png new file mode 100644 index 0000000..604a1a0 Binary files /dev/null and b/flags/flags-iso/shiny/48/DM.png differ diff --git a/flags/flags-iso/shiny/48/DO.png b/flags/flags-iso/shiny/48/DO.png new file mode 100644 index 0000000..2dc0628 Binary files /dev/null and b/flags/flags-iso/shiny/48/DO.png differ diff --git a/flags/flags-iso/shiny/48/DZ.png b/flags/flags-iso/shiny/48/DZ.png new file mode 100644 index 0000000..450a319 Binary files /dev/null and b/flags/flags-iso/shiny/48/DZ.png differ diff --git a/flags/flags-iso/shiny/48/EC.png b/flags/flags-iso/shiny/48/EC.png new file mode 100644 index 0000000..41853f1 Binary files /dev/null and b/flags/flags-iso/shiny/48/EC.png differ diff --git a/flags/flags-iso/shiny/48/EE.png b/flags/flags-iso/shiny/48/EE.png new file mode 100644 index 0000000..6a99912 Binary files /dev/null and b/flags/flags-iso/shiny/48/EE.png differ diff --git a/flags/flags-iso/shiny/48/EG.png b/flags/flags-iso/shiny/48/EG.png new file mode 100644 index 0000000..f0c62e6 Binary files /dev/null and b/flags/flags-iso/shiny/48/EG.png differ diff --git a/flags/flags-iso/shiny/48/EH.png b/flags/flags-iso/shiny/48/EH.png new file mode 100644 index 0000000..fa570cd Binary files /dev/null and b/flags/flags-iso/shiny/48/EH.png differ diff --git a/flags/flags-iso/shiny/48/ER.png b/flags/flags-iso/shiny/48/ER.png new file mode 100644 index 0000000..221d983 Binary files /dev/null and b/flags/flags-iso/shiny/48/ER.png differ diff --git a/flags/flags-iso/shiny/48/ES.png b/flags/flags-iso/shiny/48/ES.png new file mode 100644 index 0000000..6572af3 Binary files /dev/null and b/flags/flags-iso/shiny/48/ES.png differ diff --git a/flags/flags-iso/shiny/48/ET.png b/flags/flags-iso/shiny/48/ET.png new file mode 100644 index 0000000..d9beca2 Binary files /dev/null and b/flags/flags-iso/shiny/48/ET.png differ diff --git a/flags/flags-iso/shiny/48/EU.png b/flags/flags-iso/shiny/48/EU.png new file mode 100644 index 0000000..8054f2c Binary files /dev/null and b/flags/flags-iso/shiny/48/EU.png differ diff --git a/flags/flags-iso/shiny/48/FI.png b/flags/flags-iso/shiny/48/FI.png new file mode 100644 index 0000000..3ccbe96 Binary files /dev/null and b/flags/flags-iso/shiny/48/FI.png differ diff --git a/flags/flags-iso/shiny/48/FJ.png b/flags/flags-iso/shiny/48/FJ.png new file mode 100644 index 0000000..9348a75 Binary files /dev/null and b/flags/flags-iso/shiny/48/FJ.png differ diff --git a/flags/flags-iso/shiny/48/FK.png b/flags/flags-iso/shiny/48/FK.png new file mode 100644 index 0000000..69a8d65 Binary files /dev/null and b/flags/flags-iso/shiny/48/FK.png differ diff --git a/flags/flags-iso/shiny/48/FM.png b/flags/flags-iso/shiny/48/FM.png new file mode 100644 index 0000000..fc722ee Binary files /dev/null and b/flags/flags-iso/shiny/48/FM.png differ diff --git a/flags/flags-iso/shiny/48/FO.png b/flags/flags-iso/shiny/48/FO.png new file mode 100644 index 0000000..1338473 Binary files /dev/null and b/flags/flags-iso/shiny/48/FO.png differ diff --git a/flags/flags-iso/shiny/48/FR.png b/flags/flags-iso/shiny/48/FR.png new file mode 100644 index 0000000..6353092 Binary files /dev/null and b/flags/flags-iso/shiny/48/FR.png differ diff --git a/flags/flags-iso/shiny/48/GA.png b/flags/flags-iso/shiny/48/GA.png new file mode 100644 index 0000000..ec2cb29 Binary files /dev/null and b/flags/flags-iso/shiny/48/GA.png differ diff --git a/flags/flags-iso/shiny/48/GB.png b/flags/flags-iso/shiny/48/GB.png new file mode 100644 index 0000000..89d962f Binary files /dev/null and b/flags/flags-iso/shiny/48/GB.png differ diff --git a/flags/flags-iso/shiny/48/GD.png b/flags/flags-iso/shiny/48/GD.png new file mode 100644 index 0000000..ff7c546 Binary files /dev/null and b/flags/flags-iso/shiny/48/GD.png differ diff --git a/flags/flags-iso/shiny/48/GE.png b/flags/flags-iso/shiny/48/GE.png new file mode 100644 index 0000000..6427031 Binary files /dev/null and b/flags/flags-iso/shiny/48/GE.png differ diff --git a/flags/flags-iso/shiny/48/GG.png b/flags/flags-iso/shiny/48/GG.png new file mode 100644 index 0000000..2f26d13 Binary files /dev/null and b/flags/flags-iso/shiny/48/GG.png differ diff --git a/flags/flags-iso/shiny/48/GH.png b/flags/flags-iso/shiny/48/GH.png new file mode 100644 index 0000000..d811bdf Binary files /dev/null and b/flags/flags-iso/shiny/48/GH.png differ diff --git a/flags/flags-iso/shiny/48/GI.png b/flags/flags-iso/shiny/48/GI.png new file mode 100644 index 0000000..fb56d2f Binary files /dev/null and b/flags/flags-iso/shiny/48/GI.png differ diff --git a/flags/flags-iso/shiny/48/GL.png b/flags/flags-iso/shiny/48/GL.png new file mode 100644 index 0000000..fed20b0 Binary files /dev/null and b/flags/flags-iso/shiny/48/GL.png differ diff --git a/flags/flags-iso/shiny/48/GM.png b/flags/flags-iso/shiny/48/GM.png new file mode 100644 index 0000000..d17f405 Binary files /dev/null and b/flags/flags-iso/shiny/48/GM.png differ diff --git a/flags/flags-iso/shiny/48/GN.png b/flags/flags-iso/shiny/48/GN.png new file mode 100644 index 0000000..54e4a2f Binary files /dev/null and b/flags/flags-iso/shiny/48/GN.png differ diff --git a/flags/flags-iso/shiny/48/GQ.png b/flags/flags-iso/shiny/48/GQ.png new file mode 100644 index 0000000..0c2cbc7 Binary files /dev/null and b/flags/flags-iso/shiny/48/GQ.png differ diff --git a/flags/flags-iso/shiny/48/GR.png b/flags/flags-iso/shiny/48/GR.png new file mode 100644 index 0000000..664e983 Binary files /dev/null and b/flags/flags-iso/shiny/48/GR.png differ diff --git a/flags/flags-iso/shiny/48/GS.png b/flags/flags-iso/shiny/48/GS.png new file mode 100644 index 0000000..a05a5b0 Binary files /dev/null and b/flags/flags-iso/shiny/48/GS.png differ diff --git a/flags/flags-iso/shiny/48/GT.png b/flags/flags-iso/shiny/48/GT.png new file mode 100644 index 0000000..4ff1a93 Binary files /dev/null and b/flags/flags-iso/shiny/48/GT.png differ diff --git a/flags/flags-iso/shiny/48/GU.png b/flags/flags-iso/shiny/48/GU.png new file mode 100644 index 0000000..aa71b54 Binary files /dev/null and b/flags/flags-iso/shiny/48/GU.png differ diff --git a/flags/flags-iso/shiny/48/GW.png b/flags/flags-iso/shiny/48/GW.png new file mode 100644 index 0000000..66db3fa Binary files /dev/null and b/flags/flags-iso/shiny/48/GW.png differ diff --git a/flags/flags-iso/shiny/48/GY.png b/flags/flags-iso/shiny/48/GY.png new file mode 100644 index 0000000..f7000ea Binary files /dev/null and b/flags/flags-iso/shiny/48/GY.png differ diff --git a/flags/flags-iso/shiny/48/HK.png b/flags/flags-iso/shiny/48/HK.png new file mode 100644 index 0000000..f619cbc Binary files /dev/null and b/flags/flags-iso/shiny/48/HK.png differ diff --git a/flags/flags-iso/shiny/48/HN.png b/flags/flags-iso/shiny/48/HN.png new file mode 100644 index 0000000..1d6cf2b Binary files /dev/null and b/flags/flags-iso/shiny/48/HN.png differ diff --git a/flags/flags-iso/shiny/48/HR.png b/flags/flags-iso/shiny/48/HR.png new file mode 100644 index 0000000..dc25a0c Binary files /dev/null and b/flags/flags-iso/shiny/48/HR.png differ diff --git a/flags/flags-iso/shiny/48/HT.png b/flags/flags-iso/shiny/48/HT.png new file mode 100644 index 0000000..e15231e Binary files /dev/null and b/flags/flags-iso/shiny/48/HT.png differ diff --git a/flags/flags-iso/shiny/48/HU.png b/flags/flags-iso/shiny/48/HU.png new file mode 100644 index 0000000..81c6da0 Binary files /dev/null and b/flags/flags-iso/shiny/48/HU.png differ diff --git a/flags/flags-iso/shiny/48/ID.png b/flags/flags-iso/shiny/48/ID.png new file mode 100644 index 0000000..4767be4 Binary files /dev/null and b/flags/flags-iso/shiny/48/ID.png differ diff --git a/flags/flags-iso/shiny/48/IE.png b/flags/flags-iso/shiny/48/IE.png new file mode 100644 index 0000000..ca1b5b1 Binary files /dev/null and b/flags/flags-iso/shiny/48/IE.png differ diff --git a/flags/flags-iso/shiny/48/IL.png b/flags/flags-iso/shiny/48/IL.png new file mode 100644 index 0000000..f99a59b Binary files /dev/null and b/flags/flags-iso/shiny/48/IL.png differ diff --git a/flags/flags-iso/shiny/48/IM.png b/flags/flags-iso/shiny/48/IM.png new file mode 100644 index 0000000..7c3a9c2 Binary files /dev/null and b/flags/flags-iso/shiny/48/IM.png differ diff --git a/flags/flags-iso/shiny/48/IN.png b/flags/flags-iso/shiny/48/IN.png new file mode 100644 index 0000000..e99960b Binary files /dev/null and b/flags/flags-iso/shiny/48/IN.png differ diff --git a/flags/flags-iso/shiny/48/IQ.png b/flags/flags-iso/shiny/48/IQ.png new file mode 100644 index 0000000..74681d7 Binary files /dev/null and b/flags/flags-iso/shiny/48/IQ.png differ diff --git a/flags/flags-iso/shiny/48/IR.png b/flags/flags-iso/shiny/48/IR.png new file mode 100644 index 0000000..bb56923 Binary files /dev/null and b/flags/flags-iso/shiny/48/IR.png differ diff --git a/flags/flags-iso/shiny/48/IS.png b/flags/flags-iso/shiny/48/IS.png new file mode 100644 index 0000000..80fcf13 Binary files /dev/null and b/flags/flags-iso/shiny/48/IS.png differ diff --git a/flags/flags-iso/shiny/48/IT.png b/flags/flags-iso/shiny/48/IT.png new file mode 100644 index 0000000..ea0b791 Binary files /dev/null and b/flags/flags-iso/shiny/48/IT.png differ diff --git a/flags/flags-iso/shiny/48/JE.png b/flags/flags-iso/shiny/48/JE.png new file mode 100644 index 0000000..87435b9 Binary files /dev/null and b/flags/flags-iso/shiny/48/JE.png differ diff --git a/flags/flags-iso/shiny/48/JM.png b/flags/flags-iso/shiny/48/JM.png new file mode 100644 index 0000000..b79728e Binary files /dev/null and b/flags/flags-iso/shiny/48/JM.png differ diff --git a/flags/flags-iso/shiny/48/JO.png b/flags/flags-iso/shiny/48/JO.png new file mode 100644 index 0000000..e074264 Binary files /dev/null and b/flags/flags-iso/shiny/48/JO.png differ diff --git a/flags/flags-iso/shiny/48/JP.png b/flags/flags-iso/shiny/48/JP.png new file mode 100644 index 0000000..122963f Binary files /dev/null and b/flags/flags-iso/shiny/48/JP.png differ diff --git a/flags/flags-iso/shiny/48/KE.png b/flags/flags-iso/shiny/48/KE.png new file mode 100644 index 0000000..73d461d Binary files /dev/null and b/flags/flags-iso/shiny/48/KE.png differ diff --git a/flags/flags-iso/shiny/48/KG.png b/flags/flags-iso/shiny/48/KG.png new file mode 100644 index 0000000..e874f10 Binary files /dev/null and b/flags/flags-iso/shiny/48/KG.png differ diff --git a/flags/flags-iso/shiny/48/KH.png b/flags/flags-iso/shiny/48/KH.png new file mode 100644 index 0000000..981807b Binary files /dev/null and b/flags/flags-iso/shiny/48/KH.png differ diff --git a/flags/flags-iso/shiny/48/KI.png b/flags/flags-iso/shiny/48/KI.png new file mode 100644 index 0000000..cfedc8b Binary files /dev/null and b/flags/flags-iso/shiny/48/KI.png differ diff --git a/flags/flags-iso/shiny/48/KM.png b/flags/flags-iso/shiny/48/KM.png new file mode 100644 index 0000000..799ba13 Binary files /dev/null and b/flags/flags-iso/shiny/48/KM.png differ diff --git a/flags/flags-iso/shiny/48/KN.png b/flags/flags-iso/shiny/48/KN.png new file mode 100644 index 0000000..98bccc5 Binary files /dev/null and b/flags/flags-iso/shiny/48/KN.png differ diff --git a/flags/flags-iso/shiny/48/KP.png b/flags/flags-iso/shiny/48/KP.png new file mode 100644 index 0000000..c4be6dc Binary files /dev/null and b/flags/flags-iso/shiny/48/KP.png differ diff --git a/flags/flags-iso/shiny/48/KR.png b/flags/flags-iso/shiny/48/KR.png new file mode 100644 index 0000000..4bbec80 Binary files /dev/null and b/flags/flags-iso/shiny/48/KR.png differ diff --git a/flags/flags-iso/shiny/48/KW.png b/flags/flags-iso/shiny/48/KW.png new file mode 100644 index 0000000..3227643 Binary files /dev/null and b/flags/flags-iso/shiny/48/KW.png differ diff --git a/flags/flags-iso/shiny/48/KY.png b/flags/flags-iso/shiny/48/KY.png new file mode 100644 index 0000000..2c5d8cb Binary files /dev/null and b/flags/flags-iso/shiny/48/KY.png differ diff --git a/flags/flags-iso/shiny/48/KZ.png b/flags/flags-iso/shiny/48/KZ.png new file mode 100644 index 0000000..4f73c21 Binary files /dev/null and b/flags/flags-iso/shiny/48/KZ.png differ diff --git a/flags/flags-iso/shiny/48/LA.png b/flags/flags-iso/shiny/48/LA.png new file mode 100644 index 0000000..9dffe06 Binary files /dev/null and b/flags/flags-iso/shiny/48/LA.png differ diff --git a/flags/flags-iso/shiny/48/LB.png b/flags/flags-iso/shiny/48/LB.png new file mode 100644 index 0000000..88ec96f Binary files /dev/null and b/flags/flags-iso/shiny/48/LB.png differ diff --git a/flags/flags-iso/shiny/48/LC.png b/flags/flags-iso/shiny/48/LC.png new file mode 100644 index 0000000..00bcb17 Binary files /dev/null and b/flags/flags-iso/shiny/48/LC.png differ diff --git a/flags/flags-iso/shiny/48/LI.png b/flags/flags-iso/shiny/48/LI.png new file mode 100644 index 0000000..c38be4f Binary files /dev/null and b/flags/flags-iso/shiny/48/LI.png differ diff --git a/flags/flags-iso/shiny/48/LK.png b/flags/flags-iso/shiny/48/LK.png new file mode 100644 index 0000000..2e872e8 Binary files /dev/null and b/flags/flags-iso/shiny/48/LK.png differ diff --git a/flags/flags-iso/shiny/48/LR.png b/flags/flags-iso/shiny/48/LR.png new file mode 100644 index 0000000..6815a9a Binary files /dev/null and b/flags/flags-iso/shiny/48/LR.png differ diff --git a/flags/flags-iso/shiny/48/LS.png b/flags/flags-iso/shiny/48/LS.png new file mode 100644 index 0000000..655887e Binary files /dev/null and b/flags/flags-iso/shiny/48/LS.png differ diff --git a/flags/flags-iso/shiny/48/LT.png b/flags/flags-iso/shiny/48/LT.png new file mode 100644 index 0000000..0530b69 Binary files /dev/null and b/flags/flags-iso/shiny/48/LT.png differ diff --git a/flags/flags-iso/shiny/48/LU.png b/flags/flags-iso/shiny/48/LU.png new file mode 100644 index 0000000..8fedfc9 Binary files /dev/null and b/flags/flags-iso/shiny/48/LU.png differ diff --git a/flags/flags-iso/shiny/48/LV.png b/flags/flags-iso/shiny/48/LV.png new file mode 100644 index 0000000..5c2adac Binary files /dev/null and b/flags/flags-iso/shiny/48/LV.png differ diff --git a/flags/flags-iso/shiny/48/LY.png b/flags/flags-iso/shiny/48/LY.png new file mode 100644 index 0000000..b3df89e Binary files /dev/null and b/flags/flags-iso/shiny/48/LY.png differ diff --git a/flags/flags-iso/shiny/48/MA.png b/flags/flags-iso/shiny/48/MA.png new file mode 100644 index 0000000..e521425 Binary files /dev/null and b/flags/flags-iso/shiny/48/MA.png differ diff --git a/flags/flags-iso/shiny/48/MC.png b/flags/flags-iso/shiny/48/MC.png new file mode 100644 index 0000000..4767be4 Binary files /dev/null and b/flags/flags-iso/shiny/48/MC.png differ diff --git a/flags/flags-iso/shiny/48/MD.png b/flags/flags-iso/shiny/48/MD.png new file mode 100644 index 0000000..74722d6 Binary files /dev/null and b/flags/flags-iso/shiny/48/MD.png differ diff --git a/flags/flags-iso/shiny/48/ME.png b/flags/flags-iso/shiny/48/ME.png new file mode 100644 index 0000000..c8d2f4a Binary files /dev/null and b/flags/flags-iso/shiny/48/ME.png differ diff --git a/flags/flags-iso/shiny/48/MG.png b/flags/flags-iso/shiny/48/MG.png new file mode 100644 index 0000000..6775ae8 Binary files /dev/null and b/flags/flags-iso/shiny/48/MG.png differ diff --git a/flags/flags-iso/shiny/48/MH.png b/flags/flags-iso/shiny/48/MH.png new file mode 100644 index 0000000..1b73c66 Binary files /dev/null and b/flags/flags-iso/shiny/48/MH.png differ diff --git a/flags/flags-iso/shiny/48/MK.png b/flags/flags-iso/shiny/48/MK.png new file mode 100644 index 0000000..602ea1f Binary files /dev/null and b/flags/flags-iso/shiny/48/MK.png differ diff --git a/flags/flags-iso/shiny/48/ML.png b/flags/flags-iso/shiny/48/ML.png new file mode 100644 index 0000000..23d7832 Binary files /dev/null and b/flags/flags-iso/shiny/48/ML.png differ diff --git a/flags/flags-iso/shiny/48/MM.png b/flags/flags-iso/shiny/48/MM.png new file mode 100644 index 0000000..0c63c6a Binary files /dev/null and b/flags/flags-iso/shiny/48/MM.png differ diff --git a/flags/flags-iso/shiny/48/MN.png b/flags/flags-iso/shiny/48/MN.png new file mode 100644 index 0000000..9faf78e Binary files /dev/null and b/flags/flags-iso/shiny/48/MN.png differ diff --git a/flags/flags-iso/shiny/48/MO.png b/flags/flags-iso/shiny/48/MO.png new file mode 100644 index 0000000..b5a1e60 Binary files /dev/null and b/flags/flags-iso/shiny/48/MO.png differ diff --git a/flags/flags-iso/shiny/48/MP.png b/flags/flags-iso/shiny/48/MP.png new file mode 100644 index 0000000..be0c31a Binary files /dev/null and b/flags/flags-iso/shiny/48/MP.png differ diff --git a/flags/flags-iso/shiny/48/MR.png b/flags/flags-iso/shiny/48/MR.png new file mode 100644 index 0000000..173c6b4 Binary files /dev/null and b/flags/flags-iso/shiny/48/MR.png differ diff --git a/flags/flags-iso/shiny/48/MS.png b/flags/flags-iso/shiny/48/MS.png new file mode 100644 index 0000000..b1f237c Binary files /dev/null and b/flags/flags-iso/shiny/48/MS.png differ diff --git a/flags/flags-iso/shiny/48/MT.png b/flags/flags-iso/shiny/48/MT.png new file mode 100644 index 0000000..4c9f251 Binary files /dev/null and b/flags/flags-iso/shiny/48/MT.png differ diff --git a/flags/flags-iso/shiny/48/MU.png b/flags/flags-iso/shiny/48/MU.png new file mode 100644 index 0000000..dd96a83 Binary files /dev/null and b/flags/flags-iso/shiny/48/MU.png differ diff --git a/flags/flags-iso/shiny/48/MV.png b/flags/flags-iso/shiny/48/MV.png new file mode 100644 index 0000000..f979b6f Binary files /dev/null and b/flags/flags-iso/shiny/48/MV.png differ diff --git a/flags/flags-iso/shiny/48/MW.png b/flags/flags-iso/shiny/48/MW.png new file mode 100644 index 0000000..608ec76 Binary files /dev/null and b/flags/flags-iso/shiny/48/MW.png differ diff --git a/flags/flags-iso/shiny/48/MX.png b/flags/flags-iso/shiny/48/MX.png new file mode 100644 index 0000000..99a3049 Binary files /dev/null and b/flags/flags-iso/shiny/48/MX.png differ diff --git a/flags/flags-iso/shiny/48/MY.png b/flags/flags-iso/shiny/48/MY.png new file mode 100644 index 0000000..02d6a98 Binary files /dev/null and b/flags/flags-iso/shiny/48/MY.png differ diff --git a/flags/flags-iso/shiny/48/MZ.png b/flags/flags-iso/shiny/48/MZ.png new file mode 100644 index 0000000..d986f18 Binary files /dev/null and b/flags/flags-iso/shiny/48/MZ.png differ diff --git a/flags/flags-iso/shiny/48/NA.png b/flags/flags-iso/shiny/48/NA.png new file mode 100644 index 0000000..99972e1 Binary files /dev/null and b/flags/flags-iso/shiny/48/NA.png differ diff --git a/flags/flags-iso/shiny/48/NC.png b/flags/flags-iso/shiny/48/NC.png new file mode 100644 index 0000000..11ad1f5 Binary files /dev/null and b/flags/flags-iso/shiny/48/NC.png differ diff --git a/flags/flags-iso/shiny/48/NE.png b/flags/flags-iso/shiny/48/NE.png new file mode 100644 index 0000000..865cd36 Binary files /dev/null and b/flags/flags-iso/shiny/48/NE.png differ diff --git a/flags/flags-iso/shiny/48/NF.png b/flags/flags-iso/shiny/48/NF.png new file mode 100644 index 0000000..8601f82 Binary files /dev/null and b/flags/flags-iso/shiny/48/NF.png differ diff --git a/flags/flags-iso/shiny/48/NG.png b/flags/flags-iso/shiny/48/NG.png new file mode 100644 index 0000000..2402795 Binary files /dev/null and b/flags/flags-iso/shiny/48/NG.png differ diff --git a/flags/flags-iso/shiny/48/NI.png b/flags/flags-iso/shiny/48/NI.png new file mode 100644 index 0000000..92c65a2 Binary files /dev/null and b/flags/flags-iso/shiny/48/NI.png differ diff --git a/flags/flags-iso/shiny/48/NL.png b/flags/flags-iso/shiny/48/NL.png new file mode 100644 index 0000000..f16a129 Binary files /dev/null and b/flags/flags-iso/shiny/48/NL.png differ diff --git a/flags/flags-iso/shiny/48/NO.png b/flags/flags-iso/shiny/48/NO.png new file mode 100644 index 0000000..ac2a305 Binary files /dev/null and b/flags/flags-iso/shiny/48/NO.png differ diff --git a/flags/flags-iso/shiny/48/NP.png b/flags/flags-iso/shiny/48/NP.png new file mode 100644 index 0000000..5130807 Binary files /dev/null and b/flags/flags-iso/shiny/48/NP.png differ diff --git a/flags/flags-iso/shiny/48/NR.png b/flags/flags-iso/shiny/48/NR.png new file mode 100644 index 0000000..6614c81 Binary files /dev/null and b/flags/flags-iso/shiny/48/NR.png differ diff --git a/flags/flags-iso/shiny/48/NU.png b/flags/flags-iso/shiny/48/NU.png new file mode 100644 index 0000000..961bdfd Binary files /dev/null and b/flags/flags-iso/shiny/48/NU.png differ diff --git a/flags/flags-iso/shiny/48/NZ.png b/flags/flags-iso/shiny/48/NZ.png new file mode 100644 index 0000000..a75297e Binary files /dev/null and b/flags/flags-iso/shiny/48/NZ.png differ diff --git a/flags/flags-iso/shiny/48/OM.png b/flags/flags-iso/shiny/48/OM.png new file mode 100644 index 0000000..58ded8f Binary files /dev/null and b/flags/flags-iso/shiny/48/OM.png differ diff --git a/flags/flags-iso/shiny/48/PA.png b/flags/flags-iso/shiny/48/PA.png new file mode 100644 index 0000000..9c03d02 Binary files /dev/null and b/flags/flags-iso/shiny/48/PA.png differ diff --git a/flags/flags-iso/shiny/48/PE.png b/flags/flags-iso/shiny/48/PE.png new file mode 100644 index 0000000..d6e6653 Binary files /dev/null and b/flags/flags-iso/shiny/48/PE.png differ diff --git a/flags/flags-iso/shiny/48/PF.png b/flags/flags-iso/shiny/48/PF.png new file mode 100644 index 0000000..c3d38b5 Binary files /dev/null and b/flags/flags-iso/shiny/48/PF.png differ diff --git a/flags/flags-iso/shiny/48/PG.png b/flags/flags-iso/shiny/48/PG.png new file mode 100644 index 0000000..118ee64 Binary files /dev/null and b/flags/flags-iso/shiny/48/PG.png differ diff --git a/flags/flags-iso/shiny/48/PH.png b/flags/flags-iso/shiny/48/PH.png new file mode 100644 index 0000000..aa487a2 Binary files /dev/null and b/flags/flags-iso/shiny/48/PH.png differ diff --git a/flags/flags-iso/shiny/48/PK.png b/flags/flags-iso/shiny/48/PK.png new file mode 100644 index 0000000..e6ad89c Binary files /dev/null and b/flags/flags-iso/shiny/48/PK.png differ diff --git a/flags/flags-iso/shiny/48/PL.png b/flags/flags-iso/shiny/48/PL.png new file mode 100644 index 0000000..b4e207c Binary files /dev/null and b/flags/flags-iso/shiny/48/PL.png differ diff --git a/flags/flags-iso/shiny/48/PN.png b/flags/flags-iso/shiny/48/PN.png new file mode 100644 index 0000000..01612b1 Binary files /dev/null and b/flags/flags-iso/shiny/48/PN.png differ diff --git a/flags/flags-iso/shiny/48/PR.png b/flags/flags-iso/shiny/48/PR.png new file mode 100644 index 0000000..6ba9c02 Binary files /dev/null and b/flags/flags-iso/shiny/48/PR.png differ diff --git a/flags/flags-iso/shiny/48/PS.png b/flags/flags-iso/shiny/48/PS.png new file mode 100644 index 0000000..2e6dde8 Binary files /dev/null and b/flags/flags-iso/shiny/48/PS.png differ diff --git a/flags/flags-iso/shiny/48/PT.png b/flags/flags-iso/shiny/48/PT.png new file mode 100644 index 0000000..d0b2bba Binary files /dev/null and b/flags/flags-iso/shiny/48/PT.png differ diff --git a/flags/flags-iso/shiny/48/PW.png b/flags/flags-iso/shiny/48/PW.png new file mode 100644 index 0000000..f738c1f Binary files /dev/null and b/flags/flags-iso/shiny/48/PW.png differ diff --git a/flags/flags-iso/shiny/48/PY.png b/flags/flags-iso/shiny/48/PY.png new file mode 100644 index 0000000..ffeca8a Binary files /dev/null and b/flags/flags-iso/shiny/48/PY.png differ diff --git a/flags/flags-iso/shiny/48/QA.png b/flags/flags-iso/shiny/48/QA.png new file mode 100644 index 0000000..a8dbc3f Binary files /dev/null and b/flags/flags-iso/shiny/48/QA.png differ diff --git a/flags/flags-iso/shiny/48/RO.png b/flags/flags-iso/shiny/48/RO.png new file mode 100644 index 0000000..7a9d278 Binary files /dev/null and b/flags/flags-iso/shiny/48/RO.png differ diff --git a/flags/flags-iso/shiny/48/RS.png b/flags/flags-iso/shiny/48/RS.png new file mode 100644 index 0000000..6883df9 Binary files /dev/null and b/flags/flags-iso/shiny/48/RS.png differ diff --git a/flags/flags-iso/shiny/48/RU.png b/flags/flags-iso/shiny/48/RU.png new file mode 100644 index 0000000..f7be413 Binary files /dev/null and b/flags/flags-iso/shiny/48/RU.png differ diff --git a/flags/flags-iso/shiny/48/RW.png b/flags/flags-iso/shiny/48/RW.png new file mode 100644 index 0000000..8b19824 Binary files /dev/null and b/flags/flags-iso/shiny/48/RW.png differ diff --git a/flags/flags-iso/shiny/48/SA.png b/flags/flags-iso/shiny/48/SA.png new file mode 100644 index 0000000..7573e20 Binary files /dev/null and b/flags/flags-iso/shiny/48/SA.png differ diff --git a/flags/flags-iso/shiny/48/SB.png b/flags/flags-iso/shiny/48/SB.png new file mode 100644 index 0000000..792113a Binary files /dev/null and b/flags/flags-iso/shiny/48/SB.png differ diff --git a/flags/flags-iso/shiny/48/SC.png b/flags/flags-iso/shiny/48/SC.png new file mode 100644 index 0000000..3265ba2 Binary files /dev/null and b/flags/flags-iso/shiny/48/SC.png differ diff --git a/flags/flags-iso/shiny/48/SD.png b/flags/flags-iso/shiny/48/SD.png new file mode 100644 index 0000000..4f60ce6 Binary files /dev/null and b/flags/flags-iso/shiny/48/SD.png differ diff --git a/flags/flags-iso/shiny/48/SE.png b/flags/flags-iso/shiny/48/SE.png new file mode 100644 index 0000000..d6cf067 Binary files /dev/null and b/flags/flags-iso/shiny/48/SE.png differ diff --git a/flags/flags-iso/shiny/48/SG.png b/flags/flags-iso/shiny/48/SG.png new file mode 100644 index 0000000..cb5fa3e Binary files /dev/null and b/flags/flags-iso/shiny/48/SG.png differ diff --git a/flags/flags-iso/shiny/48/SH.png b/flags/flags-iso/shiny/48/SH.png new file mode 100644 index 0000000..931e9a0 Binary files /dev/null and b/flags/flags-iso/shiny/48/SH.png differ diff --git a/flags/flags-iso/shiny/48/SI.png b/flags/flags-iso/shiny/48/SI.png new file mode 100644 index 0000000..7c112bb Binary files /dev/null and b/flags/flags-iso/shiny/48/SI.png differ diff --git a/flags/flags-iso/shiny/48/SK.png b/flags/flags-iso/shiny/48/SK.png new file mode 100644 index 0000000..7647af3 Binary files /dev/null and b/flags/flags-iso/shiny/48/SK.png differ diff --git a/flags/flags-iso/shiny/48/SL.png b/flags/flags-iso/shiny/48/SL.png new file mode 100644 index 0000000..14db5ba Binary files /dev/null and b/flags/flags-iso/shiny/48/SL.png differ diff --git a/flags/flags-iso/shiny/48/SM.png b/flags/flags-iso/shiny/48/SM.png new file mode 100644 index 0000000..93a47e6 Binary files /dev/null and b/flags/flags-iso/shiny/48/SM.png differ diff --git a/flags/flags-iso/shiny/48/SN.png b/flags/flags-iso/shiny/48/SN.png new file mode 100644 index 0000000..14f3981 Binary files /dev/null and b/flags/flags-iso/shiny/48/SN.png differ diff --git a/flags/flags-iso/shiny/48/SO.png b/flags/flags-iso/shiny/48/SO.png new file mode 100644 index 0000000..e8b37f5 Binary files /dev/null and b/flags/flags-iso/shiny/48/SO.png differ diff --git a/flags/flags-iso/shiny/48/SR.png b/flags/flags-iso/shiny/48/SR.png new file mode 100644 index 0000000..904f6a4 Binary files /dev/null and b/flags/flags-iso/shiny/48/SR.png differ diff --git a/flags/flags-iso/shiny/48/SS.png b/flags/flags-iso/shiny/48/SS.png new file mode 100644 index 0000000..40f977f Binary files /dev/null and b/flags/flags-iso/shiny/48/SS.png differ diff --git a/flags/flags-iso/shiny/48/ST.png b/flags/flags-iso/shiny/48/ST.png new file mode 100644 index 0000000..9168c88 Binary files /dev/null and b/flags/flags-iso/shiny/48/ST.png differ diff --git a/flags/flags-iso/shiny/48/SV.png b/flags/flags-iso/shiny/48/SV.png new file mode 100644 index 0000000..7db0b43 Binary files /dev/null and b/flags/flags-iso/shiny/48/SV.png differ diff --git a/flags/flags-iso/shiny/48/SY.png b/flags/flags-iso/shiny/48/SY.png new file mode 100644 index 0000000..83a8ed8 Binary files /dev/null and b/flags/flags-iso/shiny/48/SY.png differ diff --git a/flags/flags-iso/shiny/48/SZ.png b/flags/flags-iso/shiny/48/SZ.png new file mode 100644 index 0000000..7e84259 Binary files /dev/null and b/flags/flags-iso/shiny/48/SZ.png differ diff --git a/flags/flags-iso/shiny/48/TC.png b/flags/flags-iso/shiny/48/TC.png new file mode 100644 index 0000000..8b43792 Binary files /dev/null and b/flags/flags-iso/shiny/48/TC.png differ diff --git a/flags/flags-iso/shiny/48/TD.png b/flags/flags-iso/shiny/48/TD.png new file mode 100644 index 0000000..eb2f0e3 Binary files /dev/null and b/flags/flags-iso/shiny/48/TD.png differ diff --git a/flags/flags-iso/shiny/48/TF.png b/flags/flags-iso/shiny/48/TF.png new file mode 100644 index 0000000..e017048 Binary files /dev/null and b/flags/flags-iso/shiny/48/TF.png differ diff --git a/flags/flags-iso/shiny/48/TG.png b/flags/flags-iso/shiny/48/TG.png new file mode 100644 index 0000000..0da702d Binary files /dev/null and b/flags/flags-iso/shiny/48/TG.png differ diff --git a/flags/flags-iso/shiny/48/TH.png b/flags/flags-iso/shiny/48/TH.png new file mode 100644 index 0000000..36d6499 Binary files /dev/null and b/flags/flags-iso/shiny/48/TH.png differ diff --git a/flags/flags-iso/shiny/48/TJ.png b/flags/flags-iso/shiny/48/TJ.png new file mode 100644 index 0000000..f2e7dbd Binary files /dev/null and b/flags/flags-iso/shiny/48/TJ.png differ diff --git a/flags/flags-iso/shiny/48/TK.png b/flags/flags-iso/shiny/48/TK.png new file mode 100644 index 0000000..5084cc0 Binary files /dev/null and b/flags/flags-iso/shiny/48/TK.png differ diff --git a/flags/flags-iso/shiny/48/TL.png b/flags/flags-iso/shiny/48/TL.png new file mode 100644 index 0000000..deb1123 Binary files /dev/null and b/flags/flags-iso/shiny/48/TL.png differ diff --git a/flags/flags-iso/shiny/48/TM.png b/flags/flags-iso/shiny/48/TM.png new file mode 100644 index 0000000..75d52f5 Binary files /dev/null and b/flags/flags-iso/shiny/48/TM.png differ diff --git a/flags/flags-iso/shiny/48/TN.png b/flags/flags-iso/shiny/48/TN.png new file mode 100644 index 0000000..6ef0d79 Binary files /dev/null and b/flags/flags-iso/shiny/48/TN.png differ diff --git a/flags/flags-iso/shiny/48/TO.png b/flags/flags-iso/shiny/48/TO.png new file mode 100644 index 0000000..7bc6f61 Binary files /dev/null and b/flags/flags-iso/shiny/48/TO.png differ diff --git a/flags/flags-iso/shiny/48/TR.png b/flags/flags-iso/shiny/48/TR.png new file mode 100644 index 0000000..8e291ad Binary files /dev/null and b/flags/flags-iso/shiny/48/TR.png differ diff --git a/flags/flags-iso/shiny/48/TT.png b/flags/flags-iso/shiny/48/TT.png new file mode 100644 index 0000000..d661d82 Binary files /dev/null and b/flags/flags-iso/shiny/48/TT.png differ diff --git a/flags/flags-iso/shiny/48/TV.png b/flags/flags-iso/shiny/48/TV.png new file mode 100644 index 0000000..a1382dd Binary files /dev/null and b/flags/flags-iso/shiny/48/TV.png differ diff --git a/flags/flags-iso/shiny/48/TW.png b/flags/flags-iso/shiny/48/TW.png new file mode 100644 index 0000000..b3cfa6e Binary files /dev/null and b/flags/flags-iso/shiny/48/TW.png differ diff --git a/flags/flags-iso/shiny/48/TZ.png b/flags/flags-iso/shiny/48/TZ.png new file mode 100644 index 0000000..43dc56b Binary files /dev/null and b/flags/flags-iso/shiny/48/TZ.png differ diff --git a/flags/flags-iso/shiny/48/UA.png b/flags/flags-iso/shiny/48/UA.png new file mode 100644 index 0000000..9466e81 Binary files /dev/null and b/flags/flags-iso/shiny/48/UA.png differ diff --git a/flags/flags-iso/shiny/48/UG.png b/flags/flags-iso/shiny/48/UG.png new file mode 100644 index 0000000..cf23f26 Binary files /dev/null and b/flags/flags-iso/shiny/48/UG.png differ diff --git a/flags/flags-iso/shiny/48/US.png b/flags/flags-iso/shiny/48/US.png new file mode 100644 index 0000000..154ce18 Binary files /dev/null and b/flags/flags-iso/shiny/48/US.png differ diff --git a/flags/flags-iso/shiny/48/UY.png b/flags/flags-iso/shiny/48/UY.png new file mode 100644 index 0000000..6f864f4 Binary files /dev/null and b/flags/flags-iso/shiny/48/UY.png differ diff --git a/flags/flags-iso/shiny/48/UZ.png b/flags/flags-iso/shiny/48/UZ.png new file mode 100644 index 0000000..9411956 Binary files /dev/null and b/flags/flags-iso/shiny/48/UZ.png differ diff --git a/flags/flags-iso/shiny/48/VA.png b/flags/flags-iso/shiny/48/VA.png new file mode 100644 index 0000000..0aed467 Binary files /dev/null and b/flags/flags-iso/shiny/48/VA.png differ diff --git a/flags/flags-iso/shiny/48/VC.png b/flags/flags-iso/shiny/48/VC.png new file mode 100644 index 0000000..03fd69f Binary files /dev/null and b/flags/flags-iso/shiny/48/VC.png differ diff --git a/flags/flags-iso/shiny/48/VE.png b/flags/flags-iso/shiny/48/VE.png new file mode 100644 index 0000000..d6627db Binary files /dev/null and b/flags/flags-iso/shiny/48/VE.png differ diff --git a/flags/flags-iso/shiny/48/VG.png b/flags/flags-iso/shiny/48/VG.png new file mode 100644 index 0000000..c688b5c Binary files /dev/null and b/flags/flags-iso/shiny/48/VG.png differ diff --git a/flags/flags-iso/shiny/48/VI.png b/flags/flags-iso/shiny/48/VI.png new file mode 100644 index 0000000..6e5d2ee Binary files /dev/null and b/flags/flags-iso/shiny/48/VI.png differ diff --git a/flags/flags-iso/shiny/48/VN.png b/flags/flags-iso/shiny/48/VN.png new file mode 100644 index 0000000..8386793 Binary files /dev/null and b/flags/flags-iso/shiny/48/VN.png differ diff --git a/flags/flags-iso/shiny/48/VU.png b/flags/flags-iso/shiny/48/VU.png new file mode 100644 index 0000000..c436652 Binary files /dev/null and b/flags/flags-iso/shiny/48/VU.png differ diff --git a/flags/flags-iso/shiny/48/WS.png b/flags/flags-iso/shiny/48/WS.png new file mode 100644 index 0000000..bd75592 Binary files /dev/null and b/flags/flags-iso/shiny/48/WS.png differ diff --git a/flags/flags-iso/shiny/48/YE.png b/flags/flags-iso/shiny/48/YE.png new file mode 100644 index 0000000..c305294 Binary files /dev/null and b/flags/flags-iso/shiny/48/YE.png differ diff --git a/flags/flags-iso/shiny/48/YT.png b/flags/flags-iso/shiny/48/YT.png new file mode 100644 index 0000000..9e9d210 Binary files /dev/null and b/flags/flags-iso/shiny/48/YT.png differ diff --git a/flags/flags-iso/shiny/48/ZA.png b/flags/flags-iso/shiny/48/ZA.png new file mode 100644 index 0000000..1faf24a Binary files /dev/null and b/flags/flags-iso/shiny/48/ZA.png differ diff --git a/flags/flags-iso/shiny/48/ZM.png b/flags/flags-iso/shiny/48/ZM.png new file mode 100644 index 0000000..110e222 Binary files /dev/null and b/flags/flags-iso/shiny/48/ZM.png differ diff --git a/flags/flags-iso/shiny/48/ZW.png b/flags/flags-iso/shiny/48/ZW.png new file mode 100644 index 0000000..e115935 Binary files /dev/null and b/flags/flags-iso/shiny/48/ZW.png differ diff --git a/flags/flags-iso/shiny/48/_abkhazia.png b/flags/flags-iso/shiny/48/_abkhazia.png new file mode 100644 index 0000000..45344ef Binary files /dev/null and b/flags/flags-iso/shiny/48/_abkhazia.png differ diff --git a/flags/flags-iso/shiny/48/_british-antarctic-territory.png b/flags/flags-iso/shiny/48/_british-antarctic-territory.png new file mode 100644 index 0000000..1aa2a87 Binary files /dev/null and b/flags/flags-iso/shiny/48/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/shiny/48/_commonwealth.png b/flags/flags-iso/shiny/48/_commonwealth.png new file mode 100644 index 0000000..99bf898 Binary files /dev/null and b/flags/flags-iso/shiny/48/_commonwealth.png differ diff --git a/flags/flags-iso/shiny/48/_england.png b/flags/flags-iso/shiny/48/_england.png new file mode 100644 index 0000000..45764bc Binary files /dev/null and b/flags/flags-iso/shiny/48/_england.png differ diff --git a/flags/flags-iso/shiny/48/_gosquared.png b/flags/flags-iso/shiny/48/_gosquared.png new file mode 100644 index 0000000..889aef7 Binary files /dev/null and b/flags/flags-iso/shiny/48/_gosquared.png differ diff --git a/flags/flags-iso/shiny/48/_kosovo.png b/flags/flags-iso/shiny/48/_kosovo.png new file mode 100644 index 0000000..48997ee Binary files /dev/null and b/flags/flags-iso/shiny/48/_kosovo.png differ diff --git a/flags/flags-iso/shiny/48/_mars.png b/flags/flags-iso/shiny/48/_mars.png new file mode 100644 index 0000000..602a538 Binary files /dev/null and b/flags/flags-iso/shiny/48/_mars.png differ diff --git a/flags/flags-iso/shiny/48/_nagorno-karabakh.png b/flags/flags-iso/shiny/48/_nagorno-karabakh.png new file mode 100644 index 0000000..791cb9b Binary files /dev/null and b/flags/flags-iso/shiny/48/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/shiny/48/_nato.png b/flags/flags-iso/shiny/48/_nato.png new file mode 100644 index 0000000..d24fdcc Binary files /dev/null and b/flags/flags-iso/shiny/48/_nato.png differ diff --git a/flags/flags-iso/shiny/48/_northern-cyprus.png b/flags/flags-iso/shiny/48/_northern-cyprus.png new file mode 100644 index 0000000..d9c4848 Binary files /dev/null and b/flags/flags-iso/shiny/48/_northern-cyprus.png differ diff --git a/flags/flags-iso/shiny/48/_olympics.png b/flags/flags-iso/shiny/48/_olympics.png new file mode 100644 index 0000000..31e1f87 Binary files /dev/null and b/flags/flags-iso/shiny/48/_olympics.png differ diff --git a/flags/flags-iso/shiny/48/_red-cross.png b/flags/flags-iso/shiny/48/_red-cross.png new file mode 100644 index 0000000..031aaf1 Binary files /dev/null and b/flags/flags-iso/shiny/48/_red-cross.png differ diff --git a/flags/flags-iso/shiny/48/_scotland.png b/flags/flags-iso/shiny/48/_scotland.png new file mode 100644 index 0000000..b9d867e Binary files /dev/null and b/flags/flags-iso/shiny/48/_scotland.png differ diff --git a/flags/flags-iso/shiny/48/_somaliland.png b/flags/flags-iso/shiny/48/_somaliland.png new file mode 100644 index 0000000..1968add Binary files /dev/null and b/flags/flags-iso/shiny/48/_somaliland.png differ diff --git a/flags/flags-iso/shiny/48/_south-ossetia.png b/flags/flags-iso/shiny/48/_south-ossetia.png new file mode 100644 index 0000000..8e4ee0a Binary files /dev/null and b/flags/flags-iso/shiny/48/_south-ossetia.png differ diff --git a/flags/flags-iso/shiny/48/_united-nations.png b/flags/flags-iso/shiny/48/_united-nations.png new file mode 100644 index 0000000..fe6d472 Binary files /dev/null and b/flags/flags-iso/shiny/48/_united-nations.png differ diff --git a/flags/flags-iso/shiny/48/_wales.png b/flags/flags-iso/shiny/48/_wales.png new file mode 100644 index 0000000..1db325f Binary files /dev/null and b/flags/flags-iso/shiny/48/_wales.png differ diff --git a/flags/flags-iso/shiny/64/.png b/flags/flags-iso/shiny/64/.png new file mode 100644 index 0000000..e5806b9 Binary files /dev/null and b/flags/flags-iso/shiny/64/.png differ diff --git a/flags/flags-iso/shiny/64/AD.png b/flags/flags-iso/shiny/64/AD.png new file mode 100644 index 0000000..f7f544d Binary files /dev/null and b/flags/flags-iso/shiny/64/AD.png differ diff --git a/flags/flags-iso/shiny/64/AE.png b/flags/flags-iso/shiny/64/AE.png new file mode 100644 index 0000000..1a7bc79 Binary files /dev/null and b/flags/flags-iso/shiny/64/AE.png differ diff --git a/flags/flags-iso/shiny/64/AF.png b/flags/flags-iso/shiny/64/AF.png new file mode 100644 index 0000000..c454d02 Binary files /dev/null and b/flags/flags-iso/shiny/64/AF.png differ diff --git a/flags/flags-iso/shiny/64/AG.png b/flags/flags-iso/shiny/64/AG.png new file mode 100644 index 0000000..7204156 Binary files /dev/null and b/flags/flags-iso/shiny/64/AG.png differ diff --git a/flags/flags-iso/shiny/64/AI.png b/flags/flags-iso/shiny/64/AI.png new file mode 100644 index 0000000..1b8306f Binary files /dev/null and b/flags/flags-iso/shiny/64/AI.png differ diff --git a/flags/flags-iso/shiny/64/AL.png b/flags/flags-iso/shiny/64/AL.png new file mode 100644 index 0000000..c9718da Binary files /dev/null and b/flags/flags-iso/shiny/64/AL.png differ diff --git a/flags/flags-iso/shiny/64/AM.png b/flags/flags-iso/shiny/64/AM.png new file mode 100644 index 0000000..c4474a4 Binary files /dev/null and b/flags/flags-iso/shiny/64/AM.png differ diff --git a/flags/flags-iso/shiny/64/AN.png b/flags/flags-iso/shiny/64/AN.png new file mode 100644 index 0000000..8ca75ce Binary files /dev/null and b/flags/flags-iso/shiny/64/AN.png differ diff --git a/flags/flags-iso/shiny/64/AO.png b/flags/flags-iso/shiny/64/AO.png new file mode 100644 index 0000000..ecd1112 Binary files /dev/null and b/flags/flags-iso/shiny/64/AO.png differ diff --git a/flags/flags-iso/shiny/64/AQ.png b/flags/flags-iso/shiny/64/AQ.png new file mode 100644 index 0000000..7bb02f8 Binary files /dev/null and b/flags/flags-iso/shiny/64/AQ.png differ diff --git a/flags/flags-iso/shiny/64/AR.png b/flags/flags-iso/shiny/64/AR.png new file mode 100644 index 0000000..d6b5189 Binary files /dev/null and b/flags/flags-iso/shiny/64/AR.png differ diff --git a/flags/flags-iso/shiny/64/AS.png b/flags/flags-iso/shiny/64/AS.png new file mode 100644 index 0000000..9fa4ce8 Binary files /dev/null and b/flags/flags-iso/shiny/64/AS.png differ diff --git a/flags/flags-iso/shiny/64/AT.png b/flags/flags-iso/shiny/64/AT.png new file mode 100644 index 0000000..ddabd31 Binary files /dev/null and b/flags/flags-iso/shiny/64/AT.png differ diff --git a/flags/flags-iso/shiny/64/AU.png b/flags/flags-iso/shiny/64/AU.png new file mode 100644 index 0000000..50fb678 Binary files /dev/null and b/flags/flags-iso/shiny/64/AU.png differ diff --git a/flags/flags-iso/shiny/64/AW.png b/flags/flags-iso/shiny/64/AW.png new file mode 100644 index 0000000..7289894 Binary files /dev/null and b/flags/flags-iso/shiny/64/AW.png differ diff --git a/flags/flags-iso/shiny/64/AX.png b/flags/flags-iso/shiny/64/AX.png new file mode 100644 index 0000000..2824c2e Binary files /dev/null and b/flags/flags-iso/shiny/64/AX.png differ diff --git a/flags/flags-iso/shiny/64/AZ.png b/flags/flags-iso/shiny/64/AZ.png new file mode 100644 index 0000000..cf4fd8e Binary files /dev/null and b/flags/flags-iso/shiny/64/AZ.png differ diff --git a/flags/flags-iso/shiny/64/BA.png b/flags/flags-iso/shiny/64/BA.png new file mode 100644 index 0000000..104d45a Binary files /dev/null and b/flags/flags-iso/shiny/64/BA.png differ diff --git a/flags/flags-iso/shiny/64/BB.png b/flags/flags-iso/shiny/64/BB.png new file mode 100644 index 0000000..fac3025 Binary files /dev/null and b/flags/flags-iso/shiny/64/BB.png differ diff --git a/flags/flags-iso/shiny/64/BD.png b/flags/flags-iso/shiny/64/BD.png new file mode 100644 index 0000000..d9b4611 Binary files /dev/null and b/flags/flags-iso/shiny/64/BD.png differ diff --git a/flags/flags-iso/shiny/64/BE.png b/flags/flags-iso/shiny/64/BE.png new file mode 100644 index 0000000..e36ff7f Binary files /dev/null and b/flags/flags-iso/shiny/64/BE.png differ diff --git a/flags/flags-iso/shiny/64/BF.png b/flags/flags-iso/shiny/64/BF.png new file mode 100644 index 0000000..ed53cbe Binary files /dev/null and b/flags/flags-iso/shiny/64/BF.png differ diff --git a/flags/flags-iso/shiny/64/BG.png b/flags/flags-iso/shiny/64/BG.png new file mode 100644 index 0000000..9d05465 Binary files /dev/null and b/flags/flags-iso/shiny/64/BG.png differ diff --git a/flags/flags-iso/shiny/64/BH.png b/flags/flags-iso/shiny/64/BH.png new file mode 100644 index 0000000..7e3d75d Binary files /dev/null and b/flags/flags-iso/shiny/64/BH.png differ diff --git a/flags/flags-iso/shiny/64/BI.png b/flags/flags-iso/shiny/64/BI.png new file mode 100644 index 0000000..1dd48d9 Binary files /dev/null and b/flags/flags-iso/shiny/64/BI.png differ diff --git a/flags/flags-iso/shiny/64/BJ.png b/flags/flags-iso/shiny/64/BJ.png new file mode 100644 index 0000000..18a0475 Binary files /dev/null and b/flags/flags-iso/shiny/64/BJ.png differ diff --git a/flags/flags-iso/shiny/64/BL.png b/flags/flags-iso/shiny/64/BL.png new file mode 100644 index 0000000..dbe3337 Binary files /dev/null and b/flags/flags-iso/shiny/64/BL.png differ diff --git a/flags/flags-iso/shiny/64/BM.png b/flags/flags-iso/shiny/64/BM.png new file mode 100644 index 0000000..e2fa88f Binary files /dev/null and b/flags/flags-iso/shiny/64/BM.png differ diff --git a/flags/flags-iso/shiny/64/BN.png b/flags/flags-iso/shiny/64/BN.png new file mode 100644 index 0000000..04e7fd7 Binary files /dev/null and b/flags/flags-iso/shiny/64/BN.png differ diff --git a/flags/flags-iso/shiny/64/BO.png b/flags/flags-iso/shiny/64/BO.png new file mode 100644 index 0000000..83a9efb Binary files /dev/null and b/flags/flags-iso/shiny/64/BO.png differ diff --git a/flags/flags-iso/shiny/64/BR.png b/flags/flags-iso/shiny/64/BR.png new file mode 100644 index 0000000..0b1da29 Binary files /dev/null and b/flags/flags-iso/shiny/64/BR.png differ diff --git a/flags/flags-iso/shiny/64/BS.png b/flags/flags-iso/shiny/64/BS.png new file mode 100644 index 0000000..c7eebff Binary files /dev/null and b/flags/flags-iso/shiny/64/BS.png differ diff --git a/flags/flags-iso/shiny/64/BT.png b/flags/flags-iso/shiny/64/BT.png new file mode 100644 index 0000000..da74719 Binary files /dev/null and b/flags/flags-iso/shiny/64/BT.png differ diff --git a/flags/flags-iso/shiny/64/BW.png b/flags/flags-iso/shiny/64/BW.png new file mode 100644 index 0000000..7789fa6 Binary files /dev/null and b/flags/flags-iso/shiny/64/BW.png differ diff --git a/flags/flags-iso/shiny/64/BY.png b/flags/flags-iso/shiny/64/BY.png new file mode 100644 index 0000000..f5e8da7 Binary files /dev/null and b/flags/flags-iso/shiny/64/BY.png differ diff --git a/flags/flags-iso/shiny/64/BZ.png b/flags/flags-iso/shiny/64/BZ.png new file mode 100644 index 0000000..c99c488 Binary files /dev/null and b/flags/flags-iso/shiny/64/BZ.png differ diff --git a/flags/flags-iso/shiny/64/CA.png b/flags/flags-iso/shiny/64/CA.png new file mode 100644 index 0000000..4c68c8c Binary files /dev/null and b/flags/flags-iso/shiny/64/CA.png differ diff --git a/flags/flags-iso/shiny/64/CC.png b/flags/flags-iso/shiny/64/CC.png new file mode 100644 index 0000000..26b7bd2 Binary files /dev/null and b/flags/flags-iso/shiny/64/CC.png differ diff --git a/flags/flags-iso/shiny/64/CD.png b/flags/flags-iso/shiny/64/CD.png new file mode 100644 index 0000000..dbd5795 Binary files /dev/null and b/flags/flags-iso/shiny/64/CD.png differ diff --git a/flags/flags-iso/shiny/64/CF.png b/flags/flags-iso/shiny/64/CF.png new file mode 100644 index 0000000..78cc880 Binary files /dev/null and b/flags/flags-iso/shiny/64/CF.png differ diff --git a/flags/flags-iso/shiny/64/CG.png b/flags/flags-iso/shiny/64/CG.png new file mode 100644 index 0000000..6abb441 Binary files /dev/null and b/flags/flags-iso/shiny/64/CG.png differ diff --git a/flags/flags-iso/shiny/64/CH.png b/flags/flags-iso/shiny/64/CH.png new file mode 100644 index 0000000..cb91083 Binary files /dev/null and b/flags/flags-iso/shiny/64/CH.png differ diff --git a/flags/flags-iso/shiny/64/CI.png b/flags/flags-iso/shiny/64/CI.png new file mode 100644 index 0000000..e94f791 Binary files /dev/null and b/flags/flags-iso/shiny/64/CI.png differ diff --git a/flags/flags-iso/shiny/64/CK.png b/flags/flags-iso/shiny/64/CK.png new file mode 100644 index 0000000..96dc4d8 Binary files /dev/null and b/flags/flags-iso/shiny/64/CK.png differ diff --git a/flags/flags-iso/shiny/64/CL.png b/flags/flags-iso/shiny/64/CL.png new file mode 100644 index 0000000..2a9b342 Binary files /dev/null and b/flags/flags-iso/shiny/64/CL.png differ diff --git a/flags/flags-iso/shiny/64/CM.png b/flags/flags-iso/shiny/64/CM.png new file mode 100644 index 0000000..b2355fb Binary files /dev/null and b/flags/flags-iso/shiny/64/CM.png differ diff --git a/flags/flags-iso/shiny/64/CN.png b/flags/flags-iso/shiny/64/CN.png new file mode 100644 index 0000000..30496b0 Binary files /dev/null and b/flags/flags-iso/shiny/64/CN.png differ diff --git a/flags/flags-iso/shiny/64/CO.png b/flags/flags-iso/shiny/64/CO.png new file mode 100644 index 0000000..896af29 Binary files /dev/null and b/flags/flags-iso/shiny/64/CO.png differ diff --git a/flags/flags-iso/shiny/64/CR.png b/flags/flags-iso/shiny/64/CR.png new file mode 100644 index 0000000..95206cf Binary files /dev/null and b/flags/flags-iso/shiny/64/CR.png differ diff --git a/flags/flags-iso/shiny/64/CU.png b/flags/flags-iso/shiny/64/CU.png new file mode 100644 index 0000000..e51a780 Binary files /dev/null and b/flags/flags-iso/shiny/64/CU.png differ diff --git a/flags/flags-iso/shiny/64/CV.png b/flags/flags-iso/shiny/64/CV.png new file mode 100644 index 0000000..39f0e63 Binary files /dev/null and b/flags/flags-iso/shiny/64/CV.png differ diff --git a/flags/flags-iso/shiny/64/CX.png b/flags/flags-iso/shiny/64/CX.png new file mode 100644 index 0000000..3fb679b Binary files /dev/null and b/flags/flags-iso/shiny/64/CX.png differ diff --git a/flags/flags-iso/shiny/64/CY.png b/flags/flags-iso/shiny/64/CY.png new file mode 100644 index 0000000..dc5a119 Binary files /dev/null and b/flags/flags-iso/shiny/64/CY.png differ diff --git a/flags/flags-iso/shiny/64/CZ.png b/flags/flags-iso/shiny/64/CZ.png new file mode 100644 index 0000000..2616355 Binary files /dev/null and b/flags/flags-iso/shiny/64/CZ.png differ diff --git a/flags/flags-iso/shiny/64/DE.png b/flags/flags-iso/shiny/64/DE.png new file mode 100644 index 0000000..b28cfd9 Binary files /dev/null and b/flags/flags-iso/shiny/64/DE.png differ diff --git a/flags/flags-iso/shiny/64/DJ.png b/flags/flags-iso/shiny/64/DJ.png new file mode 100644 index 0000000..336cccd Binary files /dev/null and b/flags/flags-iso/shiny/64/DJ.png differ diff --git a/flags/flags-iso/shiny/64/DK.png b/flags/flags-iso/shiny/64/DK.png new file mode 100644 index 0000000..ae650dd Binary files /dev/null and b/flags/flags-iso/shiny/64/DK.png differ diff --git a/flags/flags-iso/shiny/64/DM.png b/flags/flags-iso/shiny/64/DM.png new file mode 100644 index 0000000..55800b7 Binary files /dev/null and b/flags/flags-iso/shiny/64/DM.png differ diff --git a/flags/flags-iso/shiny/64/DO.png b/flags/flags-iso/shiny/64/DO.png new file mode 100644 index 0000000..ebb32b6 Binary files /dev/null and b/flags/flags-iso/shiny/64/DO.png differ diff --git a/flags/flags-iso/shiny/64/DZ.png b/flags/flags-iso/shiny/64/DZ.png new file mode 100644 index 0000000..241584f Binary files /dev/null and b/flags/flags-iso/shiny/64/DZ.png differ diff --git a/flags/flags-iso/shiny/64/EC.png b/flags/flags-iso/shiny/64/EC.png new file mode 100644 index 0000000..c69d1a0 Binary files /dev/null and b/flags/flags-iso/shiny/64/EC.png differ diff --git a/flags/flags-iso/shiny/64/EE.png b/flags/flags-iso/shiny/64/EE.png new file mode 100644 index 0000000..120ee25 Binary files /dev/null and b/flags/flags-iso/shiny/64/EE.png differ diff --git a/flags/flags-iso/shiny/64/EG.png b/flags/flags-iso/shiny/64/EG.png new file mode 100644 index 0000000..bd282eb Binary files /dev/null and b/flags/flags-iso/shiny/64/EG.png differ diff --git a/flags/flags-iso/shiny/64/EH.png b/flags/flags-iso/shiny/64/EH.png new file mode 100644 index 0000000..6461b34 Binary files /dev/null and b/flags/flags-iso/shiny/64/EH.png differ diff --git a/flags/flags-iso/shiny/64/ER.png b/flags/flags-iso/shiny/64/ER.png new file mode 100644 index 0000000..8bfc48c Binary files /dev/null and b/flags/flags-iso/shiny/64/ER.png differ diff --git a/flags/flags-iso/shiny/64/ES.png b/flags/flags-iso/shiny/64/ES.png new file mode 100644 index 0000000..bef0a45 Binary files /dev/null and b/flags/flags-iso/shiny/64/ES.png differ diff --git a/flags/flags-iso/shiny/64/ET.png b/flags/flags-iso/shiny/64/ET.png new file mode 100644 index 0000000..ec683e1 Binary files /dev/null and b/flags/flags-iso/shiny/64/ET.png differ diff --git a/flags/flags-iso/shiny/64/EU.png b/flags/flags-iso/shiny/64/EU.png new file mode 100644 index 0000000..fe942d4 Binary files /dev/null and b/flags/flags-iso/shiny/64/EU.png differ diff --git a/flags/flags-iso/shiny/64/FI.png b/flags/flags-iso/shiny/64/FI.png new file mode 100644 index 0000000..3100021 Binary files /dev/null and b/flags/flags-iso/shiny/64/FI.png differ diff --git a/flags/flags-iso/shiny/64/FJ.png b/flags/flags-iso/shiny/64/FJ.png new file mode 100644 index 0000000..ff4ce5c Binary files /dev/null and b/flags/flags-iso/shiny/64/FJ.png differ diff --git a/flags/flags-iso/shiny/64/FK.png b/flags/flags-iso/shiny/64/FK.png new file mode 100644 index 0000000..a0f1f06 Binary files /dev/null and b/flags/flags-iso/shiny/64/FK.png differ diff --git a/flags/flags-iso/shiny/64/FM.png b/flags/flags-iso/shiny/64/FM.png new file mode 100644 index 0000000..50f5504 Binary files /dev/null and b/flags/flags-iso/shiny/64/FM.png differ diff --git a/flags/flags-iso/shiny/64/FO.png b/flags/flags-iso/shiny/64/FO.png new file mode 100644 index 0000000..73a76d5 Binary files /dev/null and b/flags/flags-iso/shiny/64/FO.png differ diff --git a/flags/flags-iso/shiny/64/FR.png b/flags/flags-iso/shiny/64/FR.png new file mode 100644 index 0000000..a2b2de6 Binary files /dev/null and b/flags/flags-iso/shiny/64/FR.png differ diff --git a/flags/flags-iso/shiny/64/GA.png b/flags/flags-iso/shiny/64/GA.png new file mode 100644 index 0000000..0525472 Binary files /dev/null and b/flags/flags-iso/shiny/64/GA.png differ diff --git a/flags/flags-iso/shiny/64/GB.png b/flags/flags-iso/shiny/64/GB.png new file mode 100644 index 0000000..c029aa7 Binary files /dev/null and b/flags/flags-iso/shiny/64/GB.png differ diff --git a/flags/flags-iso/shiny/64/GD.png b/flags/flags-iso/shiny/64/GD.png new file mode 100644 index 0000000..5d4df8f Binary files /dev/null and b/flags/flags-iso/shiny/64/GD.png differ diff --git a/flags/flags-iso/shiny/64/GE.png b/flags/flags-iso/shiny/64/GE.png new file mode 100644 index 0000000..b3a56a2 Binary files /dev/null and b/flags/flags-iso/shiny/64/GE.png differ diff --git a/flags/flags-iso/shiny/64/GG.png b/flags/flags-iso/shiny/64/GG.png new file mode 100644 index 0000000..f0e14b9 Binary files /dev/null and b/flags/flags-iso/shiny/64/GG.png differ diff --git a/flags/flags-iso/shiny/64/GH.png b/flags/flags-iso/shiny/64/GH.png new file mode 100644 index 0000000..9653c86 Binary files /dev/null and b/flags/flags-iso/shiny/64/GH.png differ diff --git a/flags/flags-iso/shiny/64/GI.png b/flags/flags-iso/shiny/64/GI.png new file mode 100644 index 0000000..93eb1af Binary files /dev/null and b/flags/flags-iso/shiny/64/GI.png differ diff --git a/flags/flags-iso/shiny/64/GL.png b/flags/flags-iso/shiny/64/GL.png new file mode 100644 index 0000000..6f18ea0 Binary files /dev/null and b/flags/flags-iso/shiny/64/GL.png differ diff --git a/flags/flags-iso/shiny/64/GM.png b/flags/flags-iso/shiny/64/GM.png new file mode 100644 index 0000000..3b1027c Binary files /dev/null and b/flags/flags-iso/shiny/64/GM.png differ diff --git a/flags/flags-iso/shiny/64/GN.png b/flags/flags-iso/shiny/64/GN.png new file mode 100644 index 0000000..65e0dfb Binary files /dev/null and b/flags/flags-iso/shiny/64/GN.png differ diff --git a/flags/flags-iso/shiny/64/GQ.png b/flags/flags-iso/shiny/64/GQ.png new file mode 100644 index 0000000..8429dc9 Binary files /dev/null and b/flags/flags-iso/shiny/64/GQ.png differ diff --git a/flags/flags-iso/shiny/64/GR.png b/flags/flags-iso/shiny/64/GR.png new file mode 100644 index 0000000..f64bd39 Binary files /dev/null and b/flags/flags-iso/shiny/64/GR.png differ diff --git a/flags/flags-iso/shiny/64/GS.png b/flags/flags-iso/shiny/64/GS.png new file mode 100644 index 0000000..f877766 Binary files /dev/null and b/flags/flags-iso/shiny/64/GS.png differ diff --git a/flags/flags-iso/shiny/64/GT.png b/flags/flags-iso/shiny/64/GT.png new file mode 100644 index 0000000..79848de Binary files /dev/null and b/flags/flags-iso/shiny/64/GT.png differ diff --git a/flags/flags-iso/shiny/64/GU.png b/flags/flags-iso/shiny/64/GU.png new file mode 100644 index 0000000..18e7086 Binary files /dev/null and b/flags/flags-iso/shiny/64/GU.png differ diff --git a/flags/flags-iso/shiny/64/GW.png b/flags/flags-iso/shiny/64/GW.png new file mode 100644 index 0000000..d378f47 Binary files /dev/null and b/flags/flags-iso/shiny/64/GW.png differ diff --git a/flags/flags-iso/shiny/64/GY.png b/flags/flags-iso/shiny/64/GY.png new file mode 100644 index 0000000..f78e34c Binary files /dev/null and b/flags/flags-iso/shiny/64/GY.png differ diff --git a/flags/flags-iso/shiny/64/HK.png b/flags/flags-iso/shiny/64/HK.png new file mode 100644 index 0000000..9e86dee Binary files /dev/null and b/flags/flags-iso/shiny/64/HK.png differ diff --git a/flags/flags-iso/shiny/64/HN.png b/flags/flags-iso/shiny/64/HN.png new file mode 100644 index 0000000..669cd4d Binary files /dev/null and b/flags/flags-iso/shiny/64/HN.png differ diff --git a/flags/flags-iso/shiny/64/HR.png b/flags/flags-iso/shiny/64/HR.png new file mode 100644 index 0000000..d2dd0e3 Binary files /dev/null and b/flags/flags-iso/shiny/64/HR.png differ diff --git a/flags/flags-iso/shiny/64/HT.png b/flags/flags-iso/shiny/64/HT.png new file mode 100644 index 0000000..3e0db8d Binary files /dev/null and b/flags/flags-iso/shiny/64/HT.png differ diff --git a/flags/flags-iso/shiny/64/HU.png b/flags/flags-iso/shiny/64/HU.png new file mode 100644 index 0000000..d115bc3 Binary files /dev/null and b/flags/flags-iso/shiny/64/HU.png differ diff --git a/flags/flags-iso/shiny/64/ID.png b/flags/flags-iso/shiny/64/ID.png new file mode 100644 index 0000000..f44ee9e Binary files /dev/null and b/flags/flags-iso/shiny/64/ID.png differ diff --git a/flags/flags-iso/shiny/64/IE.png b/flags/flags-iso/shiny/64/IE.png new file mode 100644 index 0000000..f26d2a4 Binary files /dev/null and b/flags/flags-iso/shiny/64/IE.png differ diff --git a/flags/flags-iso/shiny/64/IL.png b/flags/flags-iso/shiny/64/IL.png new file mode 100644 index 0000000..2e0443f Binary files /dev/null and b/flags/flags-iso/shiny/64/IL.png differ diff --git a/flags/flags-iso/shiny/64/IM.png b/flags/flags-iso/shiny/64/IM.png new file mode 100644 index 0000000..7b3508f Binary files /dev/null and b/flags/flags-iso/shiny/64/IM.png differ diff --git a/flags/flags-iso/shiny/64/IN.png b/flags/flags-iso/shiny/64/IN.png new file mode 100644 index 0000000..ee348e8 Binary files /dev/null and b/flags/flags-iso/shiny/64/IN.png differ diff --git a/flags/flags-iso/shiny/64/IQ.png b/flags/flags-iso/shiny/64/IQ.png new file mode 100644 index 0000000..1c7191b Binary files /dev/null and b/flags/flags-iso/shiny/64/IQ.png differ diff --git a/flags/flags-iso/shiny/64/IR.png b/flags/flags-iso/shiny/64/IR.png new file mode 100644 index 0000000..09daca1 Binary files /dev/null and b/flags/flags-iso/shiny/64/IR.png differ diff --git a/flags/flags-iso/shiny/64/IS.png b/flags/flags-iso/shiny/64/IS.png new file mode 100644 index 0000000..3875477 Binary files /dev/null and b/flags/flags-iso/shiny/64/IS.png differ diff --git a/flags/flags-iso/shiny/64/IT.png b/flags/flags-iso/shiny/64/IT.png new file mode 100644 index 0000000..70d488f Binary files /dev/null and b/flags/flags-iso/shiny/64/IT.png differ diff --git a/flags/flags-iso/shiny/64/JE.png b/flags/flags-iso/shiny/64/JE.png new file mode 100644 index 0000000..e9bb2f8 Binary files /dev/null and b/flags/flags-iso/shiny/64/JE.png differ diff --git a/flags/flags-iso/shiny/64/JM.png b/flags/flags-iso/shiny/64/JM.png new file mode 100644 index 0000000..490d3f6 Binary files /dev/null and b/flags/flags-iso/shiny/64/JM.png differ diff --git a/flags/flags-iso/shiny/64/JO.png b/flags/flags-iso/shiny/64/JO.png new file mode 100644 index 0000000..94f959d Binary files /dev/null and b/flags/flags-iso/shiny/64/JO.png differ diff --git a/flags/flags-iso/shiny/64/JP.png b/flags/flags-iso/shiny/64/JP.png new file mode 100644 index 0000000..9907ce0 Binary files /dev/null and b/flags/flags-iso/shiny/64/JP.png differ diff --git a/flags/flags-iso/shiny/64/KE.png b/flags/flags-iso/shiny/64/KE.png new file mode 100644 index 0000000..966feb9 Binary files /dev/null and b/flags/flags-iso/shiny/64/KE.png differ diff --git a/flags/flags-iso/shiny/64/KG.png b/flags/flags-iso/shiny/64/KG.png new file mode 100644 index 0000000..7d7f930 Binary files /dev/null and b/flags/flags-iso/shiny/64/KG.png differ diff --git a/flags/flags-iso/shiny/64/KH.png b/flags/flags-iso/shiny/64/KH.png new file mode 100644 index 0000000..7cb4b23 Binary files /dev/null and b/flags/flags-iso/shiny/64/KH.png differ diff --git a/flags/flags-iso/shiny/64/KI.png b/flags/flags-iso/shiny/64/KI.png new file mode 100644 index 0000000..8e10c78 Binary files /dev/null and b/flags/flags-iso/shiny/64/KI.png differ diff --git a/flags/flags-iso/shiny/64/KM.png b/flags/flags-iso/shiny/64/KM.png new file mode 100644 index 0000000..7b0cb90 Binary files /dev/null and b/flags/flags-iso/shiny/64/KM.png differ diff --git a/flags/flags-iso/shiny/64/KN.png b/flags/flags-iso/shiny/64/KN.png new file mode 100644 index 0000000..7f558d7 Binary files /dev/null and b/flags/flags-iso/shiny/64/KN.png differ diff --git a/flags/flags-iso/shiny/64/KP.png b/flags/flags-iso/shiny/64/KP.png new file mode 100644 index 0000000..58874f6 Binary files /dev/null and b/flags/flags-iso/shiny/64/KP.png differ diff --git a/flags/flags-iso/shiny/64/KR.png b/flags/flags-iso/shiny/64/KR.png new file mode 100644 index 0000000..f3c12d8 Binary files /dev/null and b/flags/flags-iso/shiny/64/KR.png differ diff --git a/flags/flags-iso/shiny/64/KW.png b/flags/flags-iso/shiny/64/KW.png new file mode 100644 index 0000000..93ff3d9 Binary files /dev/null and b/flags/flags-iso/shiny/64/KW.png differ diff --git a/flags/flags-iso/shiny/64/KY.png b/flags/flags-iso/shiny/64/KY.png new file mode 100644 index 0000000..83f2870 Binary files /dev/null and b/flags/flags-iso/shiny/64/KY.png differ diff --git a/flags/flags-iso/shiny/64/KZ.png b/flags/flags-iso/shiny/64/KZ.png new file mode 100644 index 0000000..37bda09 Binary files /dev/null and b/flags/flags-iso/shiny/64/KZ.png differ diff --git a/flags/flags-iso/shiny/64/LA.png b/flags/flags-iso/shiny/64/LA.png new file mode 100644 index 0000000..bce6687 Binary files /dev/null and b/flags/flags-iso/shiny/64/LA.png differ diff --git a/flags/flags-iso/shiny/64/LB.png b/flags/flags-iso/shiny/64/LB.png new file mode 100644 index 0000000..5a18341 Binary files /dev/null and b/flags/flags-iso/shiny/64/LB.png differ diff --git a/flags/flags-iso/shiny/64/LC.png b/flags/flags-iso/shiny/64/LC.png new file mode 100644 index 0000000..e521ac8 Binary files /dev/null and b/flags/flags-iso/shiny/64/LC.png differ diff --git a/flags/flags-iso/shiny/64/LI.png b/flags/flags-iso/shiny/64/LI.png new file mode 100644 index 0000000..a866dd0 Binary files /dev/null and b/flags/flags-iso/shiny/64/LI.png differ diff --git a/flags/flags-iso/shiny/64/LK.png b/flags/flags-iso/shiny/64/LK.png new file mode 100644 index 0000000..a9fc5aa Binary files /dev/null and b/flags/flags-iso/shiny/64/LK.png differ diff --git a/flags/flags-iso/shiny/64/LR.png b/flags/flags-iso/shiny/64/LR.png new file mode 100644 index 0000000..d264167 Binary files /dev/null and b/flags/flags-iso/shiny/64/LR.png differ diff --git a/flags/flags-iso/shiny/64/LS.png b/flags/flags-iso/shiny/64/LS.png new file mode 100644 index 0000000..39edfaa Binary files /dev/null and b/flags/flags-iso/shiny/64/LS.png differ diff --git a/flags/flags-iso/shiny/64/LT.png b/flags/flags-iso/shiny/64/LT.png new file mode 100644 index 0000000..db17b65 Binary files /dev/null and b/flags/flags-iso/shiny/64/LT.png differ diff --git a/flags/flags-iso/shiny/64/LU.png b/flags/flags-iso/shiny/64/LU.png new file mode 100644 index 0000000..e87ddc7 Binary files /dev/null and b/flags/flags-iso/shiny/64/LU.png differ diff --git a/flags/flags-iso/shiny/64/LV.png b/flags/flags-iso/shiny/64/LV.png new file mode 100644 index 0000000..8117906 Binary files /dev/null and b/flags/flags-iso/shiny/64/LV.png differ diff --git a/flags/flags-iso/shiny/64/LY.png b/flags/flags-iso/shiny/64/LY.png new file mode 100644 index 0000000..d3b605e Binary files /dev/null and b/flags/flags-iso/shiny/64/LY.png differ diff --git a/flags/flags-iso/shiny/64/MA.png b/flags/flags-iso/shiny/64/MA.png new file mode 100644 index 0000000..6ef3c74 Binary files /dev/null and b/flags/flags-iso/shiny/64/MA.png differ diff --git a/flags/flags-iso/shiny/64/MC.png b/flags/flags-iso/shiny/64/MC.png new file mode 100644 index 0000000..f44ee9e Binary files /dev/null and b/flags/flags-iso/shiny/64/MC.png differ diff --git a/flags/flags-iso/shiny/64/MD.png b/flags/flags-iso/shiny/64/MD.png new file mode 100644 index 0000000..0a4af81 Binary files /dev/null and b/flags/flags-iso/shiny/64/MD.png differ diff --git a/flags/flags-iso/shiny/64/ME.png b/flags/flags-iso/shiny/64/ME.png new file mode 100644 index 0000000..f0c2644 Binary files /dev/null and b/flags/flags-iso/shiny/64/ME.png differ diff --git a/flags/flags-iso/shiny/64/MG.png b/flags/flags-iso/shiny/64/MG.png new file mode 100644 index 0000000..3418851 Binary files /dev/null and b/flags/flags-iso/shiny/64/MG.png differ diff --git a/flags/flags-iso/shiny/64/MH.png b/flags/flags-iso/shiny/64/MH.png new file mode 100644 index 0000000..6687fc0 Binary files /dev/null and b/flags/flags-iso/shiny/64/MH.png differ diff --git a/flags/flags-iso/shiny/64/MK.png b/flags/flags-iso/shiny/64/MK.png new file mode 100644 index 0000000..eb30d9b Binary files /dev/null and b/flags/flags-iso/shiny/64/MK.png differ diff --git a/flags/flags-iso/shiny/64/ML.png b/flags/flags-iso/shiny/64/ML.png new file mode 100644 index 0000000..1457695 Binary files /dev/null and b/flags/flags-iso/shiny/64/ML.png differ diff --git a/flags/flags-iso/shiny/64/MM.png b/flags/flags-iso/shiny/64/MM.png new file mode 100644 index 0000000..a96807b Binary files /dev/null and b/flags/flags-iso/shiny/64/MM.png differ diff --git a/flags/flags-iso/shiny/64/MN.png b/flags/flags-iso/shiny/64/MN.png new file mode 100644 index 0000000..d406fbb Binary files /dev/null and b/flags/flags-iso/shiny/64/MN.png differ diff --git a/flags/flags-iso/shiny/64/MO.png b/flags/flags-iso/shiny/64/MO.png new file mode 100644 index 0000000..9379034 Binary files /dev/null and b/flags/flags-iso/shiny/64/MO.png differ diff --git a/flags/flags-iso/shiny/64/MP.png b/flags/flags-iso/shiny/64/MP.png new file mode 100644 index 0000000..e8cbb1c Binary files /dev/null and b/flags/flags-iso/shiny/64/MP.png differ diff --git a/flags/flags-iso/shiny/64/MR.png b/flags/flags-iso/shiny/64/MR.png new file mode 100644 index 0000000..4e32555 Binary files /dev/null and b/flags/flags-iso/shiny/64/MR.png differ diff --git a/flags/flags-iso/shiny/64/MS.png b/flags/flags-iso/shiny/64/MS.png new file mode 100644 index 0000000..addb87f Binary files /dev/null and b/flags/flags-iso/shiny/64/MS.png differ diff --git a/flags/flags-iso/shiny/64/MT.png b/flags/flags-iso/shiny/64/MT.png new file mode 100644 index 0000000..1b2b4f5 Binary files /dev/null and b/flags/flags-iso/shiny/64/MT.png differ diff --git a/flags/flags-iso/shiny/64/MU.png b/flags/flags-iso/shiny/64/MU.png new file mode 100644 index 0000000..9b2508b Binary files /dev/null and b/flags/flags-iso/shiny/64/MU.png differ diff --git a/flags/flags-iso/shiny/64/MV.png b/flags/flags-iso/shiny/64/MV.png new file mode 100644 index 0000000..19581fc Binary files /dev/null and b/flags/flags-iso/shiny/64/MV.png differ diff --git a/flags/flags-iso/shiny/64/MW.png b/flags/flags-iso/shiny/64/MW.png new file mode 100644 index 0000000..574baac Binary files /dev/null and b/flags/flags-iso/shiny/64/MW.png differ diff --git a/flags/flags-iso/shiny/64/MX.png b/flags/flags-iso/shiny/64/MX.png new file mode 100644 index 0000000..2b73aed Binary files /dev/null and b/flags/flags-iso/shiny/64/MX.png differ diff --git a/flags/flags-iso/shiny/64/MY.png b/flags/flags-iso/shiny/64/MY.png new file mode 100644 index 0000000..9280e98 Binary files /dev/null and b/flags/flags-iso/shiny/64/MY.png differ diff --git a/flags/flags-iso/shiny/64/MZ.png b/flags/flags-iso/shiny/64/MZ.png new file mode 100644 index 0000000..ef9646a Binary files /dev/null and b/flags/flags-iso/shiny/64/MZ.png differ diff --git a/flags/flags-iso/shiny/64/NA.png b/flags/flags-iso/shiny/64/NA.png new file mode 100644 index 0000000..edcd8c5 Binary files /dev/null and b/flags/flags-iso/shiny/64/NA.png differ diff --git a/flags/flags-iso/shiny/64/NC.png b/flags/flags-iso/shiny/64/NC.png new file mode 100644 index 0000000..db6b1ef Binary files /dev/null and b/flags/flags-iso/shiny/64/NC.png differ diff --git a/flags/flags-iso/shiny/64/NE.png b/flags/flags-iso/shiny/64/NE.png new file mode 100644 index 0000000..6d192b4 Binary files /dev/null and b/flags/flags-iso/shiny/64/NE.png differ diff --git a/flags/flags-iso/shiny/64/NF.png b/flags/flags-iso/shiny/64/NF.png new file mode 100644 index 0000000..1a356e4 Binary files /dev/null and b/flags/flags-iso/shiny/64/NF.png differ diff --git a/flags/flags-iso/shiny/64/NG.png b/flags/flags-iso/shiny/64/NG.png new file mode 100644 index 0000000..600a978 Binary files /dev/null and b/flags/flags-iso/shiny/64/NG.png differ diff --git a/flags/flags-iso/shiny/64/NI.png b/flags/flags-iso/shiny/64/NI.png new file mode 100644 index 0000000..1fd2b4b Binary files /dev/null and b/flags/flags-iso/shiny/64/NI.png differ diff --git a/flags/flags-iso/shiny/64/NL.png b/flags/flags-iso/shiny/64/NL.png new file mode 100644 index 0000000..dbb2c2c Binary files /dev/null and b/flags/flags-iso/shiny/64/NL.png differ diff --git a/flags/flags-iso/shiny/64/NO.png b/flags/flags-iso/shiny/64/NO.png new file mode 100644 index 0000000..89b8c21 Binary files /dev/null and b/flags/flags-iso/shiny/64/NO.png differ diff --git a/flags/flags-iso/shiny/64/NP.png b/flags/flags-iso/shiny/64/NP.png new file mode 100644 index 0000000..763c216 Binary files /dev/null and b/flags/flags-iso/shiny/64/NP.png differ diff --git a/flags/flags-iso/shiny/64/NR.png b/flags/flags-iso/shiny/64/NR.png new file mode 100644 index 0000000..1bb178e Binary files /dev/null and b/flags/flags-iso/shiny/64/NR.png differ diff --git a/flags/flags-iso/shiny/64/NU.png b/flags/flags-iso/shiny/64/NU.png new file mode 100644 index 0000000..c92483f Binary files /dev/null and b/flags/flags-iso/shiny/64/NU.png differ diff --git a/flags/flags-iso/shiny/64/NZ.png b/flags/flags-iso/shiny/64/NZ.png new file mode 100644 index 0000000..0bdf72f Binary files /dev/null and b/flags/flags-iso/shiny/64/NZ.png differ diff --git a/flags/flags-iso/shiny/64/OM.png b/flags/flags-iso/shiny/64/OM.png new file mode 100644 index 0000000..8f9a173 Binary files /dev/null and b/flags/flags-iso/shiny/64/OM.png differ diff --git a/flags/flags-iso/shiny/64/PA.png b/flags/flags-iso/shiny/64/PA.png new file mode 100644 index 0000000..830eaa0 Binary files /dev/null and b/flags/flags-iso/shiny/64/PA.png differ diff --git a/flags/flags-iso/shiny/64/PE.png b/flags/flags-iso/shiny/64/PE.png new file mode 100644 index 0000000..b8df431 Binary files /dev/null and b/flags/flags-iso/shiny/64/PE.png differ diff --git a/flags/flags-iso/shiny/64/PF.png b/flags/flags-iso/shiny/64/PF.png new file mode 100644 index 0000000..df5883e Binary files /dev/null and b/flags/flags-iso/shiny/64/PF.png differ diff --git a/flags/flags-iso/shiny/64/PG.png b/flags/flags-iso/shiny/64/PG.png new file mode 100644 index 0000000..c9e18c3 Binary files /dev/null and b/flags/flags-iso/shiny/64/PG.png differ diff --git a/flags/flags-iso/shiny/64/PH.png b/flags/flags-iso/shiny/64/PH.png new file mode 100644 index 0000000..d4212b9 Binary files /dev/null and b/flags/flags-iso/shiny/64/PH.png differ diff --git a/flags/flags-iso/shiny/64/PK.png b/flags/flags-iso/shiny/64/PK.png new file mode 100644 index 0000000..ad9e59d Binary files /dev/null and b/flags/flags-iso/shiny/64/PK.png differ diff --git a/flags/flags-iso/shiny/64/PL.png b/flags/flags-iso/shiny/64/PL.png new file mode 100644 index 0000000..99a2c7b Binary files /dev/null and b/flags/flags-iso/shiny/64/PL.png differ diff --git a/flags/flags-iso/shiny/64/PN.png b/flags/flags-iso/shiny/64/PN.png new file mode 100644 index 0000000..fe73283 Binary files /dev/null and b/flags/flags-iso/shiny/64/PN.png differ diff --git a/flags/flags-iso/shiny/64/PR.png b/flags/flags-iso/shiny/64/PR.png new file mode 100644 index 0000000..e2c9342 Binary files /dev/null and b/flags/flags-iso/shiny/64/PR.png differ diff --git a/flags/flags-iso/shiny/64/PS.png b/flags/flags-iso/shiny/64/PS.png new file mode 100644 index 0000000..8098092 Binary files /dev/null and b/flags/flags-iso/shiny/64/PS.png differ diff --git a/flags/flags-iso/shiny/64/PT.png b/flags/flags-iso/shiny/64/PT.png new file mode 100644 index 0000000..ff40fe1 Binary files /dev/null and b/flags/flags-iso/shiny/64/PT.png differ diff --git a/flags/flags-iso/shiny/64/PW.png b/flags/flags-iso/shiny/64/PW.png new file mode 100644 index 0000000..56c11cd Binary files /dev/null and b/flags/flags-iso/shiny/64/PW.png differ diff --git a/flags/flags-iso/shiny/64/PY.png b/flags/flags-iso/shiny/64/PY.png new file mode 100644 index 0000000..097f9e2 Binary files /dev/null and b/flags/flags-iso/shiny/64/PY.png differ diff --git a/flags/flags-iso/shiny/64/QA.png b/flags/flags-iso/shiny/64/QA.png new file mode 100644 index 0000000..2bef4ad Binary files /dev/null and b/flags/flags-iso/shiny/64/QA.png differ diff --git a/flags/flags-iso/shiny/64/RO.png b/flags/flags-iso/shiny/64/RO.png new file mode 100644 index 0000000..5665f06 Binary files /dev/null and b/flags/flags-iso/shiny/64/RO.png differ diff --git a/flags/flags-iso/shiny/64/RS.png b/flags/flags-iso/shiny/64/RS.png new file mode 100644 index 0000000..0b08c77 Binary files /dev/null and b/flags/flags-iso/shiny/64/RS.png differ diff --git a/flags/flags-iso/shiny/64/RU.png b/flags/flags-iso/shiny/64/RU.png new file mode 100644 index 0000000..69f32bb Binary files /dev/null and b/flags/flags-iso/shiny/64/RU.png differ diff --git a/flags/flags-iso/shiny/64/RW.png b/flags/flags-iso/shiny/64/RW.png new file mode 100644 index 0000000..e5e181c Binary files /dev/null and b/flags/flags-iso/shiny/64/RW.png differ diff --git a/flags/flags-iso/shiny/64/SA.png b/flags/flags-iso/shiny/64/SA.png new file mode 100644 index 0000000..8ea7226 Binary files /dev/null and b/flags/flags-iso/shiny/64/SA.png differ diff --git a/flags/flags-iso/shiny/64/SB.png b/flags/flags-iso/shiny/64/SB.png new file mode 100644 index 0000000..97a55d8 Binary files /dev/null and b/flags/flags-iso/shiny/64/SB.png differ diff --git a/flags/flags-iso/shiny/64/SC.png b/flags/flags-iso/shiny/64/SC.png new file mode 100644 index 0000000..b07a589 Binary files /dev/null and b/flags/flags-iso/shiny/64/SC.png differ diff --git a/flags/flags-iso/shiny/64/SD.png b/flags/flags-iso/shiny/64/SD.png new file mode 100644 index 0000000..2a0a134 Binary files /dev/null and b/flags/flags-iso/shiny/64/SD.png differ diff --git a/flags/flags-iso/shiny/64/SE.png b/flags/flags-iso/shiny/64/SE.png new file mode 100644 index 0000000..c943557 Binary files /dev/null and b/flags/flags-iso/shiny/64/SE.png differ diff --git a/flags/flags-iso/shiny/64/SG.png b/flags/flags-iso/shiny/64/SG.png new file mode 100644 index 0000000..37e9609 Binary files /dev/null and b/flags/flags-iso/shiny/64/SG.png differ diff --git a/flags/flags-iso/shiny/64/SH.png b/flags/flags-iso/shiny/64/SH.png new file mode 100644 index 0000000..4d5b2b5 Binary files /dev/null and b/flags/flags-iso/shiny/64/SH.png differ diff --git a/flags/flags-iso/shiny/64/SI.png b/flags/flags-iso/shiny/64/SI.png new file mode 100644 index 0000000..9d1330c Binary files /dev/null and b/flags/flags-iso/shiny/64/SI.png differ diff --git a/flags/flags-iso/shiny/64/SK.png b/flags/flags-iso/shiny/64/SK.png new file mode 100644 index 0000000..6264388 Binary files /dev/null and b/flags/flags-iso/shiny/64/SK.png differ diff --git a/flags/flags-iso/shiny/64/SL.png b/flags/flags-iso/shiny/64/SL.png new file mode 100644 index 0000000..684be94 Binary files /dev/null and b/flags/flags-iso/shiny/64/SL.png differ diff --git a/flags/flags-iso/shiny/64/SM.png b/flags/flags-iso/shiny/64/SM.png new file mode 100644 index 0000000..a34392d Binary files /dev/null and b/flags/flags-iso/shiny/64/SM.png differ diff --git a/flags/flags-iso/shiny/64/SN.png b/flags/flags-iso/shiny/64/SN.png new file mode 100644 index 0000000..616967c Binary files /dev/null and b/flags/flags-iso/shiny/64/SN.png differ diff --git a/flags/flags-iso/shiny/64/SO.png b/flags/flags-iso/shiny/64/SO.png new file mode 100644 index 0000000..462b1d8 Binary files /dev/null and b/flags/flags-iso/shiny/64/SO.png differ diff --git a/flags/flags-iso/shiny/64/SR.png b/flags/flags-iso/shiny/64/SR.png new file mode 100644 index 0000000..68953b8 Binary files /dev/null and b/flags/flags-iso/shiny/64/SR.png differ diff --git a/flags/flags-iso/shiny/64/SS.png b/flags/flags-iso/shiny/64/SS.png new file mode 100644 index 0000000..cef26fe Binary files /dev/null and b/flags/flags-iso/shiny/64/SS.png differ diff --git a/flags/flags-iso/shiny/64/ST.png b/flags/flags-iso/shiny/64/ST.png new file mode 100644 index 0000000..307dae7 Binary files /dev/null and b/flags/flags-iso/shiny/64/ST.png differ diff --git a/flags/flags-iso/shiny/64/SV.png b/flags/flags-iso/shiny/64/SV.png new file mode 100644 index 0000000..7b4598c Binary files /dev/null and b/flags/flags-iso/shiny/64/SV.png differ diff --git a/flags/flags-iso/shiny/64/SY.png b/flags/flags-iso/shiny/64/SY.png new file mode 100644 index 0000000..2ff9f7b Binary files /dev/null and b/flags/flags-iso/shiny/64/SY.png differ diff --git a/flags/flags-iso/shiny/64/SZ.png b/flags/flags-iso/shiny/64/SZ.png new file mode 100644 index 0000000..ac61b26 Binary files /dev/null and b/flags/flags-iso/shiny/64/SZ.png differ diff --git a/flags/flags-iso/shiny/64/TC.png b/flags/flags-iso/shiny/64/TC.png new file mode 100644 index 0000000..f668ad2 Binary files /dev/null and b/flags/flags-iso/shiny/64/TC.png differ diff --git a/flags/flags-iso/shiny/64/TD.png b/flags/flags-iso/shiny/64/TD.png new file mode 100644 index 0000000..9f9581d Binary files /dev/null and b/flags/flags-iso/shiny/64/TD.png differ diff --git a/flags/flags-iso/shiny/64/TF.png b/flags/flags-iso/shiny/64/TF.png new file mode 100644 index 0000000..5990d4a Binary files /dev/null and b/flags/flags-iso/shiny/64/TF.png differ diff --git a/flags/flags-iso/shiny/64/TG.png b/flags/flags-iso/shiny/64/TG.png new file mode 100644 index 0000000..cd1b4b4 Binary files /dev/null and b/flags/flags-iso/shiny/64/TG.png differ diff --git a/flags/flags-iso/shiny/64/TH.png b/flags/flags-iso/shiny/64/TH.png new file mode 100644 index 0000000..cb98c4f Binary files /dev/null and b/flags/flags-iso/shiny/64/TH.png differ diff --git a/flags/flags-iso/shiny/64/TJ.png b/flags/flags-iso/shiny/64/TJ.png new file mode 100644 index 0000000..b64cb3c Binary files /dev/null and b/flags/flags-iso/shiny/64/TJ.png differ diff --git a/flags/flags-iso/shiny/64/TK.png b/flags/flags-iso/shiny/64/TK.png new file mode 100644 index 0000000..8622cbb Binary files /dev/null and b/flags/flags-iso/shiny/64/TK.png differ diff --git a/flags/flags-iso/shiny/64/TL.png b/flags/flags-iso/shiny/64/TL.png new file mode 100644 index 0000000..7bd71ce Binary files /dev/null and b/flags/flags-iso/shiny/64/TL.png differ diff --git a/flags/flags-iso/shiny/64/TM.png b/flags/flags-iso/shiny/64/TM.png new file mode 100644 index 0000000..ff0a6fb Binary files /dev/null and b/flags/flags-iso/shiny/64/TM.png differ diff --git a/flags/flags-iso/shiny/64/TN.png b/flags/flags-iso/shiny/64/TN.png new file mode 100644 index 0000000..a9d4d16 Binary files /dev/null and b/flags/flags-iso/shiny/64/TN.png differ diff --git a/flags/flags-iso/shiny/64/TO.png b/flags/flags-iso/shiny/64/TO.png new file mode 100644 index 0000000..4529f17 Binary files /dev/null and b/flags/flags-iso/shiny/64/TO.png differ diff --git a/flags/flags-iso/shiny/64/TR.png b/flags/flags-iso/shiny/64/TR.png new file mode 100644 index 0000000..640e7e8 Binary files /dev/null and b/flags/flags-iso/shiny/64/TR.png differ diff --git a/flags/flags-iso/shiny/64/TT.png b/flags/flags-iso/shiny/64/TT.png new file mode 100644 index 0000000..08ca8a0 Binary files /dev/null and b/flags/flags-iso/shiny/64/TT.png differ diff --git a/flags/flags-iso/shiny/64/TV.png b/flags/flags-iso/shiny/64/TV.png new file mode 100644 index 0000000..8937d42 Binary files /dev/null and b/flags/flags-iso/shiny/64/TV.png differ diff --git a/flags/flags-iso/shiny/64/TW.png b/flags/flags-iso/shiny/64/TW.png new file mode 100644 index 0000000..98bb9fb Binary files /dev/null and b/flags/flags-iso/shiny/64/TW.png differ diff --git a/flags/flags-iso/shiny/64/TZ.png b/flags/flags-iso/shiny/64/TZ.png new file mode 100644 index 0000000..2766dd5 Binary files /dev/null and b/flags/flags-iso/shiny/64/TZ.png differ diff --git a/flags/flags-iso/shiny/64/UA.png b/flags/flags-iso/shiny/64/UA.png new file mode 100644 index 0000000..143d7db Binary files /dev/null and b/flags/flags-iso/shiny/64/UA.png differ diff --git a/flags/flags-iso/shiny/64/UG.png b/flags/flags-iso/shiny/64/UG.png new file mode 100644 index 0000000..cffccb6 Binary files /dev/null and b/flags/flags-iso/shiny/64/UG.png differ diff --git a/flags/flags-iso/shiny/64/US.png b/flags/flags-iso/shiny/64/US.png new file mode 100644 index 0000000..c75043c Binary files /dev/null and b/flags/flags-iso/shiny/64/US.png differ diff --git a/flags/flags-iso/shiny/64/UY.png b/flags/flags-iso/shiny/64/UY.png new file mode 100644 index 0000000..01b67b0 Binary files /dev/null and b/flags/flags-iso/shiny/64/UY.png differ diff --git a/flags/flags-iso/shiny/64/UZ.png b/flags/flags-iso/shiny/64/UZ.png new file mode 100644 index 0000000..3d7cfee Binary files /dev/null and b/flags/flags-iso/shiny/64/UZ.png differ diff --git a/flags/flags-iso/shiny/64/VA.png b/flags/flags-iso/shiny/64/VA.png new file mode 100644 index 0000000..f8f7bf7 Binary files /dev/null and b/flags/flags-iso/shiny/64/VA.png differ diff --git a/flags/flags-iso/shiny/64/VC.png b/flags/flags-iso/shiny/64/VC.png new file mode 100644 index 0000000..73de64f Binary files /dev/null and b/flags/flags-iso/shiny/64/VC.png differ diff --git a/flags/flags-iso/shiny/64/VE.png b/flags/flags-iso/shiny/64/VE.png new file mode 100644 index 0000000..da42902 Binary files /dev/null and b/flags/flags-iso/shiny/64/VE.png differ diff --git a/flags/flags-iso/shiny/64/VG.png b/flags/flags-iso/shiny/64/VG.png new file mode 100644 index 0000000..fa997e0 Binary files /dev/null and b/flags/flags-iso/shiny/64/VG.png differ diff --git a/flags/flags-iso/shiny/64/VI.png b/flags/flags-iso/shiny/64/VI.png new file mode 100644 index 0000000..558b1ad Binary files /dev/null and b/flags/flags-iso/shiny/64/VI.png differ diff --git a/flags/flags-iso/shiny/64/VN.png b/flags/flags-iso/shiny/64/VN.png new file mode 100644 index 0000000..454cf42 Binary files /dev/null and b/flags/flags-iso/shiny/64/VN.png differ diff --git a/flags/flags-iso/shiny/64/VU.png b/flags/flags-iso/shiny/64/VU.png new file mode 100644 index 0000000..49889e2 Binary files /dev/null and b/flags/flags-iso/shiny/64/VU.png differ diff --git a/flags/flags-iso/shiny/64/WS.png b/flags/flags-iso/shiny/64/WS.png new file mode 100644 index 0000000..3d7900b Binary files /dev/null and b/flags/flags-iso/shiny/64/WS.png differ diff --git a/flags/flags-iso/shiny/64/YE.png b/flags/flags-iso/shiny/64/YE.png new file mode 100644 index 0000000..73dd33d Binary files /dev/null and b/flags/flags-iso/shiny/64/YE.png differ diff --git a/flags/flags-iso/shiny/64/YT.png b/flags/flags-iso/shiny/64/YT.png new file mode 100644 index 0000000..af947fd Binary files /dev/null and b/flags/flags-iso/shiny/64/YT.png differ diff --git a/flags/flags-iso/shiny/64/ZA.png b/flags/flags-iso/shiny/64/ZA.png new file mode 100644 index 0000000..6fffc66 Binary files /dev/null and b/flags/flags-iso/shiny/64/ZA.png differ diff --git a/flags/flags-iso/shiny/64/ZM.png b/flags/flags-iso/shiny/64/ZM.png new file mode 100644 index 0000000..6208724 Binary files /dev/null and b/flags/flags-iso/shiny/64/ZM.png differ diff --git a/flags/flags-iso/shiny/64/ZW.png b/flags/flags-iso/shiny/64/ZW.png new file mode 100644 index 0000000..baa8851 Binary files /dev/null and b/flags/flags-iso/shiny/64/ZW.png differ diff --git a/flags/flags-iso/shiny/64/_abkhazia.png b/flags/flags-iso/shiny/64/_abkhazia.png new file mode 100644 index 0000000..fea70f5 Binary files /dev/null and b/flags/flags-iso/shiny/64/_abkhazia.png differ diff --git a/flags/flags-iso/shiny/64/_british-antarctic-territory.png b/flags/flags-iso/shiny/64/_british-antarctic-territory.png new file mode 100644 index 0000000..50fa45d Binary files /dev/null and b/flags/flags-iso/shiny/64/_british-antarctic-territory.png differ diff --git a/flags/flags-iso/shiny/64/_commonwealth.png b/flags/flags-iso/shiny/64/_commonwealth.png new file mode 100644 index 0000000..6aba76c Binary files /dev/null and b/flags/flags-iso/shiny/64/_commonwealth.png differ diff --git a/flags/flags-iso/shiny/64/_england.png b/flags/flags-iso/shiny/64/_england.png new file mode 100644 index 0000000..a21e16c Binary files /dev/null and b/flags/flags-iso/shiny/64/_england.png differ diff --git a/flags/flags-iso/shiny/64/_gosquared.png b/flags/flags-iso/shiny/64/_gosquared.png new file mode 100644 index 0000000..17895f1 Binary files /dev/null and b/flags/flags-iso/shiny/64/_gosquared.png differ diff --git a/flags/flags-iso/shiny/64/_kosovo.png b/flags/flags-iso/shiny/64/_kosovo.png new file mode 100644 index 0000000..43660fd Binary files /dev/null and b/flags/flags-iso/shiny/64/_kosovo.png differ diff --git a/flags/flags-iso/shiny/64/_mars.png b/flags/flags-iso/shiny/64/_mars.png new file mode 100644 index 0000000..3d6587c Binary files /dev/null and b/flags/flags-iso/shiny/64/_mars.png differ diff --git a/flags/flags-iso/shiny/64/_nagorno-karabakh.png b/flags/flags-iso/shiny/64/_nagorno-karabakh.png new file mode 100644 index 0000000..a2f67d4 Binary files /dev/null and b/flags/flags-iso/shiny/64/_nagorno-karabakh.png differ diff --git a/flags/flags-iso/shiny/64/_nato.png b/flags/flags-iso/shiny/64/_nato.png new file mode 100644 index 0000000..81b720b Binary files /dev/null and b/flags/flags-iso/shiny/64/_nato.png differ diff --git a/flags/flags-iso/shiny/64/_northern-cyprus.png b/flags/flags-iso/shiny/64/_northern-cyprus.png new file mode 100644 index 0000000..589b62a Binary files /dev/null and b/flags/flags-iso/shiny/64/_northern-cyprus.png differ diff --git a/flags/flags-iso/shiny/64/_olympics.png b/flags/flags-iso/shiny/64/_olympics.png new file mode 100644 index 0000000..25c9fc0 Binary files /dev/null and b/flags/flags-iso/shiny/64/_olympics.png differ diff --git a/flags/flags-iso/shiny/64/_red-cross.png b/flags/flags-iso/shiny/64/_red-cross.png new file mode 100644 index 0000000..f824705 Binary files /dev/null and b/flags/flags-iso/shiny/64/_red-cross.png differ diff --git a/flags/flags-iso/shiny/64/_scotland.png b/flags/flags-iso/shiny/64/_scotland.png new file mode 100644 index 0000000..925ddca Binary files /dev/null and b/flags/flags-iso/shiny/64/_scotland.png differ diff --git a/flags/flags-iso/shiny/64/_somaliland.png b/flags/flags-iso/shiny/64/_somaliland.png new file mode 100644 index 0000000..299383d Binary files /dev/null and b/flags/flags-iso/shiny/64/_somaliland.png differ diff --git a/flags/flags-iso/shiny/64/_south-ossetia.png b/flags/flags-iso/shiny/64/_south-ossetia.png new file mode 100644 index 0000000..eb301e2 Binary files /dev/null and b/flags/flags-iso/shiny/64/_south-ossetia.png differ diff --git a/flags/flags-iso/shiny/64/_united-nations.png b/flags/flags-iso/shiny/64/_united-nations.png new file mode 100644 index 0000000..4fe1bfe Binary files /dev/null and b/flags/flags-iso/shiny/64/_united-nations.png differ diff --git a/flags/flags-iso/shiny/64/_wales.png b/flags/flags-iso/shiny/64/_wales.png new file mode 100644 index 0000000..ba86125 Binary files /dev/null and b/flags/flags-iso/shiny/64/_wales.png differ diff --git a/flags/flags-iso/shiny/icns/.icns b/flags/flags-iso/shiny/icns/.icns new file mode 100644 index 0000000..5a129f7 Binary files /dev/null and b/flags/flags-iso/shiny/icns/.icns differ diff --git a/flags/flags-iso/shiny/icns/AD.icns b/flags/flags-iso/shiny/icns/AD.icns new file mode 100644 index 0000000..e872060 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AD.icns differ diff --git a/flags/flags-iso/shiny/icns/AE.icns b/flags/flags-iso/shiny/icns/AE.icns new file mode 100644 index 0000000..2f07f3f Binary files /dev/null and b/flags/flags-iso/shiny/icns/AE.icns differ diff --git a/flags/flags-iso/shiny/icns/AF.icns b/flags/flags-iso/shiny/icns/AF.icns new file mode 100644 index 0000000..5681b16 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AF.icns differ diff --git a/flags/flags-iso/shiny/icns/AG.icns b/flags/flags-iso/shiny/icns/AG.icns new file mode 100644 index 0000000..8ea6a42 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AG.icns differ diff --git a/flags/flags-iso/shiny/icns/AI.icns b/flags/flags-iso/shiny/icns/AI.icns new file mode 100644 index 0000000..b749858 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AI.icns differ diff --git a/flags/flags-iso/shiny/icns/AL.icns b/flags/flags-iso/shiny/icns/AL.icns new file mode 100644 index 0000000..f46e018 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AL.icns differ diff --git a/flags/flags-iso/shiny/icns/AM.icns b/flags/flags-iso/shiny/icns/AM.icns new file mode 100644 index 0000000..960632f Binary files /dev/null and b/flags/flags-iso/shiny/icns/AM.icns differ diff --git a/flags/flags-iso/shiny/icns/AN.icns b/flags/flags-iso/shiny/icns/AN.icns new file mode 100644 index 0000000..6965e12 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AN.icns differ diff --git a/flags/flags-iso/shiny/icns/AO.icns b/flags/flags-iso/shiny/icns/AO.icns new file mode 100644 index 0000000..335768d Binary files /dev/null and b/flags/flags-iso/shiny/icns/AO.icns differ diff --git a/flags/flags-iso/shiny/icns/AQ.icns b/flags/flags-iso/shiny/icns/AQ.icns new file mode 100644 index 0000000..55e6f52 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AQ.icns differ diff --git a/flags/flags-iso/shiny/icns/AR.icns b/flags/flags-iso/shiny/icns/AR.icns new file mode 100644 index 0000000..1ecf6bc Binary files /dev/null and b/flags/flags-iso/shiny/icns/AR.icns differ diff --git a/flags/flags-iso/shiny/icns/AS.icns b/flags/flags-iso/shiny/icns/AS.icns new file mode 100644 index 0000000..808a71e Binary files /dev/null and b/flags/flags-iso/shiny/icns/AS.icns differ diff --git a/flags/flags-iso/shiny/icns/AT.icns b/flags/flags-iso/shiny/icns/AT.icns new file mode 100644 index 0000000..4873c90 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AT.icns differ diff --git a/flags/flags-iso/shiny/icns/AU.icns b/flags/flags-iso/shiny/icns/AU.icns new file mode 100644 index 0000000..2ebd4d0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AU.icns differ diff --git a/flags/flags-iso/shiny/icns/AW.icns b/flags/flags-iso/shiny/icns/AW.icns new file mode 100644 index 0000000..cf34643 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AW.icns differ diff --git a/flags/flags-iso/shiny/icns/AX.icns b/flags/flags-iso/shiny/icns/AX.icns new file mode 100644 index 0000000..e9521e0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AX.icns differ diff --git a/flags/flags-iso/shiny/icns/AZ.icns b/flags/flags-iso/shiny/icns/AZ.icns new file mode 100644 index 0000000..96468e0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/AZ.icns differ diff --git a/flags/flags-iso/shiny/icns/BA.icns b/flags/flags-iso/shiny/icns/BA.icns new file mode 100644 index 0000000..5b91cb6 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BA.icns differ diff --git a/flags/flags-iso/shiny/icns/BB.icns b/flags/flags-iso/shiny/icns/BB.icns new file mode 100644 index 0000000..f137a75 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BB.icns differ diff --git a/flags/flags-iso/shiny/icns/BD.icns b/flags/flags-iso/shiny/icns/BD.icns new file mode 100644 index 0000000..ebb6fe6 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BD.icns differ diff --git a/flags/flags-iso/shiny/icns/BE.icns b/flags/flags-iso/shiny/icns/BE.icns new file mode 100644 index 0000000..4ae81c4 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BE.icns differ diff --git a/flags/flags-iso/shiny/icns/BF.icns b/flags/flags-iso/shiny/icns/BF.icns new file mode 100644 index 0000000..45b9ba3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BF.icns differ diff --git a/flags/flags-iso/shiny/icns/BG.icns b/flags/flags-iso/shiny/icns/BG.icns new file mode 100644 index 0000000..0647bd0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BG.icns differ diff --git a/flags/flags-iso/shiny/icns/BH.icns b/flags/flags-iso/shiny/icns/BH.icns new file mode 100644 index 0000000..6340873 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BH.icns differ diff --git a/flags/flags-iso/shiny/icns/BI.icns b/flags/flags-iso/shiny/icns/BI.icns new file mode 100644 index 0000000..8e1c902 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BI.icns differ diff --git a/flags/flags-iso/shiny/icns/BJ.icns b/flags/flags-iso/shiny/icns/BJ.icns new file mode 100644 index 0000000..e260f0b Binary files /dev/null and b/flags/flags-iso/shiny/icns/BJ.icns differ diff --git a/flags/flags-iso/shiny/icns/BL.icns b/flags/flags-iso/shiny/icns/BL.icns new file mode 100644 index 0000000..73780f9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BL.icns differ diff --git a/flags/flags-iso/shiny/icns/BM.icns b/flags/flags-iso/shiny/icns/BM.icns new file mode 100644 index 0000000..c21c322 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BM.icns differ diff --git a/flags/flags-iso/shiny/icns/BN.icns b/flags/flags-iso/shiny/icns/BN.icns new file mode 100644 index 0000000..bd3cdc0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BN.icns differ diff --git a/flags/flags-iso/shiny/icns/BO.icns b/flags/flags-iso/shiny/icns/BO.icns new file mode 100644 index 0000000..9877af0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BO.icns differ diff --git a/flags/flags-iso/shiny/icns/BR.icns b/flags/flags-iso/shiny/icns/BR.icns new file mode 100644 index 0000000..3c97992 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BR.icns differ diff --git a/flags/flags-iso/shiny/icns/BS.icns b/flags/flags-iso/shiny/icns/BS.icns new file mode 100644 index 0000000..d499ed5 Binary files /dev/null and b/flags/flags-iso/shiny/icns/BS.icns differ diff --git a/flags/flags-iso/shiny/icns/BT.icns b/flags/flags-iso/shiny/icns/BT.icns new file mode 100644 index 0000000..b19d5ee Binary files /dev/null and b/flags/flags-iso/shiny/icns/BT.icns differ diff --git a/flags/flags-iso/shiny/icns/BW.icns b/flags/flags-iso/shiny/icns/BW.icns new file mode 100644 index 0000000..c22ce7a Binary files /dev/null and b/flags/flags-iso/shiny/icns/BW.icns differ diff --git a/flags/flags-iso/shiny/icns/BY.icns b/flags/flags-iso/shiny/icns/BY.icns new file mode 100644 index 0000000..dc650ff Binary files /dev/null and b/flags/flags-iso/shiny/icns/BY.icns differ diff --git a/flags/flags-iso/shiny/icns/BZ.icns b/flags/flags-iso/shiny/icns/BZ.icns new file mode 100644 index 0000000..403ab0c Binary files /dev/null and b/flags/flags-iso/shiny/icns/BZ.icns differ diff --git a/flags/flags-iso/shiny/icns/CA.icns b/flags/flags-iso/shiny/icns/CA.icns new file mode 100644 index 0000000..73bcf29 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CA.icns differ diff --git a/flags/flags-iso/shiny/icns/CC.icns b/flags/flags-iso/shiny/icns/CC.icns new file mode 100644 index 0000000..46e21a6 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CC.icns differ diff --git a/flags/flags-iso/shiny/icns/CD.icns b/flags/flags-iso/shiny/icns/CD.icns new file mode 100644 index 0000000..84e1863 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CD.icns differ diff --git a/flags/flags-iso/shiny/icns/CF.icns b/flags/flags-iso/shiny/icns/CF.icns new file mode 100644 index 0000000..6c75b22 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CF.icns differ diff --git a/flags/flags-iso/shiny/icns/CG.icns b/flags/flags-iso/shiny/icns/CG.icns new file mode 100644 index 0000000..b69c19a Binary files /dev/null and b/flags/flags-iso/shiny/icns/CG.icns differ diff --git a/flags/flags-iso/shiny/icns/CH.icns b/flags/flags-iso/shiny/icns/CH.icns new file mode 100644 index 0000000..d05a9dd Binary files /dev/null and b/flags/flags-iso/shiny/icns/CH.icns differ diff --git a/flags/flags-iso/shiny/icns/CI.icns b/flags/flags-iso/shiny/icns/CI.icns new file mode 100644 index 0000000..b4c5c32 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CI.icns differ diff --git a/flags/flags-iso/shiny/icns/CK.icns b/flags/flags-iso/shiny/icns/CK.icns new file mode 100644 index 0000000..4a3bb6c Binary files /dev/null and b/flags/flags-iso/shiny/icns/CK.icns differ diff --git a/flags/flags-iso/shiny/icns/CL.icns b/flags/flags-iso/shiny/icns/CL.icns new file mode 100644 index 0000000..9d12f7e Binary files /dev/null and b/flags/flags-iso/shiny/icns/CL.icns differ diff --git a/flags/flags-iso/shiny/icns/CM.icns b/flags/flags-iso/shiny/icns/CM.icns new file mode 100644 index 0000000..4af902a Binary files /dev/null and b/flags/flags-iso/shiny/icns/CM.icns differ diff --git a/flags/flags-iso/shiny/icns/CN.icns b/flags/flags-iso/shiny/icns/CN.icns new file mode 100644 index 0000000..02c661a Binary files /dev/null and b/flags/flags-iso/shiny/icns/CN.icns differ diff --git a/flags/flags-iso/shiny/icns/CO.icns b/flags/flags-iso/shiny/icns/CO.icns new file mode 100644 index 0000000..e77ec9d Binary files /dev/null and b/flags/flags-iso/shiny/icns/CO.icns differ diff --git a/flags/flags-iso/shiny/icns/CR.icns b/flags/flags-iso/shiny/icns/CR.icns new file mode 100644 index 0000000..2839d4e Binary files /dev/null and b/flags/flags-iso/shiny/icns/CR.icns differ diff --git a/flags/flags-iso/shiny/icns/CU.icns b/flags/flags-iso/shiny/icns/CU.icns new file mode 100644 index 0000000..bdb4368 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CU.icns differ diff --git a/flags/flags-iso/shiny/icns/CV.icns b/flags/flags-iso/shiny/icns/CV.icns new file mode 100644 index 0000000..10dc17a Binary files /dev/null and b/flags/flags-iso/shiny/icns/CV.icns differ diff --git a/flags/flags-iso/shiny/icns/CX.icns b/flags/flags-iso/shiny/icns/CX.icns new file mode 100644 index 0000000..5dac757 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CX.icns differ diff --git a/flags/flags-iso/shiny/icns/CY.icns b/flags/flags-iso/shiny/icns/CY.icns new file mode 100644 index 0000000..f0e400e Binary files /dev/null and b/flags/flags-iso/shiny/icns/CY.icns differ diff --git a/flags/flags-iso/shiny/icns/CZ.icns b/flags/flags-iso/shiny/icns/CZ.icns new file mode 100644 index 0000000..92808d8 Binary files /dev/null and b/flags/flags-iso/shiny/icns/CZ.icns differ diff --git a/flags/flags-iso/shiny/icns/DE.icns b/flags/flags-iso/shiny/icns/DE.icns new file mode 100644 index 0000000..6cecc75 Binary files /dev/null and b/flags/flags-iso/shiny/icns/DE.icns differ diff --git a/flags/flags-iso/shiny/icns/DJ.icns b/flags/flags-iso/shiny/icns/DJ.icns new file mode 100644 index 0000000..6d139c0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/DJ.icns differ diff --git a/flags/flags-iso/shiny/icns/DK.icns b/flags/flags-iso/shiny/icns/DK.icns new file mode 100644 index 0000000..792266c Binary files /dev/null and b/flags/flags-iso/shiny/icns/DK.icns differ diff --git a/flags/flags-iso/shiny/icns/DM.icns b/flags/flags-iso/shiny/icns/DM.icns new file mode 100644 index 0000000..e813ca1 Binary files /dev/null and b/flags/flags-iso/shiny/icns/DM.icns differ diff --git a/flags/flags-iso/shiny/icns/DO.icns b/flags/flags-iso/shiny/icns/DO.icns new file mode 100644 index 0000000..ea7a1e5 Binary files /dev/null and b/flags/flags-iso/shiny/icns/DO.icns differ diff --git a/flags/flags-iso/shiny/icns/DZ.icns b/flags/flags-iso/shiny/icns/DZ.icns new file mode 100644 index 0000000..c3ac1d9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/DZ.icns differ diff --git a/flags/flags-iso/shiny/icns/EC.icns b/flags/flags-iso/shiny/icns/EC.icns new file mode 100644 index 0000000..2ad82b2 Binary files /dev/null and b/flags/flags-iso/shiny/icns/EC.icns differ diff --git a/flags/flags-iso/shiny/icns/EE.icns b/flags/flags-iso/shiny/icns/EE.icns new file mode 100644 index 0000000..2d8458f Binary files /dev/null and b/flags/flags-iso/shiny/icns/EE.icns differ diff --git a/flags/flags-iso/shiny/icns/EG.icns b/flags/flags-iso/shiny/icns/EG.icns new file mode 100644 index 0000000..389f4d9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/EG.icns differ diff --git a/flags/flags-iso/shiny/icns/EH.icns b/flags/flags-iso/shiny/icns/EH.icns new file mode 100644 index 0000000..044d756 Binary files /dev/null and b/flags/flags-iso/shiny/icns/EH.icns differ diff --git a/flags/flags-iso/shiny/icns/ER.icns b/flags/flags-iso/shiny/icns/ER.icns new file mode 100644 index 0000000..1b4a968 Binary files /dev/null and b/flags/flags-iso/shiny/icns/ER.icns differ diff --git a/flags/flags-iso/shiny/icns/ES.icns b/flags/flags-iso/shiny/icns/ES.icns new file mode 100644 index 0000000..07f15b8 Binary files /dev/null and b/flags/flags-iso/shiny/icns/ES.icns differ diff --git a/flags/flags-iso/shiny/icns/ET.icns b/flags/flags-iso/shiny/icns/ET.icns new file mode 100644 index 0000000..213b740 Binary files /dev/null and b/flags/flags-iso/shiny/icns/ET.icns differ diff --git a/flags/flags-iso/shiny/icns/EU.icns b/flags/flags-iso/shiny/icns/EU.icns new file mode 100644 index 0000000..ba193fa Binary files /dev/null and b/flags/flags-iso/shiny/icns/EU.icns differ diff --git a/flags/flags-iso/shiny/icns/FI.icns b/flags/flags-iso/shiny/icns/FI.icns new file mode 100644 index 0000000..31e6658 Binary files /dev/null and b/flags/flags-iso/shiny/icns/FI.icns differ diff --git a/flags/flags-iso/shiny/icns/FJ.icns b/flags/flags-iso/shiny/icns/FJ.icns new file mode 100644 index 0000000..ba3a78e Binary files /dev/null and b/flags/flags-iso/shiny/icns/FJ.icns differ diff --git a/flags/flags-iso/shiny/icns/FK.icns b/flags/flags-iso/shiny/icns/FK.icns new file mode 100644 index 0000000..ff1ea16 Binary files /dev/null and b/flags/flags-iso/shiny/icns/FK.icns differ diff --git a/flags/flags-iso/shiny/icns/FM.icns b/flags/flags-iso/shiny/icns/FM.icns new file mode 100644 index 0000000..71f0ac6 Binary files /dev/null and b/flags/flags-iso/shiny/icns/FM.icns differ diff --git a/flags/flags-iso/shiny/icns/FO.icns b/flags/flags-iso/shiny/icns/FO.icns new file mode 100644 index 0000000..942c727 Binary files /dev/null and b/flags/flags-iso/shiny/icns/FO.icns differ diff --git a/flags/flags-iso/shiny/icns/FR.icns b/flags/flags-iso/shiny/icns/FR.icns new file mode 100644 index 0000000..ce10625 Binary files /dev/null and b/flags/flags-iso/shiny/icns/FR.icns differ diff --git a/flags/flags-iso/shiny/icns/GA.icns b/flags/flags-iso/shiny/icns/GA.icns new file mode 100644 index 0000000..a16d073 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GA.icns differ diff --git a/flags/flags-iso/shiny/icns/GB.icns b/flags/flags-iso/shiny/icns/GB.icns new file mode 100644 index 0000000..1b993e3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GB.icns differ diff --git a/flags/flags-iso/shiny/icns/GD.icns b/flags/flags-iso/shiny/icns/GD.icns new file mode 100644 index 0000000..b7ce9e9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GD.icns differ diff --git a/flags/flags-iso/shiny/icns/GE.icns b/flags/flags-iso/shiny/icns/GE.icns new file mode 100644 index 0000000..a90715d Binary files /dev/null and b/flags/flags-iso/shiny/icns/GE.icns differ diff --git a/flags/flags-iso/shiny/icns/GG.icns b/flags/flags-iso/shiny/icns/GG.icns new file mode 100644 index 0000000..4bbb78e Binary files /dev/null and b/flags/flags-iso/shiny/icns/GG.icns differ diff --git a/flags/flags-iso/shiny/icns/GH.icns b/flags/flags-iso/shiny/icns/GH.icns new file mode 100644 index 0000000..f09acb1 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GH.icns differ diff --git a/flags/flags-iso/shiny/icns/GI.icns b/flags/flags-iso/shiny/icns/GI.icns new file mode 100644 index 0000000..8356a48 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GI.icns differ diff --git a/flags/flags-iso/shiny/icns/GL.icns b/flags/flags-iso/shiny/icns/GL.icns new file mode 100644 index 0000000..9480c37 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GL.icns differ diff --git a/flags/flags-iso/shiny/icns/GM.icns b/flags/flags-iso/shiny/icns/GM.icns new file mode 100644 index 0000000..cc47114 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GM.icns differ diff --git a/flags/flags-iso/shiny/icns/GN.icns b/flags/flags-iso/shiny/icns/GN.icns new file mode 100644 index 0000000..6c34616 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GN.icns differ diff --git a/flags/flags-iso/shiny/icns/GQ.icns b/flags/flags-iso/shiny/icns/GQ.icns new file mode 100644 index 0000000..ab903a3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GQ.icns differ diff --git a/flags/flags-iso/shiny/icns/GR.icns b/flags/flags-iso/shiny/icns/GR.icns new file mode 100644 index 0000000..69c9a53 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GR.icns differ diff --git a/flags/flags-iso/shiny/icns/GS.icns b/flags/flags-iso/shiny/icns/GS.icns new file mode 100644 index 0000000..60a4d58 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GS.icns differ diff --git a/flags/flags-iso/shiny/icns/GT.icns b/flags/flags-iso/shiny/icns/GT.icns new file mode 100644 index 0000000..6caba8f Binary files /dev/null and b/flags/flags-iso/shiny/icns/GT.icns differ diff --git a/flags/flags-iso/shiny/icns/GU.icns b/flags/flags-iso/shiny/icns/GU.icns new file mode 100644 index 0000000..30fedb8 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GU.icns differ diff --git a/flags/flags-iso/shiny/icns/GW.icns b/flags/flags-iso/shiny/icns/GW.icns new file mode 100644 index 0000000..747ddc5 Binary files /dev/null and b/flags/flags-iso/shiny/icns/GW.icns differ diff --git a/flags/flags-iso/shiny/icns/GY.icns b/flags/flags-iso/shiny/icns/GY.icns new file mode 100644 index 0000000..345695a Binary files /dev/null and b/flags/flags-iso/shiny/icns/GY.icns differ diff --git a/flags/flags-iso/shiny/icns/HK.icns b/flags/flags-iso/shiny/icns/HK.icns new file mode 100644 index 0000000..2c0d92d Binary files /dev/null and b/flags/flags-iso/shiny/icns/HK.icns differ diff --git a/flags/flags-iso/shiny/icns/HN.icns b/flags/flags-iso/shiny/icns/HN.icns new file mode 100644 index 0000000..08a93e9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/HN.icns differ diff --git a/flags/flags-iso/shiny/icns/HR.icns b/flags/flags-iso/shiny/icns/HR.icns new file mode 100644 index 0000000..c6dccc9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/HR.icns differ diff --git a/flags/flags-iso/shiny/icns/HT.icns b/flags/flags-iso/shiny/icns/HT.icns new file mode 100644 index 0000000..aa67664 Binary files /dev/null and b/flags/flags-iso/shiny/icns/HT.icns differ diff --git a/flags/flags-iso/shiny/icns/HU.icns b/flags/flags-iso/shiny/icns/HU.icns new file mode 100644 index 0000000..59fce06 Binary files /dev/null and b/flags/flags-iso/shiny/icns/HU.icns differ diff --git a/flags/flags-iso/shiny/icns/ID.icns b/flags/flags-iso/shiny/icns/ID.icns new file mode 100644 index 0000000..800113d Binary files /dev/null and b/flags/flags-iso/shiny/icns/ID.icns differ diff --git a/flags/flags-iso/shiny/icns/IE.icns b/flags/flags-iso/shiny/icns/IE.icns new file mode 100644 index 0000000..3fc88a3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/IE.icns differ diff --git a/flags/flags-iso/shiny/icns/IL.icns b/flags/flags-iso/shiny/icns/IL.icns new file mode 100644 index 0000000..ddc09b8 Binary files /dev/null and b/flags/flags-iso/shiny/icns/IL.icns differ diff --git a/flags/flags-iso/shiny/icns/IM.icns b/flags/flags-iso/shiny/icns/IM.icns new file mode 100644 index 0000000..3cc499c Binary files /dev/null and b/flags/flags-iso/shiny/icns/IM.icns differ diff --git a/flags/flags-iso/shiny/icns/IN.icns b/flags/flags-iso/shiny/icns/IN.icns new file mode 100644 index 0000000..38ccb4f Binary files /dev/null and b/flags/flags-iso/shiny/icns/IN.icns differ diff --git a/flags/flags-iso/shiny/icns/IQ.icns b/flags/flags-iso/shiny/icns/IQ.icns new file mode 100644 index 0000000..4ac722c Binary files /dev/null and b/flags/flags-iso/shiny/icns/IQ.icns differ diff --git a/flags/flags-iso/shiny/icns/IR.icns b/flags/flags-iso/shiny/icns/IR.icns new file mode 100644 index 0000000..337df75 Binary files /dev/null and b/flags/flags-iso/shiny/icns/IR.icns differ diff --git a/flags/flags-iso/shiny/icns/IS.icns b/flags/flags-iso/shiny/icns/IS.icns new file mode 100644 index 0000000..48f12fc Binary files /dev/null and b/flags/flags-iso/shiny/icns/IS.icns differ diff --git a/flags/flags-iso/shiny/icns/IT.icns b/flags/flags-iso/shiny/icns/IT.icns new file mode 100644 index 0000000..8ae1a70 Binary files /dev/null and b/flags/flags-iso/shiny/icns/IT.icns differ diff --git a/flags/flags-iso/shiny/icns/JE.icns b/flags/flags-iso/shiny/icns/JE.icns new file mode 100644 index 0000000..a77d713 Binary files /dev/null and b/flags/flags-iso/shiny/icns/JE.icns differ diff --git a/flags/flags-iso/shiny/icns/JM.icns b/flags/flags-iso/shiny/icns/JM.icns new file mode 100644 index 0000000..285ca0f Binary files /dev/null and b/flags/flags-iso/shiny/icns/JM.icns differ diff --git a/flags/flags-iso/shiny/icns/JO.icns b/flags/flags-iso/shiny/icns/JO.icns new file mode 100644 index 0000000..3671da4 Binary files /dev/null and b/flags/flags-iso/shiny/icns/JO.icns differ diff --git a/flags/flags-iso/shiny/icns/JP.icns b/flags/flags-iso/shiny/icns/JP.icns new file mode 100644 index 0000000..be8ba9c Binary files /dev/null and b/flags/flags-iso/shiny/icns/JP.icns differ diff --git a/flags/flags-iso/shiny/icns/KE.icns b/flags/flags-iso/shiny/icns/KE.icns new file mode 100644 index 0000000..5b4a9ec Binary files /dev/null and b/flags/flags-iso/shiny/icns/KE.icns differ diff --git a/flags/flags-iso/shiny/icns/KG.icns b/flags/flags-iso/shiny/icns/KG.icns new file mode 100644 index 0000000..0f6819d Binary files /dev/null and b/flags/flags-iso/shiny/icns/KG.icns differ diff --git a/flags/flags-iso/shiny/icns/KH.icns b/flags/flags-iso/shiny/icns/KH.icns new file mode 100644 index 0000000..f57e558 Binary files /dev/null and b/flags/flags-iso/shiny/icns/KH.icns differ diff --git a/flags/flags-iso/shiny/icns/KI.icns b/flags/flags-iso/shiny/icns/KI.icns new file mode 100644 index 0000000..6a27cda Binary files /dev/null and b/flags/flags-iso/shiny/icns/KI.icns differ diff --git a/flags/flags-iso/shiny/icns/KM.icns b/flags/flags-iso/shiny/icns/KM.icns new file mode 100644 index 0000000..ef79d25 Binary files /dev/null and b/flags/flags-iso/shiny/icns/KM.icns differ diff --git a/flags/flags-iso/shiny/icns/KN.icns b/flags/flags-iso/shiny/icns/KN.icns new file mode 100644 index 0000000..e1315b4 Binary files /dev/null and b/flags/flags-iso/shiny/icns/KN.icns differ diff --git a/flags/flags-iso/shiny/icns/KP.icns b/flags/flags-iso/shiny/icns/KP.icns new file mode 100644 index 0000000..b058f10 Binary files /dev/null and b/flags/flags-iso/shiny/icns/KP.icns differ diff --git a/flags/flags-iso/shiny/icns/KR.icns b/flags/flags-iso/shiny/icns/KR.icns new file mode 100644 index 0000000..90d83da Binary files /dev/null and b/flags/flags-iso/shiny/icns/KR.icns differ diff --git a/flags/flags-iso/shiny/icns/KW.icns b/flags/flags-iso/shiny/icns/KW.icns new file mode 100644 index 0000000..b836aeb Binary files /dev/null and b/flags/flags-iso/shiny/icns/KW.icns differ diff --git a/flags/flags-iso/shiny/icns/KY.icns b/flags/flags-iso/shiny/icns/KY.icns new file mode 100644 index 0000000..92c60e9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/KY.icns differ diff --git a/flags/flags-iso/shiny/icns/KZ.icns b/flags/flags-iso/shiny/icns/KZ.icns new file mode 100644 index 0000000..1166a89 Binary files /dev/null and b/flags/flags-iso/shiny/icns/KZ.icns differ diff --git a/flags/flags-iso/shiny/icns/LA.icns b/flags/flags-iso/shiny/icns/LA.icns new file mode 100644 index 0000000..feef83e Binary files /dev/null and b/flags/flags-iso/shiny/icns/LA.icns differ diff --git a/flags/flags-iso/shiny/icns/LB.icns b/flags/flags-iso/shiny/icns/LB.icns new file mode 100644 index 0000000..52cad55 Binary files /dev/null and b/flags/flags-iso/shiny/icns/LB.icns differ diff --git a/flags/flags-iso/shiny/icns/LC.icns b/flags/flags-iso/shiny/icns/LC.icns new file mode 100644 index 0000000..bd6c56d Binary files /dev/null and b/flags/flags-iso/shiny/icns/LC.icns differ diff --git a/flags/flags-iso/shiny/icns/LI.icns b/flags/flags-iso/shiny/icns/LI.icns new file mode 100644 index 0000000..fa4098d Binary files /dev/null and b/flags/flags-iso/shiny/icns/LI.icns differ diff --git a/flags/flags-iso/shiny/icns/LK.icns b/flags/flags-iso/shiny/icns/LK.icns new file mode 100644 index 0000000..a528f7e Binary files /dev/null and b/flags/flags-iso/shiny/icns/LK.icns differ diff --git a/flags/flags-iso/shiny/icns/LR.icns b/flags/flags-iso/shiny/icns/LR.icns new file mode 100644 index 0000000..4e86184 Binary files /dev/null and b/flags/flags-iso/shiny/icns/LR.icns differ diff --git a/flags/flags-iso/shiny/icns/LS.icns b/flags/flags-iso/shiny/icns/LS.icns new file mode 100644 index 0000000..951a3bf Binary files /dev/null and b/flags/flags-iso/shiny/icns/LS.icns differ diff --git a/flags/flags-iso/shiny/icns/LT.icns b/flags/flags-iso/shiny/icns/LT.icns new file mode 100644 index 0000000..54dccf9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/LT.icns differ diff --git a/flags/flags-iso/shiny/icns/LU.icns b/flags/flags-iso/shiny/icns/LU.icns new file mode 100644 index 0000000..745aab0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/LU.icns differ diff --git a/flags/flags-iso/shiny/icns/LV.icns b/flags/flags-iso/shiny/icns/LV.icns new file mode 100644 index 0000000..d83a40d Binary files /dev/null and b/flags/flags-iso/shiny/icns/LV.icns differ diff --git a/flags/flags-iso/shiny/icns/LY.icns b/flags/flags-iso/shiny/icns/LY.icns new file mode 100644 index 0000000..668e699 Binary files /dev/null and b/flags/flags-iso/shiny/icns/LY.icns differ diff --git a/flags/flags-iso/shiny/icns/MA.icns b/flags/flags-iso/shiny/icns/MA.icns new file mode 100644 index 0000000..e09ce32 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MA.icns differ diff --git a/flags/flags-iso/shiny/icns/MC.icns b/flags/flags-iso/shiny/icns/MC.icns new file mode 100644 index 0000000..800113d Binary files /dev/null and b/flags/flags-iso/shiny/icns/MC.icns differ diff --git a/flags/flags-iso/shiny/icns/MD.icns b/flags/flags-iso/shiny/icns/MD.icns new file mode 100644 index 0000000..5faf0bd Binary files /dev/null and b/flags/flags-iso/shiny/icns/MD.icns differ diff --git a/flags/flags-iso/shiny/icns/ME.icns b/flags/flags-iso/shiny/icns/ME.icns new file mode 100644 index 0000000..ac9df89 Binary files /dev/null and b/flags/flags-iso/shiny/icns/ME.icns differ diff --git a/flags/flags-iso/shiny/icns/MG.icns b/flags/flags-iso/shiny/icns/MG.icns new file mode 100644 index 0000000..3110015 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MG.icns differ diff --git a/flags/flags-iso/shiny/icns/MH.icns b/flags/flags-iso/shiny/icns/MH.icns new file mode 100644 index 0000000..31904fd Binary files /dev/null and b/flags/flags-iso/shiny/icns/MH.icns differ diff --git a/flags/flags-iso/shiny/icns/MK.icns b/flags/flags-iso/shiny/icns/MK.icns new file mode 100644 index 0000000..b9c136e Binary files /dev/null and b/flags/flags-iso/shiny/icns/MK.icns differ diff --git a/flags/flags-iso/shiny/icns/ML.icns b/flags/flags-iso/shiny/icns/ML.icns new file mode 100644 index 0000000..cde7db4 Binary files /dev/null and b/flags/flags-iso/shiny/icns/ML.icns differ diff --git a/flags/flags-iso/shiny/icns/MM.icns b/flags/flags-iso/shiny/icns/MM.icns new file mode 100644 index 0000000..55927de Binary files /dev/null and b/flags/flags-iso/shiny/icns/MM.icns differ diff --git a/flags/flags-iso/shiny/icns/MN.icns b/flags/flags-iso/shiny/icns/MN.icns new file mode 100644 index 0000000..96f9d54 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MN.icns differ diff --git a/flags/flags-iso/shiny/icns/MO.icns b/flags/flags-iso/shiny/icns/MO.icns new file mode 100644 index 0000000..63c85b8 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MO.icns differ diff --git a/flags/flags-iso/shiny/icns/MP.icns b/flags/flags-iso/shiny/icns/MP.icns new file mode 100644 index 0000000..6db325b Binary files /dev/null and b/flags/flags-iso/shiny/icns/MP.icns differ diff --git a/flags/flags-iso/shiny/icns/MR.icns b/flags/flags-iso/shiny/icns/MR.icns new file mode 100644 index 0000000..f51c616 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MR.icns differ diff --git a/flags/flags-iso/shiny/icns/MS.icns b/flags/flags-iso/shiny/icns/MS.icns new file mode 100644 index 0000000..64ac50f Binary files /dev/null and b/flags/flags-iso/shiny/icns/MS.icns differ diff --git a/flags/flags-iso/shiny/icns/MT.icns b/flags/flags-iso/shiny/icns/MT.icns new file mode 100644 index 0000000..7f74d79 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MT.icns differ diff --git a/flags/flags-iso/shiny/icns/MU.icns b/flags/flags-iso/shiny/icns/MU.icns new file mode 100644 index 0000000..d4b11ff Binary files /dev/null and b/flags/flags-iso/shiny/icns/MU.icns differ diff --git a/flags/flags-iso/shiny/icns/MV.icns b/flags/flags-iso/shiny/icns/MV.icns new file mode 100644 index 0000000..03424a6 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MV.icns differ diff --git a/flags/flags-iso/shiny/icns/MW.icns b/flags/flags-iso/shiny/icns/MW.icns new file mode 100644 index 0000000..7004409 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MW.icns differ diff --git a/flags/flags-iso/shiny/icns/MX.icns b/flags/flags-iso/shiny/icns/MX.icns new file mode 100644 index 0000000..3cfb6fe Binary files /dev/null and b/flags/flags-iso/shiny/icns/MX.icns differ diff --git a/flags/flags-iso/shiny/icns/MY.icns b/flags/flags-iso/shiny/icns/MY.icns new file mode 100644 index 0000000..6b64945 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MY.icns differ diff --git a/flags/flags-iso/shiny/icns/MZ.icns b/flags/flags-iso/shiny/icns/MZ.icns new file mode 100644 index 0000000..3232e43 Binary files /dev/null and b/flags/flags-iso/shiny/icns/MZ.icns differ diff --git a/flags/flags-iso/shiny/icns/NA.icns b/flags/flags-iso/shiny/icns/NA.icns new file mode 100644 index 0000000..afa823d Binary files /dev/null and b/flags/flags-iso/shiny/icns/NA.icns differ diff --git a/flags/flags-iso/shiny/icns/NC.icns b/flags/flags-iso/shiny/icns/NC.icns new file mode 100644 index 0000000..4889234 Binary files /dev/null and b/flags/flags-iso/shiny/icns/NC.icns differ diff --git a/flags/flags-iso/shiny/icns/NE.icns b/flags/flags-iso/shiny/icns/NE.icns new file mode 100644 index 0000000..16822f3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/NE.icns differ diff --git a/flags/flags-iso/shiny/icns/NF.icns b/flags/flags-iso/shiny/icns/NF.icns new file mode 100644 index 0000000..d67493b Binary files /dev/null and b/flags/flags-iso/shiny/icns/NF.icns differ diff --git a/flags/flags-iso/shiny/icns/NG.icns b/flags/flags-iso/shiny/icns/NG.icns new file mode 100644 index 0000000..281e502 Binary files /dev/null and b/flags/flags-iso/shiny/icns/NG.icns differ diff --git a/flags/flags-iso/shiny/icns/NI.icns b/flags/flags-iso/shiny/icns/NI.icns new file mode 100644 index 0000000..9d3b5e9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/NI.icns differ diff --git a/flags/flags-iso/shiny/icns/NL.icns b/flags/flags-iso/shiny/icns/NL.icns new file mode 100644 index 0000000..f8eac3e Binary files /dev/null and b/flags/flags-iso/shiny/icns/NL.icns differ diff --git a/flags/flags-iso/shiny/icns/NO.icns b/flags/flags-iso/shiny/icns/NO.icns new file mode 100644 index 0000000..21c5740 Binary files /dev/null and b/flags/flags-iso/shiny/icns/NO.icns differ diff --git a/flags/flags-iso/shiny/icns/NP.icns b/flags/flags-iso/shiny/icns/NP.icns new file mode 100644 index 0000000..318563d Binary files /dev/null and b/flags/flags-iso/shiny/icns/NP.icns differ diff --git a/flags/flags-iso/shiny/icns/NR.icns b/flags/flags-iso/shiny/icns/NR.icns new file mode 100644 index 0000000..16a65ba Binary files /dev/null and b/flags/flags-iso/shiny/icns/NR.icns differ diff --git a/flags/flags-iso/shiny/icns/NU.icns b/flags/flags-iso/shiny/icns/NU.icns new file mode 100644 index 0000000..b468e09 Binary files /dev/null and b/flags/flags-iso/shiny/icns/NU.icns differ diff --git a/flags/flags-iso/shiny/icns/NZ.icns b/flags/flags-iso/shiny/icns/NZ.icns new file mode 100644 index 0000000..c53490a Binary files /dev/null and b/flags/flags-iso/shiny/icns/NZ.icns differ diff --git a/flags/flags-iso/shiny/icns/OM.icns b/flags/flags-iso/shiny/icns/OM.icns new file mode 100644 index 0000000..abe7ff1 Binary files /dev/null and b/flags/flags-iso/shiny/icns/OM.icns differ diff --git a/flags/flags-iso/shiny/icns/PA.icns b/flags/flags-iso/shiny/icns/PA.icns new file mode 100644 index 0000000..6e7e0b6 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PA.icns differ diff --git a/flags/flags-iso/shiny/icns/PE.icns b/flags/flags-iso/shiny/icns/PE.icns new file mode 100644 index 0000000..e496a67 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PE.icns differ diff --git a/flags/flags-iso/shiny/icns/PF.icns b/flags/flags-iso/shiny/icns/PF.icns new file mode 100644 index 0000000..487e0c5 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PF.icns differ diff --git a/flags/flags-iso/shiny/icns/PG.icns b/flags/flags-iso/shiny/icns/PG.icns new file mode 100644 index 0000000..c518533 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PG.icns differ diff --git a/flags/flags-iso/shiny/icns/PH.icns b/flags/flags-iso/shiny/icns/PH.icns new file mode 100644 index 0000000..69d44e7 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PH.icns differ diff --git a/flags/flags-iso/shiny/icns/PK.icns b/flags/flags-iso/shiny/icns/PK.icns new file mode 100644 index 0000000..ff6efcd Binary files /dev/null and b/flags/flags-iso/shiny/icns/PK.icns differ diff --git a/flags/flags-iso/shiny/icns/PL.icns b/flags/flags-iso/shiny/icns/PL.icns new file mode 100644 index 0000000..13f49ca Binary files /dev/null and b/flags/flags-iso/shiny/icns/PL.icns differ diff --git a/flags/flags-iso/shiny/icns/PN.icns b/flags/flags-iso/shiny/icns/PN.icns new file mode 100644 index 0000000..f9108d9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PN.icns differ diff --git a/flags/flags-iso/shiny/icns/PR.icns b/flags/flags-iso/shiny/icns/PR.icns new file mode 100644 index 0000000..6a74f48 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PR.icns differ diff --git a/flags/flags-iso/shiny/icns/PS.icns b/flags/flags-iso/shiny/icns/PS.icns new file mode 100644 index 0000000..ab85a04 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PS.icns differ diff --git a/flags/flags-iso/shiny/icns/PT.icns b/flags/flags-iso/shiny/icns/PT.icns new file mode 100644 index 0000000..507a0bf Binary files /dev/null and b/flags/flags-iso/shiny/icns/PT.icns differ diff --git a/flags/flags-iso/shiny/icns/PW.icns b/flags/flags-iso/shiny/icns/PW.icns new file mode 100644 index 0000000..a15d64d Binary files /dev/null and b/flags/flags-iso/shiny/icns/PW.icns differ diff --git a/flags/flags-iso/shiny/icns/PY.icns b/flags/flags-iso/shiny/icns/PY.icns new file mode 100644 index 0000000..d6e75b7 Binary files /dev/null and b/flags/flags-iso/shiny/icns/PY.icns differ diff --git a/flags/flags-iso/shiny/icns/QA.icns b/flags/flags-iso/shiny/icns/QA.icns new file mode 100644 index 0000000..49eb775 Binary files /dev/null and b/flags/flags-iso/shiny/icns/QA.icns differ diff --git a/flags/flags-iso/shiny/icns/RO.icns b/flags/flags-iso/shiny/icns/RO.icns new file mode 100644 index 0000000..2cc4bca Binary files /dev/null and b/flags/flags-iso/shiny/icns/RO.icns differ diff --git a/flags/flags-iso/shiny/icns/RS.icns b/flags/flags-iso/shiny/icns/RS.icns new file mode 100644 index 0000000..0948942 Binary files /dev/null and b/flags/flags-iso/shiny/icns/RS.icns differ diff --git a/flags/flags-iso/shiny/icns/RU.icns b/flags/flags-iso/shiny/icns/RU.icns new file mode 100644 index 0000000..e858b95 Binary files /dev/null and b/flags/flags-iso/shiny/icns/RU.icns differ diff --git a/flags/flags-iso/shiny/icns/RW.icns b/flags/flags-iso/shiny/icns/RW.icns new file mode 100644 index 0000000..516a30e Binary files /dev/null and b/flags/flags-iso/shiny/icns/RW.icns differ diff --git a/flags/flags-iso/shiny/icns/SA.icns b/flags/flags-iso/shiny/icns/SA.icns new file mode 100644 index 0000000..e34b5d2 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SA.icns differ diff --git a/flags/flags-iso/shiny/icns/SB.icns b/flags/flags-iso/shiny/icns/SB.icns new file mode 100644 index 0000000..263a39c Binary files /dev/null and b/flags/flags-iso/shiny/icns/SB.icns differ diff --git a/flags/flags-iso/shiny/icns/SC.icns b/flags/flags-iso/shiny/icns/SC.icns new file mode 100644 index 0000000..5fb2a8d Binary files /dev/null and b/flags/flags-iso/shiny/icns/SC.icns differ diff --git a/flags/flags-iso/shiny/icns/SD.icns b/flags/flags-iso/shiny/icns/SD.icns new file mode 100644 index 0000000..e636519 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SD.icns differ diff --git a/flags/flags-iso/shiny/icns/SE.icns b/flags/flags-iso/shiny/icns/SE.icns new file mode 100644 index 0000000..aa112b9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SE.icns differ diff --git a/flags/flags-iso/shiny/icns/SG.icns b/flags/flags-iso/shiny/icns/SG.icns new file mode 100644 index 0000000..2da77ff Binary files /dev/null and b/flags/flags-iso/shiny/icns/SG.icns differ diff --git a/flags/flags-iso/shiny/icns/SH.icns b/flags/flags-iso/shiny/icns/SH.icns new file mode 100644 index 0000000..2033ce3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SH.icns differ diff --git a/flags/flags-iso/shiny/icns/SI.icns b/flags/flags-iso/shiny/icns/SI.icns new file mode 100644 index 0000000..f44e121 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SI.icns differ diff --git a/flags/flags-iso/shiny/icns/SK.icns b/flags/flags-iso/shiny/icns/SK.icns new file mode 100644 index 0000000..73059b3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SK.icns differ diff --git a/flags/flags-iso/shiny/icns/SL.icns b/flags/flags-iso/shiny/icns/SL.icns new file mode 100644 index 0000000..c62104d Binary files /dev/null and b/flags/flags-iso/shiny/icns/SL.icns differ diff --git a/flags/flags-iso/shiny/icns/SM.icns b/flags/flags-iso/shiny/icns/SM.icns new file mode 100644 index 0000000..1c88251 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SM.icns differ diff --git a/flags/flags-iso/shiny/icns/SN.icns b/flags/flags-iso/shiny/icns/SN.icns new file mode 100644 index 0000000..6b07fea Binary files /dev/null and b/flags/flags-iso/shiny/icns/SN.icns differ diff --git a/flags/flags-iso/shiny/icns/SO.icns b/flags/flags-iso/shiny/icns/SO.icns new file mode 100644 index 0000000..0559a51 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SO.icns differ diff --git a/flags/flags-iso/shiny/icns/SR.icns b/flags/flags-iso/shiny/icns/SR.icns new file mode 100644 index 0000000..3175d23 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SR.icns differ diff --git a/flags/flags-iso/shiny/icns/SS.icns b/flags/flags-iso/shiny/icns/SS.icns new file mode 100644 index 0000000..f0f4fda Binary files /dev/null and b/flags/flags-iso/shiny/icns/SS.icns differ diff --git a/flags/flags-iso/shiny/icns/ST.icns b/flags/flags-iso/shiny/icns/ST.icns new file mode 100644 index 0000000..1c665ec Binary files /dev/null and b/flags/flags-iso/shiny/icns/ST.icns differ diff --git a/flags/flags-iso/shiny/icns/SV.icns b/flags/flags-iso/shiny/icns/SV.icns new file mode 100644 index 0000000..feba3c8 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SV.icns differ diff --git a/flags/flags-iso/shiny/icns/SY.icns b/flags/flags-iso/shiny/icns/SY.icns new file mode 100644 index 0000000..fb78de2 Binary files /dev/null and b/flags/flags-iso/shiny/icns/SY.icns differ diff --git a/flags/flags-iso/shiny/icns/SZ.icns b/flags/flags-iso/shiny/icns/SZ.icns new file mode 100644 index 0000000..f50d34d Binary files /dev/null and b/flags/flags-iso/shiny/icns/SZ.icns differ diff --git a/flags/flags-iso/shiny/icns/TC.icns b/flags/flags-iso/shiny/icns/TC.icns new file mode 100644 index 0000000..6fe7895 Binary files /dev/null and b/flags/flags-iso/shiny/icns/TC.icns differ diff --git a/flags/flags-iso/shiny/icns/TD.icns b/flags/flags-iso/shiny/icns/TD.icns new file mode 100644 index 0000000..ba60528 Binary files /dev/null and b/flags/flags-iso/shiny/icns/TD.icns differ diff --git a/flags/flags-iso/shiny/icns/TF.icns b/flags/flags-iso/shiny/icns/TF.icns new file mode 100644 index 0000000..739a1ad Binary files /dev/null and b/flags/flags-iso/shiny/icns/TF.icns differ diff --git a/flags/flags-iso/shiny/icns/TG.icns b/flags/flags-iso/shiny/icns/TG.icns new file mode 100644 index 0000000..b6e38af Binary files /dev/null and b/flags/flags-iso/shiny/icns/TG.icns differ diff --git a/flags/flags-iso/shiny/icns/TH.icns b/flags/flags-iso/shiny/icns/TH.icns new file mode 100644 index 0000000..8e4f1ff Binary files /dev/null and b/flags/flags-iso/shiny/icns/TH.icns differ diff --git a/flags/flags-iso/shiny/icns/TJ.icns b/flags/flags-iso/shiny/icns/TJ.icns new file mode 100644 index 0000000..81bc46b Binary files /dev/null and b/flags/flags-iso/shiny/icns/TJ.icns differ diff --git a/flags/flags-iso/shiny/icns/TK.icns b/flags/flags-iso/shiny/icns/TK.icns new file mode 100644 index 0000000..af2598d Binary files /dev/null and b/flags/flags-iso/shiny/icns/TK.icns differ diff --git a/flags/flags-iso/shiny/icns/TL.icns b/flags/flags-iso/shiny/icns/TL.icns new file mode 100644 index 0000000..abc1a4a Binary files /dev/null and b/flags/flags-iso/shiny/icns/TL.icns differ diff --git a/flags/flags-iso/shiny/icns/TM.icns b/flags/flags-iso/shiny/icns/TM.icns new file mode 100644 index 0000000..d0e495c Binary files /dev/null and b/flags/flags-iso/shiny/icns/TM.icns differ diff --git a/flags/flags-iso/shiny/icns/TN.icns b/flags/flags-iso/shiny/icns/TN.icns new file mode 100644 index 0000000..80dd226 Binary files /dev/null and b/flags/flags-iso/shiny/icns/TN.icns differ diff --git a/flags/flags-iso/shiny/icns/TO.icns b/flags/flags-iso/shiny/icns/TO.icns new file mode 100644 index 0000000..a71414c Binary files /dev/null and b/flags/flags-iso/shiny/icns/TO.icns differ diff --git a/flags/flags-iso/shiny/icns/TR.icns b/flags/flags-iso/shiny/icns/TR.icns new file mode 100644 index 0000000..1d0c254 Binary files /dev/null and b/flags/flags-iso/shiny/icns/TR.icns differ diff --git a/flags/flags-iso/shiny/icns/TT.icns b/flags/flags-iso/shiny/icns/TT.icns new file mode 100644 index 0000000..57a8425 Binary files /dev/null and b/flags/flags-iso/shiny/icns/TT.icns differ diff --git a/flags/flags-iso/shiny/icns/TV.icns b/flags/flags-iso/shiny/icns/TV.icns new file mode 100644 index 0000000..30c016e Binary files /dev/null and b/flags/flags-iso/shiny/icns/TV.icns differ diff --git a/flags/flags-iso/shiny/icns/TW.icns b/flags/flags-iso/shiny/icns/TW.icns new file mode 100644 index 0000000..76a0959 Binary files /dev/null and b/flags/flags-iso/shiny/icns/TW.icns differ diff --git a/flags/flags-iso/shiny/icns/TZ.icns b/flags/flags-iso/shiny/icns/TZ.icns new file mode 100644 index 0000000..b6adfe0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/TZ.icns differ diff --git a/flags/flags-iso/shiny/icns/UA.icns b/flags/flags-iso/shiny/icns/UA.icns new file mode 100644 index 0000000..ec51fcf Binary files /dev/null and b/flags/flags-iso/shiny/icns/UA.icns differ diff --git a/flags/flags-iso/shiny/icns/UG.icns b/flags/flags-iso/shiny/icns/UG.icns new file mode 100644 index 0000000..7a9d8d8 Binary files /dev/null and b/flags/flags-iso/shiny/icns/UG.icns differ diff --git a/flags/flags-iso/shiny/icns/US.icns b/flags/flags-iso/shiny/icns/US.icns new file mode 100644 index 0000000..d03062b Binary files /dev/null and b/flags/flags-iso/shiny/icns/US.icns differ diff --git a/flags/flags-iso/shiny/icns/UY.icns b/flags/flags-iso/shiny/icns/UY.icns new file mode 100644 index 0000000..ba8f9c3 Binary files /dev/null and b/flags/flags-iso/shiny/icns/UY.icns differ diff --git a/flags/flags-iso/shiny/icns/UZ.icns b/flags/flags-iso/shiny/icns/UZ.icns new file mode 100644 index 0000000..f4291ae Binary files /dev/null and b/flags/flags-iso/shiny/icns/UZ.icns differ diff --git a/flags/flags-iso/shiny/icns/VA.icns b/flags/flags-iso/shiny/icns/VA.icns new file mode 100644 index 0000000..d08f433 Binary files /dev/null and b/flags/flags-iso/shiny/icns/VA.icns differ diff --git a/flags/flags-iso/shiny/icns/VC.icns b/flags/flags-iso/shiny/icns/VC.icns new file mode 100644 index 0000000..a29db21 Binary files /dev/null and b/flags/flags-iso/shiny/icns/VC.icns differ diff --git a/flags/flags-iso/shiny/icns/VE.icns b/flags/flags-iso/shiny/icns/VE.icns new file mode 100644 index 0000000..aa38b42 Binary files /dev/null and b/flags/flags-iso/shiny/icns/VE.icns differ diff --git a/flags/flags-iso/shiny/icns/VG.icns b/flags/flags-iso/shiny/icns/VG.icns new file mode 100644 index 0000000..096e9d0 Binary files /dev/null and b/flags/flags-iso/shiny/icns/VG.icns differ diff --git a/flags/flags-iso/shiny/icns/VI.icns b/flags/flags-iso/shiny/icns/VI.icns new file mode 100644 index 0000000..d0ddd36 Binary files /dev/null and b/flags/flags-iso/shiny/icns/VI.icns differ diff --git a/flags/flags-iso/shiny/icns/VN.icns b/flags/flags-iso/shiny/icns/VN.icns new file mode 100644 index 0000000..1b1be19 Binary files /dev/null and b/flags/flags-iso/shiny/icns/VN.icns differ diff --git a/flags/flags-iso/shiny/icns/VU.icns b/flags/flags-iso/shiny/icns/VU.icns new file mode 100644 index 0000000..9579e1b Binary files /dev/null and b/flags/flags-iso/shiny/icns/VU.icns differ diff --git a/flags/flags-iso/shiny/icns/WS.icns b/flags/flags-iso/shiny/icns/WS.icns new file mode 100644 index 0000000..ed0e5f9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/WS.icns differ diff --git a/flags/flags-iso/shiny/icns/YE.icns b/flags/flags-iso/shiny/icns/YE.icns new file mode 100644 index 0000000..05b9e48 Binary files /dev/null and b/flags/flags-iso/shiny/icns/YE.icns differ diff --git a/flags/flags-iso/shiny/icns/YT.icns b/flags/flags-iso/shiny/icns/YT.icns new file mode 100644 index 0000000..58ea917 Binary files /dev/null and b/flags/flags-iso/shiny/icns/YT.icns differ diff --git a/flags/flags-iso/shiny/icns/ZA.icns b/flags/flags-iso/shiny/icns/ZA.icns new file mode 100644 index 0000000..66404cf Binary files /dev/null and b/flags/flags-iso/shiny/icns/ZA.icns differ diff --git a/flags/flags-iso/shiny/icns/ZM.icns b/flags/flags-iso/shiny/icns/ZM.icns new file mode 100644 index 0000000..51c6556 Binary files /dev/null and b/flags/flags-iso/shiny/icns/ZM.icns differ diff --git a/flags/flags-iso/shiny/icns/ZW.icns b/flags/flags-iso/shiny/icns/ZW.icns new file mode 100644 index 0000000..3b06d2e Binary files /dev/null and b/flags/flags-iso/shiny/icns/ZW.icns differ diff --git a/flags/flags-iso/shiny/icns/_abkhazia.icns b/flags/flags-iso/shiny/icns/_abkhazia.icns new file mode 100644 index 0000000..c190acb Binary files /dev/null and b/flags/flags-iso/shiny/icns/_abkhazia.icns differ diff --git a/flags/flags-iso/shiny/icns/_british-antarctic-territory.icns b/flags/flags-iso/shiny/icns/_british-antarctic-territory.icns new file mode 100644 index 0000000..30e9b2f Binary files /dev/null and b/flags/flags-iso/shiny/icns/_british-antarctic-territory.icns differ diff --git a/flags/flags-iso/shiny/icns/_commonwealth.icns b/flags/flags-iso/shiny/icns/_commonwealth.icns new file mode 100644 index 0000000..2228d8d Binary files /dev/null and b/flags/flags-iso/shiny/icns/_commonwealth.icns differ diff --git a/flags/flags-iso/shiny/icns/_england.icns b/flags/flags-iso/shiny/icns/_england.icns new file mode 100644 index 0000000..209688b Binary files /dev/null and b/flags/flags-iso/shiny/icns/_england.icns differ diff --git a/flags/flags-iso/shiny/icns/_gosquared.icns b/flags/flags-iso/shiny/icns/_gosquared.icns new file mode 100644 index 0000000..449e632 Binary files /dev/null and b/flags/flags-iso/shiny/icns/_gosquared.icns differ diff --git a/flags/flags-iso/shiny/icns/_kosovo.icns b/flags/flags-iso/shiny/icns/_kosovo.icns new file mode 100644 index 0000000..2bccaa9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/_kosovo.icns differ diff --git a/flags/flags-iso/shiny/icns/_mars.icns b/flags/flags-iso/shiny/icns/_mars.icns new file mode 100644 index 0000000..a0a8d6d Binary files /dev/null and b/flags/flags-iso/shiny/icns/_mars.icns differ diff --git a/flags/flags-iso/shiny/icns/_nagorno-karabakh.icns b/flags/flags-iso/shiny/icns/_nagorno-karabakh.icns new file mode 100644 index 0000000..4ce8f4e Binary files /dev/null and b/flags/flags-iso/shiny/icns/_nagorno-karabakh.icns differ diff --git a/flags/flags-iso/shiny/icns/_nato.icns b/flags/flags-iso/shiny/icns/_nato.icns new file mode 100644 index 0000000..43f966f Binary files /dev/null and b/flags/flags-iso/shiny/icns/_nato.icns differ diff --git a/flags/flags-iso/shiny/icns/_northern-cyprus.icns b/flags/flags-iso/shiny/icns/_northern-cyprus.icns new file mode 100644 index 0000000..3900fc9 Binary files /dev/null and b/flags/flags-iso/shiny/icns/_northern-cyprus.icns differ diff --git a/flags/flags-iso/shiny/icns/_olympics.icns b/flags/flags-iso/shiny/icns/_olympics.icns new file mode 100644 index 0000000..8dd2a43 Binary files /dev/null and b/flags/flags-iso/shiny/icns/_olympics.icns differ diff --git a/flags/flags-iso/shiny/icns/_red-cross.icns b/flags/flags-iso/shiny/icns/_red-cross.icns new file mode 100644 index 0000000..eb2688c Binary files /dev/null and b/flags/flags-iso/shiny/icns/_red-cross.icns differ diff --git a/flags/flags-iso/shiny/icns/_scotland.icns b/flags/flags-iso/shiny/icns/_scotland.icns new file mode 100644 index 0000000..fa5940c Binary files /dev/null and b/flags/flags-iso/shiny/icns/_scotland.icns differ diff --git a/flags/flags-iso/shiny/icns/_somaliland.icns b/flags/flags-iso/shiny/icns/_somaliland.icns new file mode 100644 index 0000000..253a1fe Binary files /dev/null and b/flags/flags-iso/shiny/icns/_somaliland.icns differ diff --git a/flags/flags-iso/shiny/icns/_south-ossetia.icns b/flags/flags-iso/shiny/icns/_south-ossetia.icns new file mode 100644 index 0000000..968475e Binary files /dev/null and b/flags/flags-iso/shiny/icns/_south-ossetia.icns differ diff --git a/flags/flags-iso/shiny/icns/_united-nations.icns b/flags/flags-iso/shiny/icns/_united-nations.icns new file mode 100644 index 0000000..4da1fb1 Binary files /dev/null and b/flags/flags-iso/shiny/icns/_united-nations.icns differ diff --git a/flags/flags-iso/shiny/icns/_wales.icns b/flags/flags-iso/shiny/icns/_wales.icns new file mode 100644 index 0000000..07ff9cc Binary files /dev/null and b/flags/flags-iso/shiny/icns/_wales.icns differ diff --git a/flags/flags-iso/shiny/ico/.ico b/flags/flags-iso/shiny/ico/.ico new file mode 100644 index 0000000..bb63b1f Binary files /dev/null and b/flags/flags-iso/shiny/ico/.ico differ diff --git a/flags/flags-iso/shiny/ico/AD.ico b/flags/flags-iso/shiny/ico/AD.ico new file mode 100644 index 0000000..e2d1210 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AD.ico differ diff --git a/flags/flags-iso/shiny/ico/AE.ico b/flags/flags-iso/shiny/ico/AE.ico new file mode 100644 index 0000000..773c496 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AE.ico differ diff --git a/flags/flags-iso/shiny/ico/AF.ico b/flags/flags-iso/shiny/ico/AF.ico new file mode 100644 index 0000000..67d2b1c Binary files /dev/null and b/flags/flags-iso/shiny/ico/AF.ico differ diff --git a/flags/flags-iso/shiny/ico/AG.ico b/flags/flags-iso/shiny/ico/AG.ico new file mode 100644 index 0000000..22a1ae8 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AG.ico differ diff --git a/flags/flags-iso/shiny/ico/AI.ico b/flags/flags-iso/shiny/ico/AI.ico new file mode 100644 index 0000000..e90c069 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AI.ico differ diff --git a/flags/flags-iso/shiny/ico/AL.ico b/flags/flags-iso/shiny/ico/AL.ico new file mode 100644 index 0000000..a144a58 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AL.ico differ diff --git a/flags/flags-iso/shiny/ico/AM.ico b/flags/flags-iso/shiny/ico/AM.ico new file mode 100644 index 0000000..8bf4612 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AM.ico differ diff --git a/flags/flags-iso/shiny/ico/AN.ico b/flags/flags-iso/shiny/ico/AN.ico new file mode 100644 index 0000000..1f1b797 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AN.ico differ diff --git a/flags/flags-iso/shiny/ico/AO.ico b/flags/flags-iso/shiny/ico/AO.ico new file mode 100644 index 0000000..cc97fe6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AO.ico differ diff --git a/flags/flags-iso/shiny/ico/AQ.ico b/flags/flags-iso/shiny/ico/AQ.ico new file mode 100644 index 0000000..ac60431 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AQ.ico differ diff --git a/flags/flags-iso/shiny/ico/AR.ico b/flags/flags-iso/shiny/ico/AR.ico new file mode 100644 index 0000000..d11a521 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AR.ico differ diff --git a/flags/flags-iso/shiny/ico/AS.ico b/flags/flags-iso/shiny/ico/AS.ico new file mode 100644 index 0000000..c1bd547 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AS.ico differ diff --git a/flags/flags-iso/shiny/ico/AT.ico b/flags/flags-iso/shiny/ico/AT.ico new file mode 100644 index 0000000..43d5eac Binary files /dev/null and b/flags/flags-iso/shiny/ico/AT.ico differ diff --git a/flags/flags-iso/shiny/ico/AU.ico b/flags/flags-iso/shiny/ico/AU.ico new file mode 100644 index 0000000..d68fdc6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AU.ico differ diff --git a/flags/flags-iso/shiny/ico/AW.ico b/flags/flags-iso/shiny/ico/AW.ico new file mode 100644 index 0000000..831067e Binary files /dev/null and b/flags/flags-iso/shiny/ico/AW.ico differ diff --git a/flags/flags-iso/shiny/ico/AX.ico b/flags/flags-iso/shiny/ico/AX.ico new file mode 100644 index 0000000..40af4f5 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AX.ico differ diff --git a/flags/flags-iso/shiny/ico/AZ.ico b/flags/flags-iso/shiny/ico/AZ.ico new file mode 100644 index 0000000..93a8a38 Binary files /dev/null and b/flags/flags-iso/shiny/ico/AZ.ico differ diff --git a/flags/flags-iso/shiny/ico/BA.ico b/flags/flags-iso/shiny/ico/BA.ico new file mode 100644 index 0000000..a13f539 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BA.ico differ diff --git a/flags/flags-iso/shiny/ico/BB.ico b/flags/flags-iso/shiny/ico/BB.ico new file mode 100644 index 0000000..7ec0f0e Binary files /dev/null and b/flags/flags-iso/shiny/ico/BB.ico differ diff --git a/flags/flags-iso/shiny/ico/BD.ico b/flags/flags-iso/shiny/ico/BD.ico new file mode 100644 index 0000000..ba03dae Binary files /dev/null and b/flags/flags-iso/shiny/ico/BD.ico differ diff --git a/flags/flags-iso/shiny/ico/BE.ico b/flags/flags-iso/shiny/ico/BE.ico new file mode 100644 index 0000000..f0ebb9b Binary files /dev/null and b/flags/flags-iso/shiny/ico/BE.ico differ diff --git a/flags/flags-iso/shiny/ico/BF.ico b/flags/flags-iso/shiny/ico/BF.ico new file mode 100644 index 0000000..7bb582c Binary files /dev/null and b/flags/flags-iso/shiny/ico/BF.ico differ diff --git a/flags/flags-iso/shiny/ico/BG.ico b/flags/flags-iso/shiny/ico/BG.ico new file mode 100644 index 0000000..19d08fd Binary files /dev/null and b/flags/flags-iso/shiny/ico/BG.ico differ diff --git a/flags/flags-iso/shiny/ico/BH.ico b/flags/flags-iso/shiny/ico/BH.ico new file mode 100644 index 0000000..4f815a2 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BH.ico differ diff --git a/flags/flags-iso/shiny/ico/BI.ico b/flags/flags-iso/shiny/ico/BI.ico new file mode 100644 index 0000000..b13e519 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BI.ico differ diff --git a/flags/flags-iso/shiny/ico/BJ.ico b/flags/flags-iso/shiny/ico/BJ.ico new file mode 100644 index 0000000..eca1edd Binary files /dev/null and b/flags/flags-iso/shiny/ico/BJ.ico differ diff --git a/flags/flags-iso/shiny/ico/BL.ico b/flags/flags-iso/shiny/ico/BL.ico new file mode 100644 index 0000000..af749ee Binary files /dev/null and b/flags/flags-iso/shiny/ico/BL.ico differ diff --git a/flags/flags-iso/shiny/ico/BM.ico b/flags/flags-iso/shiny/ico/BM.ico new file mode 100644 index 0000000..c75936e Binary files /dev/null and b/flags/flags-iso/shiny/ico/BM.ico differ diff --git a/flags/flags-iso/shiny/ico/BN.ico b/flags/flags-iso/shiny/ico/BN.ico new file mode 100644 index 0000000..b532324 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BN.ico differ diff --git a/flags/flags-iso/shiny/ico/BO.ico b/flags/flags-iso/shiny/ico/BO.ico new file mode 100644 index 0000000..1b705c6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BO.ico differ diff --git a/flags/flags-iso/shiny/ico/BR.ico b/flags/flags-iso/shiny/ico/BR.ico new file mode 100644 index 0000000..9995e04 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BR.ico differ diff --git a/flags/flags-iso/shiny/ico/BS.ico b/flags/flags-iso/shiny/ico/BS.ico new file mode 100644 index 0000000..779ca15 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BS.ico differ diff --git a/flags/flags-iso/shiny/ico/BT.ico b/flags/flags-iso/shiny/ico/BT.ico new file mode 100644 index 0000000..5bd528b Binary files /dev/null and b/flags/flags-iso/shiny/ico/BT.ico differ diff --git a/flags/flags-iso/shiny/ico/BW.ico b/flags/flags-iso/shiny/ico/BW.ico new file mode 100644 index 0000000..28ea5f1 Binary files /dev/null and b/flags/flags-iso/shiny/ico/BW.ico differ diff --git a/flags/flags-iso/shiny/ico/BY.ico b/flags/flags-iso/shiny/ico/BY.ico new file mode 100644 index 0000000..66f609b Binary files /dev/null and b/flags/flags-iso/shiny/ico/BY.ico differ diff --git a/flags/flags-iso/shiny/ico/BZ.ico b/flags/flags-iso/shiny/ico/BZ.ico new file mode 100644 index 0000000..1cb116f Binary files /dev/null and b/flags/flags-iso/shiny/ico/BZ.ico differ diff --git a/flags/flags-iso/shiny/ico/CA.ico b/flags/flags-iso/shiny/ico/CA.ico new file mode 100644 index 0000000..695e670 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CA.ico differ diff --git a/flags/flags-iso/shiny/ico/CC.ico b/flags/flags-iso/shiny/ico/CC.ico new file mode 100644 index 0000000..c79d420 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CC.ico differ diff --git a/flags/flags-iso/shiny/ico/CD.ico b/flags/flags-iso/shiny/ico/CD.ico new file mode 100644 index 0000000..ee7512a Binary files /dev/null and b/flags/flags-iso/shiny/ico/CD.ico differ diff --git a/flags/flags-iso/shiny/ico/CF.ico b/flags/flags-iso/shiny/ico/CF.ico new file mode 100644 index 0000000..c4e508c Binary files /dev/null and b/flags/flags-iso/shiny/ico/CF.ico differ diff --git a/flags/flags-iso/shiny/ico/CG.ico b/flags/flags-iso/shiny/ico/CG.ico new file mode 100644 index 0000000..2234962 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CG.ico differ diff --git a/flags/flags-iso/shiny/ico/CH.ico b/flags/flags-iso/shiny/ico/CH.ico new file mode 100644 index 0000000..0a468db Binary files /dev/null and b/flags/flags-iso/shiny/ico/CH.ico differ diff --git a/flags/flags-iso/shiny/ico/CI.ico b/flags/flags-iso/shiny/ico/CI.ico new file mode 100644 index 0000000..eb62ff9 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CI.ico differ diff --git a/flags/flags-iso/shiny/ico/CK.ico b/flags/flags-iso/shiny/ico/CK.ico new file mode 100644 index 0000000..c4c45f8 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CK.ico differ diff --git a/flags/flags-iso/shiny/ico/CL.ico b/flags/flags-iso/shiny/ico/CL.ico new file mode 100644 index 0000000..51277fd Binary files /dev/null and b/flags/flags-iso/shiny/ico/CL.ico differ diff --git a/flags/flags-iso/shiny/ico/CM.ico b/flags/flags-iso/shiny/ico/CM.ico new file mode 100644 index 0000000..b8c0853 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CM.ico differ diff --git a/flags/flags-iso/shiny/ico/CN.ico b/flags/flags-iso/shiny/ico/CN.ico new file mode 100644 index 0000000..cbab579 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CN.ico differ diff --git a/flags/flags-iso/shiny/ico/CO.ico b/flags/flags-iso/shiny/ico/CO.ico new file mode 100644 index 0000000..5b7af03 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CO.ico differ diff --git a/flags/flags-iso/shiny/ico/CR.ico b/flags/flags-iso/shiny/ico/CR.ico new file mode 100644 index 0000000..1942fd6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CR.ico differ diff --git a/flags/flags-iso/shiny/ico/CU.ico b/flags/flags-iso/shiny/ico/CU.ico new file mode 100644 index 0000000..92d418e Binary files /dev/null and b/flags/flags-iso/shiny/ico/CU.ico differ diff --git a/flags/flags-iso/shiny/ico/CV.ico b/flags/flags-iso/shiny/ico/CV.ico new file mode 100644 index 0000000..d36f52d Binary files /dev/null and b/flags/flags-iso/shiny/ico/CV.ico differ diff --git a/flags/flags-iso/shiny/ico/CX.ico b/flags/flags-iso/shiny/ico/CX.ico new file mode 100644 index 0000000..99b2668 Binary files /dev/null and b/flags/flags-iso/shiny/ico/CX.ico differ diff --git a/flags/flags-iso/shiny/ico/CY.ico b/flags/flags-iso/shiny/ico/CY.ico new file mode 100644 index 0000000..03c87ba Binary files /dev/null and b/flags/flags-iso/shiny/ico/CY.ico differ diff --git a/flags/flags-iso/shiny/ico/CZ.ico b/flags/flags-iso/shiny/ico/CZ.ico new file mode 100644 index 0000000..4be270f Binary files /dev/null and b/flags/flags-iso/shiny/ico/CZ.ico differ diff --git a/flags/flags-iso/shiny/ico/DE.ico b/flags/flags-iso/shiny/ico/DE.ico new file mode 100644 index 0000000..3930f69 Binary files /dev/null and b/flags/flags-iso/shiny/ico/DE.ico differ diff --git a/flags/flags-iso/shiny/ico/DJ.ico b/flags/flags-iso/shiny/ico/DJ.ico new file mode 100644 index 0000000..ee0bbd6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/DJ.ico differ diff --git a/flags/flags-iso/shiny/ico/DK.ico b/flags/flags-iso/shiny/ico/DK.ico new file mode 100644 index 0000000..c84aa62 Binary files /dev/null and b/flags/flags-iso/shiny/ico/DK.ico differ diff --git a/flags/flags-iso/shiny/ico/DM.ico b/flags/flags-iso/shiny/ico/DM.ico new file mode 100644 index 0000000..2a2d45a Binary files /dev/null and b/flags/flags-iso/shiny/ico/DM.ico differ diff --git a/flags/flags-iso/shiny/ico/DO.ico b/flags/flags-iso/shiny/ico/DO.ico new file mode 100644 index 0000000..6d7a5ad Binary files /dev/null and b/flags/flags-iso/shiny/ico/DO.ico differ diff --git a/flags/flags-iso/shiny/ico/DZ.ico b/flags/flags-iso/shiny/ico/DZ.ico new file mode 100644 index 0000000..940a9fd Binary files /dev/null and b/flags/flags-iso/shiny/ico/DZ.ico differ diff --git a/flags/flags-iso/shiny/ico/EC.ico b/flags/flags-iso/shiny/ico/EC.ico new file mode 100644 index 0000000..d2505b6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/EC.ico differ diff --git a/flags/flags-iso/shiny/ico/EE.ico b/flags/flags-iso/shiny/ico/EE.ico new file mode 100644 index 0000000..df44adc Binary files /dev/null and b/flags/flags-iso/shiny/ico/EE.ico differ diff --git a/flags/flags-iso/shiny/ico/EG.ico b/flags/flags-iso/shiny/ico/EG.ico new file mode 100644 index 0000000..b008560 Binary files /dev/null and b/flags/flags-iso/shiny/ico/EG.ico differ diff --git a/flags/flags-iso/shiny/ico/EH.ico b/flags/flags-iso/shiny/ico/EH.ico new file mode 100644 index 0000000..648563f Binary files /dev/null and b/flags/flags-iso/shiny/ico/EH.ico differ diff --git a/flags/flags-iso/shiny/ico/ER.ico b/flags/flags-iso/shiny/ico/ER.ico new file mode 100644 index 0000000..59a627b Binary files /dev/null and b/flags/flags-iso/shiny/ico/ER.ico differ diff --git a/flags/flags-iso/shiny/ico/ES.ico b/flags/flags-iso/shiny/ico/ES.ico new file mode 100644 index 0000000..777bee2 Binary files /dev/null and b/flags/flags-iso/shiny/ico/ES.ico differ diff --git a/flags/flags-iso/shiny/ico/ET.ico b/flags/flags-iso/shiny/ico/ET.ico new file mode 100644 index 0000000..7985273 Binary files /dev/null and b/flags/flags-iso/shiny/ico/ET.ico differ diff --git a/flags/flags-iso/shiny/ico/EU.ico b/flags/flags-iso/shiny/ico/EU.ico new file mode 100644 index 0000000..ec778ae Binary files /dev/null and b/flags/flags-iso/shiny/ico/EU.ico differ diff --git a/flags/flags-iso/shiny/ico/FI.ico b/flags/flags-iso/shiny/ico/FI.ico new file mode 100644 index 0000000..50a3c63 Binary files /dev/null and b/flags/flags-iso/shiny/ico/FI.ico differ diff --git a/flags/flags-iso/shiny/ico/FJ.ico b/flags/flags-iso/shiny/ico/FJ.ico new file mode 100644 index 0000000..d621ce9 Binary files /dev/null and b/flags/flags-iso/shiny/ico/FJ.ico differ diff --git a/flags/flags-iso/shiny/ico/FK.ico b/flags/flags-iso/shiny/ico/FK.ico new file mode 100644 index 0000000..b879f48 Binary files /dev/null and b/flags/flags-iso/shiny/ico/FK.ico differ diff --git a/flags/flags-iso/shiny/ico/FM.ico b/flags/flags-iso/shiny/ico/FM.ico new file mode 100644 index 0000000..909c46a Binary files /dev/null and b/flags/flags-iso/shiny/ico/FM.ico differ diff --git a/flags/flags-iso/shiny/ico/FO.ico b/flags/flags-iso/shiny/ico/FO.ico new file mode 100644 index 0000000..5b13e78 Binary files /dev/null and b/flags/flags-iso/shiny/ico/FO.ico differ diff --git a/flags/flags-iso/shiny/ico/FR.ico b/flags/flags-iso/shiny/ico/FR.ico new file mode 100644 index 0000000..1ac89c1 Binary files /dev/null and b/flags/flags-iso/shiny/ico/FR.ico differ diff --git a/flags/flags-iso/shiny/ico/GA.ico b/flags/flags-iso/shiny/ico/GA.ico new file mode 100644 index 0000000..104a872 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GA.ico differ diff --git a/flags/flags-iso/shiny/ico/GB.ico b/flags/flags-iso/shiny/ico/GB.ico new file mode 100644 index 0000000..cf8c2e7 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GB.ico differ diff --git a/flags/flags-iso/shiny/ico/GD.ico b/flags/flags-iso/shiny/ico/GD.ico new file mode 100644 index 0000000..ae0102f Binary files /dev/null and b/flags/flags-iso/shiny/ico/GD.ico differ diff --git a/flags/flags-iso/shiny/ico/GE.ico b/flags/flags-iso/shiny/ico/GE.ico new file mode 100644 index 0000000..57af451 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GE.ico differ diff --git a/flags/flags-iso/shiny/ico/GG.ico b/flags/flags-iso/shiny/ico/GG.ico new file mode 100644 index 0000000..18a2963 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GG.ico differ diff --git a/flags/flags-iso/shiny/ico/GH.ico b/flags/flags-iso/shiny/ico/GH.ico new file mode 100644 index 0000000..cf98742 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GH.ico differ diff --git a/flags/flags-iso/shiny/ico/GI.ico b/flags/flags-iso/shiny/ico/GI.ico new file mode 100644 index 0000000..170c3f4 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GI.ico differ diff --git a/flags/flags-iso/shiny/ico/GL.ico b/flags/flags-iso/shiny/ico/GL.ico new file mode 100644 index 0000000..d9da5a8 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GL.ico differ diff --git a/flags/flags-iso/shiny/ico/GM.ico b/flags/flags-iso/shiny/ico/GM.ico new file mode 100644 index 0000000..bc65983 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GM.ico differ diff --git a/flags/flags-iso/shiny/ico/GN.ico b/flags/flags-iso/shiny/ico/GN.ico new file mode 100644 index 0000000..7232543 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GN.ico differ diff --git a/flags/flags-iso/shiny/ico/GQ.ico b/flags/flags-iso/shiny/ico/GQ.ico new file mode 100644 index 0000000..06391a4 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GQ.ico differ diff --git a/flags/flags-iso/shiny/ico/GR.ico b/flags/flags-iso/shiny/ico/GR.ico new file mode 100644 index 0000000..732a9b5 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GR.ico differ diff --git a/flags/flags-iso/shiny/ico/GS.ico b/flags/flags-iso/shiny/ico/GS.ico new file mode 100644 index 0000000..e849b1d Binary files /dev/null and b/flags/flags-iso/shiny/ico/GS.ico differ diff --git a/flags/flags-iso/shiny/ico/GT.ico b/flags/flags-iso/shiny/ico/GT.ico new file mode 100644 index 0000000..10263bd Binary files /dev/null and b/flags/flags-iso/shiny/ico/GT.ico differ diff --git a/flags/flags-iso/shiny/ico/GU.ico b/flags/flags-iso/shiny/ico/GU.ico new file mode 100644 index 0000000..73d9751 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GU.ico differ diff --git a/flags/flags-iso/shiny/ico/GW.ico b/flags/flags-iso/shiny/ico/GW.ico new file mode 100644 index 0000000..601a1f0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/GW.ico differ diff --git a/flags/flags-iso/shiny/ico/GY.ico b/flags/flags-iso/shiny/ico/GY.ico new file mode 100644 index 0000000..384627d Binary files /dev/null and b/flags/flags-iso/shiny/ico/GY.ico differ diff --git a/flags/flags-iso/shiny/ico/HK.ico b/flags/flags-iso/shiny/ico/HK.ico new file mode 100644 index 0000000..3cd6331 Binary files /dev/null and b/flags/flags-iso/shiny/ico/HK.ico differ diff --git a/flags/flags-iso/shiny/ico/HN.ico b/flags/flags-iso/shiny/ico/HN.ico new file mode 100644 index 0000000..37c15b7 Binary files /dev/null and b/flags/flags-iso/shiny/ico/HN.ico differ diff --git a/flags/flags-iso/shiny/ico/HR.ico b/flags/flags-iso/shiny/ico/HR.ico new file mode 100644 index 0000000..125fc53 Binary files /dev/null and b/flags/flags-iso/shiny/ico/HR.ico differ diff --git a/flags/flags-iso/shiny/ico/HT.ico b/flags/flags-iso/shiny/ico/HT.ico new file mode 100644 index 0000000..d34f8b9 Binary files /dev/null and b/flags/flags-iso/shiny/ico/HT.ico differ diff --git a/flags/flags-iso/shiny/ico/HU.ico b/flags/flags-iso/shiny/ico/HU.ico new file mode 100644 index 0000000..330d93b Binary files /dev/null and b/flags/flags-iso/shiny/ico/HU.ico differ diff --git a/flags/flags-iso/shiny/ico/ID.ico b/flags/flags-iso/shiny/ico/ID.ico new file mode 100644 index 0000000..f911641 Binary files /dev/null and b/flags/flags-iso/shiny/ico/ID.ico differ diff --git a/flags/flags-iso/shiny/ico/IE.ico b/flags/flags-iso/shiny/ico/IE.ico new file mode 100644 index 0000000..851aa9e Binary files /dev/null and b/flags/flags-iso/shiny/ico/IE.ico differ diff --git a/flags/flags-iso/shiny/ico/IL.ico b/flags/flags-iso/shiny/ico/IL.ico new file mode 100644 index 0000000..94ee730 Binary files /dev/null and b/flags/flags-iso/shiny/ico/IL.ico differ diff --git a/flags/flags-iso/shiny/ico/IM.ico b/flags/flags-iso/shiny/ico/IM.ico new file mode 100644 index 0000000..596a63f Binary files /dev/null and b/flags/flags-iso/shiny/ico/IM.ico differ diff --git a/flags/flags-iso/shiny/ico/IN.ico b/flags/flags-iso/shiny/ico/IN.ico new file mode 100644 index 0000000..763293c Binary files /dev/null and b/flags/flags-iso/shiny/ico/IN.ico differ diff --git a/flags/flags-iso/shiny/ico/IQ.ico b/flags/flags-iso/shiny/ico/IQ.ico new file mode 100644 index 0000000..2741707 Binary files /dev/null and b/flags/flags-iso/shiny/ico/IQ.ico differ diff --git a/flags/flags-iso/shiny/ico/IR.ico b/flags/flags-iso/shiny/ico/IR.ico new file mode 100644 index 0000000..ce68814 Binary files /dev/null and b/flags/flags-iso/shiny/ico/IR.ico differ diff --git a/flags/flags-iso/shiny/ico/IS.ico b/flags/flags-iso/shiny/ico/IS.ico new file mode 100644 index 0000000..ae32c6e Binary files /dev/null and b/flags/flags-iso/shiny/ico/IS.ico differ diff --git a/flags/flags-iso/shiny/ico/IT.ico b/flags/flags-iso/shiny/ico/IT.ico new file mode 100644 index 0000000..c5db2e4 Binary files /dev/null and b/flags/flags-iso/shiny/ico/IT.ico differ diff --git a/flags/flags-iso/shiny/ico/JE.ico b/flags/flags-iso/shiny/ico/JE.ico new file mode 100644 index 0000000..b8bfe67 Binary files /dev/null and b/flags/flags-iso/shiny/ico/JE.ico differ diff --git a/flags/flags-iso/shiny/ico/JM.ico b/flags/flags-iso/shiny/ico/JM.ico new file mode 100644 index 0000000..72baaee Binary files /dev/null and b/flags/flags-iso/shiny/ico/JM.ico differ diff --git a/flags/flags-iso/shiny/ico/JO.ico b/flags/flags-iso/shiny/ico/JO.ico new file mode 100644 index 0000000..0ea9e8f Binary files /dev/null and b/flags/flags-iso/shiny/ico/JO.ico differ diff --git a/flags/flags-iso/shiny/ico/JP.ico b/flags/flags-iso/shiny/ico/JP.ico new file mode 100644 index 0000000..3aa2317 Binary files /dev/null and b/flags/flags-iso/shiny/ico/JP.ico differ diff --git a/flags/flags-iso/shiny/ico/KE.ico b/flags/flags-iso/shiny/ico/KE.ico new file mode 100644 index 0000000..339dffc Binary files /dev/null and b/flags/flags-iso/shiny/ico/KE.ico differ diff --git a/flags/flags-iso/shiny/ico/KG.ico b/flags/flags-iso/shiny/ico/KG.ico new file mode 100644 index 0000000..466414b Binary files /dev/null and b/flags/flags-iso/shiny/ico/KG.ico differ diff --git a/flags/flags-iso/shiny/ico/KH.ico b/flags/flags-iso/shiny/ico/KH.ico new file mode 100644 index 0000000..261d171 Binary files /dev/null and b/flags/flags-iso/shiny/ico/KH.ico differ diff --git a/flags/flags-iso/shiny/ico/KI.ico b/flags/flags-iso/shiny/ico/KI.ico new file mode 100644 index 0000000..7b2c0bd Binary files /dev/null and b/flags/flags-iso/shiny/ico/KI.ico differ diff --git a/flags/flags-iso/shiny/ico/KM.ico b/flags/flags-iso/shiny/ico/KM.ico new file mode 100644 index 0000000..9b51512 Binary files /dev/null and b/flags/flags-iso/shiny/ico/KM.ico differ diff --git a/flags/flags-iso/shiny/ico/KN.ico b/flags/flags-iso/shiny/ico/KN.ico new file mode 100644 index 0000000..f79310d Binary files /dev/null and b/flags/flags-iso/shiny/ico/KN.ico differ diff --git a/flags/flags-iso/shiny/ico/KP.ico b/flags/flags-iso/shiny/ico/KP.ico new file mode 100644 index 0000000..50e0be1 Binary files /dev/null and b/flags/flags-iso/shiny/ico/KP.ico differ diff --git a/flags/flags-iso/shiny/ico/KR.ico b/flags/flags-iso/shiny/ico/KR.ico new file mode 100644 index 0000000..7a1fc44 Binary files /dev/null and b/flags/flags-iso/shiny/ico/KR.ico differ diff --git a/flags/flags-iso/shiny/ico/KW.ico b/flags/flags-iso/shiny/ico/KW.ico new file mode 100644 index 0000000..83379a6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/KW.ico differ diff --git a/flags/flags-iso/shiny/ico/KY.ico b/flags/flags-iso/shiny/ico/KY.ico new file mode 100644 index 0000000..4eab664 Binary files /dev/null and b/flags/flags-iso/shiny/ico/KY.ico differ diff --git a/flags/flags-iso/shiny/ico/KZ.ico b/flags/flags-iso/shiny/ico/KZ.ico new file mode 100644 index 0000000..c60dd3a Binary files /dev/null and b/flags/flags-iso/shiny/ico/KZ.ico differ diff --git a/flags/flags-iso/shiny/ico/LA.ico b/flags/flags-iso/shiny/ico/LA.ico new file mode 100644 index 0000000..2047dde Binary files /dev/null and b/flags/flags-iso/shiny/ico/LA.ico differ diff --git a/flags/flags-iso/shiny/ico/LB.ico b/flags/flags-iso/shiny/ico/LB.ico new file mode 100644 index 0000000..c9e3f07 Binary files /dev/null and b/flags/flags-iso/shiny/ico/LB.ico differ diff --git a/flags/flags-iso/shiny/ico/LC.ico b/flags/flags-iso/shiny/ico/LC.ico new file mode 100644 index 0000000..c2d58d5 Binary files /dev/null and b/flags/flags-iso/shiny/ico/LC.ico differ diff --git a/flags/flags-iso/shiny/ico/LI.ico b/flags/flags-iso/shiny/ico/LI.ico new file mode 100644 index 0000000..deb8a0a Binary files /dev/null and b/flags/flags-iso/shiny/ico/LI.ico differ diff --git a/flags/flags-iso/shiny/ico/LK.ico b/flags/flags-iso/shiny/ico/LK.ico new file mode 100644 index 0000000..82c64f6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/LK.ico differ diff --git a/flags/flags-iso/shiny/ico/LR.ico b/flags/flags-iso/shiny/ico/LR.ico new file mode 100644 index 0000000..a8e3821 Binary files /dev/null and b/flags/flags-iso/shiny/ico/LR.ico differ diff --git a/flags/flags-iso/shiny/ico/LS.ico b/flags/flags-iso/shiny/ico/LS.ico new file mode 100644 index 0000000..51dcef1 Binary files /dev/null and b/flags/flags-iso/shiny/ico/LS.ico differ diff --git a/flags/flags-iso/shiny/ico/LT.ico b/flags/flags-iso/shiny/ico/LT.ico new file mode 100644 index 0000000..3cd3b62 Binary files /dev/null and b/flags/flags-iso/shiny/ico/LT.ico differ diff --git a/flags/flags-iso/shiny/ico/LU.ico b/flags/flags-iso/shiny/ico/LU.ico new file mode 100644 index 0000000..4cd73ec Binary files /dev/null and b/flags/flags-iso/shiny/ico/LU.ico differ diff --git a/flags/flags-iso/shiny/ico/LV.ico b/flags/flags-iso/shiny/ico/LV.ico new file mode 100644 index 0000000..21e946c Binary files /dev/null and b/flags/flags-iso/shiny/ico/LV.ico differ diff --git a/flags/flags-iso/shiny/ico/LY.ico b/flags/flags-iso/shiny/ico/LY.ico new file mode 100644 index 0000000..b154de9 Binary files /dev/null and b/flags/flags-iso/shiny/ico/LY.ico differ diff --git a/flags/flags-iso/shiny/ico/MA.ico b/flags/flags-iso/shiny/ico/MA.ico new file mode 100644 index 0000000..ad17b19 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MA.ico differ diff --git a/flags/flags-iso/shiny/ico/MC.ico b/flags/flags-iso/shiny/ico/MC.ico new file mode 100644 index 0000000..f911641 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MC.ico differ diff --git a/flags/flags-iso/shiny/ico/MD.ico b/flags/flags-iso/shiny/ico/MD.ico new file mode 100644 index 0000000..934dcbf Binary files /dev/null and b/flags/flags-iso/shiny/ico/MD.ico differ diff --git a/flags/flags-iso/shiny/ico/ME.ico b/flags/flags-iso/shiny/ico/ME.ico new file mode 100644 index 0000000..981accf Binary files /dev/null and b/flags/flags-iso/shiny/ico/ME.ico differ diff --git a/flags/flags-iso/shiny/ico/MG.ico b/flags/flags-iso/shiny/ico/MG.ico new file mode 100644 index 0000000..c07781d Binary files /dev/null and b/flags/flags-iso/shiny/ico/MG.ico differ diff --git a/flags/flags-iso/shiny/ico/MH.ico b/flags/flags-iso/shiny/ico/MH.ico new file mode 100644 index 0000000..eb542a0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MH.ico differ diff --git a/flags/flags-iso/shiny/ico/MK.ico b/flags/flags-iso/shiny/ico/MK.ico new file mode 100644 index 0000000..4b15103 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MK.ico differ diff --git a/flags/flags-iso/shiny/ico/ML.ico b/flags/flags-iso/shiny/ico/ML.ico new file mode 100644 index 0000000..4f5444d Binary files /dev/null and b/flags/flags-iso/shiny/ico/ML.ico differ diff --git a/flags/flags-iso/shiny/ico/MM.ico b/flags/flags-iso/shiny/ico/MM.ico new file mode 100644 index 0000000..e6c3033 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MM.ico differ diff --git a/flags/flags-iso/shiny/ico/MN.ico b/flags/flags-iso/shiny/ico/MN.ico new file mode 100644 index 0000000..12666fc Binary files /dev/null and b/flags/flags-iso/shiny/ico/MN.ico differ diff --git a/flags/flags-iso/shiny/ico/MO.ico b/flags/flags-iso/shiny/ico/MO.ico new file mode 100644 index 0000000..3d477a4 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MO.ico differ diff --git a/flags/flags-iso/shiny/ico/MP.ico b/flags/flags-iso/shiny/ico/MP.ico new file mode 100644 index 0000000..91ba059 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MP.ico differ diff --git a/flags/flags-iso/shiny/ico/MR.ico b/flags/flags-iso/shiny/ico/MR.ico new file mode 100644 index 0000000..675cb43 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MR.ico differ diff --git a/flags/flags-iso/shiny/ico/MS.ico b/flags/flags-iso/shiny/ico/MS.ico new file mode 100644 index 0000000..f751c9c Binary files /dev/null and b/flags/flags-iso/shiny/ico/MS.ico differ diff --git a/flags/flags-iso/shiny/ico/MT.ico b/flags/flags-iso/shiny/ico/MT.ico new file mode 100644 index 0000000..45e98d5 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MT.ico differ diff --git a/flags/flags-iso/shiny/ico/MU.ico b/flags/flags-iso/shiny/ico/MU.ico new file mode 100644 index 0000000..3fbbb46 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MU.ico differ diff --git a/flags/flags-iso/shiny/ico/MV.ico b/flags/flags-iso/shiny/ico/MV.ico new file mode 100644 index 0000000..4241b32 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MV.ico differ diff --git a/flags/flags-iso/shiny/ico/MW.ico b/flags/flags-iso/shiny/ico/MW.ico new file mode 100644 index 0000000..ae696ff Binary files /dev/null and b/flags/flags-iso/shiny/ico/MW.ico differ diff --git a/flags/flags-iso/shiny/ico/MX.ico b/flags/flags-iso/shiny/ico/MX.ico new file mode 100644 index 0000000..556b360 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MX.ico differ diff --git a/flags/flags-iso/shiny/ico/MY.ico b/flags/flags-iso/shiny/ico/MY.ico new file mode 100644 index 0000000..8dc5799 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MY.ico differ diff --git a/flags/flags-iso/shiny/ico/MZ.ico b/flags/flags-iso/shiny/ico/MZ.ico new file mode 100644 index 0000000..f26f8d8 Binary files /dev/null and b/flags/flags-iso/shiny/ico/MZ.ico differ diff --git a/flags/flags-iso/shiny/ico/NA.ico b/flags/flags-iso/shiny/ico/NA.ico new file mode 100644 index 0000000..38ddb33 Binary files /dev/null and b/flags/flags-iso/shiny/ico/NA.ico differ diff --git a/flags/flags-iso/shiny/ico/NC.ico b/flags/flags-iso/shiny/ico/NC.ico new file mode 100644 index 0000000..61469ad Binary files /dev/null and b/flags/flags-iso/shiny/ico/NC.ico differ diff --git a/flags/flags-iso/shiny/ico/NE.ico b/flags/flags-iso/shiny/ico/NE.ico new file mode 100644 index 0000000..fc29e7e Binary files /dev/null and b/flags/flags-iso/shiny/ico/NE.ico differ diff --git a/flags/flags-iso/shiny/ico/NF.ico b/flags/flags-iso/shiny/ico/NF.ico new file mode 100644 index 0000000..3f208b0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/NF.ico differ diff --git a/flags/flags-iso/shiny/ico/NG.ico b/flags/flags-iso/shiny/ico/NG.ico new file mode 100644 index 0000000..86c7e75 Binary files /dev/null and b/flags/flags-iso/shiny/ico/NG.ico differ diff --git a/flags/flags-iso/shiny/ico/NI.ico b/flags/flags-iso/shiny/ico/NI.ico new file mode 100644 index 0000000..ca2a35c Binary files /dev/null and b/flags/flags-iso/shiny/ico/NI.ico differ diff --git a/flags/flags-iso/shiny/ico/NL.ico b/flags/flags-iso/shiny/ico/NL.ico new file mode 100644 index 0000000..f4bd8aa Binary files /dev/null and b/flags/flags-iso/shiny/ico/NL.ico differ diff --git a/flags/flags-iso/shiny/ico/NO.ico b/flags/flags-iso/shiny/ico/NO.ico new file mode 100644 index 0000000..82c636a Binary files /dev/null and b/flags/flags-iso/shiny/ico/NO.ico differ diff --git a/flags/flags-iso/shiny/ico/NP.ico b/flags/flags-iso/shiny/ico/NP.ico new file mode 100644 index 0000000..bb5a0fe Binary files /dev/null and b/flags/flags-iso/shiny/ico/NP.ico differ diff --git a/flags/flags-iso/shiny/ico/NR.ico b/flags/flags-iso/shiny/ico/NR.ico new file mode 100644 index 0000000..891c9ab Binary files /dev/null and b/flags/flags-iso/shiny/ico/NR.ico differ diff --git a/flags/flags-iso/shiny/ico/NU.ico b/flags/flags-iso/shiny/ico/NU.ico new file mode 100644 index 0000000..56b0b05 Binary files /dev/null and b/flags/flags-iso/shiny/ico/NU.ico differ diff --git a/flags/flags-iso/shiny/ico/NZ.ico b/flags/flags-iso/shiny/ico/NZ.ico new file mode 100644 index 0000000..53c8077 Binary files /dev/null and b/flags/flags-iso/shiny/ico/NZ.ico differ diff --git a/flags/flags-iso/shiny/ico/OM.ico b/flags/flags-iso/shiny/ico/OM.ico new file mode 100644 index 0000000..a0e074b Binary files /dev/null and b/flags/flags-iso/shiny/ico/OM.ico differ diff --git a/flags/flags-iso/shiny/ico/PA.ico b/flags/flags-iso/shiny/ico/PA.ico new file mode 100644 index 0000000..7a6375b Binary files /dev/null and b/flags/flags-iso/shiny/ico/PA.ico differ diff --git a/flags/flags-iso/shiny/ico/PE.ico b/flags/flags-iso/shiny/ico/PE.ico new file mode 100644 index 0000000..d7693f4 Binary files /dev/null and b/flags/flags-iso/shiny/ico/PE.ico differ diff --git a/flags/flags-iso/shiny/ico/PF.ico b/flags/flags-iso/shiny/ico/PF.ico new file mode 100644 index 0000000..3daff6c Binary files /dev/null and b/flags/flags-iso/shiny/ico/PF.ico differ diff --git a/flags/flags-iso/shiny/ico/PG.ico b/flags/flags-iso/shiny/ico/PG.ico new file mode 100644 index 0000000..0901e76 Binary files /dev/null and b/flags/flags-iso/shiny/ico/PG.ico differ diff --git a/flags/flags-iso/shiny/ico/PH.ico b/flags/flags-iso/shiny/ico/PH.ico new file mode 100644 index 0000000..d66ada2 Binary files /dev/null and b/flags/flags-iso/shiny/ico/PH.ico differ diff --git a/flags/flags-iso/shiny/ico/PK.ico b/flags/flags-iso/shiny/ico/PK.ico new file mode 100644 index 0000000..c3aaff8 Binary files /dev/null and b/flags/flags-iso/shiny/ico/PK.ico differ diff --git a/flags/flags-iso/shiny/ico/PL.ico b/flags/flags-iso/shiny/ico/PL.ico new file mode 100644 index 0000000..5adfa08 Binary files /dev/null and b/flags/flags-iso/shiny/ico/PL.ico differ diff --git a/flags/flags-iso/shiny/ico/PN.ico b/flags/flags-iso/shiny/ico/PN.ico new file mode 100644 index 0000000..42b4cee Binary files /dev/null and b/flags/flags-iso/shiny/ico/PN.ico differ diff --git a/flags/flags-iso/shiny/ico/PR.ico b/flags/flags-iso/shiny/ico/PR.ico new file mode 100644 index 0000000..2f96c61 Binary files /dev/null and b/flags/flags-iso/shiny/ico/PR.ico differ diff --git a/flags/flags-iso/shiny/ico/PS.ico b/flags/flags-iso/shiny/ico/PS.ico new file mode 100644 index 0000000..0ef30cc Binary files /dev/null and b/flags/flags-iso/shiny/ico/PS.ico differ diff --git a/flags/flags-iso/shiny/ico/PT.ico b/flags/flags-iso/shiny/ico/PT.ico new file mode 100644 index 0000000..7a449bf Binary files /dev/null and b/flags/flags-iso/shiny/ico/PT.ico differ diff --git a/flags/flags-iso/shiny/ico/PW.ico b/flags/flags-iso/shiny/ico/PW.ico new file mode 100644 index 0000000..5793713 Binary files /dev/null and b/flags/flags-iso/shiny/ico/PW.ico differ diff --git a/flags/flags-iso/shiny/ico/PY.ico b/flags/flags-iso/shiny/ico/PY.ico new file mode 100644 index 0000000..410626c Binary files /dev/null and b/flags/flags-iso/shiny/ico/PY.ico differ diff --git a/flags/flags-iso/shiny/ico/QA.ico b/flags/flags-iso/shiny/ico/QA.ico new file mode 100644 index 0000000..2bb0491 Binary files /dev/null and b/flags/flags-iso/shiny/ico/QA.ico differ diff --git a/flags/flags-iso/shiny/ico/RO.ico b/flags/flags-iso/shiny/ico/RO.ico new file mode 100644 index 0000000..8e81716 Binary files /dev/null and b/flags/flags-iso/shiny/ico/RO.ico differ diff --git a/flags/flags-iso/shiny/ico/RS.ico b/flags/flags-iso/shiny/ico/RS.ico new file mode 100644 index 0000000..7547101 Binary files /dev/null and b/flags/flags-iso/shiny/ico/RS.ico differ diff --git a/flags/flags-iso/shiny/ico/RU.ico b/flags/flags-iso/shiny/ico/RU.ico new file mode 100644 index 0000000..1830457 Binary files /dev/null and b/flags/flags-iso/shiny/ico/RU.ico differ diff --git a/flags/flags-iso/shiny/ico/RW.ico b/flags/flags-iso/shiny/ico/RW.ico new file mode 100644 index 0000000..c02338a Binary files /dev/null and b/flags/flags-iso/shiny/ico/RW.ico differ diff --git a/flags/flags-iso/shiny/ico/SA.ico b/flags/flags-iso/shiny/ico/SA.ico new file mode 100644 index 0000000..3c9d864 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SA.ico differ diff --git a/flags/flags-iso/shiny/ico/SB.ico b/flags/flags-iso/shiny/ico/SB.ico new file mode 100644 index 0000000..24a2af0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SB.ico differ diff --git a/flags/flags-iso/shiny/ico/SC.ico b/flags/flags-iso/shiny/ico/SC.ico new file mode 100644 index 0000000..2af13d6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SC.ico differ diff --git a/flags/flags-iso/shiny/ico/SD.ico b/flags/flags-iso/shiny/ico/SD.ico new file mode 100644 index 0000000..49185ad Binary files /dev/null and b/flags/flags-iso/shiny/ico/SD.ico differ diff --git a/flags/flags-iso/shiny/ico/SE.ico b/flags/flags-iso/shiny/ico/SE.ico new file mode 100644 index 0000000..30db06d Binary files /dev/null and b/flags/flags-iso/shiny/ico/SE.ico differ diff --git a/flags/flags-iso/shiny/ico/SG.ico b/flags/flags-iso/shiny/ico/SG.ico new file mode 100644 index 0000000..4b506d5 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SG.ico differ diff --git a/flags/flags-iso/shiny/ico/SH.ico b/flags/flags-iso/shiny/ico/SH.ico new file mode 100644 index 0000000..41a17bc Binary files /dev/null and b/flags/flags-iso/shiny/ico/SH.ico differ diff --git a/flags/flags-iso/shiny/ico/SI.ico b/flags/flags-iso/shiny/ico/SI.ico new file mode 100644 index 0000000..06bfb8d Binary files /dev/null and b/flags/flags-iso/shiny/ico/SI.ico differ diff --git a/flags/flags-iso/shiny/ico/SK.ico b/flags/flags-iso/shiny/ico/SK.ico new file mode 100644 index 0000000..3f5323e Binary files /dev/null and b/flags/flags-iso/shiny/ico/SK.ico differ diff --git a/flags/flags-iso/shiny/ico/SL.ico b/flags/flags-iso/shiny/ico/SL.ico new file mode 100644 index 0000000..83d5040 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SL.ico differ diff --git a/flags/flags-iso/shiny/ico/SM.ico b/flags/flags-iso/shiny/ico/SM.ico new file mode 100644 index 0000000..aa97ae0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SM.ico differ diff --git a/flags/flags-iso/shiny/ico/SN.ico b/flags/flags-iso/shiny/ico/SN.ico new file mode 100644 index 0000000..789fcb0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SN.ico differ diff --git a/flags/flags-iso/shiny/ico/SO.ico b/flags/flags-iso/shiny/ico/SO.ico new file mode 100644 index 0000000..0522188 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SO.ico differ diff --git a/flags/flags-iso/shiny/ico/SR.ico b/flags/flags-iso/shiny/ico/SR.ico new file mode 100644 index 0000000..7445340 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SR.ico differ diff --git a/flags/flags-iso/shiny/ico/SS.ico b/flags/flags-iso/shiny/ico/SS.ico new file mode 100644 index 0000000..49ca0d2 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SS.ico differ diff --git a/flags/flags-iso/shiny/ico/ST.ico b/flags/flags-iso/shiny/ico/ST.ico new file mode 100644 index 0000000..34eae8b Binary files /dev/null and b/flags/flags-iso/shiny/ico/ST.ico differ diff --git a/flags/flags-iso/shiny/ico/SV.ico b/flags/flags-iso/shiny/ico/SV.ico new file mode 100644 index 0000000..de64212 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SV.ico differ diff --git a/flags/flags-iso/shiny/ico/SY.ico b/flags/flags-iso/shiny/ico/SY.ico new file mode 100644 index 0000000..d99ca0e Binary files /dev/null and b/flags/flags-iso/shiny/ico/SY.ico differ diff --git a/flags/flags-iso/shiny/ico/SZ.ico b/flags/flags-iso/shiny/ico/SZ.ico new file mode 100644 index 0000000..b295162 Binary files /dev/null and b/flags/flags-iso/shiny/ico/SZ.ico differ diff --git a/flags/flags-iso/shiny/ico/TC.ico b/flags/flags-iso/shiny/ico/TC.ico new file mode 100644 index 0000000..e0e59c6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TC.ico differ diff --git a/flags/flags-iso/shiny/ico/TD.ico b/flags/flags-iso/shiny/ico/TD.ico new file mode 100644 index 0000000..a037ae6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TD.ico differ diff --git a/flags/flags-iso/shiny/ico/TF.ico b/flags/flags-iso/shiny/ico/TF.ico new file mode 100644 index 0000000..23da461 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TF.ico differ diff --git a/flags/flags-iso/shiny/ico/TG.ico b/flags/flags-iso/shiny/ico/TG.ico new file mode 100644 index 0000000..9f6abdc Binary files /dev/null and b/flags/flags-iso/shiny/ico/TG.ico differ diff --git a/flags/flags-iso/shiny/ico/TH.ico b/flags/flags-iso/shiny/ico/TH.ico new file mode 100644 index 0000000..8dc00ae Binary files /dev/null and b/flags/flags-iso/shiny/ico/TH.ico differ diff --git a/flags/flags-iso/shiny/ico/TJ.ico b/flags/flags-iso/shiny/ico/TJ.ico new file mode 100644 index 0000000..053a182 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TJ.ico differ diff --git a/flags/flags-iso/shiny/ico/TK.ico b/flags/flags-iso/shiny/ico/TK.ico new file mode 100644 index 0000000..cc3ec05 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TK.ico differ diff --git a/flags/flags-iso/shiny/ico/TL.ico b/flags/flags-iso/shiny/ico/TL.ico new file mode 100644 index 0000000..81a297b Binary files /dev/null and b/flags/flags-iso/shiny/ico/TL.ico differ diff --git a/flags/flags-iso/shiny/ico/TM.ico b/flags/flags-iso/shiny/ico/TM.ico new file mode 100644 index 0000000..1679244 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TM.ico differ diff --git a/flags/flags-iso/shiny/ico/TN.ico b/flags/flags-iso/shiny/ico/TN.ico new file mode 100644 index 0000000..eae8795 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TN.ico differ diff --git a/flags/flags-iso/shiny/ico/TO.ico b/flags/flags-iso/shiny/ico/TO.ico new file mode 100644 index 0000000..35d166b Binary files /dev/null and b/flags/flags-iso/shiny/ico/TO.ico differ diff --git a/flags/flags-iso/shiny/ico/TR.ico b/flags/flags-iso/shiny/ico/TR.ico new file mode 100644 index 0000000..3deac51 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TR.ico differ diff --git a/flags/flags-iso/shiny/ico/TT.ico b/flags/flags-iso/shiny/ico/TT.ico new file mode 100644 index 0000000..f81807b Binary files /dev/null and b/flags/flags-iso/shiny/ico/TT.ico differ diff --git a/flags/flags-iso/shiny/ico/TV.ico b/flags/flags-iso/shiny/ico/TV.ico new file mode 100644 index 0000000..616ee79 Binary files /dev/null and b/flags/flags-iso/shiny/ico/TV.ico differ diff --git a/flags/flags-iso/shiny/ico/TW.ico b/flags/flags-iso/shiny/ico/TW.ico new file mode 100644 index 0000000..a80ae1e Binary files /dev/null and b/flags/flags-iso/shiny/ico/TW.ico differ diff --git a/flags/flags-iso/shiny/ico/TZ.ico b/flags/flags-iso/shiny/ico/TZ.ico new file mode 100644 index 0000000..4629dbd Binary files /dev/null and b/flags/flags-iso/shiny/ico/TZ.ico differ diff --git a/flags/flags-iso/shiny/ico/UA.ico b/flags/flags-iso/shiny/ico/UA.ico new file mode 100644 index 0000000..53da046 Binary files /dev/null and b/flags/flags-iso/shiny/ico/UA.ico differ diff --git a/flags/flags-iso/shiny/ico/UG.ico b/flags/flags-iso/shiny/ico/UG.ico new file mode 100644 index 0000000..ac7f3f0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/UG.ico differ diff --git a/flags/flags-iso/shiny/ico/US.ico b/flags/flags-iso/shiny/ico/US.ico new file mode 100644 index 0000000..a6f9008 Binary files /dev/null and b/flags/flags-iso/shiny/ico/US.ico differ diff --git a/flags/flags-iso/shiny/ico/UY.ico b/flags/flags-iso/shiny/ico/UY.ico new file mode 100644 index 0000000..990524f Binary files /dev/null and b/flags/flags-iso/shiny/ico/UY.ico differ diff --git a/flags/flags-iso/shiny/ico/UZ.ico b/flags/flags-iso/shiny/ico/UZ.ico new file mode 100644 index 0000000..c7d4563 Binary files /dev/null and b/flags/flags-iso/shiny/ico/UZ.ico differ diff --git a/flags/flags-iso/shiny/ico/VA.ico b/flags/flags-iso/shiny/ico/VA.ico new file mode 100644 index 0000000..c21c23a Binary files /dev/null and b/flags/flags-iso/shiny/ico/VA.ico differ diff --git a/flags/flags-iso/shiny/ico/VC.ico b/flags/flags-iso/shiny/ico/VC.ico new file mode 100644 index 0000000..d11fe0f Binary files /dev/null and b/flags/flags-iso/shiny/ico/VC.ico differ diff --git a/flags/flags-iso/shiny/ico/VE.ico b/flags/flags-iso/shiny/ico/VE.ico new file mode 100644 index 0000000..a6d5eae Binary files /dev/null and b/flags/flags-iso/shiny/ico/VE.ico differ diff --git a/flags/flags-iso/shiny/ico/VG.ico b/flags/flags-iso/shiny/ico/VG.ico new file mode 100644 index 0000000..330f1b2 Binary files /dev/null and b/flags/flags-iso/shiny/ico/VG.ico differ diff --git a/flags/flags-iso/shiny/ico/VI.ico b/flags/flags-iso/shiny/ico/VI.ico new file mode 100644 index 0000000..e529618 Binary files /dev/null and b/flags/flags-iso/shiny/ico/VI.ico differ diff --git a/flags/flags-iso/shiny/ico/VN.ico b/flags/flags-iso/shiny/ico/VN.ico new file mode 100644 index 0000000..fc1e77c Binary files /dev/null and b/flags/flags-iso/shiny/ico/VN.ico differ diff --git a/flags/flags-iso/shiny/ico/VU.ico b/flags/flags-iso/shiny/ico/VU.ico new file mode 100644 index 0000000..d461ba5 Binary files /dev/null and b/flags/flags-iso/shiny/ico/VU.ico differ diff --git a/flags/flags-iso/shiny/ico/WS.ico b/flags/flags-iso/shiny/ico/WS.ico new file mode 100644 index 0000000..1d47f8d Binary files /dev/null and b/flags/flags-iso/shiny/ico/WS.ico differ diff --git a/flags/flags-iso/shiny/ico/YE.ico b/flags/flags-iso/shiny/ico/YE.ico new file mode 100644 index 0000000..068f37a Binary files /dev/null and b/flags/flags-iso/shiny/ico/YE.ico differ diff --git a/flags/flags-iso/shiny/ico/YT.ico b/flags/flags-iso/shiny/ico/YT.ico new file mode 100644 index 0000000..b8aad04 Binary files /dev/null and b/flags/flags-iso/shiny/ico/YT.ico differ diff --git a/flags/flags-iso/shiny/ico/ZA.ico b/flags/flags-iso/shiny/ico/ZA.ico new file mode 100644 index 0000000..8938650 Binary files /dev/null and b/flags/flags-iso/shiny/ico/ZA.ico differ diff --git a/flags/flags-iso/shiny/ico/ZM.ico b/flags/flags-iso/shiny/ico/ZM.ico new file mode 100644 index 0000000..721221b Binary files /dev/null and b/flags/flags-iso/shiny/ico/ZM.ico differ diff --git a/flags/flags-iso/shiny/ico/ZW.ico b/flags/flags-iso/shiny/ico/ZW.ico new file mode 100644 index 0000000..bb69496 Binary files /dev/null and b/flags/flags-iso/shiny/ico/ZW.ico differ diff --git a/flags/flags-iso/shiny/ico/_abkhazia.ico b/flags/flags-iso/shiny/ico/_abkhazia.ico new file mode 100644 index 0000000..f43ded7 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_abkhazia.ico differ diff --git a/flags/flags-iso/shiny/ico/_british-antarctic-territory.ico b/flags/flags-iso/shiny/ico/_british-antarctic-territory.ico new file mode 100644 index 0000000..cacb7f5 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_british-antarctic-territory.ico differ diff --git a/flags/flags-iso/shiny/ico/_commonwealth.ico b/flags/flags-iso/shiny/ico/_commonwealth.ico new file mode 100644 index 0000000..e846bfb Binary files /dev/null and b/flags/flags-iso/shiny/ico/_commonwealth.ico differ diff --git a/flags/flags-iso/shiny/ico/_england.ico b/flags/flags-iso/shiny/ico/_england.ico new file mode 100644 index 0000000..ad7268f Binary files /dev/null and b/flags/flags-iso/shiny/ico/_england.ico differ diff --git a/flags/flags-iso/shiny/ico/_gosquared.ico b/flags/flags-iso/shiny/ico/_gosquared.ico new file mode 100644 index 0000000..2e765b0 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_gosquared.ico differ diff --git a/flags/flags-iso/shiny/ico/_kosovo.ico b/flags/flags-iso/shiny/ico/_kosovo.ico new file mode 100644 index 0000000..e2ac7fa Binary files /dev/null and b/flags/flags-iso/shiny/ico/_kosovo.ico differ diff --git a/flags/flags-iso/shiny/ico/_mars.ico b/flags/flags-iso/shiny/ico/_mars.ico new file mode 100644 index 0000000..968f3f1 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_mars.ico differ diff --git a/flags/flags-iso/shiny/ico/_nagorno-karabakh.ico b/flags/flags-iso/shiny/ico/_nagorno-karabakh.ico new file mode 100644 index 0000000..0b8455d Binary files /dev/null and b/flags/flags-iso/shiny/ico/_nagorno-karabakh.ico differ diff --git a/flags/flags-iso/shiny/ico/_nato.ico b/flags/flags-iso/shiny/ico/_nato.ico new file mode 100644 index 0000000..9238ea6 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_nato.ico differ diff --git a/flags/flags-iso/shiny/ico/_northern-cyprus.ico b/flags/flags-iso/shiny/ico/_northern-cyprus.ico new file mode 100644 index 0000000..c21aa42 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_northern-cyprus.ico differ diff --git a/flags/flags-iso/shiny/ico/_olympics.ico b/flags/flags-iso/shiny/ico/_olympics.ico new file mode 100644 index 0000000..4b414cd Binary files /dev/null and b/flags/flags-iso/shiny/ico/_olympics.ico differ diff --git a/flags/flags-iso/shiny/ico/_red-cross.ico b/flags/flags-iso/shiny/ico/_red-cross.ico new file mode 100644 index 0000000..a4308b8 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_red-cross.ico differ diff --git a/flags/flags-iso/shiny/ico/_scotland.ico b/flags/flags-iso/shiny/ico/_scotland.ico new file mode 100644 index 0000000..c162cba Binary files /dev/null and b/flags/flags-iso/shiny/ico/_scotland.ico differ diff --git a/flags/flags-iso/shiny/ico/_somaliland.ico b/flags/flags-iso/shiny/ico/_somaliland.ico new file mode 100644 index 0000000..af967d3 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_somaliland.ico differ diff --git a/flags/flags-iso/shiny/ico/_south-ossetia.ico b/flags/flags-iso/shiny/ico/_south-ossetia.ico new file mode 100644 index 0000000..d885236 Binary files /dev/null and b/flags/flags-iso/shiny/ico/_south-ossetia.ico differ diff --git a/flags/flags-iso/shiny/ico/_united-nations.ico b/flags/flags-iso/shiny/ico/_united-nations.ico new file mode 100644 index 0000000..41d5a4c Binary files /dev/null and b/flags/flags-iso/shiny/ico/_united-nations.ico differ diff --git a/flags/flags-iso/shiny/ico/_wales.ico b/flags/flags-iso/shiny/ico/_wales.ico new file mode 100644 index 0000000..c50192b Binary files /dev/null and b/flags/flags-iso/shiny/ico/_wales.ico differ diff --git a/flags/flags/flat/16/Abkhazia.png b/flags/flags/flat/16/Abkhazia.png new file mode 100644 index 0000000..0abf686 Binary files /dev/null and b/flags/flags/flat/16/Abkhazia.png differ diff --git a/flags/flags/flat/16/Afghanistan.png b/flags/flags/flat/16/Afghanistan.png new file mode 100644 index 0000000..482779b Binary files /dev/null and b/flags/flags/flat/16/Afghanistan.png differ diff --git a/flags/flags/flat/16/Aland.png b/flags/flags/flat/16/Aland.png new file mode 100644 index 0000000..21a5e1c Binary files /dev/null and b/flags/flags/flat/16/Aland.png differ diff --git a/flags/flags/flat/16/Albania.png b/flags/flags/flat/16/Albania.png new file mode 100644 index 0000000..69ba464 Binary files /dev/null and b/flags/flags/flat/16/Albania.png differ diff --git a/flags/flags/flat/16/Algeria.png b/flags/flags/flat/16/Algeria.png new file mode 100644 index 0000000..5e97662 Binary files /dev/null and b/flags/flags/flat/16/Algeria.png differ diff --git a/flags/flags/flat/16/American-Samoa.png b/flags/flags/flat/16/American-Samoa.png new file mode 100644 index 0000000..f959e3a Binary files /dev/null and b/flags/flags/flat/16/American-Samoa.png differ diff --git a/flags/flags/flat/16/Andorra.png b/flags/flags/flat/16/Andorra.png new file mode 100644 index 0000000..d965a79 Binary files /dev/null and b/flags/flags/flat/16/Andorra.png differ diff --git a/flags/flags/flat/16/Angola.png b/flags/flags/flat/16/Angola.png new file mode 100644 index 0000000..129a2d9 Binary files /dev/null and b/flags/flags/flat/16/Angola.png differ diff --git a/flags/flags/flat/16/Anguilla.png b/flags/flags/flat/16/Anguilla.png new file mode 100644 index 0000000..6c8ce55 Binary files /dev/null and b/flags/flags/flat/16/Anguilla.png differ diff --git a/flags/flags/flat/16/Antarctica.png b/flags/flags/flat/16/Antarctica.png new file mode 100644 index 0000000..565eba0 Binary files /dev/null and b/flags/flags/flat/16/Antarctica.png differ diff --git a/flags/flags/flat/16/Antigua-and-Barbuda.png b/flags/flags/flat/16/Antigua-and-Barbuda.png new file mode 100644 index 0000000..6470e12 Binary files /dev/null and b/flags/flags/flat/16/Antigua-and-Barbuda.png differ diff --git a/flags/flags/flat/16/Argentina.png b/flags/flags/flat/16/Argentina.png new file mode 100644 index 0000000..aa5049b Binary files /dev/null and b/flags/flags/flat/16/Argentina.png differ diff --git a/flags/flags/flat/16/Armenia.png b/flags/flags/flat/16/Armenia.png new file mode 100644 index 0000000..5b222d9 Binary files /dev/null and b/flags/flags/flat/16/Armenia.png differ diff --git a/flags/flags/flat/16/Aruba.png b/flags/flags/flat/16/Aruba.png new file mode 100644 index 0000000..6ef2467 Binary files /dev/null and b/flags/flags/flat/16/Aruba.png differ diff --git a/flags/flags/flat/16/Australia.png b/flags/flags/flat/16/Australia.png new file mode 100644 index 0000000..f2fc59c Binary files /dev/null and b/flags/flags/flat/16/Australia.png differ diff --git a/flags/flags/flat/16/Austria.png b/flags/flags/flat/16/Austria.png new file mode 100644 index 0000000..aa8d102 Binary files /dev/null and b/flags/flags/flat/16/Austria.png differ diff --git a/flags/flags/flat/16/Azerbaijan.png b/flags/flags/flat/16/Azerbaijan.png new file mode 100644 index 0000000..b6ea7c7 Binary files /dev/null and b/flags/flags/flat/16/Azerbaijan.png differ diff --git a/flags/flags/flat/16/Bahamas.png b/flags/flags/flat/16/Bahamas.png new file mode 100644 index 0000000..10a987f Binary files /dev/null and b/flags/flags/flat/16/Bahamas.png differ diff --git a/flags/flags/flat/16/Bahrain.png b/flags/flags/flat/16/Bahrain.png new file mode 100644 index 0000000..e2514bb Binary files /dev/null and b/flags/flags/flat/16/Bahrain.png differ diff --git a/flags/flags/flat/16/Bangladesh.png b/flags/flags/flat/16/Bangladesh.png new file mode 100644 index 0000000..fc7affb Binary files /dev/null and b/flags/flags/flat/16/Bangladesh.png differ diff --git a/flags/flags/flat/16/Barbados.png b/flags/flags/flat/16/Barbados.png new file mode 100644 index 0000000..3e86dbb Binary files /dev/null and b/flags/flags/flat/16/Barbados.png differ diff --git a/flags/flags/flat/16/Belarus.png b/flags/flags/flat/16/Belarus.png new file mode 100644 index 0000000..772539f Binary files /dev/null and b/flags/flags/flat/16/Belarus.png differ diff --git a/flags/flags/flat/16/Belgium.png b/flags/flags/flat/16/Belgium.png new file mode 100644 index 0000000..182e9ad Binary files /dev/null and b/flags/flags/flat/16/Belgium.png differ diff --git a/flags/flags/flat/16/Belize.png b/flags/flags/flat/16/Belize.png new file mode 100644 index 0000000..9ae6715 Binary files /dev/null and b/flags/flags/flat/16/Belize.png differ diff --git a/flags/flags/flat/16/Benin.png b/flags/flags/flat/16/Benin.png new file mode 100644 index 0000000..e9f24b0 Binary files /dev/null and b/flags/flags/flat/16/Benin.png differ diff --git a/flags/flags/flat/16/Bermuda.png b/flags/flags/flat/16/Bermuda.png new file mode 100644 index 0000000..5b66e1f Binary files /dev/null and b/flags/flags/flat/16/Bermuda.png differ diff --git a/flags/flags/flat/16/Bhutan.png b/flags/flags/flat/16/Bhutan.png new file mode 100644 index 0000000..fe52b87 Binary files /dev/null and b/flags/flags/flat/16/Bhutan.png differ diff --git a/flags/flags/flat/16/Bolivia.png b/flags/flags/flat/16/Bolivia.png new file mode 100644 index 0000000..3f0c41f Binary files /dev/null and b/flags/flags/flat/16/Bolivia.png differ diff --git a/flags/flags/flat/16/Bosnia-and-Herzegovina.png b/flags/flags/flat/16/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..570594b Binary files /dev/null and b/flags/flags/flat/16/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/flat/16/Botswana.png b/flags/flags/flat/16/Botswana.png new file mode 100644 index 0000000..8da822f Binary files /dev/null and b/flags/flags/flat/16/Botswana.png differ diff --git a/flags/flags/flat/16/Brazil.png b/flags/flags/flat/16/Brazil.png new file mode 100644 index 0000000..f97b96a Binary files /dev/null and b/flags/flags/flat/16/Brazil.png differ diff --git a/flags/flags/flat/16/British-Antarctic-Territory.png b/flags/flags/flat/16/British-Antarctic-Territory.png new file mode 100644 index 0000000..b29a7dc Binary files /dev/null and b/flags/flags/flat/16/British-Antarctic-Territory.png differ diff --git a/flags/flags/flat/16/British-Virgin-Islands.png b/flags/flags/flat/16/British-Virgin-Islands.png new file mode 100644 index 0000000..0bd002e Binary files /dev/null and b/flags/flags/flat/16/British-Virgin-Islands.png differ diff --git a/flags/flags/flat/16/Brunei.png b/flags/flags/flat/16/Brunei.png new file mode 100644 index 0000000..64cfbb9 Binary files /dev/null and b/flags/flags/flat/16/Brunei.png differ diff --git a/flags/flags/flat/16/Bulgaria.png b/flags/flags/flat/16/Bulgaria.png new file mode 100644 index 0000000..903ed4f Binary files /dev/null and b/flags/flags/flat/16/Bulgaria.png differ diff --git a/flags/flags/flat/16/Burkina-Faso.png b/flags/flags/flat/16/Burkina-Faso.png new file mode 100644 index 0000000..2a861b5 Binary files /dev/null and b/flags/flags/flat/16/Burkina-Faso.png differ diff --git a/flags/flags/flat/16/Burundi.png b/flags/flags/flat/16/Burundi.png new file mode 100644 index 0000000..82dc6c5 Binary files /dev/null and b/flags/flags/flat/16/Burundi.png differ diff --git a/flags/flags/flat/16/Cambodia.png b/flags/flags/flat/16/Cambodia.png new file mode 100644 index 0000000..6fb7f57 Binary files /dev/null and b/flags/flags/flat/16/Cambodia.png differ diff --git a/flags/flags/flat/16/Cameroon.png b/flags/flags/flat/16/Cameroon.png new file mode 100644 index 0000000..2b4cea9 Binary files /dev/null and b/flags/flags/flat/16/Cameroon.png differ diff --git a/flags/flags/flat/16/Canada.png b/flags/flags/flat/16/Canada.png new file mode 100644 index 0000000..3153c20 Binary files /dev/null and b/flags/flags/flat/16/Canada.png differ diff --git a/flags/flags/flat/16/Cape-Verde.png b/flags/flags/flat/16/Cape-Verde.png new file mode 100644 index 0000000..7736ea1 Binary files /dev/null and b/flags/flags/flat/16/Cape-Verde.png differ diff --git a/flags/flags/flat/16/Cayman-Islands.png b/flags/flags/flat/16/Cayman-Islands.png new file mode 100644 index 0000000..c4bfbd9 Binary files /dev/null and b/flags/flags/flat/16/Cayman-Islands.png differ diff --git a/flags/flags/flat/16/Central-African-Republic.png b/flags/flags/flat/16/Central-African-Republic.png new file mode 100644 index 0000000..60fadb2 Binary files /dev/null and b/flags/flags/flat/16/Central-African-Republic.png differ diff --git a/flags/flags/flat/16/Chad.png b/flags/flags/flat/16/Chad.png new file mode 100644 index 0000000..787eebb Binary files /dev/null and b/flags/flags/flat/16/Chad.png differ diff --git a/flags/flags/flat/16/Chile.png b/flags/flags/flat/16/Chile.png new file mode 100644 index 0000000..1a7c983 Binary files /dev/null and b/flags/flags/flat/16/Chile.png differ diff --git a/flags/flags/flat/16/China.png b/flags/flags/flat/16/China.png new file mode 100644 index 0000000..edd5f1d Binary files /dev/null and b/flags/flags/flat/16/China.png differ diff --git a/flags/flags/flat/16/Christmas-Island.png b/flags/flags/flat/16/Christmas-Island.png new file mode 100644 index 0000000..0f383db Binary files /dev/null and b/flags/flags/flat/16/Christmas-Island.png differ diff --git a/flags/flags/flat/16/Cocos-Keeling-Islands.png b/flags/flags/flat/16/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..7e5d0df Binary files /dev/null and b/flags/flags/flat/16/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/flat/16/Colombia.png b/flags/flags/flat/16/Colombia.png new file mode 100644 index 0000000..ad276d0 Binary files /dev/null and b/flags/flags/flat/16/Colombia.png differ diff --git a/flags/flags/flat/16/Commonwealth.png b/flags/flags/flat/16/Commonwealth.png new file mode 100644 index 0000000..8f08c8a Binary files /dev/null and b/flags/flags/flat/16/Commonwealth.png differ diff --git a/flags/flags/flat/16/Comoros.png b/flags/flags/flat/16/Comoros.png new file mode 100644 index 0000000..43d8a75 Binary files /dev/null and b/flags/flags/flat/16/Comoros.png differ diff --git a/flags/flags/flat/16/Cook-Islands.png b/flags/flags/flat/16/Cook-Islands.png new file mode 100644 index 0000000..c8eba16 Binary files /dev/null and b/flags/flags/flat/16/Cook-Islands.png differ diff --git a/flags/flags/flat/16/Costa-Rica.png b/flags/flags/flat/16/Costa-Rica.png new file mode 100644 index 0000000..a102ffa Binary files /dev/null and b/flags/flags/flat/16/Costa-Rica.png differ diff --git a/flags/flags/flat/16/Cote-dIvoire.png b/flags/flags/flat/16/Cote-dIvoire.png new file mode 100644 index 0000000..25a99ef Binary files /dev/null and b/flags/flags/flat/16/Cote-dIvoire.png differ diff --git a/flags/flags/flat/16/Croatia.png b/flags/flags/flat/16/Croatia.png new file mode 100644 index 0000000..6f845d5 Binary files /dev/null and b/flags/flags/flat/16/Croatia.png differ diff --git a/flags/flags/flat/16/Cuba.png b/flags/flags/flat/16/Cuba.png new file mode 100644 index 0000000..99f7118 Binary files /dev/null and b/flags/flags/flat/16/Cuba.png differ diff --git a/flags/flags/flat/16/Cyprus.png b/flags/flags/flat/16/Cyprus.png new file mode 100644 index 0000000..a1b08de Binary files /dev/null and b/flags/flags/flat/16/Cyprus.png differ diff --git a/flags/flags/flat/16/Czech-Republic.png b/flags/flags/flat/16/Czech-Republic.png new file mode 100644 index 0000000..95ffbf6 Binary files /dev/null and b/flags/flags/flat/16/Czech-Republic.png differ diff --git a/flags/flags/flat/16/Democratic-Republic-of-the-Congo.png b/flags/flags/flat/16/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..afebbaa Binary files /dev/null and b/flags/flags/flat/16/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/16/Denmark.png b/flags/flags/flat/16/Denmark.png new file mode 100644 index 0000000..349cb41 Binary files /dev/null and b/flags/flags/flat/16/Denmark.png differ diff --git a/flags/flags/flat/16/Djibouti.png b/flags/flags/flat/16/Djibouti.png new file mode 100644 index 0000000..a08f8e1 Binary files /dev/null and b/flags/flags/flat/16/Djibouti.png differ diff --git a/flags/flags/flat/16/Dominica.png b/flags/flags/flat/16/Dominica.png new file mode 100644 index 0000000..117e74d Binary files /dev/null and b/flags/flags/flat/16/Dominica.png differ diff --git a/flags/flags/flat/16/Dominican-Republic.png b/flags/flags/flat/16/Dominican-Republic.png new file mode 100644 index 0000000..892e2e2 Binary files /dev/null and b/flags/flags/flat/16/Dominican-Republic.png differ diff --git a/flags/flags/flat/16/East-Timor.png b/flags/flags/flat/16/East-Timor.png new file mode 100644 index 0000000..b7e77dc Binary files /dev/null and b/flags/flags/flat/16/East-Timor.png differ diff --git a/flags/flags/flat/16/Ecuador.png b/flags/flags/flat/16/Ecuador.png new file mode 100644 index 0000000..5741088 Binary files /dev/null and b/flags/flags/flat/16/Ecuador.png differ diff --git a/flags/flags/flat/16/Egypt.png b/flags/flags/flat/16/Egypt.png new file mode 100644 index 0000000..0e873be Binary files /dev/null and b/flags/flags/flat/16/Egypt.png differ diff --git a/flags/flags/flat/16/El-Salvador.png b/flags/flags/flat/16/El-Salvador.png new file mode 100644 index 0000000..b5f69fa Binary files /dev/null and b/flags/flags/flat/16/El-Salvador.png differ diff --git a/flags/flags/flat/16/England.png b/flags/flags/flat/16/England.png new file mode 100644 index 0000000..7acb112 Binary files /dev/null and b/flags/flags/flat/16/England.png differ diff --git a/flags/flags/flat/16/Equatorial-Guinea.png b/flags/flags/flat/16/Equatorial-Guinea.png new file mode 100644 index 0000000..9b02045 Binary files /dev/null and b/flags/flags/flat/16/Equatorial-Guinea.png differ diff --git a/flags/flags/flat/16/Eritrea.png b/flags/flags/flat/16/Eritrea.png new file mode 100644 index 0000000..50781ce Binary files /dev/null and b/flags/flags/flat/16/Eritrea.png differ diff --git a/flags/flags/flat/16/Estonia.png b/flags/flags/flat/16/Estonia.png new file mode 100644 index 0000000..1f11899 Binary files /dev/null and b/flags/flags/flat/16/Estonia.png differ diff --git a/flags/flags/flat/16/Ethiopia.png b/flags/flags/flat/16/Ethiopia.png new file mode 100644 index 0000000..aa14723 Binary files /dev/null and b/flags/flags/flat/16/Ethiopia.png differ diff --git a/flags/flags/flat/16/European-Union.png b/flags/flags/flat/16/European-Union.png new file mode 100644 index 0000000..2bfaf10 Binary files /dev/null and b/flags/flags/flat/16/European-Union.png differ diff --git a/flags/flags/flat/16/Falkland-Islands.png b/flags/flags/flat/16/Falkland-Islands.png new file mode 100644 index 0000000..a7cadb7 Binary files /dev/null and b/flags/flags/flat/16/Falkland-Islands.png differ diff --git a/flags/flags/flat/16/Faroes.png b/flags/flags/flat/16/Faroes.png new file mode 100644 index 0000000..4a49e30 Binary files /dev/null and b/flags/flags/flat/16/Faroes.png differ diff --git a/flags/flags/flat/16/Fiji.png b/flags/flags/flat/16/Fiji.png new file mode 100644 index 0000000..1cb520c Binary files /dev/null and b/flags/flags/flat/16/Fiji.png differ diff --git a/flags/flags/flat/16/Finland.png b/flags/flags/flat/16/Finland.png new file mode 100644 index 0000000..b5a380c Binary files /dev/null and b/flags/flags/flat/16/Finland.png differ diff --git a/flags/flags/flat/16/France.png b/flags/flags/flat/16/France.png new file mode 100644 index 0000000..0706dcc Binary files /dev/null and b/flags/flags/flat/16/France.png differ diff --git a/flags/flags/flat/16/French-Polynesia.png b/flags/flags/flat/16/French-Polynesia.png new file mode 100644 index 0000000..c932709 Binary files /dev/null and b/flags/flags/flat/16/French-Polynesia.png differ diff --git a/flags/flags/flat/16/French-Southern-Territories.png b/flags/flags/flat/16/French-Southern-Territories.png new file mode 100644 index 0000000..8292904 Binary files /dev/null and b/flags/flags/flat/16/French-Southern-Territories.png differ diff --git a/flags/flags/flat/16/Gabon.png b/flags/flags/flat/16/Gabon.png new file mode 100644 index 0000000..38899c4 Binary files /dev/null and b/flags/flags/flat/16/Gabon.png differ diff --git a/flags/flags/flat/16/Gambia.png b/flags/flags/flat/16/Gambia.png new file mode 100644 index 0000000..72c170a Binary files /dev/null and b/flags/flags/flat/16/Gambia.png differ diff --git a/flags/flags/flat/16/Georgia.png b/flags/flags/flat/16/Georgia.png new file mode 100644 index 0000000..7aff274 Binary files /dev/null and b/flags/flags/flat/16/Georgia.png differ diff --git a/flags/flags/flat/16/Germany.png b/flags/flags/flat/16/Germany.png new file mode 100644 index 0000000..f2f6175 Binary files /dev/null and b/flags/flags/flat/16/Germany.png differ diff --git a/flags/flags/flat/16/Ghana.png b/flags/flags/flat/16/Ghana.png new file mode 100644 index 0000000..e9b79a6 Binary files /dev/null and b/flags/flags/flat/16/Ghana.png differ diff --git a/flags/flags/flat/16/Gibraltar.png b/flags/flags/flat/16/Gibraltar.png new file mode 100644 index 0000000..e14ebe5 Binary files /dev/null and b/flags/flags/flat/16/Gibraltar.png differ diff --git a/flags/flags/flat/16/GoSquared.png b/flags/flags/flat/16/GoSquared.png new file mode 100644 index 0000000..74f2eb5 Binary files /dev/null and b/flags/flags/flat/16/GoSquared.png differ diff --git a/flags/flags/flat/16/Greece.png b/flags/flags/flat/16/Greece.png new file mode 100644 index 0000000..dc34d19 Binary files /dev/null and b/flags/flags/flat/16/Greece.png differ diff --git a/flags/flags/flat/16/Greenland.png b/flags/flags/flat/16/Greenland.png new file mode 100644 index 0000000..6b995ff Binary files /dev/null and b/flags/flags/flat/16/Greenland.png differ diff --git a/flags/flags/flat/16/Grenada.png b/flags/flags/flat/16/Grenada.png new file mode 100644 index 0000000..2d33bbb Binary files /dev/null and b/flags/flags/flat/16/Grenada.png differ diff --git a/flags/flags/flat/16/Guam.png b/flags/flags/flat/16/Guam.png new file mode 100644 index 0000000..31e9cc5 Binary files /dev/null and b/flags/flags/flat/16/Guam.png differ diff --git a/flags/flags/flat/16/Guatemala.png b/flags/flags/flat/16/Guatemala.png new file mode 100644 index 0000000..0b4b8b4 Binary files /dev/null and b/flags/flags/flat/16/Guatemala.png differ diff --git a/flags/flags/flat/16/Guernsey.png b/flags/flags/flat/16/Guernsey.png new file mode 100644 index 0000000..c0c3a78 Binary files /dev/null and b/flags/flags/flat/16/Guernsey.png differ diff --git a/flags/flags/flat/16/Guinea-Bissau.png b/flags/flags/flat/16/Guinea-Bissau.png new file mode 100644 index 0000000..98c6633 Binary files /dev/null and b/flags/flags/flat/16/Guinea-Bissau.png differ diff --git a/flags/flags/flat/16/Guinea.png b/flags/flags/flat/16/Guinea.png new file mode 100644 index 0000000..9983039 Binary files /dev/null and b/flags/flags/flat/16/Guinea.png differ diff --git a/flags/flags/flat/16/Guyana.png b/flags/flags/flat/16/Guyana.png new file mode 100644 index 0000000..8cc6d9c Binary files /dev/null and b/flags/flags/flat/16/Guyana.png differ diff --git a/flags/flags/flat/16/Haiti.png b/flags/flags/flat/16/Haiti.png new file mode 100644 index 0000000..da4dc3b Binary files /dev/null and b/flags/flags/flat/16/Haiti.png differ diff --git a/flags/flags/flat/16/Honduras.png b/flags/flags/flat/16/Honduras.png new file mode 100644 index 0000000..e794c43 Binary files /dev/null and b/flags/flags/flat/16/Honduras.png differ diff --git a/flags/flags/flat/16/Hong-Kong.png b/flags/flags/flat/16/Hong-Kong.png new file mode 100644 index 0000000..89c38aa Binary files /dev/null and b/flags/flags/flat/16/Hong-Kong.png differ diff --git a/flags/flags/flat/16/Hungary.png b/flags/flags/flat/16/Hungary.png new file mode 100644 index 0000000..98de28a Binary files /dev/null and b/flags/flags/flat/16/Hungary.png differ diff --git a/flags/flags/flat/16/Iceland.png b/flags/flags/flat/16/Iceland.png new file mode 100644 index 0000000..87253cd Binary files /dev/null and b/flags/flags/flat/16/Iceland.png differ diff --git a/flags/flags/flat/16/India.png b/flags/flags/flat/16/India.png new file mode 100644 index 0000000..f1c32fa Binary files /dev/null and b/flags/flags/flat/16/India.png differ diff --git a/flags/flags/flat/16/Indonesia.png b/flags/flags/flat/16/Indonesia.png new file mode 100644 index 0000000..a14683d Binary files /dev/null and b/flags/flags/flat/16/Indonesia.png differ diff --git a/flags/flags/flat/16/Iran.png b/flags/flags/flat/16/Iran.png new file mode 100644 index 0000000..354a3ac Binary files /dev/null and b/flags/flags/flat/16/Iran.png differ diff --git a/flags/flags/flat/16/Iraq.png b/flags/flags/flat/16/Iraq.png new file mode 100644 index 0000000..8d5a323 Binary files /dev/null and b/flags/flags/flat/16/Iraq.png differ diff --git a/flags/flags/flat/16/Ireland.png b/flags/flags/flat/16/Ireland.png new file mode 100644 index 0000000..105c26b Binary files /dev/null and b/flags/flags/flat/16/Ireland.png differ diff --git a/flags/flags/flat/16/Isle-of-Man.png b/flags/flags/flat/16/Isle-of-Man.png new file mode 100644 index 0000000..f0ff466 Binary files /dev/null and b/flags/flags/flat/16/Isle-of-Man.png differ diff --git a/flags/flags/flat/16/Israel.png b/flags/flags/flat/16/Israel.png new file mode 100644 index 0000000..9ad54c5 Binary files /dev/null and b/flags/flags/flat/16/Israel.png differ diff --git a/flags/flags/flat/16/Italy.png b/flags/flags/flat/16/Italy.png new file mode 100644 index 0000000..ce11f1f Binary files /dev/null and b/flags/flags/flat/16/Italy.png differ diff --git a/flags/flags/flat/16/Jamaica.png b/flags/flags/flat/16/Jamaica.png new file mode 100644 index 0000000..378f70d Binary files /dev/null and b/flags/flags/flat/16/Jamaica.png differ diff --git a/flags/flags/flat/16/Japan.png b/flags/flags/flat/16/Japan.png new file mode 100644 index 0000000..78c159a Binary files /dev/null and b/flags/flags/flat/16/Japan.png differ diff --git a/flags/flags/flat/16/Jersey.png b/flags/flags/flat/16/Jersey.png new file mode 100644 index 0000000..904b610 Binary files /dev/null and b/flags/flags/flat/16/Jersey.png differ diff --git a/flags/flags/flat/16/Jordan.png b/flags/flags/flat/16/Jordan.png new file mode 100644 index 0000000..270e524 Binary files /dev/null and b/flags/flags/flat/16/Jordan.png differ diff --git a/flags/flags/flat/16/Kazakhstan.png b/flags/flags/flat/16/Kazakhstan.png new file mode 100644 index 0000000..1a0ca4f Binary files /dev/null and b/flags/flags/flat/16/Kazakhstan.png differ diff --git a/flags/flags/flat/16/Kenya.png b/flags/flags/flat/16/Kenya.png new file mode 100644 index 0000000..ecbeb5d Binary files /dev/null and b/flags/flags/flat/16/Kenya.png differ diff --git a/flags/flags/flat/16/Kiribati.png b/flags/flags/flat/16/Kiribati.png new file mode 100644 index 0000000..e2762a6 Binary files /dev/null and b/flags/flags/flat/16/Kiribati.png differ diff --git a/flags/flags/flat/16/Kosovo.png b/flags/flags/flat/16/Kosovo.png new file mode 100644 index 0000000..dfbb5f0 Binary files /dev/null and b/flags/flags/flat/16/Kosovo.png differ diff --git a/flags/flags/flat/16/Kuwait.png b/flags/flags/flat/16/Kuwait.png new file mode 100644 index 0000000..6f7010b Binary files /dev/null and b/flags/flags/flat/16/Kuwait.png differ diff --git a/flags/flags/flat/16/Kyrgyzstan.png b/flags/flags/flat/16/Kyrgyzstan.png new file mode 100644 index 0000000..12b0dad Binary files /dev/null and b/flags/flags/flat/16/Kyrgyzstan.png differ diff --git a/flags/flags/flat/16/Laos.png b/flags/flags/flat/16/Laos.png new file mode 100644 index 0000000..f78e67f Binary files /dev/null and b/flags/flags/flat/16/Laos.png differ diff --git a/flags/flags/flat/16/Latvia.png b/flags/flags/flat/16/Latvia.png new file mode 100644 index 0000000..3966acf Binary files /dev/null and b/flags/flags/flat/16/Latvia.png differ diff --git a/flags/flags/flat/16/Lebanon.png b/flags/flags/flat/16/Lebanon.png new file mode 100644 index 0000000..a9643c3 Binary files /dev/null and b/flags/flags/flat/16/Lebanon.png differ diff --git a/flags/flags/flat/16/Lesotho.png b/flags/flags/flat/16/Lesotho.png new file mode 100644 index 0000000..ad2aa4a Binary files /dev/null and b/flags/flags/flat/16/Lesotho.png differ diff --git a/flags/flags/flat/16/Liberia.png b/flags/flags/flat/16/Liberia.png new file mode 100644 index 0000000..dd3a57f Binary files /dev/null and b/flags/flags/flat/16/Liberia.png differ diff --git a/flags/flags/flat/16/Libya.png b/flags/flags/flat/16/Libya.png new file mode 100644 index 0000000..4db0845 Binary files /dev/null and b/flags/flags/flat/16/Libya.png differ diff --git a/flags/flags/flat/16/Liechtenstein.png b/flags/flags/flat/16/Liechtenstein.png new file mode 100644 index 0000000..cf7bbe4 Binary files /dev/null and b/flags/flags/flat/16/Liechtenstein.png differ diff --git a/flags/flags/flat/16/Lithuania.png b/flags/flags/flat/16/Lithuania.png new file mode 100644 index 0000000..f40f2e2 Binary files /dev/null and b/flags/flags/flat/16/Lithuania.png differ diff --git a/flags/flags/flat/16/Luxembourg.png b/flags/flags/flat/16/Luxembourg.png new file mode 100644 index 0000000..92e72f9 Binary files /dev/null and b/flags/flags/flat/16/Luxembourg.png differ diff --git a/flags/flags/flat/16/Macau.png b/flags/flags/flat/16/Macau.png new file mode 100644 index 0000000..2dc29c8 Binary files /dev/null and b/flags/flags/flat/16/Macau.png differ diff --git a/flags/flags/flat/16/Macedonia.png b/flags/flags/flat/16/Macedonia.png new file mode 100644 index 0000000..a676509 Binary files /dev/null and b/flags/flags/flat/16/Macedonia.png differ diff --git a/flags/flags/flat/16/Madagascar.png b/flags/flags/flat/16/Madagascar.png new file mode 100644 index 0000000..09f2469 Binary files /dev/null and b/flags/flags/flat/16/Madagascar.png differ diff --git a/flags/flags/flat/16/Malawi.png b/flags/flags/flat/16/Malawi.png new file mode 100644 index 0000000..d75a8d3 Binary files /dev/null and b/flags/flags/flat/16/Malawi.png differ diff --git a/flags/flags/flat/16/Malaysia.png b/flags/flags/flat/16/Malaysia.png new file mode 100644 index 0000000..a8e3996 Binary files /dev/null and b/flags/flags/flat/16/Malaysia.png differ diff --git a/flags/flags/flat/16/Maldives.png b/flags/flags/flat/16/Maldives.png new file mode 100644 index 0000000..b87bb2e Binary files /dev/null and b/flags/flags/flat/16/Maldives.png differ diff --git a/flags/flags/flat/16/Mali.png b/flags/flags/flat/16/Mali.png new file mode 100644 index 0000000..bd23841 Binary files /dev/null and b/flags/flags/flat/16/Mali.png differ diff --git a/flags/flags/flat/16/Malta.png b/flags/flags/flat/16/Malta.png new file mode 100644 index 0000000..93d502b Binary files /dev/null and b/flags/flags/flat/16/Malta.png differ diff --git a/flags/flags/flat/16/Mars.png b/flags/flags/flat/16/Mars.png new file mode 100644 index 0000000..4f5980b Binary files /dev/null and b/flags/flags/flat/16/Mars.png differ diff --git a/flags/flags/flat/16/Marshall-Islands.png b/flags/flags/flat/16/Marshall-Islands.png new file mode 100644 index 0000000..3ffcf01 Binary files /dev/null and b/flags/flags/flat/16/Marshall-Islands.png differ diff --git a/flags/flags/flat/16/Mauritania.png b/flags/flags/flat/16/Mauritania.png new file mode 100644 index 0000000..6bda861 Binary files /dev/null and b/flags/flags/flat/16/Mauritania.png differ diff --git a/flags/flags/flat/16/Mauritius.png b/flags/flags/flat/16/Mauritius.png new file mode 100644 index 0000000..6bf5235 Binary files /dev/null and b/flags/flags/flat/16/Mauritius.png differ diff --git a/flags/flags/flat/16/Mayotte.png b/flags/flags/flat/16/Mayotte.png new file mode 100644 index 0000000..676e06c Binary files /dev/null and b/flags/flags/flat/16/Mayotte.png differ diff --git a/flags/flags/flat/16/Mexico.png b/flags/flags/flat/16/Mexico.png new file mode 100644 index 0000000..8fa7919 Binary files /dev/null and b/flags/flags/flat/16/Mexico.png differ diff --git a/flags/flags/flat/16/Micronesia.png b/flags/flags/flat/16/Micronesia.png new file mode 100644 index 0000000..5a9b85c Binary files /dev/null and b/flags/flags/flat/16/Micronesia.png differ diff --git a/flags/flags/flat/16/Moldova.png b/flags/flags/flat/16/Moldova.png new file mode 100644 index 0000000..21fd6ec Binary files /dev/null and b/flags/flags/flat/16/Moldova.png differ diff --git a/flags/flags/flat/16/Monaco.png b/flags/flags/flat/16/Monaco.png new file mode 100644 index 0000000..a14683d Binary files /dev/null and b/flags/flags/flat/16/Monaco.png differ diff --git a/flags/flags/flat/16/Mongolia.png b/flags/flags/flat/16/Mongolia.png new file mode 100644 index 0000000..67a5335 Binary files /dev/null and b/flags/flags/flat/16/Mongolia.png differ diff --git a/flags/flags/flat/16/Montenegro.png b/flags/flags/flat/16/Montenegro.png new file mode 100644 index 0000000..0ca932d Binary files /dev/null and b/flags/flags/flat/16/Montenegro.png differ diff --git a/flags/flags/flat/16/Montserrat.png b/flags/flags/flat/16/Montserrat.png new file mode 100644 index 0000000..a860c6f Binary files /dev/null and b/flags/flags/flat/16/Montserrat.png differ diff --git a/flags/flags/flat/16/Morocco.png b/flags/flags/flat/16/Morocco.png new file mode 100644 index 0000000..69424d5 Binary files /dev/null and b/flags/flags/flat/16/Morocco.png differ diff --git a/flags/flags/flat/16/Mozambique.png b/flags/flags/flat/16/Mozambique.png new file mode 100644 index 0000000..0fdc38c Binary files /dev/null and b/flags/flags/flat/16/Mozambique.png differ diff --git a/flags/flags/flat/16/Myanmar.png b/flags/flags/flat/16/Myanmar.png new file mode 100644 index 0000000..1bf0d5b Binary files /dev/null and b/flags/flags/flat/16/Myanmar.png differ diff --git a/flags/flags/flat/16/NATO.png b/flags/flags/flat/16/NATO.png new file mode 100644 index 0000000..fdb0541 Binary files /dev/null and b/flags/flags/flat/16/NATO.png differ diff --git a/flags/flags/flat/16/Nagorno-Karabakh.png b/flags/flags/flat/16/Nagorno-Karabakh.png new file mode 100644 index 0000000..f5a8d27 Binary files /dev/null and b/flags/flags/flat/16/Nagorno-Karabakh.png differ diff --git a/flags/flags/flat/16/Namibia.png b/flags/flags/flat/16/Namibia.png new file mode 100644 index 0000000..52e2a79 Binary files /dev/null and b/flags/flags/flat/16/Namibia.png differ diff --git a/flags/flags/flat/16/Nauru.png b/flags/flags/flat/16/Nauru.png new file mode 100644 index 0000000..4b2d080 Binary files /dev/null and b/flags/flags/flat/16/Nauru.png differ diff --git a/flags/flags/flat/16/Nepal.png b/flags/flags/flat/16/Nepal.png new file mode 100644 index 0000000..eed654b Binary files /dev/null and b/flags/flags/flat/16/Nepal.png differ diff --git a/flags/flags/flat/16/Netherlands-Antilles.png b/flags/flags/flat/16/Netherlands-Antilles.png new file mode 100644 index 0000000..2c9e769 Binary files /dev/null and b/flags/flags/flat/16/Netherlands-Antilles.png differ diff --git a/flags/flags/flat/16/Netherlands.png b/flags/flags/flat/16/Netherlands.png new file mode 100644 index 0000000..036658e Binary files /dev/null and b/flags/flags/flat/16/Netherlands.png differ diff --git a/flags/flags/flat/16/New-Caledonia.png b/flags/flags/flat/16/New-Caledonia.png new file mode 100644 index 0000000..e3288ac Binary files /dev/null and b/flags/flags/flat/16/New-Caledonia.png differ diff --git a/flags/flags/flat/16/New-Zealand.png b/flags/flags/flat/16/New-Zealand.png new file mode 100644 index 0000000..913b18a Binary files /dev/null and b/flags/flags/flat/16/New-Zealand.png differ diff --git a/flags/flags/flat/16/Nicaragua.png b/flags/flags/flat/16/Nicaragua.png new file mode 100644 index 0000000..0f66acc Binary files /dev/null and b/flags/flags/flat/16/Nicaragua.png differ diff --git a/flags/flags/flat/16/Niger.png b/flags/flags/flat/16/Niger.png new file mode 100644 index 0000000..841e77f Binary files /dev/null and b/flags/flags/flat/16/Niger.png differ diff --git a/flags/flags/flat/16/Nigeria.png b/flags/flags/flat/16/Nigeria.png new file mode 100644 index 0000000..25fe78f Binary files /dev/null and b/flags/flags/flat/16/Nigeria.png differ diff --git a/flags/flags/flat/16/Niue.png b/flags/flags/flat/16/Niue.png new file mode 100644 index 0000000..d791c4a Binary files /dev/null and b/flags/flags/flat/16/Niue.png differ diff --git a/flags/flags/flat/16/Norfolk-Island.png b/flags/flags/flat/16/Norfolk-Island.png new file mode 100644 index 0000000..7c1af02 Binary files /dev/null and b/flags/flags/flat/16/Norfolk-Island.png differ diff --git a/flags/flags/flat/16/North-Korea.png b/flags/flags/flat/16/North-Korea.png new file mode 100644 index 0000000..b303f8e Binary files /dev/null and b/flags/flags/flat/16/North-Korea.png differ diff --git a/flags/flags/flat/16/Northern-Cyprus.png b/flags/flags/flat/16/Northern-Cyprus.png new file mode 100644 index 0000000..f9bf8bd Binary files /dev/null and b/flags/flags/flat/16/Northern-Cyprus.png differ diff --git a/flags/flags/flat/16/Northern-Mariana-Islands.png b/flags/flags/flat/16/Northern-Mariana-Islands.png new file mode 100644 index 0000000..b505754 Binary files /dev/null and b/flags/flags/flat/16/Northern-Mariana-Islands.png differ diff --git a/flags/flags/flat/16/Norway.png b/flags/flags/flat/16/Norway.png new file mode 100644 index 0000000..38a13c4 Binary files /dev/null and b/flags/flags/flat/16/Norway.png differ diff --git a/flags/flags/flat/16/Olympics.png b/flags/flags/flat/16/Olympics.png new file mode 100644 index 0000000..6045223 Binary files /dev/null and b/flags/flags/flat/16/Olympics.png differ diff --git a/flags/flags/flat/16/Oman.png b/flags/flags/flat/16/Oman.png new file mode 100644 index 0000000..b2a16c0 Binary files /dev/null and b/flags/flags/flat/16/Oman.png differ diff --git a/flags/flags/flat/16/Pakistan.png b/flags/flags/flat/16/Pakistan.png new file mode 100644 index 0000000..014af06 Binary files /dev/null and b/flags/flags/flat/16/Pakistan.png differ diff --git a/flags/flags/flat/16/Palau.png b/flags/flags/flat/16/Palau.png new file mode 100644 index 0000000..f9bcdc6 Binary files /dev/null and b/flags/flags/flat/16/Palau.png differ diff --git a/flags/flags/flat/16/Palestine.png b/flags/flags/flat/16/Palestine.png new file mode 100644 index 0000000..d4d85dc Binary files /dev/null and b/flags/flags/flat/16/Palestine.png differ diff --git a/flags/flags/flat/16/Panama.png b/flags/flags/flat/16/Panama.png new file mode 100644 index 0000000..fc0a34a Binary files /dev/null and b/flags/flags/flat/16/Panama.png differ diff --git a/flags/flags/flat/16/Papua-New-Guinea.png b/flags/flags/flat/16/Papua-New-Guinea.png new file mode 100644 index 0000000..68b758d Binary files /dev/null and b/flags/flags/flat/16/Papua-New-Guinea.png differ diff --git a/flags/flags/flat/16/Paraguay.png b/flags/flags/flat/16/Paraguay.png new file mode 100644 index 0000000..c289b6c Binary files /dev/null and b/flags/flags/flat/16/Paraguay.png differ diff --git a/flags/flags/flat/16/Peru.png b/flags/flags/flat/16/Peru.png new file mode 100644 index 0000000..ce31457 Binary files /dev/null and b/flags/flags/flat/16/Peru.png differ diff --git a/flags/flags/flat/16/Philippines.png b/flags/flags/flat/16/Philippines.png new file mode 100644 index 0000000..dc75142 Binary files /dev/null and b/flags/flags/flat/16/Philippines.png differ diff --git a/flags/flags/flat/16/Pitcairn-Islands.png b/flags/flags/flat/16/Pitcairn-Islands.png new file mode 100644 index 0000000..c046e9b Binary files /dev/null and b/flags/flags/flat/16/Pitcairn-Islands.png differ diff --git a/flags/flags/flat/16/Poland.png b/flags/flags/flat/16/Poland.png new file mode 100644 index 0000000..4d0fc51 Binary files /dev/null and b/flags/flags/flat/16/Poland.png differ diff --git a/flags/flags/flat/16/Portugal.png b/flags/flags/flat/16/Portugal.png new file mode 100644 index 0000000..18e276e Binary files /dev/null and b/flags/flags/flat/16/Portugal.png differ diff --git a/flags/flags/flat/16/Puerto-Rico.png b/flags/flags/flat/16/Puerto-Rico.png new file mode 100644 index 0000000..7d54f19 Binary files /dev/null and b/flags/flags/flat/16/Puerto-Rico.png differ diff --git a/flags/flags/flat/16/Qatar.png b/flags/flags/flat/16/Qatar.png new file mode 100644 index 0000000..95c7485 Binary files /dev/null and b/flags/flags/flat/16/Qatar.png differ diff --git a/flags/flags/flat/16/Red-Cross.png b/flags/flags/flat/16/Red-Cross.png new file mode 100644 index 0000000..28636e9 Binary files /dev/null and b/flags/flags/flat/16/Red-Cross.png differ diff --git a/flags/flags/flat/16/Republic-of-the-Congo.png b/flags/flags/flat/16/Republic-of-the-Congo.png new file mode 100644 index 0000000..7a7dc51 Binary files /dev/null and b/flags/flags/flat/16/Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/16/Romania.png b/flags/flags/flat/16/Romania.png new file mode 100644 index 0000000..3d9c2a3 Binary files /dev/null and b/flags/flags/flat/16/Romania.png differ diff --git a/flags/flags/flat/16/Russia.png b/flags/flags/flat/16/Russia.png new file mode 100644 index 0000000..a4318e7 Binary files /dev/null and b/flags/flags/flat/16/Russia.png differ diff --git a/flags/flags/flat/16/Rwanda.png b/flags/flags/flat/16/Rwanda.png new file mode 100644 index 0000000..00f5e1e Binary files /dev/null and b/flags/flags/flat/16/Rwanda.png differ diff --git a/flags/flags/flat/16/Saint-Barthelemy.png b/flags/flags/flat/16/Saint-Barthelemy.png new file mode 100644 index 0000000..533cce9 Binary files /dev/null and b/flags/flags/flat/16/Saint-Barthelemy.png differ diff --git a/flags/flags/flat/16/Saint-Helena.png b/flags/flags/flat/16/Saint-Helena.png new file mode 100644 index 0000000..4b2961b Binary files /dev/null and b/flags/flags/flat/16/Saint-Helena.png differ diff --git a/flags/flags/flat/16/Saint-Kitts-and-Nevis.png b/flags/flags/flat/16/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..5decf8d Binary files /dev/null and b/flags/flags/flat/16/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/flat/16/Saint-Lucia.png b/flags/flags/flat/16/Saint-Lucia.png new file mode 100644 index 0000000..ab5916b Binary files /dev/null and b/flags/flags/flat/16/Saint-Lucia.png differ diff --git a/flags/flags/flat/16/Saint-Vincent-and-the-Grenadines.png b/flags/flags/flat/16/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..e63a9c1 Binary files /dev/null and b/flags/flags/flat/16/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/flat/16/Samoa.png b/flags/flags/flat/16/Samoa.png new file mode 100644 index 0000000..d1f62df Binary files /dev/null and b/flags/flags/flat/16/Samoa.png differ diff --git a/flags/flags/flat/16/San-Marino.png b/flags/flags/flat/16/San-Marino.png new file mode 100644 index 0000000..f0d6572 Binary files /dev/null and b/flags/flags/flat/16/San-Marino.png differ diff --git a/flags/flags/flat/16/Sao-Tome-and-Principe.png b/flags/flags/flat/16/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..480886c Binary files /dev/null and b/flags/flags/flat/16/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/flat/16/Saudi-Arabia.png b/flags/flags/flat/16/Saudi-Arabia.png new file mode 100644 index 0000000..ba3f2de Binary files /dev/null and b/flags/flags/flat/16/Saudi-Arabia.png differ diff --git a/flags/flags/flat/16/Scotland.png b/flags/flags/flat/16/Scotland.png new file mode 100644 index 0000000..db58040 Binary files /dev/null and b/flags/flags/flat/16/Scotland.png differ diff --git a/flags/flags/flat/16/Senegal.png b/flags/flags/flat/16/Senegal.png new file mode 100644 index 0000000..a4fc08f Binary files /dev/null and b/flags/flags/flat/16/Senegal.png differ diff --git a/flags/flags/flat/16/Serbia.png b/flags/flags/flat/16/Serbia.png new file mode 100644 index 0000000..d95bcdf Binary files /dev/null and b/flags/flags/flat/16/Serbia.png differ diff --git a/flags/flags/flat/16/Seychelles.png b/flags/flags/flat/16/Seychelles.png new file mode 100644 index 0000000..2a49518 Binary files /dev/null and b/flags/flags/flat/16/Seychelles.png differ diff --git a/flags/flags/flat/16/Sierra-Leone.png b/flags/flags/flat/16/Sierra-Leone.png new file mode 100644 index 0000000..e8a3530 Binary files /dev/null and b/flags/flags/flat/16/Sierra-Leone.png differ diff --git a/flags/flags/flat/16/Singapore.png b/flags/flags/flat/16/Singapore.png new file mode 100644 index 0000000..8b1c5f0 Binary files /dev/null and b/flags/flags/flat/16/Singapore.png differ diff --git a/flags/flags/flat/16/Slovakia.png b/flags/flags/flat/16/Slovakia.png new file mode 100644 index 0000000..d622ef0 Binary files /dev/null and b/flags/flags/flat/16/Slovakia.png differ diff --git a/flags/flags/flat/16/Slovenia.png b/flags/flags/flat/16/Slovenia.png new file mode 100644 index 0000000..08cc3f4 Binary files /dev/null and b/flags/flags/flat/16/Slovenia.png differ diff --git a/flags/flags/flat/16/Solomon-Islands.png b/flags/flags/flat/16/Solomon-Islands.png new file mode 100644 index 0000000..1b6384a Binary files /dev/null and b/flags/flags/flat/16/Solomon-Islands.png differ diff --git a/flags/flags/flat/16/Somalia.png b/flags/flags/flat/16/Somalia.png new file mode 100644 index 0000000..3f0f416 Binary files /dev/null and b/flags/flags/flat/16/Somalia.png differ diff --git a/flags/flags/flat/16/Somaliland.png b/flags/flags/flat/16/Somaliland.png new file mode 100644 index 0000000..a903a3b Binary files /dev/null and b/flags/flags/flat/16/Somaliland.png differ diff --git a/flags/flags/flat/16/South-Africa.png b/flags/flags/flat/16/South-Africa.png new file mode 100644 index 0000000..701e010 Binary files /dev/null and b/flags/flags/flat/16/South-Africa.png differ diff --git a/flags/flags/flat/16/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/flat/16/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..55392f9 Binary files /dev/null and b/flags/flags/flat/16/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/flat/16/South-Korea.png b/flags/flags/flat/16/South-Korea.png new file mode 100644 index 0000000..d21bef9 Binary files /dev/null and b/flags/flags/flat/16/South-Korea.png differ diff --git a/flags/flags/flat/16/South-Ossetia.png b/flags/flags/flat/16/South-Ossetia.png new file mode 100644 index 0000000..d616841 Binary files /dev/null and b/flags/flags/flat/16/South-Ossetia.png differ diff --git a/flags/flags/flat/16/South-Sudan.png b/flags/flags/flat/16/South-Sudan.png new file mode 100644 index 0000000..c71cafa Binary files /dev/null and b/flags/flags/flat/16/South-Sudan.png differ diff --git a/flags/flags/flat/16/Spain.png b/flags/flags/flat/16/Spain.png new file mode 100644 index 0000000..b89db68 Binary files /dev/null and b/flags/flags/flat/16/Spain.png differ diff --git a/flags/flags/flat/16/Sri-Lanka.png b/flags/flags/flat/16/Sri-Lanka.png new file mode 100644 index 0000000..a60c8ed Binary files /dev/null and b/flags/flags/flat/16/Sri-Lanka.png differ diff --git a/flags/flags/flat/16/Sudan.png b/flags/flags/flat/16/Sudan.png new file mode 100644 index 0000000..5fc853b Binary files /dev/null and b/flags/flags/flat/16/Sudan.png differ diff --git a/flags/flags/flat/16/Suriname.png b/flags/flags/flat/16/Suriname.png new file mode 100644 index 0000000..6a8eea2 Binary files /dev/null and b/flags/flags/flat/16/Suriname.png differ diff --git a/flags/flags/flat/16/Swaziland.png b/flags/flags/flat/16/Swaziland.png new file mode 100644 index 0000000..b0615c3 Binary files /dev/null and b/flags/flags/flat/16/Swaziland.png differ diff --git a/flags/flags/flat/16/Sweden.png b/flags/flags/flat/16/Sweden.png new file mode 100644 index 0000000..ad7854b Binary files /dev/null and b/flags/flags/flat/16/Sweden.png differ diff --git a/flags/flags/flat/16/Switzerland.png b/flags/flags/flat/16/Switzerland.png new file mode 100644 index 0000000..dcdb068 Binary files /dev/null and b/flags/flags/flat/16/Switzerland.png differ diff --git a/flags/flags/flat/16/Syria.png b/flags/flags/flat/16/Syria.png new file mode 100644 index 0000000..dd5927a Binary files /dev/null and b/flags/flags/flat/16/Syria.png differ diff --git a/flags/flags/flat/16/Taiwan.png b/flags/flags/flat/16/Taiwan.png new file mode 100644 index 0000000..26425e4 Binary files /dev/null and b/flags/flags/flat/16/Taiwan.png differ diff --git a/flags/flags/flat/16/Tajikistan.png b/flags/flags/flat/16/Tajikistan.png new file mode 100644 index 0000000..b0b546b Binary files /dev/null and b/flags/flags/flat/16/Tajikistan.png differ diff --git a/flags/flags/flat/16/Tanzania.png b/flags/flags/flat/16/Tanzania.png new file mode 100644 index 0000000..c1671cf Binary files /dev/null and b/flags/flags/flat/16/Tanzania.png differ diff --git a/flags/flags/flat/16/Thailand.png b/flags/flags/flat/16/Thailand.png new file mode 100644 index 0000000..5ff77db Binary files /dev/null and b/flags/flags/flat/16/Thailand.png differ diff --git a/flags/flags/flat/16/Togo.png b/flags/flags/flat/16/Togo.png new file mode 100644 index 0000000..be814c6 Binary files /dev/null and b/flags/flags/flat/16/Togo.png differ diff --git a/flags/flags/flat/16/Tokelau.png b/flags/flags/flat/16/Tokelau.png new file mode 100644 index 0000000..b70e823 Binary files /dev/null and b/flags/flags/flat/16/Tokelau.png differ diff --git a/flags/flags/flat/16/Tonga.png b/flags/flags/flat/16/Tonga.png new file mode 100644 index 0000000..f96d996 Binary files /dev/null and b/flags/flags/flat/16/Tonga.png differ diff --git a/flags/flags/flat/16/Trinidad-and-Tobago.png b/flags/flags/flat/16/Trinidad-and-Tobago.png new file mode 100644 index 0000000..890321a Binary files /dev/null and b/flags/flags/flat/16/Trinidad-and-Tobago.png differ diff --git a/flags/flags/flat/16/Tunisia.png b/flags/flags/flat/16/Tunisia.png new file mode 100644 index 0000000..2548fd9 Binary files /dev/null and b/flags/flags/flat/16/Tunisia.png differ diff --git a/flags/flags/flat/16/Turkey.png b/flags/flags/flat/16/Turkey.png new file mode 100644 index 0000000..3af317d Binary files /dev/null and b/flags/flags/flat/16/Turkey.png differ diff --git a/flags/flags/flat/16/Turkmenistan.png b/flags/flags/flat/16/Turkmenistan.png new file mode 100644 index 0000000..e6f69d7 Binary files /dev/null and b/flags/flags/flat/16/Turkmenistan.png differ diff --git a/flags/flags/flat/16/Turks-and-Caicos-Islands.png b/flags/flags/flat/16/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..b17607b Binary files /dev/null and b/flags/flags/flat/16/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/flat/16/Tuvalu.png b/flags/flags/flat/16/Tuvalu.png new file mode 100644 index 0000000..2ec3160 Binary files /dev/null and b/flags/flags/flat/16/Tuvalu.png differ diff --git a/flags/flags/flat/16/US-Virgin-Islands.png b/flags/flags/flat/16/US-Virgin-Islands.png new file mode 100644 index 0000000..69d667a Binary files /dev/null and b/flags/flags/flat/16/US-Virgin-Islands.png differ diff --git a/flags/flags/flat/16/Uganda.png b/flags/flags/flat/16/Uganda.png new file mode 100644 index 0000000..c8c2443 Binary files /dev/null and b/flags/flags/flat/16/Uganda.png differ diff --git a/flags/flags/flat/16/Ukraine.png b/flags/flags/flat/16/Ukraine.png new file mode 100644 index 0000000..74c2012 Binary files /dev/null and b/flags/flags/flat/16/Ukraine.png differ diff --git a/flags/flags/flat/16/United-Arab-Emirates.png b/flags/flags/flat/16/United-Arab-Emirates.png new file mode 100644 index 0000000..f429cc4 Binary files /dev/null and b/flags/flags/flat/16/United-Arab-Emirates.png differ diff --git a/flags/flags/flat/16/United-Kingdom.png b/flags/flags/flat/16/United-Kingdom.png new file mode 100644 index 0000000..43ebed3 Binary files /dev/null and b/flags/flags/flat/16/United-Kingdom.png differ diff --git a/flags/flags/flat/16/United-Nations.png b/flags/flags/flat/16/United-Nations.png new file mode 100644 index 0000000..8e45e99 Binary files /dev/null and b/flags/flags/flat/16/United-Nations.png differ diff --git a/flags/flags/flat/16/United-States.png b/flags/flags/flat/16/United-States.png new file mode 100644 index 0000000..31aa3f1 Binary files /dev/null and b/flags/flags/flat/16/United-States.png differ diff --git a/flags/flags/flat/16/Uruguay.png b/flags/flags/flat/16/Uruguay.png new file mode 100644 index 0000000..9397cec Binary files /dev/null and b/flags/flags/flat/16/Uruguay.png differ diff --git a/flags/flags/flat/16/Uzbekistan.png b/flags/flags/flat/16/Uzbekistan.png new file mode 100644 index 0000000..1df6c88 Binary files /dev/null and b/flags/flags/flat/16/Uzbekistan.png differ diff --git a/flags/flags/flat/16/Vanuatu.png b/flags/flags/flat/16/Vanuatu.png new file mode 100644 index 0000000..5401c2a Binary files /dev/null and b/flags/flags/flat/16/Vanuatu.png differ diff --git a/flags/flags/flat/16/Vatican-City.png b/flags/flags/flat/16/Vatican-City.png new file mode 100644 index 0000000..25a852e Binary files /dev/null and b/flags/flags/flat/16/Vatican-City.png differ diff --git a/flags/flags/flat/16/Venezuela.png b/flags/flags/flat/16/Venezuela.png new file mode 100644 index 0000000..875f773 Binary files /dev/null and b/flags/flags/flat/16/Venezuela.png differ diff --git a/flags/flags/flat/16/Vietnam.png b/flags/flags/flat/16/Vietnam.png new file mode 100644 index 0000000..69d87f9 Binary files /dev/null and b/flags/flags/flat/16/Vietnam.png differ diff --git a/flags/flags/flat/16/Wales.png b/flags/flags/flat/16/Wales.png new file mode 100644 index 0000000..51f13c2 Binary files /dev/null and b/flags/flags/flat/16/Wales.png differ diff --git a/flags/flags/flat/16/Wallis-And-Futuna.png b/flags/flags/flat/16/Wallis-And-Futuna.png new file mode 100644 index 0000000..922b74e Binary files /dev/null and b/flags/flags/flat/16/Wallis-And-Futuna.png differ diff --git a/flags/flags/flat/16/Western-Sahara.png b/flags/flags/flat/16/Western-Sahara.png new file mode 100644 index 0000000..a5b3b1c Binary files /dev/null and b/flags/flags/flat/16/Western-Sahara.png differ diff --git a/flags/flags/flat/16/Yemen.png b/flags/flags/flat/16/Yemen.png new file mode 100644 index 0000000..bad5e1f Binary files /dev/null and b/flags/flags/flat/16/Yemen.png differ diff --git a/flags/flags/flat/16/Zambia.png b/flags/flags/flat/16/Zambia.png new file mode 100644 index 0000000..e3d8078 Binary files /dev/null and b/flags/flags/flat/16/Zambia.png differ diff --git a/flags/flags/flat/16/Zimbabwe.png b/flags/flags/flat/16/Zimbabwe.png new file mode 100644 index 0000000..79864d4 Binary files /dev/null and b/flags/flags/flat/16/Zimbabwe.png differ diff --git a/flags/flags/flat/24/Abkhazia.png b/flags/flags/flat/24/Abkhazia.png new file mode 100644 index 0000000..b410c95 Binary files /dev/null and b/flags/flags/flat/24/Abkhazia.png differ diff --git a/flags/flags/flat/24/Afghanistan.png b/flags/flags/flat/24/Afghanistan.png new file mode 100644 index 0000000..e5c8d7b Binary files /dev/null and b/flags/flags/flat/24/Afghanistan.png differ diff --git a/flags/flags/flat/24/Aland.png b/flags/flags/flat/24/Aland.png new file mode 100644 index 0000000..906ee2e Binary files /dev/null and b/flags/flags/flat/24/Aland.png differ diff --git a/flags/flags/flat/24/Albania.png b/flags/flags/flat/24/Albania.png new file mode 100644 index 0000000..281fd92 Binary files /dev/null and b/flags/flags/flat/24/Albania.png differ diff --git a/flags/flags/flat/24/Algeria.png b/flags/flags/flat/24/Algeria.png new file mode 100644 index 0000000..124e087 Binary files /dev/null and b/flags/flags/flat/24/Algeria.png differ diff --git a/flags/flags/flat/24/American-Samoa.png b/flags/flags/flat/24/American-Samoa.png new file mode 100644 index 0000000..07ce8bd Binary files /dev/null and b/flags/flags/flat/24/American-Samoa.png differ diff --git a/flags/flags/flat/24/Andorra.png b/flags/flags/flat/24/Andorra.png new file mode 100644 index 0000000..29e0027 Binary files /dev/null and b/flags/flags/flat/24/Andorra.png differ diff --git a/flags/flags/flat/24/Angola.png b/flags/flags/flat/24/Angola.png new file mode 100644 index 0000000..feac91a Binary files /dev/null and b/flags/flags/flat/24/Angola.png differ diff --git a/flags/flags/flat/24/Anguilla.png b/flags/flags/flat/24/Anguilla.png new file mode 100644 index 0000000..754da16 Binary files /dev/null and b/flags/flags/flat/24/Anguilla.png differ diff --git a/flags/flags/flat/24/Antarctica.png b/flags/flags/flat/24/Antarctica.png new file mode 100644 index 0000000..69be87b Binary files /dev/null and b/flags/flags/flat/24/Antarctica.png differ diff --git a/flags/flags/flat/24/Antigua-and-Barbuda.png b/flags/flags/flat/24/Antigua-and-Barbuda.png new file mode 100644 index 0000000..81a6c22 Binary files /dev/null and b/flags/flags/flat/24/Antigua-and-Barbuda.png differ diff --git a/flags/flags/flat/24/Argentina.png b/flags/flags/flat/24/Argentina.png new file mode 100644 index 0000000..5a0e3a6 Binary files /dev/null and b/flags/flags/flat/24/Argentina.png differ diff --git a/flags/flags/flat/24/Armenia.png b/flags/flags/flat/24/Armenia.png new file mode 100644 index 0000000..5e6fcd9 Binary files /dev/null and b/flags/flags/flat/24/Armenia.png differ diff --git a/flags/flags/flat/24/Aruba.png b/flags/flags/flat/24/Aruba.png new file mode 100644 index 0000000..e411a75 Binary files /dev/null and b/flags/flags/flat/24/Aruba.png differ diff --git a/flags/flags/flat/24/Australia.png b/flags/flags/flat/24/Australia.png new file mode 100644 index 0000000..a7962b5 Binary files /dev/null and b/flags/flags/flat/24/Australia.png differ diff --git a/flags/flags/flat/24/Austria.png b/flags/flags/flat/24/Austria.png new file mode 100644 index 0000000..4c43c02 Binary files /dev/null and b/flags/flags/flat/24/Austria.png differ diff --git a/flags/flags/flat/24/Azerbaijan.png b/flags/flags/flat/24/Azerbaijan.png new file mode 100644 index 0000000..64931b7 Binary files /dev/null and b/flags/flags/flat/24/Azerbaijan.png differ diff --git a/flags/flags/flat/24/Bahamas.png b/flags/flags/flat/24/Bahamas.png new file mode 100644 index 0000000..b9ca7b5 Binary files /dev/null and b/flags/flags/flat/24/Bahamas.png differ diff --git a/flags/flags/flat/24/Bahrain.png b/flags/flags/flat/24/Bahrain.png new file mode 100644 index 0000000..2d5e754 Binary files /dev/null and b/flags/flags/flat/24/Bahrain.png differ diff --git a/flags/flags/flat/24/Bangladesh.png b/flags/flags/flat/24/Bangladesh.png new file mode 100644 index 0000000..a6a4ecf Binary files /dev/null and b/flags/flags/flat/24/Bangladesh.png differ diff --git a/flags/flags/flat/24/Barbados.png b/flags/flags/flat/24/Barbados.png new file mode 100644 index 0000000..3e6ce2e Binary files /dev/null and b/flags/flags/flat/24/Barbados.png differ diff --git a/flags/flags/flat/24/Belarus.png b/flags/flags/flat/24/Belarus.png new file mode 100644 index 0000000..9c5be98 Binary files /dev/null and b/flags/flags/flat/24/Belarus.png differ diff --git a/flags/flags/flat/24/Belgium.png b/flags/flags/flat/24/Belgium.png new file mode 100644 index 0000000..df1eb16 Binary files /dev/null and b/flags/flags/flat/24/Belgium.png differ diff --git a/flags/flags/flat/24/Belize.png b/flags/flags/flat/24/Belize.png new file mode 100644 index 0000000..c303165 Binary files /dev/null and b/flags/flags/flat/24/Belize.png differ diff --git a/flags/flags/flat/24/Benin.png b/flags/flags/flat/24/Benin.png new file mode 100644 index 0000000..3cdb27c Binary files /dev/null and b/flags/flags/flat/24/Benin.png differ diff --git a/flags/flags/flat/24/Bermuda.png b/flags/flags/flat/24/Bermuda.png new file mode 100644 index 0000000..f06f74c Binary files /dev/null and b/flags/flags/flat/24/Bermuda.png differ diff --git a/flags/flags/flat/24/Bhutan.png b/flags/flags/flat/24/Bhutan.png new file mode 100644 index 0000000..acaa380 Binary files /dev/null and b/flags/flags/flat/24/Bhutan.png differ diff --git a/flags/flags/flat/24/Bolivia.png b/flags/flags/flat/24/Bolivia.png new file mode 100644 index 0000000..d413a72 Binary files /dev/null and b/flags/flags/flat/24/Bolivia.png differ diff --git a/flags/flags/flat/24/Bosnia-and-Herzegovina.png b/flags/flags/flat/24/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..9508043 Binary files /dev/null and b/flags/flags/flat/24/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/flat/24/Botswana.png b/flags/flags/flat/24/Botswana.png new file mode 100644 index 0000000..c651877 Binary files /dev/null and b/flags/flags/flat/24/Botswana.png differ diff --git a/flags/flags/flat/24/Brazil.png b/flags/flags/flat/24/Brazil.png new file mode 100644 index 0000000..40890a6 Binary files /dev/null and b/flags/flags/flat/24/Brazil.png differ diff --git a/flags/flags/flat/24/British-Antarctic-Territory.png b/flags/flags/flat/24/British-Antarctic-Territory.png new file mode 100644 index 0000000..2a2bf70 Binary files /dev/null and b/flags/flags/flat/24/British-Antarctic-Territory.png differ diff --git a/flags/flags/flat/24/British-Virgin-Islands.png b/flags/flags/flat/24/British-Virgin-Islands.png new file mode 100644 index 0000000..870a155 Binary files /dev/null and b/flags/flags/flat/24/British-Virgin-Islands.png differ diff --git a/flags/flags/flat/24/Brunei.png b/flags/flags/flat/24/Brunei.png new file mode 100644 index 0000000..ef38045 Binary files /dev/null and b/flags/flags/flat/24/Brunei.png differ diff --git a/flags/flags/flat/24/Bulgaria.png b/flags/flags/flat/24/Bulgaria.png new file mode 100644 index 0000000..b24e1e2 Binary files /dev/null and b/flags/flags/flat/24/Bulgaria.png differ diff --git a/flags/flags/flat/24/Burkina-Faso.png b/flags/flags/flat/24/Burkina-Faso.png new file mode 100644 index 0000000..e352be3 Binary files /dev/null and b/flags/flags/flat/24/Burkina-Faso.png differ diff --git a/flags/flags/flat/24/Burundi.png b/flags/flags/flat/24/Burundi.png new file mode 100644 index 0000000..d5acd66 Binary files /dev/null and b/flags/flags/flat/24/Burundi.png differ diff --git a/flags/flags/flat/24/Cambodia.png b/flags/flags/flat/24/Cambodia.png new file mode 100644 index 0000000..f9f196d Binary files /dev/null and b/flags/flags/flat/24/Cambodia.png differ diff --git a/flags/flags/flat/24/Cameroon.png b/flags/flags/flat/24/Cameroon.png new file mode 100644 index 0000000..70136aa Binary files /dev/null and b/flags/flags/flat/24/Cameroon.png differ diff --git a/flags/flags/flat/24/Canada.png b/flags/flags/flat/24/Canada.png new file mode 100644 index 0000000..dae9153 Binary files /dev/null and b/flags/flags/flat/24/Canada.png differ diff --git a/flags/flags/flat/24/Cape-Verde.png b/flags/flags/flat/24/Cape-Verde.png new file mode 100644 index 0000000..03b727b Binary files /dev/null and b/flags/flags/flat/24/Cape-Verde.png differ diff --git a/flags/flags/flat/24/Cayman-Islands.png b/flags/flags/flat/24/Cayman-Islands.png new file mode 100644 index 0000000..fb4ea9b Binary files /dev/null and b/flags/flags/flat/24/Cayman-Islands.png differ diff --git a/flags/flags/flat/24/Central-African-Republic.png b/flags/flags/flat/24/Central-African-Republic.png new file mode 100644 index 0000000..902b323 Binary files /dev/null and b/flags/flags/flat/24/Central-African-Republic.png differ diff --git a/flags/flags/flat/24/Chad.png b/flags/flags/flat/24/Chad.png new file mode 100644 index 0000000..09a1236 Binary files /dev/null and b/flags/flags/flat/24/Chad.png differ diff --git a/flags/flags/flat/24/Chile.png b/flags/flags/flat/24/Chile.png new file mode 100644 index 0000000..9e16fd9 Binary files /dev/null and b/flags/flags/flat/24/Chile.png differ diff --git a/flags/flags/flat/24/China.png b/flags/flags/flat/24/China.png new file mode 100644 index 0000000..17cd5d0 Binary files /dev/null and b/flags/flags/flat/24/China.png differ diff --git a/flags/flags/flat/24/Christmas-Island.png b/flags/flags/flat/24/Christmas-Island.png new file mode 100644 index 0000000..96c0173 Binary files /dev/null and b/flags/flags/flat/24/Christmas-Island.png differ diff --git a/flags/flags/flat/24/Cocos-Keeling-Islands.png b/flags/flags/flat/24/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..aee171e Binary files /dev/null and b/flags/flags/flat/24/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/flat/24/Colombia.png b/flags/flags/flat/24/Colombia.png new file mode 100644 index 0000000..0b0eddc Binary files /dev/null and b/flags/flags/flat/24/Colombia.png differ diff --git a/flags/flags/flat/24/Commonwealth.png b/flags/flags/flat/24/Commonwealth.png new file mode 100644 index 0000000..e7fd173 Binary files /dev/null and b/flags/flags/flat/24/Commonwealth.png differ diff --git a/flags/flags/flat/24/Comoros.png b/flags/flags/flat/24/Comoros.png new file mode 100644 index 0000000..fbaceec Binary files /dev/null and b/flags/flags/flat/24/Comoros.png differ diff --git a/flags/flags/flat/24/Cook-Islands.png b/flags/flags/flat/24/Cook-Islands.png new file mode 100644 index 0000000..7b884db Binary files /dev/null and b/flags/flags/flat/24/Cook-Islands.png differ diff --git a/flags/flags/flat/24/Costa-Rica.png b/flags/flags/flat/24/Costa-Rica.png new file mode 100644 index 0000000..7d9c882 Binary files /dev/null and b/flags/flags/flat/24/Costa-Rica.png differ diff --git a/flags/flags/flat/24/Cote-dIvoire.png b/flags/flags/flat/24/Cote-dIvoire.png new file mode 100644 index 0000000..f908d9b Binary files /dev/null and b/flags/flags/flat/24/Cote-dIvoire.png differ diff --git a/flags/flags/flat/24/Croatia.png b/flags/flags/flat/24/Croatia.png new file mode 100644 index 0000000..effebf8 Binary files /dev/null and b/flags/flags/flat/24/Croatia.png differ diff --git a/flags/flags/flat/24/Cuba.png b/flags/flags/flat/24/Cuba.png new file mode 100644 index 0000000..e282c1c Binary files /dev/null and b/flags/flags/flat/24/Cuba.png differ diff --git a/flags/flags/flat/24/Cyprus.png b/flags/flags/flat/24/Cyprus.png new file mode 100644 index 0000000..89b1ced Binary files /dev/null and b/flags/flags/flat/24/Cyprus.png differ diff --git a/flags/flags/flat/24/Czech-Republic.png b/flags/flags/flat/24/Czech-Republic.png new file mode 100644 index 0000000..82ce85c Binary files /dev/null and b/flags/flags/flat/24/Czech-Republic.png differ diff --git a/flags/flags/flat/24/Democratic-Republic-of-the-Congo.png b/flags/flags/flat/24/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..1b9bf6f Binary files /dev/null and b/flags/flags/flat/24/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/24/Denmark.png b/flags/flags/flat/24/Denmark.png new file mode 100644 index 0000000..cb7bff7 Binary files /dev/null and b/flags/flags/flat/24/Denmark.png differ diff --git a/flags/flags/flat/24/Djibouti.png b/flags/flags/flat/24/Djibouti.png new file mode 100644 index 0000000..a0b0bcc Binary files /dev/null and b/flags/flags/flat/24/Djibouti.png differ diff --git a/flags/flags/flat/24/Dominica.png b/flags/flags/flat/24/Dominica.png new file mode 100644 index 0000000..1a336cc Binary files /dev/null and b/flags/flags/flat/24/Dominica.png differ diff --git a/flags/flags/flat/24/Dominican-Republic.png b/flags/flags/flat/24/Dominican-Republic.png new file mode 100644 index 0000000..76f1363 Binary files /dev/null and b/flags/flags/flat/24/Dominican-Republic.png differ diff --git a/flags/flags/flat/24/East-Timor.png b/flags/flags/flat/24/East-Timor.png new file mode 100644 index 0000000..ee26b56 Binary files /dev/null and b/flags/flags/flat/24/East-Timor.png differ diff --git a/flags/flags/flat/24/Ecuador.png b/flags/flags/flat/24/Ecuador.png new file mode 100644 index 0000000..58a6aa4 Binary files /dev/null and b/flags/flags/flat/24/Ecuador.png differ diff --git a/flags/flags/flat/24/Egypt.png b/flags/flags/flat/24/Egypt.png new file mode 100644 index 0000000..9bc7284 Binary files /dev/null and b/flags/flags/flat/24/Egypt.png differ diff --git a/flags/flags/flat/24/El-Salvador.png b/flags/flags/flat/24/El-Salvador.png new file mode 100644 index 0000000..78c554a Binary files /dev/null and b/flags/flags/flat/24/El-Salvador.png differ diff --git a/flags/flags/flat/24/England.png b/flags/flags/flat/24/England.png new file mode 100644 index 0000000..f6d3af3 Binary files /dev/null and b/flags/flags/flat/24/England.png differ diff --git a/flags/flags/flat/24/Equatorial-Guinea.png b/flags/flags/flat/24/Equatorial-Guinea.png new file mode 100644 index 0000000..8292015 Binary files /dev/null and b/flags/flags/flat/24/Equatorial-Guinea.png differ diff --git a/flags/flags/flat/24/Eritrea.png b/flags/flags/flat/24/Eritrea.png new file mode 100644 index 0000000..025ac94 Binary files /dev/null and b/flags/flags/flat/24/Eritrea.png differ diff --git a/flags/flags/flat/24/Estonia.png b/flags/flags/flat/24/Estonia.png new file mode 100644 index 0000000..47eb4f6 Binary files /dev/null and b/flags/flags/flat/24/Estonia.png differ diff --git a/flags/flags/flat/24/Ethiopia.png b/flags/flags/flat/24/Ethiopia.png new file mode 100644 index 0000000..95711dd Binary files /dev/null and b/flags/flags/flat/24/Ethiopia.png differ diff --git a/flags/flags/flat/24/European-Union.png b/flags/flags/flat/24/European-Union.png new file mode 100644 index 0000000..a9af51c Binary files /dev/null and b/flags/flags/flat/24/European-Union.png differ diff --git a/flags/flags/flat/24/Falkland-Islands.png b/flags/flags/flat/24/Falkland-Islands.png new file mode 100644 index 0000000..e375bc1 Binary files /dev/null and b/flags/flags/flat/24/Falkland-Islands.png differ diff --git a/flags/flags/flat/24/Faroes.png b/flags/flags/flat/24/Faroes.png new file mode 100644 index 0000000..02daeca Binary files /dev/null and b/flags/flags/flat/24/Faroes.png differ diff --git a/flags/flags/flat/24/Fiji.png b/flags/flags/flat/24/Fiji.png new file mode 100644 index 0000000..f7b5ccb Binary files /dev/null and b/flags/flags/flat/24/Fiji.png differ diff --git a/flags/flags/flat/24/Finland.png b/flags/flags/flat/24/Finland.png new file mode 100644 index 0000000..a585cf4 Binary files /dev/null and b/flags/flags/flat/24/Finland.png differ diff --git a/flags/flags/flat/24/France.png b/flags/flags/flat/24/France.png new file mode 100644 index 0000000..91a645e Binary files /dev/null and b/flags/flags/flat/24/France.png differ diff --git a/flags/flags/flat/24/French-Polynesia.png b/flags/flags/flat/24/French-Polynesia.png new file mode 100644 index 0000000..dc3a828 Binary files /dev/null and b/flags/flags/flat/24/French-Polynesia.png differ diff --git a/flags/flags/flat/24/French-Southern-Territories.png b/flags/flags/flat/24/French-Southern-Territories.png new file mode 100644 index 0000000..83b017b Binary files /dev/null and b/flags/flags/flat/24/French-Southern-Territories.png differ diff --git a/flags/flags/flat/24/Gabon.png b/flags/flags/flat/24/Gabon.png new file mode 100644 index 0000000..beeaa4f Binary files /dev/null and b/flags/flags/flat/24/Gabon.png differ diff --git a/flags/flags/flat/24/Gambia.png b/flags/flags/flat/24/Gambia.png new file mode 100644 index 0000000..643f21a Binary files /dev/null and b/flags/flags/flat/24/Gambia.png differ diff --git a/flags/flags/flat/24/Georgia.png b/flags/flags/flat/24/Georgia.png new file mode 100644 index 0000000..ae3088b Binary files /dev/null and b/flags/flags/flat/24/Georgia.png differ diff --git a/flags/flags/flat/24/Germany.png b/flags/flags/flat/24/Germany.png new file mode 100644 index 0000000..ebb1843 Binary files /dev/null and b/flags/flags/flat/24/Germany.png differ diff --git a/flags/flags/flat/24/Ghana.png b/flags/flags/flat/24/Ghana.png new file mode 100644 index 0000000..d76972e Binary files /dev/null and b/flags/flags/flat/24/Ghana.png differ diff --git a/flags/flags/flat/24/Gibraltar.png b/flags/flags/flat/24/Gibraltar.png new file mode 100644 index 0000000..07017ba Binary files /dev/null and b/flags/flags/flat/24/Gibraltar.png differ diff --git a/flags/flags/flat/24/GoSquared.png b/flags/flags/flat/24/GoSquared.png new file mode 100644 index 0000000..428fb4e Binary files /dev/null and b/flags/flags/flat/24/GoSquared.png differ diff --git a/flags/flags/flat/24/Greece.png b/flags/flags/flat/24/Greece.png new file mode 100644 index 0000000..c185d0b Binary files /dev/null and b/flags/flags/flat/24/Greece.png differ diff --git a/flags/flags/flat/24/Greenland.png b/flags/flags/flat/24/Greenland.png new file mode 100644 index 0000000..572fa5c Binary files /dev/null and b/flags/flags/flat/24/Greenland.png differ diff --git a/flags/flags/flat/24/Grenada.png b/flags/flags/flat/24/Grenada.png new file mode 100644 index 0000000..ccd4271 Binary files /dev/null and b/flags/flags/flat/24/Grenada.png differ diff --git a/flags/flags/flat/24/Guam.png b/flags/flags/flat/24/Guam.png new file mode 100644 index 0000000..3a0081a Binary files /dev/null and b/flags/flags/flat/24/Guam.png differ diff --git a/flags/flags/flat/24/Guatemala.png b/flags/flags/flat/24/Guatemala.png new file mode 100644 index 0000000..8ce5c71 Binary files /dev/null and b/flags/flags/flat/24/Guatemala.png differ diff --git a/flags/flags/flat/24/Guernsey.png b/flags/flags/flat/24/Guernsey.png new file mode 100644 index 0000000..2d7233c Binary files /dev/null and b/flags/flags/flat/24/Guernsey.png differ diff --git a/flags/flags/flat/24/Guinea-Bissau.png b/flags/flags/flat/24/Guinea-Bissau.png new file mode 100644 index 0000000..d87c835 Binary files /dev/null and b/flags/flags/flat/24/Guinea-Bissau.png differ diff --git a/flags/flags/flat/24/Guinea.png b/flags/flags/flat/24/Guinea.png new file mode 100644 index 0000000..eeb48b7 Binary files /dev/null and b/flags/flags/flat/24/Guinea.png differ diff --git a/flags/flags/flat/24/Guyana.png b/flags/flags/flat/24/Guyana.png new file mode 100644 index 0000000..0064a1c Binary files /dev/null and b/flags/flags/flat/24/Guyana.png differ diff --git a/flags/flags/flat/24/Haiti.png b/flags/flags/flat/24/Haiti.png new file mode 100644 index 0000000..c12253a Binary files /dev/null and b/flags/flags/flat/24/Haiti.png differ diff --git a/flags/flags/flat/24/Honduras.png b/flags/flags/flat/24/Honduras.png new file mode 100644 index 0000000..d59671c Binary files /dev/null and b/flags/flags/flat/24/Honduras.png differ diff --git a/flags/flags/flat/24/Hong-Kong.png b/flags/flags/flat/24/Hong-Kong.png new file mode 100644 index 0000000..1137e86 Binary files /dev/null and b/flags/flags/flat/24/Hong-Kong.png differ diff --git a/flags/flags/flat/24/Hungary.png b/flags/flags/flat/24/Hungary.png new file mode 100644 index 0000000..62bfc27 Binary files /dev/null and b/flags/flags/flat/24/Hungary.png differ diff --git a/flags/flags/flat/24/Iceland.png b/flags/flags/flat/24/Iceland.png new file mode 100644 index 0000000..01e12fb Binary files /dev/null and b/flags/flags/flat/24/Iceland.png differ diff --git a/flags/flags/flat/24/India.png b/flags/flags/flat/24/India.png new file mode 100644 index 0000000..0e5ee79 Binary files /dev/null and b/flags/flags/flat/24/India.png differ diff --git a/flags/flags/flat/24/Indonesia.png b/flags/flags/flat/24/Indonesia.png new file mode 100644 index 0000000..e938f43 Binary files /dev/null and b/flags/flags/flat/24/Indonesia.png differ diff --git a/flags/flags/flat/24/Iran.png b/flags/flags/flat/24/Iran.png new file mode 100644 index 0000000..eca434c Binary files /dev/null and b/flags/flags/flat/24/Iran.png differ diff --git a/flags/flags/flat/24/Iraq.png b/flags/flags/flat/24/Iraq.png new file mode 100644 index 0000000..b712f74 Binary files /dev/null and b/flags/flags/flat/24/Iraq.png differ diff --git a/flags/flags/flat/24/Ireland.png b/flags/flags/flat/24/Ireland.png new file mode 100644 index 0000000..baaae6a Binary files /dev/null and b/flags/flags/flat/24/Ireland.png differ diff --git a/flags/flags/flat/24/Isle-of-Man.png b/flags/flags/flat/24/Isle-of-Man.png new file mode 100644 index 0000000..442bfd9 Binary files /dev/null and b/flags/flags/flat/24/Isle-of-Man.png differ diff --git a/flags/flags/flat/24/Israel.png b/flags/flags/flat/24/Israel.png new file mode 100644 index 0000000..9bac6ec Binary files /dev/null and b/flags/flags/flat/24/Israel.png differ diff --git a/flags/flags/flat/24/Italy.png b/flags/flags/flat/24/Italy.png new file mode 100644 index 0000000..8e9e7fa Binary files /dev/null and b/flags/flags/flat/24/Italy.png differ diff --git a/flags/flags/flat/24/Jamaica.png b/flags/flags/flat/24/Jamaica.png new file mode 100644 index 0000000..002f61f Binary files /dev/null and b/flags/flags/flat/24/Jamaica.png differ diff --git a/flags/flags/flat/24/Japan.png b/flags/flags/flat/24/Japan.png new file mode 100644 index 0000000..8fb1a36 Binary files /dev/null and b/flags/flags/flat/24/Japan.png differ diff --git a/flags/flags/flat/24/Jersey.png b/flags/flags/flat/24/Jersey.png new file mode 100644 index 0000000..606798c Binary files /dev/null and b/flags/flags/flat/24/Jersey.png differ diff --git a/flags/flags/flat/24/Jordan.png b/flags/flags/flat/24/Jordan.png new file mode 100644 index 0000000..ace43ca Binary files /dev/null and b/flags/flags/flat/24/Jordan.png differ diff --git a/flags/flags/flat/24/Kazakhstan.png b/flags/flags/flat/24/Kazakhstan.png new file mode 100644 index 0000000..9891af6 Binary files /dev/null and b/flags/flags/flat/24/Kazakhstan.png differ diff --git a/flags/flags/flat/24/Kenya.png b/flags/flags/flat/24/Kenya.png new file mode 100644 index 0000000..87f6c6e Binary files /dev/null and b/flags/flags/flat/24/Kenya.png differ diff --git a/flags/flags/flat/24/Kiribati.png b/flags/flags/flat/24/Kiribati.png new file mode 100644 index 0000000..6f04a1f Binary files /dev/null and b/flags/flags/flat/24/Kiribati.png differ diff --git a/flags/flags/flat/24/Kosovo.png b/flags/flags/flat/24/Kosovo.png new file mode 100644 index 0000000..f42a566 Binary files /dev/null and b/flags/flags/flat/24/Kosovo.png differ diff --git a/flags/flags/flat/24/Kuwait.png b/flags/flags/flat/24/Kuwait.png new file mode 100644 index 0000000..7ac9ab1 Binary files /dev/null and b/flags/flags/flat/24/Kuwait.png differ diff --git a/flags/flags/flat/24/Kyrgyzstan.png b/flags/flags/flat/24/Kyrgyzstan.png new file mode 100644 index 0000000..c3bd3f6 Binary files /dev/null and b/flags/flags/flat/24/Kyrgyzstan.png differ diff --git a/flags/flags/flat/24/Laos.png b/flags/flags/flat/24/Laos.png new file mode 100644 index 0000000..8905a7b Binary files /dev/null and b/flags/flags/flat/24/Laos.png differ diff --git a/flags/flags/flat/24/Latvia.png b/flags/flags/flat/24/Latvia.png new file mode 100644 index 0000000..007cdce Binary files /dev/null and b/flags/flags/flat/24/Latvia.png differ diff --git a/flags/flags/flat/24/Lebanon.png b/flags/flags/flat/24/Lebanon.png new file mode 100644 index 0000000..9486645 Binary files /dev/null and b/flags/flags/flat/24/Lebanon.png differ diff --git a/flags/flags/flat/24/Lesotho.png b/flags/flags/flat/24/Lesotho.png new file mode 100644 index 0000000..6c8b9f5 Binary files /dev/null and b/flags/flags/flat/24/Lesotho.png differ diff --git a/flags/flags/flat/24/Liberia.png b/flags/flags/flat/24/Liberia.png new file mode 100644 index 0000000..5a1f700 Binary files /dev/null and b/flags/flags/flat/24/Liberia.png differ diff --git a/flags/flags/flat/24/Libya.png b/flags/flags/flat/24/Libya.png new file mode 100644 index 0000000..6ebc286 Binary files /dev/null and b/flags/flags/flat/24/Libya.png differ diff --git a/flags/flags/flat/24/Liechtenstein.png b/flags/flags/flat/24/Liechtenstein.png new file mode 100644 index 0000000..1d9203e Binary files /dev/null and b/flags/flags/flat/24/Liechtenstein.png differ diff --git a/flags/flags/flat/24/Lithuania.png b/flags/flags/flat/24/Lithuania.png new file mode 100644 index 0000000..ed53328 Binary files /dev/null and b/flags/flags/flat/24/Lithuania.png differ diff --git a/flags/flags/flat/24/Luxembourg.png b/flags/flags/flat/24/Luxembourg.png new file mode 100644 index 0000000..b28669f Binary files /dev/null and b/flags/flags/flat/24/Luxembourg.png differ diff --git a/flags/flags/flat/24/Macau.png b/flags/flags/flat/24/Macau.png new file mode 100644 index 0000000..cc4f379 Binary files /dev/null and b/flags/flags/flat/24/Macau.png differ diff --git a/flags/flags/flat/24/Macedonia.png b/flags/flags/flat/24/Macedonia.png new file mode 100644 index 0000000..a93dc0e Binary files /dev/null and b/flags/flags/flat/24/Macedonia.png differ diff --git a/flags/flags/flat/24/Madagascar.png b/flags/flags/flat/24/Madagascar.png new file mode 100644 index 0000000..404af71 Binary files /dev/null and b/flags/flags/flat/24/Madagascar.png differ diff --git a/flags/flags/flat/24/Malawi.png b/flags/flags/flat/24/Malawi.png new file mode 100644 index 0000000..10e134a Binary files /dev/null and b/flags/flags/flat/24/Malawi.png differ diff --git a/flags/flags/flat/24/Malaysia.png b/flags/flags/flat/24/Malaysia.png new file mode 100644 index 0000000..51606fa Binary files /dev/null and b/flags/flags/flat/24/Malaysia.png differ diff --git a/flags/flags/flat/24/Maldives.png b/flags/flags/flat/24/Maldives.png new file mode 100644 index 0000000..703aa75 Binary files /dev/null and b/flags/flags/flat/24/Maldives.png differ diff --git a/flags/flags/flat/24/Mali.png b/flags/flags/flat/24/Mali.png new file mode 100644 index 0000000..bc27e26 Binary files /dev/null and b/flags/flags/flat/24/Mali.png differ diff --git a/flags/flags/flat/24/Malta.png b/flags/flags/flat/24/Malta.png new file mode 100644 index 0000000..f633f29 Binary files /dev/null and b/flags/flags/flat/24/Malta.png differ diff --git a/flags/flags/flat/24/Mars.png b/flags/flags/flat/24/Mars.png new file mode 100644 index 0000000..f6554b1 Binary files /dev/null and b/flags/flags/flat/24/Mars.png differ diff --git a/flags/flags/flat/24/Marshall-Islands.png b/flags/flags/flat/24/Marshall-Islands.png new file mode 100644 index 0000000..e93857a Binary files /dev/null and b/flags/flags/flat/24/Marshall-Islands.png differ diff --git a/flags/flags/flat/24/Mauritania.png b/flags/flags/flat/24/Mauritania.png new file mode 100644 index 0000000..f5866f8 Binary files /dev/null and b/flags/flags/flat/24/Mauritania.png differ diff --git a/flags/flags/flat/24/Mauritius.png b/flags/flags/flat/24/Mauritius.png new file mode 100644 index 0000000..18fc541 Binary files /dev/null and b/flags/flags/flat/24/Mauritius.png differ diff --git a/flags/flags/flat/24/Mayotte.png b/flags/flags/flat/24/Mayotte.png new file mode 100644 index 0000000..3386074 Binary files /dev/null and b/flags/flags/flat/24/Mayotte.png differ diff --git a/flags/flags/flat/24/Mexico.png b/flags/flags/flat/24/Mexico.png new file mode 100644 index 0000000..5a8e4b4 Binary files /dev/null and b/flags/flags/flat/24/Mexico.png differ diff --git a/flags/flags/flat/24/Micronesia.png b/flags/flags/flat/24/Micronesia.png new file mode 100644 index 0000000..7dccaf0 Binary files /dev/null and b/flags/flags/flat/24/Micronesia.png differ diff --git a/flags/flags/flat/24/Moldova.png b/flags/flags/flat/24/Moldova.png new file mode 100644 index 0000000..20870c2 Binary files /dev/null and b/flags/flags/flat/24/Moldova.png differ diff --git a/flags/flags/flat/24/Monaco.png b/flags/flags/flat/24/Monaco.png new file mode 100644 index 0000000..e938f43 Binary files /dev/null and b/flags/flags/flat/24/Monaco.png differ diff --git a/flags/flags/flat/24/Mongolia.png b/flags/flags/flat/24/Mongolia.png new file mode 100644 index 0000000..1dc766a Binary files /dev/null and b/flags/flags/flat/24/Mongolia.png differ diff --git a/flags/flags/flat/24/Montenegro.png b/flags/flags/flat/24/Montenegro.png new file mode 100644 index 0000000..90be1f1 Binary files /dev/null and b/flags/flags/flat/24/Montenegro.png differ diff --git a/flags/flags/flat/24/Montserrat.png b/flags/flags/flat/24/Montserrat.png new file mode 100644 index 0000000..f633212 Binary files /dev/null and b/flags/flags/flat/24/Montserrat.png differ diff --git a/flags/flags/flat/24/Morocco.png b/flags/flags/flat/24/Morocco.png new file mode 100644 index 0000000..05ba811 Binary files /dev/null and b/flags/flags/flat/24/Morocco.png differ diff --git a/flags/flags/flat/24/Mozambique.png b/flags/flags/flat/24/Mozambique.png new file mode 100644 index 0000000..2825be9 Binary files /dev/null and b/flags/flags/flat/24/Mozambique.png differ diff --git a/flags/flags/flat/24/Myanmar.png b/flags/flags/flat/24/Myanmar.png new file mode 100644 index 0000000..6ef221a Binary files /dev/null and b/flags/flags/flat/24/Myanmar.png differ diff --git a/flags/flags/flat/24/NATO.png b/flags/flags/flat/24/NATO.png new file mode 100644 index 0000000..c7404d1 Binary files /dev/null and b/flags/flags/flat/24/NATO.png differ diff --git a/flags/flags/flat/24/Nagorno-Karabakh.png b/flags/flags/flat/24/Nagorno-Karabakh.png new file mode 100644 index 0000000..8168fa3 Binary files /dev/null and b/flags/flags/flat/24/Nagorno-Karabakh.png differ diff --git a/flags/flags/flat/24/Namibia.png b/flags/flags/flat/24/Namibia.png new file mode 100644 index 0000000..6ab06d1 Binary files /dev/null and b/flags/flags/flat/24/Namibia.png differ diff --git a/flags/flags/flat/24/Nauru.png b/flags/flags/flat/24/Nauru.png new file mode 100644 index 0000000..179fa78 Binary files /dev/null and b/flags/flags/flat/24/Nauru.png differ diff --git a/flags/flags/flat/24/Nepal.png b/flags/flags/flat/24/Nepal.png new file mode 100644 index 0000000..3d896f9 Binary files /dev/null and b/flags/flags/flat/24/Nepal.png differ diff --git a/flags/flags/flat/24/Netherlands-Antilles.png b/flags/flags/flat/24/Netherlands-Antilles.png new file mode 100644 index 0000000..1432569 Binary files /dev/null and b/flags/flags/flat/24/Netherlands-Antilles.png differ diff --git a/flags/flags/flat/24/Netherlands.png b/flags/flags/flat/24/Netherlands.png new file mode 100644 index 0000000..0f98743 Binary files /dev/null and b/flags/flags/flat/24/Netherlands.png differ diff --git a/flags/flags/flat/24/New-Caledonia.png b/flags/flags/flat/24/New-Caledonia.png new file mode 100644 index 0000000..36f9c70 Binary files /dev/null and b/flags/flags/flat/24/New-Caledonia.png differ diff --git a/flags/flags/flat/24/New-Zealand.png b/flags/flags/flat/24/New-Zealand.png new file mode 100644 index 0000000..70091f3 Binary files /dev/null and b/flags/flags/flat/24/New-Zealand.png differ diff --git a/flags/flags/flat/24/Nicaragua.png b/flags/flags/flat/24/Nicaragua.png new file mode 100644 index 0000000..1dcb912 Binary files /dev/null and b/flags/flags/flat/24/Nicaragua.png differ diff --git a/flags/flags/flat/24/Niger.png b/flags/flags/flat/24/Niger.png new file mode 100644 index 0000000..2b46f7a Binary files /dev/null and b/flags/flags/flat/24/Niger.png differ diff --git a/flags/flags/flat/24/Nigeria.png b/flags/flags/flat/24/Nigeria.png new file mode 100644 index 0000000..14eef79 Binary files /dev/null and b/flags/flags/flat/24/Nigeria.png differ diff --git a/flags/flags/flat/24/Niue.png b/flags/flags/flat/24/Niue.png new file mode 100644 index 0000000..7bb2da2 Binary files /dev/null and b/flags/flags/flat/24/Niue.png differ diff --git a/flags/flags/flat/24/Norfolk-Island.png b/flags/flags/flat/24/Norfolk-Island.png new file mode 100644 index 0000000..2bca954 Binary files /dev/null and b/flags/flags/flat/24/Norfolk-Island.png differ diff --git a/flags/flags/flat/24/North-Korea.png b/flags/flags/flat/24/North-Korea.png new file mode 100644 index 0000000..bd631b8 Binary files /dev/null and b/flags/flags/flat/24/North-Korea.png differ diff --git a/flags/flags/flat/24/Northern-Cyprus.png b/flags/flags/flat/24/Northern-Cyprus.png new file mode 100644 index 0000000..65242f0 Binary files /dev/null and b/flags/flags/flat/24/Northern-Cyprus.png differ diff --git a/flags/flags/flat/24/Northern-Mariana-Islands.png b/flags/flags/flat/24/Northern-Mariana-Islands.png new file mode 100644 index 0000000..cfc7261 Binary files /dev/null and b/flags/flags/flat/24/Northern-Mariana-Islands.png differ diff --git a/flags/flags/flat/24/Norway.png b/flags/flags/flat/24/Norway.png new file mode 100644 index 0000000..f228e9f Binary files /dev/null and b/flags/flags/flat/24/Norway.png differ diff --git a/flags/flags/flat/24/Olympics.png b/flags/flags/flat/24/Olympics.png new file mode 100644 index 0000000..35912bc Binary files /dev/null and b/flags/flags/flat/24/Olympics.png differ diff --git a/flags/flags/flat/24/Oman.png b/flags/flags/flat/24/Oman.png new file mode 100644 index 0000000..d757f90 Binary files /dev/null and b/flags/flags/flat/24/Oman.png differ diff --git a/flags/flags/flat/24/Pakistan.png b/flags/flags/flat/24/Pakistan.png new file mode 100644 index 0000000..d01eddf Binary files /dev/null and b/flags/flags/flat/24/Pakistan.png differ diff --git a/flags/flags/flat/24/Palau.png b/flags/flags/flat/24/Palau.png new file mode 100644 index 0000000..cf148a2 Binary files /dev/null and b/flags/flags/flat/24/Palau.png differ diff --git a/flags/flags/flat/24/Palestine.png b/flags/flags/flat/24/Palestine.png new file mode 100644 index 0000000..205061f Binary files /dev/null and b/flags/flags/flat/24/Palestine.png differ diff --git a/flags/flags/flat/24/Panama.png b/flags/flags/flat/24/Panama.png new file mode 100644 index 0000000..0908aac Binary files /dev/null and b/flags/flags/flat/24/Panama.png differ diff --git a/flags/flags/flat/24/Papua-New-Guinea.png b/flags/flags/flat/24/Papua-New-Guinea.png new file mode 100644 index 0000000..0f2c976 Binary files /dev/null and b/flags/flags/flat/24/Papua-New-Guinea.png differ diff --git a/flags/flags/flat/24/Paraguay.png b/flags/flags/flat/24/Paraguay.png new file mode 100644 index 0000000..fc4b2a2 Binary files /dev/null and b/flags/flags/flat/24/Paraguay.png differ diff --git a/flags/flags/flat/24/Peru.png b/flags/flags/flat/24/Peru.png new file mode 100644 index 0000000..ff92542 Binary files /dev/null and b/flags/flags/flat/24/Peru.png differ diff --git a/flags/flags/flat/24/Philippines.png b/flags/flags/flat/24/Philippines.png new file mode 100644 index 0000000..9686b25 Binary files /dev/null and b/flags/flags/flat/24/Philippines.png differ diff --git a/flags/flags/flat/24/Pitcairn-Islands.png b/flags/flags/flat/24/Pitcairn-Islands.png new file mode 100644 index 0000000..a27696f Binary files /dev/null and b/flags/flags/flat/24/Pitcairn-Islands.png differ diff --git a/flags/flags/flat/24/Poland.png b/flags/flags/flat/24/Poland.png new file mode 100644 index 0000000..b9807dc Binary files /dev/null and b/flags/flags/flat/24/Poland.png differ diff --git a/flags/flags/flat/24/Portugal.png b/flags/flags/flat/24/Portugal.png new file mode 100644 index 0000000..8698cfa Binary files /dev/null and b/flags/flags/flat/24/Portugal.png differ diff --git a/flags/flags/flat/24/Puerto-Rico.png b/flags/flags/flat/24/Puerto-Rico.png new file mode 100644 index 0000000..fdfc417 Binary files /dev/null and b/flags/flags/flat/24/Puerto-Rico.png differ diff --git a/flags/flags/flat/24/Qatar.png b/flags/flags/flat/24/Qatar.png new file mode 100644 index 0000000..0a1876f Binary files /dev/null and b/flags/flags/flat/24/Qatar.png differ diff --git a/flags/flags/flat/24/Red-Cross.png b/flags/flags/flat/24/Red-Cross.png new file mode 100644 index 0000000..1676e65 Binary files /dev/null and b/flags/flags/flat/24/Red-Cross.png differ diff --git a/flags/flags/flat/24/Republic-of-the-Congo.png b/flags/flags/flat/24/Republic-of-the-Congo.png new file mode 100644 index 0000000..b744905 Binary files /dev/null and b/flags/flags/flat/24/Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/24/Romania.png b/flags/flags/flat/24/Romania.png new file mode 100644 index 0000000..cc2494d Binary files /dev/null and b/flags/flags/flat/24/Romania.png differ diff --git a/flags/flags/flat/24/Russia.png b/flags/flags/flat/24/Russia.png new file mode 100644 index 0000000..d36f4b8 Binary files /dev/null and b/flags/flags/flat/24/Russia.png differ diff --git a/flags/flags/flat/24/Rwanda.png b/flags/flags/flat/24/Rwanda.png new file mode 100644 index 0000000..2e87e41 Binary files /dev/null and b/flags/flags/flat/24/Rwanda.png differ diff --git a/flags/flags/flat/24/Saint-Barthelemy.png b/flags/flags/flat/24/Saint-Barthelemy.png new file mode 100644 index 0000000..67f7149 Binary files /dev/null and b/flags/flags/flat/24/Saint-Barthelemy.png differ diff --git a/flags/flags/flat/24/Saint-Helena.png b/flags/flags/flat/24/Saint-Helena.png new file mode 100644 index 0000000..35c6ac7 Binary files /dev/null and b/flags/flags/flat/24/Saint-Helena.png differ diff --git a/flags/flags/flat/24/Saint-Kitts-and-Nevis.png b/flags/flags/flat/24/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..27a1f7f Binary files /dev/null and b/flags/flags/flat/24/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/flat/24/Saint-Lucia.png b/flags/flags/flat/24/Saint-Lucia.png new file mode 100644 index 0000000..7c03a0f Binary files /dev/null and b/flags/flags/flat/24/Saint-Lucia.png differ diff --git a/flags/flags/flat/24/Saint-Vincent-and-the-Grenadines.png b/flags/flags/flat/24/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..f0b561d Binary files /dev/null and b/flags/flags/flat/24/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/flat/24/Samoa.png b/flags/flags/flat/24/Samoa.png new file mode 100644 index 0000000..c88f2e8 Binary files /dev/null and b/flags/flags/flat/24/Samoa.png differ diff --git a/flags/flags/flat/24/San-Marino.png b/flags/flags/flat/24/San-Marino.png new file mode 100644 index 0000000..b058d14 Binary files /dev/null and b/flags/flags/flat/24/San-Marino.png differ diff --git a/flags/flags/flat/24/Sao-Tome-and-Principe.png b/flags/flags/flat/24/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..5fe3cb2 Binary files /dev/null and b/flags/flags/flat/24/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/flat/24/Saudi-Arabia.png b/flags/flags/flat/24/Saudi-Arabia.png new file mode 100644 index 0000000..f5a10f0 Binary files /dev/null and b/flags/flags/flat/24/Saudi-Arabia.png differ diff --git a/flags/flags/flat/24/Scotland.png b/flags/flags/flat/24/Scotland.png new file mode 100644 index 0000000..293bef5 Binary files /dev/null and b/flags/flags/flat/24/Scotland.png differ diff --git a/flags/flags/flat/24/Senegal.png b/flags/flags/flat/24/Senegal.png new file mode 100644 index 0000000..0c6664f Binary files /dev/null and b/flags/flags/flat/24/Senegal.png differ diff --git a/flags/flags/flat/24/Serbia.png b/flags/flags/flat/24/Serbia.png new file mode 100644 index 0000000..8dca354 Binary files /dev/null and b/flags/flags/flat/24/Serbia.png differ diff --git a/flags/flags/flat/24/Seychelles.png b/flags/flags/flat/24/Seychelles.png new file mode 100644 index 0000000..52becc5 Binary files /dev/null and b/flags/flags/flat/24/Seychelles.png differ diff --git a/flags/flags/flat/24/Sierra-Leone.png b/flags/flags/flat/24/Sierra-Leone.png new file mode 100644 index 0000000..3ff9f7c Binary files /dev/null and b/flags/flags/flat/24/Sierra-Leone.png differ diff --git a/flags/flags/flat/24/Singapore.png b/flags/flags/flat/24/Singapore.png new file mode 100644 index 0000000..b23f685 Binary files /dev/null and b/flags/flags/flat/24/Singapore.png differ diff --git a/flags/flags/flat/24/Slovakia.png b/flags/flags/flat/24/Slovakia.png new file mode 100644 index 0000000..8d9d1d7 Binary files /dev/null and b/flags/flags/flat/24/Slovakia.png differ diff --git a/flags/flags/flat/24/Slovenia.png b/flags/flags/flat/24/Slovenia.png new file mode 100644 index 0000000..584888a Binary files /dev/null and b/flags/flags/flat/24/Slovenia.png differ diff --git a/flags/flags/flat/24/Solomon-Islands.png b/flags/flags/flat/24/Solomon-Islands.png new file mode 100644 index 0000000..4836b72 Binary files /dev/null and b/flags/flags/flat/24/Solomon-Islands.png differ diff --git a/flags/flags/flat/24/Somalia.png b/flags/flags/flat/24/Somalia.png new file mode 100644 index 0000000..8acf3de Binary files /dev/null and b/flags/flags/flat/24/Somalia.png differ diff --git a/flags/flags/flat/24/Somaliland.png b/flags/flags/flat/24/Somaliland.png new file mode 100644 index 0000000..5dfd5a2 Binary files /dev/null and b/flags/flags/flat/24/Somaliland.png differ diff --git a/flags/flags/flat/24/South-Africa.png b/flags/flags/flat/24/South-Africa.png new file mode 100644 index 0000000..be9909f Binary files /dev/null and b/flags/flags/flat/24/South-Africa.png differ diff --git a/flags/flags/flat/24/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/flat/24/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..73ac17c Binary files /dev/null and b/flags/flags/flat/24/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/flat/24/South-Korea.png b/flags/flags/flat/24/South-Korea.png new file mode 100644 index 0000000..58b00b5 Binary files /dev/null and b/flags/flags/flat/24/South-Korea.png differ diff --git a/flags/flags/flat/24/South-Ossetia.png b/flags/flags/flat/24/South-Ossetia.png new file mode 100644 index 0000000..094884a Binary files /dev/null and b/flags/flags/flat/24/South-Ossetia.png differ diff --git a/flags/flags/flat/24/South-Sudan.png b/flags/flags/flat/24/South-Sudan.png new file mode 100644 index 0000000..bdaa77c Binary files /dev/null and b/flags/flags/flat/24/South-Sudan.png differ diff --git a/flags/flags/flat/24/Spain.png b/flags/flags/flat/24/Spain.png new file mode 100644 index 0000000..cf53a8d Binary files /dev/null and b/flags/flags/flat/24/Spain.png differ diff --git a/flags/flags/flat/24/Sri-Lanka.png b/flags/flags/flat/24/Sri-Lanka.png new file mode 100644 index 0000000..e9b9c87 Binary files /dev/null and b/flags/flags/flat/24/Sri-Lanka.png differ diff --git a/flags/flags/flat/24/Sudan.png b/flags/flags/flat/24/Sudan.png new file mode 100644 index 0000000..7d75423 Binary files /dev/null and b/flags/flags/flat/24/Sudan.png differ diff --git a/flags/flags/flat/24/Suriname.png b/flags/flags/flat/24/Suriname.png new file mode 100644 index 0000000..dca8d1b Binary files /dev/null and b/flags/flags/flat/24/Suriname.png differ diff --git a/flags/flags/flat/24/Swaziland.png b/flags/flags/flat/24/Swaziland.png new file mode 100644 index 0000000..a1a9d5a Binary files /dev/null and b/flags/flags/flat/24/Swaziland.png differ diff --git a/flags/flags/flat/24/Sweden.png b/flags/flags/flat/24/Sweden.png new file mode 100644 index 0000000..df52050 Binary files /dev/null and b/flags/flags/flat/24/Sweden.png differ diff --git a/flags/flags/flat/24/Switzerland.png b/flags/flags/flat/24/Switzerland.png new file mode 100644 index 0000000..985ff52 Binary files /dev/null and b/flags/flags/flat/24/Switzerland.png differ diff --git a/flags/flags/flat/24/Syria.png b/flags/flags/flat/24/Syria.png new file mode 100644 index 0000000..cf21d7f Binary files /dev/null and b/flags/flags/flat/24/Syria.png differ diff --git a/flags/flags/flat/24/Taiwan.png b/flags/flags/flat/24/Taiwan.png new file mode 100644 index 0000000..03a51bc Binary files /dev/null and b/flags/flags/flat/24/Taiwan.png differ diff --git a/flags/flags/flat/24/Tajikistan.png b/flags/flags/flat/24/Tajikistan.png new file mode 100644 index 0000000..147d03f Binary files /dev/null and b/flags/flags/flat/24/Tajikistan.png differ diff --git a/flags/flags/flat/24/Tanzania.png b/flags/flags/flat/24/Tanzania.png new file mode 100644 index 0000000..26389e1 Binary files /dev/null and b/flags/flags/flat/24/Tanzania.png differ diff --git a/flags/flags/flat/24/Thailand.png b/flags/flags/flat/24/Thailand.png new file mode 100644 index 0000000..a50b0e4 Binary files /dev/null and b/flags/flags/flat/24/Thailand.png differ diff --git a/flags/flags/flat/24/Togo.png b/flags/flags/flat/24/Togo.png new file mode 100644 index 0000000..406e51b Binary files /dev/null and b/flags/flags/flat/24/Togo.png differ diff --git a/flags/flags/flat/24/Tokelau.png b/flags/flags/flat/24/Tokelau.png new file mode 100644 index 0000000..6c965dd Binary files /dev/null and b/flags/flags/flat/24/Tokelau.png differ diff --git a/flags/flags/flat/24/Tonga.png b/flags/flags/flat/24/Tonga.png new file mode 100644 index 0000000..36873d3 Binary files /dev/null and b/flags/flags/flat/24/Tonga.png differ diff --git a/flags/flags/flat/24/Trinidad-and-Tobago.png b/flags/flags/flat/24/Trinidad-and-Tobago.png new file mode 100644 index 0000000..2a2ec08 Binary files /dev/null and b/flags/flags/flat/24/Trinidad-and-Tobago.png differ diff --git a/flags/flags/flat/24/Tunisia.png b/flags/flags/flat/24/Tunisia.png new file mode 100644 index 0000000..cf508c6 Binary files /dev/null and b/flags/flags/flat/24/Tunisia.png differ diff --git a/flags/flags/flat/24/Turkey.png b/flags/flags/flat/24/Turkey.png new file mode 100644 index 0000000..c147631 Binary files /dev/null and b/flags/flags/flat/24/Turkey.png differ diff --git a/flags/flags/flat/24/Turkmenistan.png b/flags/flags/flat/24/Turkmenistan.png new file mode 100644 index 0000000..c2f342a Binary files /dev/null and b/flags/flags/flat/24/Turkmenistan.png differ diff --git a/flags/flags/flat/24/Turks-and-Caicos-Islands.png b/flags/flags/flat/24/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..10a9798 Binary files /dev/null and b/flags/flags/flat/24/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/flat/24/Tuvalu.png b/flags/flags/flat/24/Tuvalu.png new file mode 100644 index 0000000..b48b323 Binary files /dev/null and b/flags/flags/flat/24/Tuvalu.png differ diff --git a/flags/flags/flat/24/US-Virgin-Islands.png b/flags/flags/flat/24/US-Virgin-Islands.png new file mode 100644 index 0000000..fcaf84e Binary files /dev/null and b/flags/flags/flat/24/US-Virgin-Islands.png differ diff --git a/flags/flags/flat/24/Uganda.png b/flags/flags/flat/24/Uganda.png new file mode 100644 index 0000000..3a8f4e1 Binary files /dev/null and b/flags/flags/flat/24/Uganda.png differ diff --git a/flags/flags/flat/24/Ukraine.png b/flags/flags/flat/24/Ukraine.png new file mode 100644 index 0000000..badac50 Binary files /dev/null and b/flags/flags/flat/24/Ukraine.png differ diff --git a/flags/flags/flat/24/United-Arab-Emirates.png b/flags/flags/flat/24/United-Arab-Emirates.png new file mode 100644 index 0000000..8263f12 Binary files /dev/null and b/flags/flags/flat/24/United-Arab-Emirates.png differ diff --git a/flags/flags/flat/24/United-Kingdom.png b/flags/flags/flat/24/United-Kingdom.png new file mode 100644 index 0000000..fb1edaa Binary files /dev/null and b/flags/flags/flat/24/United-Kingdom.png differ diff --git a/flags/flags/flat/24/United-Nations.png b/flags/flags/flat/24/United-Nations.png new file mode 100644 index 0000000..629d744 Binary files /dev/null and b/flags/flags/flat/24/United-Nations.png differ diff --git a/flags/flags/flat/24/United-States.png b/flags/flags/flat/24/United-States.png new file mode 100644 index 0000000..b269593 Binary files /dev/null and b/flags/flags/flat/24/United-States.png differ diff --git a/flags/flags/flat/24/Uruguay.png b/flags/flags/flat/24/Uruguay.png new file mode 100644 index 0000000..6789faa Binary files /dev/null and b/flags/flags/flat/24/Uruguay.png differ diff --git a/flags/flags/flat/24/Uzbekistan.png b/flags/flags/flat/24/Uzbekistan.png new file mode 100644 index 0000000..0a0cc51 Binary files /dev/null and b/flags/flags/flat/24/Uzbekistan.png differ diff --git a/flags/flags/flat/24/Vanuatu.png b/flags/flags/flat/24/Vanuatu.png new file mode 100644 index 0000000..b000f11 Binary files /dev/null and b/flags/flags/flat/24/Vanuatu.png differ diff --git a/flags/flags/flat/24/Vatican-City.png b/flags/flags/flat/24/Vatican-City.png new file mode 100644 index 0000000..6ebc4ee Binary files /dev/null and b/flags/flags/flat/24/Vatican-City.png differ diff --git a/flags/flags/flat/24/Venezuela.png b/flags/flags/flat/24/Venezuela.png new file mode 100644 index 0000000..6e3a465 Binary files /dev/null and b/flags/flags/flat/24/Venezuela.png differ diff --git a/flags/flags/flat/24/Vietnam.png b/flags/flags/flat/24/Vietnam.png new file mode 100644 index 0000000..6668916 Binary files /dev/null and b/flags/flags/flat/24/Vietnam.png differ diff --git a/flags/flags/flat/24/Wales.png b/flags/flags/flat/24/Wales.png new file mode 100644 index 0000000..1bf5a19 Binary files /dev/null and b/flags/flags/flat/24/Wales.png differ diff --git a/flags/flags/flat/24/Wallis-And-Futuna.png b/flags/flags/flat/24/Wallis-And-Futuna.png new file mode 100644 index 0000000..bf2c868 Binary files /dev/null and b/flags/flags/flat/24/Wallis-And-Futuna.png differ diff --git a/flags/flags/flat/24/Western-Sahara.png b/flags/flags/flat/24/Western-Sahara.png new file mode 100644 index 0000000..7cd1b3b Binary files /dev/null and b/flags/flags/flat/24/Western-Sahara.png differ diff --git a/flags/flags/flat/24/Yemen.png b/flags/flags/flat/24/Yemen.png new file mode 100644 index 0000000..eed64e0 Binary files /dev/null and b/flags/flags/flat/24/Yemen.png differ diff --git a/flags/flags/flat/24/Zambia.png b/flags/flags/flat/24/Zambia.png new file mode 100644 index 0000000..04946dd Binary files /dev/null and b/flags/flags/flat/24/Zambia.png differ diff --git a/flags/flags/flat/24/Zimbabwe.png b/flags/flags/flat/24/Zimbabwe.png new file mode 100644 index 0000000..52b47a4 Binary files /dev/null and b/flags/flags/flat/24/Zimbabwe.png differ diff --git a/flags/flags/flat/32/Abkhazia.png b/flags/flags/flat/32/Abkhazia.png new file mode 100644 index 0000000..67f17ad Binary files /dev/null and b/flags/flags/flat/32/Abkhazia.png differ diff --git a/flags/flags/flat/32/Afghanistan.png b/flags/flags/flat/32/Afghanistan.png new file mode 100644 index 0000000..8c0d196 Binary files /dev/null and b/flags/flags/flat/32/Afghanistan.png differ diff --git a/flags/flags/flat/32/Aland.png b/flags/flags/flat/32/Aland.png new file mode 100644 index 0000000..bf1cce6 Binary files /dev/null and b/flags/flags/flat/32/Aland.png differ diff --git a/flags/flags/flat/32/Albania.png b/flags/flags/flat/32/Albania.png new file mode 100644 index 0000000..d39dfa4 Binary files /dev/null and b/flags/flags/flat/32/Albania.png differ diff --git a/flags/flags/flat/32/Algeria.png b/flags/flags/flat/32/Algeria.png new file mode 100644 index 0000000..639c489 Binary files /dev/null and b/flags/flags/flat/32/Algeria.png differ diff --git a/flags/flags/flat/32/American-Samoa.png b/flags/flags/flat/32/American-Samoa.png new file mode 100644 index 0000000..f2d265d Binary files /dev/null and b/flags/flags/flat/32/American-Samoa.png differ diff --git a/flags/flags/flat/32/Andorra.png b/flags/flags/flat/32/Andorra.png new file mode 100644 index 0000000..2247b41 Binary files /dev/null and b/flags/flags/flat/32/Andorra.png differ diff --git a/flags/flags/flat/32/Angola.png b/flags/flags/flat/32/Angola.png new file mode 100644 index 0000000..b248a14 Binary files /dev/null and b/flags/flags/flat/32/Angola.png differ diff --git a/flags/flags/flat/32/Anguilla.png b/flags/flags/flat/32/Anguilla.png new file mode 100644 index 0000000..75a600a Binary files /dev/null and b/flags/flags/flat/32/Anguilla.png differ diff --git a/flags/flags/flat/32/Antarctica.png b/flags/flags/flat/32/Antarctica.png new file mode 100644 index 0000000..e3c6289 Binary files /dev/null and b/flags/flags/flat/32/Antarctica.png differ diff --git a/flags/flags/flat/32/Antigua-and-Barbuda.png b/flags/flags/flat/32/Antigua-and-Barbuda.png new file mode 100644 index 0000000..8692f45 Binary files /dev/null and b/flags/flags/flat/32/Antigua-and-Barbuda.png differ diff --git a/flags/flags/flat/32/Argentina.png b/flags/flags/flat/32/Argentina.png new file mode 100644 index 0000000..405155f Binary files /dev/null and b/flags/flags/flat/32/Argentina.png differ diff --git a/flags/flags/flat/32/Armenia.png b/flags/flags/flat/32/Armenia.png new file mode 100644 index 0000000..6d5ef56 Binary files /dev/null and b/flags/flags/flat/32/Armenia.png differ diff --git a/flags/flags/flat/32/Aruba.png b/flags/flags/flat/32/Aruba.png new file mode 100644 index 0000000..ab063a5 Binary files /dev/null and b/flags/flags/flat/32/Aruba.png differ diff --git a/flags/flags/flat/32/Australia.png b/flags/flags/flat/32/Australia.png new file mode 100644 index 0000000..45c7645 Binary files /dev/null and b/flags/flags/flat/32/Australia.png differ diff --git a/flags/flags/flat/32/Austria.png b/flags/flags/flat/32/Austria.png new file mode 100644 index 0000000..af63007 Binary files /dev/null and b/flags/flags/flat/32/Austria.png differ diff --git a/flags/flags/flat/32/Azerbaijan.png b/flags/flags/flat/32/Azerbaijan.png new file mode 100644 index 0000000..9d883b0 Binary files /dev/null and b/flags/flags/flat/32/Azerbaijan.png differ diff --git a/flags/flags/flat/32/Bahamas.png b/flags/flags/flat/32/Bahamas.png new file mode 100644 index 0000000..c60c35b Binary files /dev/null and b/flags/flags/flat/32/Bahamas.png differ diff --git a/flags/flags/flat/32/Bahrain.png b/flags/flags/flat/32/Bahrain.png new file mode 100644 index 0000000..7bc3253 Binary files /dev/null and b/flags/flags/flat/32/Bahrain.png differ diff --git a/flags/flags/flat/32/Bangladesh.png b/flags/flags/flat/32/Bangladesh.png new file mode 100644 index 0000000..e62fdbb Binary files /dev/null and b/flags/flags/flat/32/Bangladesh.png differ diff --git a/flags/flags/flat/32/Barbados.png b/flags/flags/flat/32/Barbados.png new file mode 100644 index 0000000..ca4aa07 Binary files /dev/null and b/flags/flags/flat/32/Barbados.png differ diff --git a/flags/flags/flat/32/Belarus.png b/flags/flags/flat/32/Belarus.png new file mode 100644 index 0000000..5dc9c07 Binary files /dev/null and b/flags/flags/flat/32/Belarus.png differ diff --git a/flags/flags/flat/32/Belgium.png b/flags/flags/flat/32/Belgium.png new file mode 100644 index 0000000..ae1ba66 Binary files /dev/null and b/flags/flags/flat/32/Belgium.png differ diff --git a/flags/flags/flat/32/Belize.png b/flags/flags/flat/32/Belize.png new file mode 100644 index 0000000..8fa1b7d Binary files /dev/null and b/flags/flags/flat/32/Belize.png differ diff --git a/flags/flags/flat/32/Benin.png b/flags/flags/flat/32/Benin.png new file mode 100644 index 0000000..5645cce Binary files /dev/null and b/flags/flags/flat/32/Benin.png differ diff --git a/flags/flags/flat/32/Bermuda.png b/flags/flags/flat/32/Bermuda.png new file mode 100644 index 0000000..bce285e Binary files /dev/null and b/flags/flags/flat/32/Bermuda.png differ diff --git a/flags/flags/flat/32/Bhutan.png b/flags/flags/flat/32/Bhutan.png new file mode 100644 index 0000000..c5eea81 Binary files /dev/null and b/flags/flags/flat/32/Bhutan.png differ diff --git a/flags/flags/flat/32/Bolivia.png b/flags/flags/flat/32/Bolivia.png new file mode 100644 index 0000000..f5e9bf8 Binary files /dev/null and b/flags/flags/flat/32/Bolivia.png differ diff --git a/flags/flags/flat/32/Bosnia-and-Herzegovina.png b/flags/flags/flat/32/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..168dbc1 Binary files /dev/null and b/flags/flags/flat/32/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/flat/32/Botswana.png b/flags/flags/flat/32/Botswana.png new file mode 100644 index 0000000..59f37cb Binary files /dev/null and b/flags/flags/flat/32/Botswana.png differ diff --git a/flags/flags/flat/32/Brazil.png b/flags/flags/flat/32/Brazil.png new file mode 100644 index 0000000..8848d51 Binary files /dev/null and b/flags/flags/flat/32/Brazil.png differ diff --git a/flags/flags/flat/32/British-Antarctic-Territory.png b/flags/flags/flat/32/British-Antarctic-Territory.png new file mode 100644 index 0000000..acb8abe Binary files /dev/null and b/flags/flags/flat/32/British-Antarctic-Territory.png differ diff --git a/flags/flags/flat/32/British-Virgin-Islands.png b/flags/flags/flat/32/British-Virgin-Islands.png new file mode 100644 index 0000000..6c2aed2 Binary files /dev/null and b/flags/flags/flat/32/British-Virgin-Islands.png differ diff --git a/flags/flags/flat/32/Brunei.png b/flags/flags/flat/32/Brunei.png new file mode 100644 index 0000000..b46f9d3 Binary files /dev/null and b/flags/flags/flat/32/Brunei.png differ diff --git a/flags/flags/flat/32/Bulgaria.png b/flags/flags/flat/32/Bulgaria.png new file mode 100644 index 0000000..7b3aa9d Binary files /dev/null and b/flags/flags/flat/32/Bulgaria.png differ diff --git a/flags/flags/flat/32/Burkina-Faso.png b/flags/flags/flat/32/Burkina-Faso.png new file mode 100644 index 0000000..d692300 Binary files /dev/null and b/flags/flags/flat/32/Burkina-Faso.png differ diff --git a/flags/flags/flat/32/Burundi.png b/flags/flags/flat/32/Burundi.png new file mode 100644 index 0000000..111339a Binary files /dev/null and b/flags/flags/flat/32/Burundi.png differ diff --git a/flags/flags/flat/32/Cambodia.png b/flags/flags/flat/32/Cambodia.png new file mode 100644 index 0000000..18edf66 Binary files /dev/null and b/flags/flags/flat/32/Cambodia.png differ diff --git a/flags/flags/flat/32/Cameroon.png b/flags/flags/flat/32/Cameroon.png new file mode 100644 index 0000000..4c87dcd Binary files /dev/null and b/flags/flags/flat/32/Cameroon.png differ diff --git a/flags/flags/flat/32/Canada.png b/flags/flags/flat/32/Canada.png new file mode 100644 index 0000000..bb643fe Binary files /dev/null and b/flags/flags/flat/32/Canada.png differ diff --git a/flags/flags/flat/32/Cape-Verde.png b/flags/flags/flat/32/Cape-Verde.png new file mode 100644 index 0000000..d28cc6f Binary files /dev/null and b/flags/flags/flat/32/Cape-Verde.png differ diff --git a/flags/flags/flat/32/Cayman-Islands.png b/flags/flags/flat/32/Cayman-Islands.png new file mode 100644 index 0000000..44a2b68 Binary files /dev/null and b/flags/flags/flat/32/Cayman-Islands.png differ diff --git a/flags/flags/flat/32/Central-African-Republic.png b/flags/flags/flat/32/Central-African-Republic.png new file mode 100644 index 0000000..505047f Binary files /dev/null and b/flags/flags/flat/32/Central-African-Republic.png differ diff --git a/flags/flags/flat/32/Chad.png b/flags/flags/flat/32/Chad.png new file mode 100644 index 0000000..c1c9e03 Binary files /dev/null and b/flags/flags/flat/32/Chad.png differ diff --git a/flags/flags/flat/32/Chile.png b/flags/flags/flat/32/Chile.png new file mode 100644 index 0000000..16177f1 Binary files /dev/null and b/flags/flags/flat/32/Chile.png differ diff --git a/flags/flags/flat/32/China.png b/flags/flags/flat/32/China.png new file mode 100644 index 0000000..02156cd Binary files /dev/null and b/flags/flags/flat/32/China.png differ diff --git a/flags/flags/flat/32/Christmas-Island.png b/flags/flags/flat/32/Christmas-Island.png new file mode 100644 index 0000000..1a4b9ab Binary files /dev/null and b/flags/flags/flat/32/Christmas-Island.png differ diff --git a/flags/flags/flat/32/Cocos-Keeling-Islands.png b/flags/flags/flat/32/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..4077acb Binary files /dev/null and b/flags/flags/flat/32/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/flat/32/Colombia.png b/flags/flags/flat/32/Colombia.png new file mode 100644 index 0000000..1eda4bb Binary files /dev/null and b/flags/flags/flat/32/Colombia.png differ diff --git a/flags/flags/flat/32/Commonwealth.png b/flags/flags/flat/32/Commonwealth.png new file mode 100644 index 0000000..9a9252f Binary files /dev/null and b/flags/flags/flat/32/Commonwealth.png differ diff --git a/flags/flags/flat/32/Comoros.png b/flags/flags/flat/32/Comoros.png new file mode 100644 index 0000000..fc6d684 Binary files /dev/null and b/flags/flags/flat/32/Comoros.png differ diff --git a/flags/flags/flat/32/Cook-Islands.png b/flags/flags/flat/32/Cook-Islands.png new file mode 100644 index 0000000..c293e1d Binary files /dev/null and b/flags/flags/flat/32/Cook-Islands.png differ diff --git a/flags/flags/flat/32/Costa-Rica.png b/flags/flags/flat/32/Costa-Rica.png new file mode 100644 index 0000000..47789fc Binary files /dev/null and b/flags/flags/flat/32/Costa-Rica.png differ diff --git a/flags/flags/flat/32/Cote-dIvoire.png b/flags/flags/flat/32/Cote-dIvoire.png new file mode 100644 index 0000000..4bafeab Binary files /dev/null and b/flags/flags/flat/32/Cote-dIvoire.png differ diff --git a/flags/flags/flat/32/Croatia.png b/flags/flags/flat/32/Croatia.png new file mode 100644 index 0000000..c5fb552 Binary files /dev/null and b/flags/flags/flat/32/Croatia.png differ diff --git a/flags/flags/flat/32/Cuba.png b/flags/flags/flat/32/Cuba.png new file mode 100644 index 0000000..23969c8 Binary files /dev/null and b/flags/flags/flat/32/Cuba.png differ diff --git a/flags/flags/flat/32/Cyprus.png b/flags/flags/flat/32/Cyprus.png new file mode 100644 index 0000000..487534e Binary files /dev/null and b/flags/flags/flat/32/Cyprus.png differ diff --git a/flags/flags/flat/32/Czech-Republic.png b/flags/flags/flat/32/Czech-Republic.png new file mode 100644 index 0000000..b2524ac Binary files /dev/null and b/flags/flags/flat/32/Czech-Republic.png differ diff --git a/flags/flags/flat/32/Democratic-Republic-of-the-Congo.png b/flags/flags/flat/32/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..43ba266 Binary files /dev/null and b/flags/flags/flat/32/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/32/Denmark.png b/flags/flags/flat/32/Denmark.png new file mode 100644 index 0000000..e05eea9 Binary files /dev/null and b/flags/flags/flat/32/Denmark.png differ diff --git a/flags/flags/flat/32/Djibouti.png b/flags/flags/flat/32/Djibouti.png new file mode 100644 index 0000000..86c8094 Binary files /dev/null and b/flags/flags/flat/32/Djibouti.png differ diff --git a/flags/flags/flat/32/Dominica.png b/flags/flags/flat/32/Dominica.png new file mode 100644 index 0000000..db3315a Binary files /dev/null and b/flags/flags/flat/32/Dominica.png differ diff --git a/flags/flags/flat/32/Dominican-Republic.png b/flags/flags/flat/32/Dominican-Republic.png new file mode 100644 index 0000000..e0ec694 Binary files /dev/null and b/flags/flags/flat/32/Dominican-Republic.png differ diff --git a/flags/flags/flat/32/East-Timor.png b/flags/flags/flat/32/East-Timor.png new file mode 100644 index 0000000..6a53c0b Binary files /dev/null and b/flags/flags/flat/32/East-Timor.png differ diff --git a/flags/flags/flat/32/Ecuador.png b/flags/flags/flat/32/Ecuador.png new file mode 100644 index 0000000..a1ba550 Binary files /dev/null and b/flags/flags/flat/32/Ecuador.png differ diff --git a/flags/flags/flat/32/Egypt.png b/flags/flags/flat/32/Egypt.png new file mode 100644 index 0000000..6bb4713 Binary files /dev/null and b/flags/flags/flat/32/Egypt.png differ diff --git a/flags/flags/flat/32/El-Salvador.png b/flags/flags/flat/32/El-Salvador.png new file mode 100644 index 0000000..3f9e271 Binary files /dev/null and b/flags/flags/flat/32/El-Salvador.png differ diff --git a/flags/flags/flat/32/England.png b/flags/flags/flat/32/England.png new file mode 100644 index 0000000..bf7c11f Binary files /dev/null and b/flags/flags/flat/32/England.png differ diff --git a/flags/flags/flat/32/Equatorial-Guinea.png b/flags/flags/flat/32/Equatorial-Guinea.png new file mode 100644 index 0000000..6046df6 Binary files /dev/null and b/flags/flags/flat/32/Equatorial-Guinea.png differ diff --git a/flags/flags/flat/32/Eritrea.png b/flags/flags/flat/32/Eritrea.png new file mode 100644 index 0000000..b63395d Binary files /dev/null and b/flags/flags/flat/32/Eritrea.png differ diff --git a/flags/flags/flat/32/Estonia.png b/flags/flags/flat/32/Estonia.png new file mode 100644 index 0000000..7fc26f3 Binary files /dev/null and b/flags/flags/flat/32/Estonia.png differ diff --git a/flags/flags/flat/32/Ethiopia.png b/flags/flags/flat/32/Ethiopia.png new file mode 100644 index 0000000..204251e Binary files /dev/null and b/flags/flags/flat/32/Ethiopia.png differ diff --git a/flags/flags/flat/32/European-Union.png b/flags/flags/flat/32/European-Union.png new file mode 100644 index 0000000..d1d0fa4 Binary files /dev/null and b/flags/flags/flat/32/European-Union.png differ diff --git a/flags/flags/flat/32/Falkland-Islands.png b/flags/flags/flat/32/Falkland-Islands.png new file mode 100644 index 0000000..4d65fcf Binary files /dev/null and b/flags/flags/flat/32/Falkland-Islands.png differ diff --git a/flags/flags/flat/32/Faroes.png b/flags/flags/flat/32/Faroes.png new file mode 100644 index 0000000..3c08958 Binary files /dev/null and b/flags/flags/flat/32/Faroes.png differ diff --git a/flags/flags/flat/32/Fiji.png b/flags/flags/flat/32/Fiji.png new file mode 100644 index 0000000..4cd241e Binary files /dev/null and b/flags/flags/flat/32/Fiji.png differ diff --git a/flags/flags/flat/32/Finland.png b/flags/flags/flat/32/Finland.png new file mode 100644 index 0000000..7abc5c3 Binary files /dev/null and b/flags/flags/flat/32/Finland.png differ diff --git a/flags/flags/flat/32/France.png b/flags/flags/flat/32/France.png new file mode 100644 index 0000000..39fca72 Binary files /dev/null and b/flags/flags/flat/32/France.png differ diff --git a/flags/flags/flat/32/French-Polynesia.png b/flags/flags/flat/32/French-Polynesia.png new file mode 100644 index 0000000..df9dbbf Binary files /dev/null and b/flags/flags/flat/32/French-Polynesia.png differ diff --git a/flags/flags/flat/32/French-Southern-Territories.png b/flags/flags/flat/32/French-Southern-Territories.png new file mode 100644 index 0000000..c10d90f Binary files /dev/null and b/flags/flags/flat/32/French-Southern-Territories.png differ diff --git a/flags/flags/flat/32/Gabon.png b/flags/flags/flat/32/Gabon.png new file mode 100644 index 0000000..b30e54b Binary files /dev/null and b/flags/flags/flat/32/Gabon.png differ diff --git a/flags/flags/flat/32/Gambia.png b/flags/flags/flat/32/Gambia.png new file mode 100644 index 0000000..6d77a04 Binary files /dev/null and b/flags/flags/flat/32/Gambia.png differ diff --git a/flags/flags/flat/32/Georgia.png b/flags/flags/flat/32/Georgia.png new file mode 100644 index 0000000..2044b5f Binary files /dev/null and b/flags/flags/flat/32/Georgia.png differ diff --git a/flags/flags/flat/32/Germany.png b/flags/flags/flat/32/Germany.png new file mode 100644 index 0000000..608866a Binary files /dev/null and b/flags/flags/flat/32/Germany.png differ diff --git a/flags/flags/flat/32/Ghana.png b/flags/flags/flat/32/Ghana.png new file mode 100644 index 0000000..910e877 Binary files /dev/null and b/flags/flags/flat/32/Ghana.png differ diff --git a/flags/flags/flat/32/Gibraltar.png b/flags/flags/flat/32/Gibraltar.png new file mode 100644 index 0000000..205c518 Binary files /dev/null and b/flags/flags/flat/32/Gibraltar.png differ diff --git a/flags/flags/flat/32/GoSquared.png b/flags/flags/flat/32/GoSquared.png new file mode 100644 index 0000000..3369527 Binary files /dev/null and b/flags/flags/flat/32/GoSquared.png differ diff --git a/flags/flags/flat/32/Greece.png b/flags/flags/flat/32/Greece.png new file mode 100644 index 0000000..4214c9e Binary files /dev/null and b/flags/flags/flat/32/Greece.png differ diff --git a/flags/flags/flat/32/Greenland.png b/flags/flags/flat/32/Greenland.png new file mode 100644 index 0000000..09052a0 Binary files /dev/null and b/flags/flags/flat/32/Greenland.png differ diff --git a/flags/flags/flat/32/Grenada.png b/flags/flags/flat/32/Grenada.png new file mode 100644 index 0000000..5a8fd61 Binary files /dev/null and b/flags/flags/flat/32/Grenada.png differ diff --git a/flags/flags/flat/32/Guam.png b/flags/flags/flat/32/Guam.png new file mode 100644 index 0000000..d29c9d7 Binary files /dev/null and b/flags/flags/flat/32/Guam.png differ diff --git a/flags/flags/flat/32/Guatemala.png b/flags/flags/flat/32/Guatemala.png new file mode 100644 index 0000000..ad60c9f Binary files /dev/null and b/flags/flags/flat/32/Guatemala.png differ diff --git a/flags/flags/flat/32/Guernsey.png b/flags/flags/flat/32/Guernsey.png new file mode 100644 index 0000000..ca83a08 Binary files /dev/null and b/flags/flags/flat/32/Guernsey.png differ diff --git a/flags/flags/flat/32/Guinea-Bissau.png b/flags/flags/flat/32/Guinea-Bissau.png new file mode 100644 index 0000000..b2a2be2 Binary files /dev/null and b/flags/flags/flat/32/Guinea-Bissau.png differ diff --git a/flags/flags/flat/32/Guinea.png b/flags/flags/flat/32/Guinea.png new file mode 100644 index 0000000..ae45623 Binary files /dev/null and b/flags/flags/flat/32/Guinea.png differ diff --git a/flags/flags/flat/32/Guyana.png b/flags/flags/flat/32/Guyana.png new file mode 100644 index 0000000..a633055 Binary files /dev/null and b/flags/flags/flat/32/Guyana.png differ diff --git a/flags/flags/flat/32/Haiti.png b/flags/flags/flat/32/Haiti.png new file mode 100644 index 0000000..bff74a7 Binary files /dev/null and b/flags/flags/flat/32/Haiti.png differ diff --git a/flags/flags/flat/32/Honduras.png b/flags/flags/flat/32/Honduras.png new file mode 100644 index 0000000..501af3a Binary files /dev/null and b/flags/flags/flat/32/Honduras.png differ diff --git a/flags/flags/flat/32/Hong-Kong.png b/flags/flags/flat/32/Hong-Kong.png new file mode 100644 index 0000000..a07471f Binary files /dev/null and b/flags/flags/flat/32/Hong-Kong.png differ diff --git a/flags/flags/flat/32/Hungary.png b/flags/flags/flat/32/Hungary.png new file mode 100644 index 0000000..d353cc4 Binary files /dev/null and b/flags/flags/flat/32/Hungary.png differ diff --git a/flags/flags/flat/32/Iceland.png b/flags/flags/flat/32/Iceland.png new file mode 100644 index 0000000..ccb77e5 Binary files /dev/null and b/flags/flags/flat/32/Iceland.png differ diff --git a/flags/flags/flat/32/India.png b/flags/flags/flat/32/India.png new file mode 100644 index 0000000..8b86908 Binary files /dev/null and b/flags/flags/flat/32/India.png differ diff --git a/flags/flags/flat/32/Indonesia.png b/flags/flags/flat/32/Indonesia.png new file mode 100644 index 0000000..469675a Binary files /dev/null and b/flags/flags/flat/32/Indonesia.png differ diff --git a/flags/flags/flat/32/Iran.png b/flags/flags/flat/32/Iran.png new file mode 100644 index 0000000..addc3b7 Binary files /dev/null and b/flags/flags/flat/32/Iran.png differ diff --git a/flags/flags/flat/32/Iraq.png b/flags/flags/flat/32/Iraq.png new file mode 100644 index 0000000..fa915c4 Binary files /dev/null and b/flags/flags/flat/32/Iraq.png differ diff --git a/flags/flags/flat/32/Ireland.png b/flags/flags/flat/32/Ireland.png new file mode 100644 index 0000000..f5890e6 Binary files /dev/null and b/flags/flags/flat/32/Ireland.png differ diff --git a/flags/flags/flat/32/Isle-of-Man.png b/flags/flags/flat/32/Isle-of-Man.png new file mode 100644 index 0000000..68a452e Binary files /dev/null and b/flags/flags/flat/32/Isle-of-Man.png differ diff --git a/flags/flags/flat/32/Israel.png b/flags/flags/flat/32/Israel.png new file mode 100644 index 0000000..955579f Binary files /dev/null and b/flags/flags/flat/32/Israel.png differ diff --git a/flags/flags/flat/32/Italy.png b/flags/flags/flat/32/Italy.png new file mode 100644 index 0000000..fd4a9db Binary files /dev/null and b/flags/flags/flat/32/Italy.png differ diff --git a/flags/flags/flat/32/Jamaica.png b/flags/flags/flat/32/Jamaica.png new file mode 100644 index 0000000..8d504f6 Binary files /dev/null and b/flags/flags/flat/32/Jamaica.png differ diff --git a/flags/flags/flat/32/Japan.png b/flags/flags/flat/32/Japan.png new file mode 100644 index 0000000..80c93d1 Binary files /dev/null and b/flags/flags/flat/32/Japan.png differ diff --git a/flags/flags/flat/32/Jersey.png b/flags/flags/flat/32/Jersey.png new file mode 100644 index 0000000..734f2bb Binary files /dev/null and b/flags/flags/flat/32/Jersey.png differ diff --git a/flags/flags/flat/32/Jordan.png b/flags/flags/flat/32/Jordan.png new file mode 100644 index 0000000..5f829a6 Binary files /dev/null and b/flags/flags/flat/32/Jordan.png differ diff --git a/flags/flags/flat/32/Kazakhstan.png b/flags/flags/flat/32/Kazakhstan.png new file mode 100644 index 0000000..fa44b78 Binary files /dev/null and b/flags/flags/flat/32/Kazakhstan.png differ diff --git a/flags/flags/flat/32/Kenya.png b/flags/flags/flat/32/Kenya.png new file mode 100644 index 0000000..e4c1520 Binary files /dev/null and b/flags/flags/flat/32/Kenya.png differ diff --git a/flags/flags/flat/32/Kiribati.png b/flags/flags/flat/32/Kiribati.png new file mode 100644 index 0000000..0ddecfe Binary files /dev/null and b/flags/flags/flat/32/Kiribati.png differ diff --git a/flags/flags/flat/32/Kosovo.png b/flags/flags/flat/32/Kosovo.png new file mode 100644 index 0000000..928b3e2 Binary files /dev/null and b/flags/flags/flat/32/Kosovo.png differ diff --git a/flags/flags/flat/32/Kuwait.png b/flags/flags/flat/32/Kuwait.png new file mode 100644 index 0000000..1398f5b Binary files /dev/null and b/flags/flags/flat/32/Kuwait.png differ diff --git a/flags/flags/flat/32/Kyrgyzstan.png b/flags/flags/flat/32/Kyrgyzstan.png new file mode 100644 index 0000000..bfdb8f3 Binary files /dev/null and b/flags/flags/flat/32/Kyrgyzstan.png differ diff --git a/flags/flags/flat/32/Laos.png b/flags/flags/flat/32/Laos.png new file mode 100644 index 0000000..22498d5 Binary files /dev/null and b/flags/flags/flat/32/Laos.png differ diff --git a/flags/flags/flat/32/Latvia.png b/flags/flags/flat/32/Latvia.png new file mode 100644 index 0000000..a0f0ca2 Binary files /dev/null and b/flags/flags/flat/32/Latvia.png differ diff --git a/flags/flags/flat/32/Lebanon.png b/flags/flags/flat/32/Lebanon.png new file mode 100644 index 0000000..202c97b Binary files /dev/null and b/flags/flags/flat/32/Lebanon.png differ diff --git a/flags/flags/flat/32/Lesotho.png b/flags/flags/flat/32/Lesotho.png new file mode 100644 index 0000000..9124416 Binary files /dev/null and b/flags/flags/flat/32/Lesotho.png differ diff --git a/flags/flags/flat/32/Liberia.png b/flags/flags/flat/32/Liberia.png new file mode 100644 index 0000000..76ed14d Binary files /dev/null and b/flags/flags/flat/32/Liberia.png differ diff --git a/flags/flags/flat/32/Libya.png b/flags/flags/flat/32/Libya.png new file mode 100644 index 0000000..ad52e65 Binary files /dev/null and b/flags/flags/flat/32/Libya.png differ diff --git a/flags/flags/flat/32/Liechtenstein.png b/flags/flags/flat/32/Liechtenstein.png new file mode 100644 index 0000000..2e502e7 Binary files /dev/null and b/flags/flags/flat/32/Liechtenstein.png differ diff --git a/flags/flags/flat/32/Lithuania.png b/flags/flags/flat/32/Lithuania.png new file mode 100644 index 0000000..1910f1c Binary files /dev/null and b/flags/flags/flat/32/Lithuania.png differ diff --git a/flags/flags/flat/32/Luxembourg.png b/flags/flags/flat/32/Luxembourg.png new file mode 100644 index 0000000..cfbe5dd Binary files /dev/null and b/flags/flags/flat/32/Luxembourg.png differ diff --git a/flags/flags/flat/32/Macau.png b/flags/flags/flat/32/Macau.png new file mode 100644 index 0000000..0f50937 Binary files /dev/null and b/flags/flags/flat/32/Macau.png differ diff --git a/flags/flags/flat/32/Macedonia.png b/flags/flags/flat/32/Macedonia.png new file mode 100644 index 0000000..ca33732 Binary files /dev/null and b/flags/flags/flat/32/Macedonia.png differ diff --git a/flags/flags/flat/32/Madagascar.png b/flags/flags/flat/32/Madagascar.png new file mode 100644 index 0000000..935d036 Binary files /dev/null and b/flags/flags/flat/32/Madagascar.png differ diff --git a/flags/flags/flat/32/Malawi.png b/flags/flags/flat/32/Malawi.png new file mode 100644 index 0000000..4afacdf Binary files /dev/null and b/flags/flags/flat/32/Malawi.png differ diff --git a/flags/flags/flat/32/Malaysia.png b/flags/flags/flat/32/Malaysia.png new file mode 100644 index 0000000..30b286b Binary files /dev/null and b/flags/flags/flat/32/Malaysia.png differ diff --git a/flags/flags/flat/32/Maldives.png b/flags/flags/flat/32/Maldives.png new file mode 100644 index 0000000..2c13fd3 Binary files /dev/null and b/flags/flags/flat/32/Maldives.png differ diff --git a/flags/flags/flat/32/Mali.png b/flags/flags/flat/32/Mali.png new file mode 100644 index 0000000..83fe80f Binary files /dev/null and b/flags/flags/flat/32/Mali.png differ diff --git a/flags/flags/flat/32/Malta.png b/flags/flags/flat/32/Malta.png new file mode 100644 index 0000000..20cd7d6 Binary files /dev/null and b/flags/flags/flat/32/Malta.png differ diff --git a/flags/flags/flat/32/Mars.png b/flags/flags/flat/32/Mars.png new file mode 100644 index 0000000..6c3f33d Binary files /dev/null and b/flags/flags/flat/32/Mars.png differ diff --git a/flags/flags/flat/32/Marshall-Islands.png b/flags/flags/flat/32/Marshall-Islands.png new file mode 100644 index 0000000..2b6748a Binary files /dev/null and b/flags/flags/flat/32/Marshall-Islands.png differ diff --git a/flags/flags/flat/32/Mauritania.png b/flags/flags/flat/32/Mauritania.png new file mode 100644 index 0000000..f7350b4 Binary files /dev/null and b/flags/flags/flat/32/Mauritania.png differ diff --git a/flags/flags/flat/32/Mauritius.png b/flags/flags/flat/32/Mauritius.png new file mode 100644 index 0000000..0e10c71 Binary files /dev/null and b/flags/flags/flat/32/Mauritius.png differ diff --git a/flags/flags/flat/32/Mayotte.png b/flags/flags/flat/32/Mayotte.png new file mode 100644 index 0000000..1392177 Binary files /dev/null and b/flags/flags/flat/32/Mayotte.png differ diff --git a/flags/flags/flat/32/Mexico.png b/flags/flags/flat/32/Mexico.png new file mode 100644 index 0000000..ea6bad4 Binary files /dev/null and b/flags/flags/flat/32/Mexico.png differ diff --git a/flags/flags/flat/32/Micronesia.png b/flags/flags/flat/32/Micronesia.png new file mode 100644 index 0000000..ed6ac3e Binary files /dev/null and b/flags/flags/flat/32/Micronesia.png differ diff --git a/flags/flags/flat/32/Moldova.png b/flags/flags/flat/32/Moldova.png new file mode 100644 index 0000000..e2103d7 Binary files /dev/null and b/flags/flags/flat/32/Moldova.png differ diff --git a/flags/flags/flat/32/Monaco.png b/flags/flags/flat/32/Monaco.png new file mode 100644 index 0000000..469675a Binary files /dev/null and b/flags/flags/flat/32/Monaco.png differ diff --git a/flags/flags/flat/32/Mongolia.png b/flags/flags/flat/32/Mongolia.png new file mode 100644 index 0000000..97ecb8f Binary files /dev/null and b/flags/flags/flat/32/Mongolia.png differ diff --git a/flags/flags/flat/32/Montenegro.png b/flags/flags/flat/32/Montenegro.png new file mode 100644 index 0000000..923b555 Binary files /dev/null and b/flags/flags/flat/32/Montenegro.png differ diff --git a/flags/flags/flat/32/Montserrat.png b/flags/flags/flat/32/Montserrat.png new file mode 100644 index 0000000..60499a0 Binary files /dev/null and b/flags/flags/flat/32/Montserrat.png differ diff --git a/flags/flags/flat/32/Morocco.png b/flags/flags/flat/32/Morocco.png new file mode 100644 index 0000000..c7c2493 Binary files /dev/null and b/flags/flags/flat/32/Morocco.png differ diff --git a/flags/flags/flat/32/Mozambique.png b/flags/flags/flat/32/Mozambique.png new file mode 100644 index 0000000..9e75744 Binary files /dev/null and b/flags/flags/flat/32/Mozambique.png differ diff --git a/flags/flags/flat/32/Myanmar.png b/flags/flags/flat/32/Myanmar.png new file mode 100644 index 0000000..d06e680 Binary files /dev/null and b/flags/flags/flat/32/Myanmar.png differ diff --git a/flags/flags/flat/32/NATO.png b/flags/flags/flat/32/NATO.png new file mode 100644 index 0000000..af3a42d Binary files /dev/null and b/flags/flags/flat/32/NATO.png differ diff --git a/flags/flags/flat/32/Nagorno-Karabakh.png b/flags/flags/flat/32/Nagorno-Karabakh.png new file mode 100644 index 0000000..596d632 Binary files /dev/null and b/flags/flags/flat/32/Nagorno-Karabakh.png differ diff --git a/flags/flags/flat/32/Namibia.png b/flags/flags/flat/32/Namibia.png new file mode 100644 index 0000000..ce97faf Binary files /dev/null and b/flags/flags/flat/32/Namibia.png differ diff --git a/flags/flags/flat/32/Nauru.png b/flags/flags/flat/32/Nauru.png new file mode 100644 index 0000000..bddf4ae Binary files /dev/null and b/flags/flags/flat/32/Nauru.png differ diff --git a/flags/flags/flat/32/Nepal.png b/flags/flags/flat/32/Nepal.png new file mode 100644 index 0000000..68141bd Binary files /dev/null and b/flags/flags/flat/32/Nepal.png differ diff --git a/flags/flags/flat/32/Netherlands-Antilles.png b/flags/flags/flat/32/Netherlands-Antilles.png new file mode 100644 index 0000000..769e3d7 Binary files /dev/null and b/flags/flags/flat/32/Netherlands-Antilles.png differ diff --git a/flags/flags/flat/32/Netherlands.png b/flags/flags/flat/32/Netherlands.png new file mode 100644 index 0000000..921da44 Binary files /dev/null and b/flags/flags/flat/32/Netherlands.png differ diff --git a/flags/flags/flat/32/New-Caledonia.png b/flags/flags/flat/32/New-Caledonia.png new file mode 100644 index 0000000..d1c2efd Binary files /dev/null and b/flags/flags/flat/32/New-Caledonia.png differ diff --git a/flags/flags/flat/32/New-Zealand.png b/flags/flags/flat/32/New-Zealand.png new file mode 100644 index 0000000..eca14e3 Binary files /dev/null and b/flags/flags/flat/32/New-Zealand.png differ diff --git a/flags/flags/flat/32/Nicaragua.png b/flags/flags/flat/32/Nicaragua.png new file mode 100644 index 0000000..9c1144d Binary files /dev/null and b/flags/flags/flat/32/Nicaragua.png differ diff --git a/flags/flags/flat/32/Niger.png b/flags/flags/flat/32/Niger.png new file mode 100644 index 0000000..124bf40 Binary files /dev/null and b/flags/flags/flat/32/Niger.png differ diff --git a/flags/flags/flat/32/Nigeria.png b/flags/flags/flat/32/Nigeria.png new file mode 100644 index 0000000..187d30b Binary files /dev/null and b/flags/flags/flat/32/Nigeria.png differ diff --git a/flags/flags/flat/32/Niue.png b/flags/flags/flat/32/Niue.png new file mode 100644 index 0000000..dee2ba7 Binary files /dev/null and b/flags/flags/flat/32/Niue.png differ diff --git a/flags/flags/flat/32/Norfolk-Island.png b/flags/flags/flat/32/Norfolk-Island.png new file mode 100644 index 0000000..78696f0 Binary files /dev/null and b/flags/flags/flat/32/Norfolk-Island.png differ diff --git a/flags/flags/flat/32/North-Korea.png b/flags/flags/flat/32/North-Korea.png new file mode 100644 index 0000000..f822eff Binary files /dev/null and b/flags/flags/flat/32/North-Korea.png differ diff --git a/flags/flags/flat/32/Northern-Cyprus.png b/flags/flags/flat/32/Northern-Cyprus.png new file mode 100644 index 0000000..6b2f135 Binary files /dev/null and b/flags/flags/flat/32/Northern-Cyprus.png differ diff --git a/flags/flags/flat/32/Northern-Mariana-Islands.png b/flags/flags/flat/32/Northern-Mariana-Islands.png new file mode 100644 index 0000000..d23c207 Binary files /dev/null and b/flags/flags/flat/32/Northern-Mariana-Islands.png differ diff --git a/flags/flags/flat/32/Norway.png b/flags/flags/flat/32/Norway.png new file mode 100644 index 0000000..0450789 Binary files /dev/null and b/flags/flags/flat/32/Norway.png differ diff --git a/flags/flags/flat/32/Olympics.png b/flags/flags/flat/32/Olympics.png new file mode 100644 index 0000000..1fcaa7b Binary files /dev/null and b/flags/flags/flat/32/Olympics.png differ diff --git a/flags/flags/flat/32/Oman.png b/flags/flags/flat/32/Oman.png new file mode 100644 index 0000000..41daac9 Binary files /dev/null and b/flags/flags/flat/32/Oman.png differ diff --git a/flags/flags/flat/32/Pakistan.png b/flags/flags/flat/32/Pakistan.png new file mode 100644 index 0000000..255a5c5 Binary files /dev/null and b/flags/flags/flat/32/Pakistan.png differ diff --git a/flags/flags/flat/32/Palau.png b/flags/flags/flat/32/Palau.png new file mode 100644 index 0000000..81e3fc9 Binary files /dev/null and b/flags/flags/flat/32/Palau.png differ diff --git a/flags/flags/flat/32/Palestine.png b/flags/flags/flat/32/Palestine.png new file mode 100644 index 0000000..9eabd64 Binary files /dev/null and b/flags/flags/flat/32/Palestine.png differ diff --git a/flags/flags/flat/32/Panama.png b/flags/flags/flat/32/Panama.png new file mode 100644 index 0000000..cdd6af3 Binary files /dev/null and b/flags/flags/flat/32/Panama.png differ diff --git a/flags/flags/flat/32/Papua-New-Guinea.png b/flags/flags/flat/32/Papua-New-Guinea.png new file mode 100644 index 0000000..6b2cf2d Binary files /dev/null and b/flags/flags/flat/32/Papua-New-Guinea.png differ diff --git a/flags/flags/flat/32/Paraguay.png b/flags/flags/flat/32/Paraguay.png new file mode 100644 index 0000000..59935bd Binary files /dev/null and b/flags/flags/flat/32/Paraguay.png differ diff --git a/flags/flags/flat/32/Peru.png b/flags/flags/flat/32/Peru.png new file mode 100644 index 0000000..67a3ee0 Binary files /dev/null and b/flags/flags/flat/32/Peru.png differ diff --git a/flags/flags/flat/32/Philippines.png b/flags/flags/flat/32/Philippines.png new file mode 100644 index 0000000..fa3bf75 Binary files /dev/null and b/flags/flags/flat/32/Philippines.png differ diff --git a/flags/flags/flat/32/Pitcairn-Islands.png b/flags/flags/flat/32/Pitcairn-Islands.png new file mode 100644 index 0000000..01beabe Binary files /dev/null and b/flags/flags/flat/32/Pitcairn-Islands.png differ diff --git a/flags/flags/flat/32/Poland.png b/flags/flags/flat/32/Poland.png new file mode 100644 index 0000000..3643ad6 Binary files /dev/null and b/flags/flags/flat/32/Poland.png differ diff --git a/flags/flags/flat/32/Portugal.png b/flags/flags/flat/32/Portugal.png new file mode 100644 index 0000000..b3e8989 Binary files /dev/null and b/flags/flags/flat/32/Portugal.png differ diff --git a/flags/flags/flat/32/Puerto-Rico.png b/flags/flags/flat/32/Puerto-Rico.png new file mode 100644 index 0000000..0b75b63 Binary files /dev/null and b/flags/flags/flat/32/Puerto-Rico.png differ diff --git a/flags/flags/flat/32/Qatar.png b/flags/flags/flat/32/Qatar.png new file mode 100644 index 0000000..7abf5c4 Binary files /dev/null and b/flags/flags/flat/32/Qatar.png differ diff --git a/flags/flags/flat/32/Red-Cross.png b/flags/flags/flat/32/Red-Cross.png new file mode 100644 index 0000000..cc5cd55 Binary files /dev/null and b/flags/flags/flat/32/Red-Cross.png differ diff --git a/flags/flags/flat/32/Republic-of-the-Congo.png b/flags/flags/flat/32/Republic-of-the-Congo.png new file mode 100644 index 0000000..0b05337 Binary files /dev/null and b/flags/flags/flat/32/Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/32/Romania.png b/flags/flags/flat/32/Romania.png new file mode 100644 index 0000000..e67057f Binary files /dev/null and b/flags/flags/flat/32/Romania.png differ diff --git a/flags/flags/flat/32/Russia.png b/flags/flags/flat/32/Russia.png new file mode 100644 index 0000000..97ff2a3 Binary files /dev/null and b/flags/flags/flat/32/Russia.png differ diff --git a/flags/flags/flat/32/Rwanda.png b/flags/flags/flat/32/Rwanda.png new file mode 100644 index 0000000..2b6ee49 Binary files /dev/null and b/flags/flags/flat/32/Rwanda.png differ diff --git a/flags/flags/flat/32/Saint-Barthelemy.png b/flags/flags/flat/32/Saint-Barthelemy.png new file mode 100644 index 0000000..4e4f7cb Binary files /dev/null and b/flags/flags/flat/32/Saint-Barthelemy.png differ diff --git a/flags/flags/flat/32/Saint-Helena.png b/flags/flags/flat/32/Saint-Helena.png new file mode 100644 index 0000000..88ccde2 Binary files /dev/null and b/flags/flags/flat/32/Saint-Helena.png differ diff --git a/flags/flags/flat/32/Saint-Kitts-and-Nevis.png b/flags/flags/flat/32/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..a8ff1e8 Binary files /dev/null and b/flags/flags/flat/32/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/flat/32/Saint-Lucia.png b/flags/flags/flat/32/Saint-Lucia.png new file mode 100644 index 0000000..1420c31 Binary files /dev/null and b/flags/flags/flat/32/Saint-Lucia.png differ diff --git a/flags/flags/flat/32/Saint-Vincent-and-the-Grenadines.png b/flags/flags/flat/32/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..0d7b371 Binary files /dev/null and b/flags/flags/flat/32/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/flat/32/Samoa.png b/flags/flags/flat/32/Samoa.png new file mode 100644 index 0000000..30a0906 Binary files /dev/null and b/flags/flags/flat/32/Samoa.png differ diff --git a/flags/flags/flat/32/San-Marino.png b/flags/flags/flat/32/San-Marino.png new file mode 100644 index 0000000..74b4f8c Binary files /dev/null and b/flags/flags/flat/32/San-Marino.png differ diff --git a/flags/flags/flat/32/Sao-Tome-and-Principe.png b/flags/flags/flat/32/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..4a50061 Binary files /dev/null and b/flags/flags/flat/32/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/flat/32/Saudi-Arabia.png b/flags/flags/flat/32/Saudi-Arabia.png new file mode 100644 index 0000000..e41b455 Binary files /dev/null and b/flags/flags/flat/32/Saudi-Arabia.png differ diff --git a/flags/flags/flat/32/Scotland.png b/flags/flags/flat/32/Scotland.png new file mode 100644 index 0000000..555600c Binary files /dev/null and b/flags/flags/flat/32/Scotland.png differ diff --git a/flags/flags/flat/32/Senegal.png b/flags/flags/flat/32/Senegal.png new file mode 100644 index 0000000..6be0246 Binary files /dev/null and b/flags/flags/flat/32/Senegal.png differ diff --git a/flags/flags/flat/32/Serbia.png b/flags/flags/flat/32/Serbia.png new file mode 100644 index 0000000..35761b5 Binary files /dev/null and b/flags/flags/flat/32/Serbia.png differ diff --git a/flags/flags/flat/32/Seychelles.png b/flags/flags/flat/32/Seychelles.png new file mode 100644 index 0000000..6160c22 Binary files /dev/null and b/flags/flags/flat/32/Seychelles.png differ diff --git a/flags/flags/flat/32/Sierra-Leone.png b/flags/flags/flat/32/Sierra-Leone.png new file mode 100644 index 0000000..fa81202 Binary files /dev/null and b/flags/flags/flat/32/Sierra-Leone.png differ diff --git a/flags/flags/flat/32/Singapore.png b/flags/flags/flat/32/Singapore.png new file mode 100644 index 0000000..4120253 Binary files /dev/null and b/flags/flags/flat/32/Singapore.png differ diff --git a/flags/flags/flat/32/Slovakia.png b/flags/flags/flat/32/Slovakia.png new file mode 100644 index 0000000..1b9da33 Binary files /dev/null and b/flags/flags/flat/32/Slovakia.png differ diff --git a/flags/flags/flat/32/Slovenia.png b/flags/flags/flat/32/Slovenia.png new file mode 100644 index 0000000..7cd0928 Binary files /dev/null and b/flags/flags/flat/32/Slovenia.png differ diff --git a/flags/flags/flat/32/Solomon-Islands.png b/flags/flags/flat/32/Solomon-Islands.png new file mode 100644 index 0000000..de153e7 Binary files /dev/null and b/flags/flags/flat/32/Solomon-Islands.png differ diff --git a/flags/flags/flat/32/Somalia.png b/flags/flags/flat/32/Somalia.png new file mode 100644 index 0000000..4680b41 Binary files /dev/null and b/flags/flags/flat/32/Somalia.png differ diff --git a/flags/flags/flat/32/Somaliland.png b/flags/flags/flat/32/Somaliland.png new file mode 100644 index 0000000..3f0d2a7 Binary files /dev/null and b/flags/flags/flat/32/Somaliland.png differ diff --git a/flags/flags/flat/32/South-Africa.png b/flags/flags/flat/32/South-Africa.png new file mode 100644 index 0000000..59ccdf6 Binary files /dev/null and b/flags/flags/flat/32/South-Africa.png differ diff --git a/flags/flags/flat/32/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/flat/32/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..5998724 Binary files /dev/null and b/flags/flags/flat/32/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/flat/32/South-Korea.png b/flags/flags/flat/32/South-Korea.png new file mode 100644 index 0000000..ef0bb15 Binary files /dev/null and b/flags/flags/flat/32/South-Korea.png differ diff --git a/flags/flags/flat/32/South-Ossetia.png b/flags/flags/flat/32/South-Ossetia.png new file mode 100644 index 0000000..adb51f1 Binary files /dev/null and b/flags/flags/flat/32/South-Ossetia.png differ diff --git a/flags/flags/flat/32/South-Sudan.png b/flags/flags/flat/32/South-Sudan.png new file mode 100644 index 0000000..edc4b2c Binary files /dev/null and b/flags/flags/flat/32/South-Sudan.png differ diff --git a/flags/flags/flat/32/Spain.png b/flags/flags/flat/32/Spain.png new file mode 100644 index 0000000..27b71d8 Binary files /dev/null and b/flags/flags/flat/32/Spain.png differ diff --git a/flags/flags/flat/32/Sri-Lanka.png b/flags/flags/flat/32/Sri-Lanka.png new file mode 100644 index 0000000..efab385 Binary files /dev/null and b/flags/flags/flat/32/Sri-Lanka.png differ diff --git a/flags/flags/flat/32/Sudan.png b/flags/flags/flat/32/Sudan.png new file mode 100644 index 0000000..3e38c16 Binary files /dev/null and b/flags/flags/flat/32/Sudan.png differ diff --git a/flags/flags/flat/32/Suriname.png b/flags/flags/flat/32/Suriname.png new file mode 100644 index 0000000..5bb884d Binary files /dev/null and b/flags/flags/flat/32/Suriname.png differ diff --git a/flags/flags/flat/32/Swaziland.png b/flags/flags/flat/32/Swaziland.png new file mode 100644 index 0000000..d77dc97 Binary files /dev/null and b/flags/flags/flat/32/Swaziland.png differ diff --git a/flags/flags/flat/32/Sweden.png b/flags/flags/flat/32/Sweden.png new file mode 100644 index 0000000..40d8fc4 Binary files /dev/null and b/flags/flags/flat/32/Sweden.png differ diff --git a/flags/flags/flat/32/Switzerland.png b/flags/flags/flat/32/Switzerland.png new file mode 100644 index 0000000..a7a3eae Binary files /dev/null and b/flags/flags/flat/32/Switzerland.png differ diff --git a/flags/flags/flat/32/Syria.png b/flags/flags/flat/32/Syria.png new file mode 100644 index 0000000..8cf0426 Binary files /dev/null and b/flags/flags/flat/32/Syria.png differ diff --git a/flags/flags/flat/32/Taiwan.png b/flags/flags/flat/32/Taiwan.png new file mode 100644 index 0000000..e48b7b6 Binary files /dev/null and b/flags/flags/flat/32/Taiwan.png differ diff --git a/flags/flags/flat/32/Tajikistan.png b/flags/flags/flat/32/Tajikistan.png new file mode 100644 index 0000000..a398f1a Binary files /dev/null and b/flags/flags/flat/32/Tajikistan.png differ diff --git a/flags/flags/flat/32/Tanzania.png b/flags/flags/flat/32/Tanzania.png new file mode 100644 index 0000000..54f8c04 Binary files /dev/null and b/flags/flags/flat/32/Tanzania.png differ diff --git a/flags/flags/flat/32/Thailand.png b/flags/flags/flat/32/Thailand.png new file mode 100644 index 0000000..4914eb6 Binary files /dev/null and b/flags/flags/flat/32/Thailand.png differ diff --git a/flags/flags/flat/32/Togo.png b/flags/flags/flat/32/Togo.png new file mode 100644 index 0000000..ee381a6 Binary files /dev/null and b/flags/flags/flat/32/Togo.png differ diff --git a/flags/flags/flat/32/Tokelau.png b/flags/flags/flat/32/Tokelau.png new file mode 100644 index 0000000..c942444 Binary files /dev/null and b/flags/flags/flat/32/Tokelau.png differ diff --git a/flags/flags/flat/32/Tonga.png b/flags/flags/flat/32/Tonga.png new file mode 100644 index 0000000..954a085 Binary files /dev/null and b/flags/flags/flat/32/Tonga.png differ diff --git a/flags/flags/flat/32/Trinidad-and-Tobago.png b/flags/flags/flat/32/Trinidad-and-Tobago.png new file mode 100644 index 0000000..33484b6 Binary files /dev/null and b/flags/flags/flat/32/Trinidad-and-Tobago.png differ diff --git a/flags/flags/flat/32/Tunisia.png b/flags/flags/flat/32/Tunisia.png new file mode 100644 index 0000000..3f4ec1f Binary files /dev/null and b/flags/flags/flat/32/Tunisia.png differ diff --git a/flags/flags/flat/32/Turkey.png b/flags/flags/flat/32/Turkey.png new file mode 100644 index 0000000..35052e3 Binary files /dev/null and b/flags/flags/flat/32/Turkey.png differ diff --git a/flags/flags/flat/32/Turkmenistan.png b/flags/flags/flat/32/Turkmenistan.png new file mode 100644 index 0000000..ccd48ef Binary files /dev/null and b/flags/flags/flat/32/Turkmenistan.png differ diff --git a/flags/flags/flat/32/Turks-and-Caicos-Islands.png b/flags/flags/flat/32/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..18e3847 Binary files /dev/null and b/flags/flags/flat/32/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/flat/32/Tuvalu.png b/flags/flags/flat/32/Tuvalu.png new file mode 100644 index 0000000..e656319 Binary files /dev/null and b/flags/flags/flat/32/Tuvalu.png differ diff --git a/flags/flags/flat/32/US-Virgin-Islands.png b/flags/flags/flat/32/US-Virgin-Islands.png new file mode 100644 index 0000000..f9fd9a7 Binary files /dev/null and b/flags/flags/flat/32/US-Virgin-Islands.png differ diff --git a/flags/flags/flat/32/Uganda.png b/flags/flags/flat/32/Uganda.png new file mode 100644 index 0000000..9335cbf Binary files /dev/null and b/flags/flags/flat/32/Uganda.png differ diff --git a/flags/flags/flat/32/Ukraine.png b/flags/flags/flat/32/Ukraine.png new file mode 100644 index 0000000..dc22573 Binary files /dev/null and b/flags/flags/flat/32/Ukraine.png differ diff --git a/flags/flags/flat/32/United-Arab-Emirates.png b/flags/flags/flat/32/United-Arab-Emirates.png new file mode 100644 index 0000000..6b48ce6 Binary files /dev/null and b/flags/flags/flat/32/United-Arab-Emirates.png differ diff --git a/flags/flags/flat/32/United-Kingdom.png b/flags/flags/flat/32/United-Kingdom.png new file mode 100644 index 0000000..0279e69 Binary files /dev/null and b/flags/flags/flat/32/United-Kingdom.png differ diff --git a/flags/flags/flat/32/United-Nations.png b/flags/flags/flat/32/United-Nations.png new file mode 100644 index 0000000..085437b Binary files /dev/null and b/flags/flags/flat/32/United-Nations.png differ diff --git a/flags/flags/flat/32/United-States.png b/flags/flags/flat/32/United-States.png new file mode 100644 index 0000000..675516c Binary files /dev/null and b/flags/flags/flat/32/United-States.png differ diff --git a/flags/flags/flat/32/Uruguay.png b/flags/flags/flat/32/Uruguay.png new file mode 100644 index 0000000..ca42f8a Binary files /dev/null and b/flags/flags/flat/32/Uruguay.png differ diff --git a/flags/flags/flat/32/Uzbekistan.png b/flags/flags/flat/32/Uzbekistan.png new file mode 100644 index 0000000..fc2bf11 Binary files /dev/null and b/flags/flags/flat/32/Uzbekistan.png differ diff --git a/flags/flags/flat/32/Vanuatu.png b/flags/flags/flat/32/Vanuatu.png new file mode 100644 index 0000000..e48a772 Binary files /dev/null and b/flags/flags/flat/32/Vanuatu.png differ diff --git a/flags/flags/flat/32/Vatican-City.png b/flags/flags/flat/32/Vatican-City.png new file mode 100644 index 0000000..8b69d1f Binary files /dev/null and b/flags/flags/flat/32/Vatican-City.png differ diff --git a/flags/flags/flat/32/Venezuela.png b/flags/flags/flat/32/Venezuela.png new file mode 100644 index 0000000..b8e5f3c Binary files /dev/null and b/flags/flags/flat/32/Venezuela.png differ diff --git a/flags/flags/flat/32/Vietnam.png b/flags/flags/flat/32/Vietnam.png new file mode 100644 index 0000000..a2bc994 Binary files /dev/null and b/flags/flags/flat/32/Vietnam.png differ diff --git a/flags/flags/flat/32/Wales.png b/flags/flags/flat/32/Wales.png new file mode 100644 index 0000000..4eb5b03 Binary files /dev/null and b/flags/flags/flat/32/Wales.png differ diff --git a/flags/flags/flat/32/Wallis-And-Futuna.png b/flags/flags/flat/32/Wallis-And-Futuna.png new file mode 100644 index 0000000..155ab0f Binary files /dev/null and b/flags/flags/flat/32/Wallis-And-Futuna.png differ diff --git a/flags/flags/flat/32/Western-Sahara.png b/flags/flags/flat/32/Western-Sahara.png new file mode 100644 index 0000000..d12c470 Binary files /dev/null and b/flags/flags/flat/32/Western-Sahara.png differ diff --git a/flags/flags/flat/32/Yemen.png b/flags/flags/flat/32/Yemen.png new file mode 100644 index 0000000..3137e17 Binary files /dev/null and b/flags/flags/flat/32/Yemen.png differ diff --git a/flags/flags/flat/32/Zambia.png b/flags/flags/flat/32/Zambia.png new file mode 100644 index 0000000..4988b0e Binary files /dev/null and b/flags/flags/flat/32/Zambia.png differ diff --git a/flags/flags/flat/32/Zimbabwe.png b/flags/flags/flat/32/Zimbabwe.png new file mode 100644 index 0000000..28b0d89 Binary files /dev/null and b/flags/flags/flat/32/Zimbabwe.png differ diff --git a/flags/flags/flat/48/Abkhazia.png b/flags/flags/flat/48/Abkhazia.png new file mode 100644 index 0000000..caaf9be Binary files /dev/null and b/flags/flags/flat/48/Abkhazia.png differ diff --git a/flags/flags/flat/48/Afghanistan.png b/flags/flags/flat/48/Afghanistan.png new file mode 100644 index 0000000..1cb5ee8 Binary files /dev/null and b/flags/flags/flat/48/Afghanistan.png differ diff --git a/flags/flags/flat/48/Aland.png b/flags/flags/flat/48/Aland.png new file mode 100644 index 0000000..d9b4630 Binary files /dev/null and b/flags/flags/flat/48/Aland.png differ diff --git a/flags/flags/flat/48/Albania.png b/flags/flags/flat/48/Albania.png new file mode 100644 index 0000000..a009120 Binary files /dev/null and b/flags/flags/flat/48/Albania.png differ diff --git a/flags/flags/flat/48/Algeria.png b/flags/flags/flat/48/Algeria.png new file mode 100644 index 0000000..3e0fcc3 Binary files /dev/null and b/flags/flags/flat/48/Algeria.png differ diff --git a/flags/flags/flat/48/American-Samoa.png b/flags/flags/flat/48/American-Samoa.png new file mode 100644 index 0000000..ced6d1d Binary files /dev/null and b/flags/flags/flat/48/American-Samoa.png differ diff --git a/flags/flags/flat/48/Andorra.png b/flags/flags/flat/48/Andorra.png new file mode 100644 index 0000000..395e93b Binary files /dev/null and b/flags/flags/flat/48/Andorra.png differ diff --git a/flags/flags/flat/48/Angola.png b/flags/flags/flat/48/Angola.png new file mode 100644 index 0000000..a3a515c Binary files /dev/null and b/flags/flags/flat/48/Angola.png differ diff --git a/flags/flags/flat/48/Anguilla.png b/flags/flags/flat/48/Anguilla.png new file mode 100644 index 0000000..58b9d51 Binary files /dev/null and b/flags/flags/flat/48/Anguilla.png differ diff --git a/flags/flags/flat/48/Antarctica.png b/flags/flags/flat/48/Antarctica.png new file mode 100644 index 0000000..88eedab Binary files /dev/null and b/flags/flags/flat/48/Antarctica.png differ diff --git a/flags/flags/flat/48/Antigua-and-Barbuda.png b/flags/flags/flat/48/Antigua-and-Barbuda.png new file mode 100644 index 0000000..4128e40 Binary files /dev/null and b/flags/flags/flat/48/Antigua-and-Barbuda.png differ diff --git a/flags/flags/flat/48/Argentina.png b/flags/flags/flat/48/Argentina.png new file mode 100644 index 0000000..8d1a88a Binary files /dev/null and b/flags/flags/flat/48/Argentina.png differ diff --git a/flags/flags/flat/48/Armenia.png b/flags/flags/flat/48/Armenia.png new file mode 100644 index 0000000..73a053d Binary files /dev/null and b/flags/flags/flat/48/Armenia.png differ diff --git a/flags/flags/flat/48/Aruba.png b/flags/flags/flat/48/Aruba.png new file mode 100644 index 0000000..9cbba12 Binary files /dev/null and b/flags/flags/flat/48/Aruba.png differ diff --git a/flags/flags/flat/48/Australia.png b/flags/flags/flat/48/Australia.png new file mode 100644 index 0000000..9dbb703 Binary files /dev/null and b/flags/flags/flat/48/Australia.png differ diff --git a/flags/flags/flat/48/Austria.png b/flags/flags/flat/48/Austria.png new file mode 100644 index 0000000..24554f3 Binary files /dev/null and b/flags/flags/flat/48/Austria.png differ diff --git a/flags/flags/flat/48/Azerbaijan.png b/flags/flags/flat/48/Azerbaijan.png new file mode 100644 index 0000000..c5fd054 Binary files /dev/null and b/flags/flags/flat/48/Azerbaijan.png differ diff --git a/flags/flags/flat/48/Bahamas.png b/flags/flags/flat/48/Bahamas.png new file mode 100644 index 0000000..bfd6068 Binary files /dev/null and b/flags/flags/flat/48/Bahamas.png differ diff --git a/flags/flags/flat/48/Bahrain.png b/flags/flags/flat/48/Bahrain.png new file mode 100644 index 0000000..17961cc Binary files /dev/null and b/flags/flags/flat/48/Bahrain.png differ diff --git a/flags/flags/flat/48/Bangladesh.png b/flags/flags/flat/48/Bangladesh.png new file mode 100644 index 0000000..2a3c2d9 Binary files /dev/null and b/flags/flags/flat/48/Bangladesh.png differ diff --git a/flags/flags/flat/48/Barbados.png b/flags/flags/flat/48/Barbados.png new file mode 100644 index 0000000..b7ccb29 Binary files /dev/null and b/flags/flags/flat/48/Barbados.png differ diff --git a/flags/flags/flat/48/Belarus.png b/flags/flags/flat/48/Belarus.png new file mode 100644 index 0000000..102f3f4 Binary files /dev/null and b/flags/flags/flat/48/Belarus.png differ diff --git a/flags/flags/flat/48/Belgium.png b/flags/flags/flat/48/Belgium.png new file mode 100644 index 0000000..fc745ae Binary files /dev/null and b/flags/flags/flat/48/Belgium.png differ diff --git a/flags/flags/flat/48/Belize.png b/flags/flags/flat/48/Belize.png new file mode 100644 index 0000000..0cd9b3c Binary files /dev/null and b/flags/flags/flat/48/Belize.png differ diff --git a/flags/flags/flat/48/Benin.png b/flags/flags/flat/48/Benin.png new file mode 100644 index 0000000..17abf99 Binary files /dev/null and b/flags/flags/flat/48/Benin.png differ diff --git a/flags/flags/flat/48/Bermuda.png b/flags/flags/flat/48/Bermuda.png new file mode 100644 index 0000000..bf4fb50 Binary files /dev/null and b/flags/flags/flat/48/Bermuda.png differ diff --git a/flags/flags/flat/48/Bhutan.png b/flags/flags/flat/48/Bhutan.png new file mode 100644 index 0000000..b2f0a3b Binary files /dev/null and b/flags/flags/flat/48/Bhutan.png differ diff --git a/flags/flags/flat/48/Bolivia.png b/flags/flags/flat/48/Bolivia.png new file mode 100644 index 0000000..ac983bd Binary files /dev/null and b/flags/flags/flat/48/Bolivia.png differ diff --git a/flags/flags/flat/48/Bosnia-and-Herzegovina.png b/flags/flags/flat/48/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..59bab9d Binary files /dev/null and b/flags/flags/flat/48/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/flat/48/Botswana.png b/flags/flags/flat/48/Botswana.png new file mode 100644 index 0000000..cfe4af3 Binary files /dev/null and b/flags/flags/flat/48/Botswana.png differ diff --git a/flags/flags/flat/48/Brazil.png b/flags/flags/flat/48/Brazil.png new file mode 100644 index 0000000..bd0f0ca Binary files /dev/null and b/flags/flags/flat/48/Brazil.png differ diff --git a/flags/flags/flat/48/British-Antarctic-Territory.png b/flags/flags/flat/48/British-Antarctic-Territory.png new file mode 100644 index 0000000..1b2acd5 Binary files /dev/null and b/flags/flags/flat/48/British-Antarctic-Territory.png differ diff --git a/flags/flags/flat/48/British-Virgin-Islands.png b/flags/flags/flat/48/British-Virgin-Islands.png new file mode 100644 index 0000000..5e4e2a1 Binary files /dev/null and b/flags/flags/flat/48/British-Virgin-Islands.png differ diff --git a/flags/flags/flat/48/Brunei.png b/flags/flags/flat/48/Brunei.png new file mode 100644 index 0000000..fd03672 Binary files /dev/null and b/flags/flags/flat/48/Brunei.png differ diff --git a/flags/flags/flat/48/Bulgaria.png b/flags/flags/flat/48/Bulgaria.png new file mode 100644 index 0000000..94827ac Binary files /dev/null and b/flags/flags/flat/48/Bulgaria.png differ diff --git a/flags/flags/flat/48/Burkina-Faso.png b/flags/flags/flat/48/Burkina-Faso.png new file mode 100644 index 0000000..baa66f2 Binary files /dev/null and b/flags/flags/flat/48/Burkina-Faso.png differ diff --git a/flags/flags/flat/48/Burundi.png b/flags/flags/flat/48/Burundi.png new file mode 100644 index 0000000..afff0fe Binary files /dev/null and b/flags/flags/flat/48/Burundi.png differ diff --git a/flags/flags/flat/48/Cambodia.png b/flags/flags/flat/48/Cambodia.png new file mode 100644 index 0000000..ad42526 Binary files /dev/null and b/flags/flags/flat/48/Cambodia.png differ diff --git a/flags/flags/flat/48/Cameroon.png b/flags/flags/flat/48/Cameroon.png new file mode 100644 index 0000000..f615356 Binary files /dev/null and b/flags/flags/flat/48/Cameroon.png differ diff --git a/flags/flags/flat/48/Canada.png b/flags/flags/flat/48/Canada.png new file mode 100644 index 0000000..6e1708d Binary files /dev/null and b/flags/flags/flat/48/Canada.png differ diff --git a/flags/flags/flat/48/Cape-Verde.png b/flags/flags/flat/48/Cape-Verde.png new file mode 100644 index 0000000..a7c1d41 Binary files /dev/null and b/flags/flags/flat/48/Cape-Verde.png differ diff --git a/flags/flags/flat/48/Cayman-Islands.png b/flags/flags/flat/48/Cayman-Islands.png new file mode 100644 index 0000000..66992ee Binary files /dev/null and b/flags/flags/flat/48/Cayman-Islands.png differ diff --git a/flags/flags/flat/48/Central-African-Republic.png b/flags/flags/flat/48/Central-African-Republic.png new file mode 100644 index 0000000..4d9c663 Binary files /dev/null and b/flags/flags/flat/48/Central-African-Republic.png differ diff --git a/flags/flags/flat/48/Chad.png b/flags/flags/flat/48/Chad.png new file mode 100644 index 0000000..ecefe8a Binary files /dev/null and b/flags/flags/flat/48/Chad.png differ diff --git a/flags/flags/flat/48/Chile.png b/flags/flags/flat/48/Chile.png new file mode 100644 index 0000000..197154d Binary files /dev/null and b/flags/flags/flat/48/Chile.png differ diff --git a/flags/flags/flat/48/China.png b/flags/flags/flat/48/China.png new file mode 100644 index 0000000..c51a485 Binary files /dev/null and b/flags/flags/flat/48/China.png differ diff --git a/flags/flags/flat/48/Christmas-Island.png b/flags/flags/flat/48/Christmas-Island.png new file mode 100644 index 0000000..6951a5f Binary files /dev/null and b/flags/flags/flat/48/Christmas-Island.png differ diff --git a/flags/flags/flat/48/Cocos-Keeling-Islands.png b/flags/flags/flat/48/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..e4b8675 Binary files /dev/null and b/flags/flags/flat/48/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/flat/48/Colombia.png b/flags/flags/flat/48/Colombia.png new file mode 100644 index 0000000..306e3cf Binary files /dev/null and b/flags/flags/flat/48/Colombia.png differ diff --git a/flags/flags/flat/48/Commonwealth.png b/flags/flags/flat/48/Commonwealth.png new file mode 100644 index 0000000..37b2d72 Binary files /dev/null and b/flags/flags/flat/48/Commonwealth.png differ diff --git a/flags/flags/flat/48/Comoros.png b/flags/flags/flat/48/Comoros.png new file mode 100644 index 0000000..c4639e1 Binary files /dev/null and b/flags/flags/flat/48/Comoros.png differ diff --git a/flags/flags/flat/48/Cook-Islands.png b/flags/flags/flat/48/Cook-Islands.png new file mode 100644 index 0000000..8cd04ff Binary files /dev/null and b/flags/flags/flat/48/Cook-Islands.png differ diff --git a/flags/flags/flat/48/Costa-Rica.png b/flags/flags/flat/48/Costa-Rica.png new file mode 100644 index 0000000..d18c8b2 Binary files /dev/null and b/flags/flags/flat/48/Costa-Rica.png differ diff --git a/flags/flags/flat/48/Cote-dIvoire.png b/flags/flags/flat/48/Cote-dIvoire.png new file mode 100644 index 0000000..e31e24a Binary files /dev/null and b/flags/flags/flat/48/Cote-dIvoire.png differ diff --git a/flags/flags/flat/48/Croatia.png b/flags/flags/flat/48/Croatia.png new file mode 100644 index 0000000..87342b5 Binary files /dev/null and b/flags/flags/flat/48/Croatia.png differ diff --git a/flags/flags/flat/48/Cuba.png b/flags/flags/flat/48/Cuba.png new file mode 100644 index 0000000..c12bede Binary files /dev/null and b/flags/flags/flat/48/Cuba.png differ diff --git a/flags/flags/flat/48/Cyprus.png b/flags/flags/flat/48/Cyprus.png new file mode 100644 index 0000000..f950def Binary files /dev/null and b/flags/flags/flat/48/Cyprus.png differ diff --git a/flags/flags/flat/48/Czech-Republic.png b/flags/flags/flat/48/Czech-Republic.png new file mode 100644 index 0000000..e0c397f Binary files /dev/null and b/flags/flags/flat/48/Czech-Republic.png differ diff --git a/flags/flags/flat/48/Democratic-Republic-of-the-Congo.png b/flags/flags/flat/48/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..4dd70dc Binary files /dev/null and b/flags/flags/flat/48/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/48/Denmark.png b/flags/flags/flat/48/Denmark.png new file mode 100644 index 0000000..35abc84 Binary files /dev/null and b/flags/flags/flat/48/Denmark.png differ diff --git a/flags/flags/flat/48/Djibouti.png b/flags/flags/flat/48/Djibouti.png new file mode 100644 index 0000000..d14650d Binary files /dev/null and b/flags/flags/flat/48/Djibouti.png differ diff --git a/flags/flags/flat/48/Dominica.png b/flags/flags/flat/48/Dominica.png new file mode 100644 index 0000000..19d1280 Binary files /dev/null and b/flags/flags/flat/48/Dominica.png differ diff --git a/flags/flags/flat/48/Dominican-Republic.png b/flags/flags/flat/48/Dominican-Republic.png new file mode 100644 index 0000000..dc7cb6e Binary files /dev/null and b/flags/flags/flat/48/Dominican-Republic.png differ diff --git a/flags/flags/flat/48/East-Timor.png b/flags/flags/flat/48/East-Timor.png new file mode 100644 index 0000000..e4ef91a Binary files /dev/null and b/flags/flags/flat/48/East-Timor.png differ diff --git a/flags/flags/flat/48/Ecuador.png b/flags/flags/flat/48/Ecuador.png new file mode 100644 index 0000000..bd60832 Binary files /dev/null and b/flags/flags/flat/48/Ecuador.png differ diff --git a/flags/flags/flat/48/Egypt.png b/flags/flags/flat/48/Egypt.png new file mode 100644 index 0000000..1f37a5f Binary files /dev/null and b/flags/flags/flat/48/Egypt.png differ diff --git a/flags/flags/flat/48/El-Salvador.png b/flags/flags/flat/48/El-Salvador.png new file mode 100644 index 0000000..9e25d94 Binary files /dev/null and b/flags/flags/flat/48/El-Salvador.png differ diff --git a/flags/flags/flat/48/England.png b/flags/flags/flat/48/England.png new file mode 100644 index 0000000..247ae76 Binary files /dev/null and b/flags/flags/flat/48/England.png differ diff --git a/flags/flags/flat/48/Equatorial-Guinea.png b/flags/flags/flat/48/Equatorial-Guinea.png new file mode 100644 index 0000000..45b805b Binary files /dev/null and b/flags/flags/flat/48/Equatorial-Guinea.png differ diff --git a/flags/flags/flat/48/Eritrea.png b/flags/flags/flat/48/Eritrea.png new file mode 100644 index 0000000..72c36f6 Binary files /dev/null and b/flags/flags/flat/48/Eritrea.png differ diff --git a/flags/flags/flat/48/Estonia.png b/flags/flags/flat/48/Estonia.png new file mode 100644 index 0000000..fd3bdc6 Binary files /dev/null and b/flags/flags/flat/48/Estonia.png differ diff --git a/flags/flags/flat/48/Ethiopia.png b/flags/flags/flat/48/Ethiopia.png new file mode 100644 index 0000000..446e6c9 Binary files /dev/null and b/flags/flags/flat/48/Ethiopia.png differ diff --git a/flags/flags/flat/48/European-Union.png b/flags/flags/flat/48/European-Union.png new file mode 100644 index 0000000..1f3b19c Binary files /dev/null and b/flags/flags/flat/48/European-Union.png differ diff --git a/flags/flags/flat/48/Falkland-Islands.png b/flags/flags/flat/48/Falkland-Islands.png new file mode 100644 index 0000000..70788cc Binary files /dev/null and b/flags/flags/flat/48/Falkland-Islands.png differ diff --git a/flags/flags/flat/48/Faroes.png b/flags/flags/flat/48/Faroes.png new file mode 100644 index 0000000..ef40526 Binary files /dev/null and b/flags/flags/flat/48/Faroes.png differ diff --git a/flags/flags/flat/48/Fiji.png b/flags/flags/flat/48/Fiji.png new file mode 100644 index 0000000..89b9c78 Binary files /dev/null and b/flags/flags/flat/48/Fiji.png differ diff --git a/flags/flags/flat/48/Finland.png b/flags/flags/flat/48/Finland.png new file mode 100644 index 0000000..3adfa5a Binary files /dev/null and b/flags/flags/flat/48/Finland.png differ diff --git a/flags/flags/flat/48/France.png b/flags/flags/flat/48/France.png new file mode 100644 index 0000000..fefa1ec Binary files /dev/null and b/flags/flags/flat/48/France.png differ diff --git a/flags/flags/flat/48/French-Polynesia.png b/flags/flags/flat/48/French-Polynesia.png new file mode 100644 index 0000000..2eb2882 Binary files /dev/null and b/flags/flags/flat/48/French-Polynesia.png differ diff --git a/flags/flags/flat/48/French-Southern-Territories.png b/flags/flags/flat/48/French-Southern-Territories.png new file mode 100644 index 0000000..803238d Binary files /dev/null and b/flags/flags/flat/48/French-Southern-Territories.png differ diff --git a/flags/flags/flat/48/Gabon.png b/flags/flags/flat/48/Gabon.png new file mode 100644 index 0000000..1712af3 Binary files /dev/null and b/flags/flags/flat/48/Gabon.png differ diff --git a/flags/flags/flat/48/Gambia.png b/flags/flags/flat/48/Gambia.png new file mode 100644 index 0000000..f9ca6c5 Binary files /dev/null and b/flags/flags/flat/48/Gambia.png differ diff --git a/flags/flags/flat/48/Georgia.png b/flags/flags/flat/48/Georgia.png new file mode 100644 index 0000000..dbdb365 Binary files /dev/null and b/flags/flags/flat/48/Georgia.png differ diff --git a/flags/flags/flat/48/Germany.png b/flags/flags/flat/48/Germany.png new file mode 100644 index 0000000..bfafc24 Binary files /dev/null and b/flags/flags/flat/48/Germany.png differ diff --git a/flags/flags/flat/48/Ghana.png b/flags/flags/flat/48/Ghana.png new file mode 100644 index 0000000..42418d7 Binary files /dev/null and b/flags/flags/flat/48/Ghana.png differ diff --git a/flags/flags/flat/48/Gibraltar.png b/flags/flags/flat/48/Gibraltar.png new file mode 100644 index 0000000..b361114 Binary files /dev/null and b/flags/flags/flat/48/Gibraltar.png differ diff --git a/flags/flags/flat/48/GoSquared.png b/flags/flags/flat/48/GoSquared.png new file mode 100644 index 0000000..bf29047 Binary files /dev/null and b/flags/flags/flat/48/GoSquared.png differ diff --git a/flags/flags/flat/48/Greece.png b/flags/flags/flat/48/Greece.png new file mode 100644 index 0000000..2a8a2d1 Binary files /dev/null and b/flags/flags/flat/48/Greece.png differ diff --git a/flags/flags/flat/48/Greenland.png b/flags/flags/flat/48/Greenland.png new file mode 100644 index 0000000..08cb533 Binary files /dev/null and b/flags/flags/flat/48/Greenland.png differ diff --git a/flags/flags/flat/48/Grenada.png b/flags/flags/flat/48/Grenada.png new file mode 100644 index 0000000..81d6897 Binary files /dev/null and b/flags/flags/flat/48/Grenada.png differ diff --git a/flags/flags/flat/48/Guam.png b/flags/flags/flat/48/Guam.png new file mode 100644 index 0000000..2a62a64 Binary files /dev/null and b/flags/flags/flat/48/Guam.png differ diff --git a/flags/flags/flat/48/Guatemala.png b/flags/flags/flat/48/Guatemala.png new file mode 100644 index 0000000..f6afd4f Binary files /dev/null and b/flags/flags/flat/48/Guatemala.png differ diff --git a/flags/flags/flat/48/Guernsey.png b/flags/flags/flat/48/Guernsey.png new file mode 100644 index 0000000..b71bbca Binary files /dev/null and b/flags/flags/flat/48/Guernsey.png differ diff --git a/flags/flags/flat/48/Guinea-Bissau.png b/flags/flags/flat/48/Guinea-Bissau.png new file mode 100644 index 0000000..d6399af Binary files /dev/null and b/flags/flags/flat/48/Guinea-Bissau.png differ diff --git a/flags/flags/flat/48/Guinea.png b/flags/flags/flat/48/Guinea.png new file mode 100644 index 0000000..918e5cf Binary files /dev/null and b/flags/flags/flat/48/Guinea.png differ diff --git a/flags/flags/flat/48/Guyana.png b/flags/flags/flat/48/Guyana.png new file mode 100644 index 0000000..e2b50e4 Binary files /dev/null and b/flags/flags/flat/48/Guyana.png differ diff --git a/flags/flags/flat/48/Haiti.png b/flags/flags/flat/48/Haiti.png new file mode 100644 index 0000000..4c48a99 Binary files /dev/null and b/flags/flags/flat/48/Haiti.png differ diff --git a/flags/flags/flat/48/Honduras.png b/flags/flags/flat/48/Honduras.png new file mode 100644 index 0000000..726f351 Binary files /dev/null and b/flags/flags/flat/48/Honduras.png differ diff --git a/flags/flags/flat/48/Hong-Kong.png b/flags/flags/flat/48/Hong-Kong.png new file mode 100644 index 0000000..892b481 Binary files /dev/null and b/flags/flags/flat/48/Hong-Kong.png differ diff --git a/flags/flags/flat/48/Hungary.png b/flags/flags/flat/48/Hungary.png new file mode 100644 index 0000000..f95e645 Binary files /dev/null and b/flags/flags/flat/48/Hungary.png differ diff --git a/flags/flags/flat/48/Iceland.png b/flags/flags/flat/48/Iceland.png new file mode 100644 index 0000000..6808db6 Binary files /dev/null and b/flags/flags/flat/48/Iceland.png differ diff --git a/flags/flags/flat/48/India.png b/flags/flags/flat/48/India.png new file mode 100644 index 0000000..9238935 Binary files /dev/null and b/flags/flags/flat/48/India.png differ diff --git a/flags/flags/flat/48/Indonesia.png b/flags/flags/flat/48/Indonesia.png new file mode 100644 index 0000000..98437b9 Binary files /dev/null and b/flags/flags/flat/48/Indonesia.png differ diff --git a/flags/flags/flat/48/Iran.png b/flags/flags/flat/48/Iran.png new file mode 100644 index 0000000..2d46d3a Binary files /dev/null and b/flags/flags/flat/48/Iran.png differ diff --git a/flags/flags/flat/48/Iraq.png b/flags/flags/flat/48/Iraq.png new file mode 100644 index 0000000..5d9177c Binary files /dev/null and b/flags/flags/flat/48/Iraq.png differ diff --git a/flags/flags/flat/48/Ireland.png b/flags/flags/flat/48/Ireland.png new file mode 100644 index 0000000..4a8e3e0 Binary files /dev/null and b/flags/flags/flat/48/Ireland.png differ diff --git a/flags/flags/flat/48/Isle-of-Man.png b/flags/flags/flat/48/Isle-of-Man.png new file mode 100644 index 0000000..32caa8b Binary files /dev/null and b/flags/flags/flat/48/Isle-of-Man.png differ diff --git a/flags/flags/flat/48/Israel.png b/flags/flags/flat/48/Israel.png new file mode 100644 index 0000000..9593f6b Binary files /dev/null and b/flags/flags/flat/48/Israel.png differ diff --git a/flags/flags/flat/48/Italy.png b/flags/flags/flat/48/Italy.png new file mode 100644 index 0000000..f775520 Binary files /dev/null and b/flags/flags/flat/48/Italy.png differ diff --git a/flags/flags/flat/48/Jamaica.png b/flags/flags/flat/48/Jamaica.png new file mode 100644 index 0000000..b74dcef Binary files /dev/null and b/flags/flags/flat/48/Jamaica.png differ diff --git a/flags/flags/flat/48/Japan.png b/flags/flags/flat/48/Japan.png new file mode 100644 index 0000000..ccba072 Binary files /dev/null and b/flags/flags/flat/48/Japan.png differ diff --git a/flags/flags/flat/48/Jersey.png b/flags/flags/flat/48/Jersey.png new file mode 100644 index 0000000..5be67f6 Binary files /dev/null and b/flags/flags/flat/48/Jersey.png differ diff --git a/flags/flags/flat/48/Jordan.png b/flags/flags/flat/48/Jordan.png new file mode 100644 index 0000000..f91d796 Binary files /dev/null and b/flags/flags/flat/48/Jordan.png differ diff --git a/flags/flags/flat/48/Kazakhstan.png b/flags/flags/flat/48/Kazakhstan.png new file mode 100644 index 0000000..392186b Binary files /dev/null and b/flags/flags/flat/48/Kazakhstan.png differ diff --git a/flags/flags/flat/48/Kenya.png b/flags/flags/flat/48/Kenya.png new file mode 100644 index 0000000..22d848a Binary files /dev/null and b/flags/flags/flat/48/Kenya.png differ diff --git a/flags/flags/flat/48/Kiribati.png b/flags/flags/flat/48/Kiribati.png new file mode 100644 index 0000000..fb9a14f Binary files /dev/null and b/flags/flags/flat/48/Kiribati.png differ diff --git a/flags/flags/flat/48/Kosovo.png b/flags/flags/flat/48/Kosovo.png new file mode 100644 index 0000000..877896b Binary files /dev/null and b/flags/flags/flat/48/Kosovo.png differ diff --git a/flags/flags/flat/48/Kuwait.png b/flags/flags/flat/48/Kuwait.png new file mode 100644 index 0000000..9c34711 Binary files /dev/null and b/flags/flags/flat/48/Kuwait.png differ diff --git a/flags/flags/flat/48/Kyrgyzstan.png b/flags/flags/flat/48/Kyrgyzstan.png new file mode 100644 index 0000000..6f99f1f Binary files /dev/null and b/flags/flags/flat/48/Kyrgyzstan.png differ diff --git a/flags/flags/flat/48/Laos.png b/flags/flags/flat/48/Laos.png new file mode 100644 index 0000000..51f07a2 Binary files /dev/null and b/flags/flags/flat/48/Laos.png differ diff --git a/flags/flags/flat/48/Latvia.png b/flags/flags/flat/48/Latvia.png new file mode 100644 index 0000000..40286df Binary files /dev/null and b/flags/flags/flat/48/Latvia.png differ diff --git a/flags/flags/flat/48/Lebanon.png b/flags/flags/flat/48/Lebanon.png new file mode 100644 index 0000000..e1f69bb Binary files /dev/null and b/flags/flags/flat/48/Lebanon.png differ diff --git a/flags/flags/flat/48/Lesotho.png b/flags/flags/flat/48/Lesotho.png new file mode 100644 index 0000000..81ae252 Binary files /dev/null and b/flags/flags/flat/48/Lesotho.png differ diff --git a/flags/flags/flat/48/Liberia.png b/flags/flags/flat/48/Liberia.png new file mode 100644 index 0000000..4f416f6 Binary files /dev/null and b/flags/flags/flat/48/Liberia.png differ diff --git a/flags/flags/flat/48/Libya.png b/flags/flags/flat/48/Libya.png new file mode 100644 index 0000000..ab4999e Binary files /dev/null and b/flags/flags/flat/48/Libya.png differ diff --git a/flags/flags/flat/48/Liechtenstein.png b/flags/flags/flat/48/Liechtenstein.png new file mode 100644 index 0000000..0e4aa5d Binary files /dev/null and b/flags/flags/flat/48/Liechtenstein.png differ diff --git a/flags/flags/flat/48/Lithuania.png b/flags/flags/flat/48/Lithuania.png new file mode 100644 index 0000000..a83178d Binary files /dev/null and b/flags/flags/flat/48/Lithuania.png differ diff --git a/flags/flags/flat/48/Luxembourg.png b/flags/flags/flat/48/Luxembourg.png new file mode 100644 index 0000000..1773ccf Binary files /dev/null and b/flags/flags/flat/48/Luxembourg.png differ diff --git a/flags/flags/flat/48/Macau.png b/flags/flags/flat/48/Macau.png new file mode 100644 index 0000000..72698b3 Binary files /dev/null and b/flags/flags/flat/48/Macau.png differ diff --git a/flags/flags/flat/48/Macedonia.png b/flags/flags/flat/48/Macedonia.png new file mode 100644 index 0000000..db41c7b Binary files /dev/null and b/flags/flags/flat/48/Macedonia.png differ diff --git a/flags/flags/flat/48/Madagascar.png b/flags/flags/flat/48/Madagascar.png new file mode 100644 index 0000000..7570680 Binary files /dev/null and b/flags/flags/flat/48/Madagascar.png differ diff --git a/flags/flags/flat/48/Malawi.png b/flags/flags/flat/48/Malawi.png new file mode 100644 index 0000000..d1cb5ec Binary files /dev/null and b/flags/flags/flat/48/Malawi.png differ diff --git a/flags/flags/flat/48/Malaysia.png b/flags/flags/flat/48/Malaysia.png new file mode 100644 index 0000000..9be7123 Binary files /dev/null and b/flags/flags/flat/48/Malaysia.png differ diff --git a/flags/flags/flat/48/Maldives.png b/flags/flags/flat/48/Maldives.png new file mode 100644 index 0000000..ae6887b Binary files /dev/null and b/flags/flags/flat/48/Maldives.png differ diff --git a/flags/flags/flat/48/Mali.png b/flags/flags/flat/48/Mali.png new file mode 100644 index 0000000..f95c495 Binary files /dev/null and b/flags/flags/flat/48/Mali.png differ diff --git a/flags/flags/flat/48/Malta.png b/flags/flags/flat/48/Malta.png new file mode 100644 index 0000000..8067c54 Binary files /dev/null and b/flags/flags/flat/48/Malta.png differ diff --git a/flags/flags/flat/48/Mars.png b/flags/flags/flat/48/Mars.png new file mode 100644 index 0000000..6978049 Binary files /dev/null and b/flags/flags/flat/48/Mars.png differ diff --git a/flags/flags/flat/48/Marshall-Islands.png b/flags/flags/flat/48/Marshall-Islands.png new file mode 100644 index 0000000..830a524 Binary files /dev/null and b/flags/flags/flat/48/Marshall-Islands.png differ diff --git a/flags/flags/flat/48/Mauritania.png b/flags/flags/flat/48/Mauritania.png new file mode 100644 index 0000000..0f1db87 Binary files /dev/null and b/flags/flags/flat/48/Mauritania.png differ diff --git a/flags/flags/flat/48/Mauritius.png b/flags/flags/flat/48/Mauritius.png new file mode 100644 index 0000000..474ee59 Binary files /dev/null and b/flags/flags/flat/48/Mauritius.png differ diff --git a/flags/flags/flat/48/Mayotte.png b/flags/flags/flat/48/Mayotte.png new file mode 100644 index 0000000..2b31cc1 Binary files /dev/null and b/flags/flags/flat/48/Mayotte.png differ diff --git a/flags/flags/flat/48/Mexico.png b/flags/flags/flat/48/Mexico.png new file mode 100644 index 0000000..0b4e5f1 Binary files /dev/null and b/flags/flags/flat/48/Mexico.png differ diff --git a/flags/flags/flat/48/Micronesia.png b/flags/flags/flat/48/Micronesia.png new file mode 100644 index 0000000..4350816 Binary files /dev/null and b/flags/flags/flat/48/Micronesia.png differ diff --git a/flags/flags/flat/48/Moldova.png b/flags/flags/flat/48/Moldova.png new file mode 100644 index 0000000..855aa5f Binary files /dev/null and b/flags/flags/flat/48/Moldova.png differ diff --git a/flags/flags/flat/48/Monaco.png b/flags/flags/flat/48/Monaco.png new file mode 100644 index 0000000..98437b9 Binary files /dev/null and b/flags/flags/flat/48/Monaco.png differ diff --git a/flags/flags/flat/48/Mongolia.png b/flags/flags/flat/48/Mongolia.png new file mode 100644 index 0000000..cb18e51 Binary files /dev/null and b/flags/flags/flat/48/Mongolia.png differ diff --git a/flags/flags/flat/48/Montenegro.png b/flags/flags/flat/48/Montenegro.png new file mode 100644 index 0000000..95054b8 Binary files /dev/null and b/flags/flags/flat/48/Montenegro.png differ diff --git a/flags/flags/flat/48/Montserrat.png b/flags/flags/flat/48/Montserrat.png new file mode 100644 index 0000000..aaf999b Binary files /dev/null and b/flags/flags/flat/48/Montserrat.png differ diff --git a/flags/flags/flat/48/Morocco.png b/flags/flags/flat/48/Morocco.png new file mode 100644 index 0000000..659cc35 Binary files /dev/null and b/flags/flags/flat/48/Morocco.png differ diff --git a/flags/flags/flat/48/Mozambique.png b/flags/flags/flat/48/Mozambique.png new file mode 100644 index 0000000..d013ff7 Binary files /dev/null and b/flags/flags/flat/48/Mozambique.png differ diff --git a/flags/flags/flat/48/Myanmar.png b/flags/flags/flat/48/Myanmar.png new file mode 100644 index 0000000..4aebe96 Binary files /dev/null and b/flags/flags/flat/48/Myanmar.png differ diff --git a/flags/flags/flat/48/NATO.png b/flags/flags/flat/48/NATO.png new file mode 100644 index 0000000..6c20922 Binary files /dev/null and b/flags/flags/flat/48/NATO.png differ diff --git a/flags/flags/flat/48/Nagorno-Karabakh.png b/flags/flags/flat/48/Nagorno-Karabakh.png new file mode 100644 index 0000000..9f40ccf Binary files /dev/null and b/flags/flags/flat/48/Nagorno-Karabakh.png differ diff --git a/flags/flags/flat/48/Namibia.png b/flags/flags/flat/48/Namibia.png new file mode 100644 index 0000000..4600e86 Binary files /dev/null and b/flags/flags/flat/48/Namibia.png differ diff --git a/flags/flags/flat/48/Nauru.png b/flags/flags/flat/48/Nauru.png new file mode 100644 index 0000000..e0ec531 Binary files /dev/null and b/flags/flags/flat/48/Nauru.png differ diff --git a/flags/flags/flat/48/Nepal.png b/flags/flags/flat/48/Nepal.png new file mode 100644 index 0000000..56308fc Binary files /dev/null and b/flags/flags/flat/48/Nepal.png differ diff --git a/flags/flags/flat/48/Netherlands-Antilles.png b/flags/flags/flat/48/Netherlands-Antilles.png new file mode 100644 index 0000000..78563b2 Binary files /dev/null and b/flags/flags/flat/48/Netherlands-Antilles.png differ diff --git a/flags/flags/flat/48/Netherlands.png b/flags/flags/flat/48/Netherlands.png new file mode 100644 index 0000000..8bf2537 Binary files /dev/null and b/flags/flags/flat/48/Netherlands.png differ diff --git a/flags/flags/flat/48/New-Caledonia.png b/flags/flags/flat/48/New-Caledonia.png new file mode 100644 index 0000000..b112bdb Binary files /dev/null and b/flags/flags/flat/48/New-Caledonia.png differ diff --git a/flags/flags/flat/48/New-Zealand.png b/flags/flags/flat/48/New-Zealand.png new file mode 100644 index 0000000..0729538 Binary files /dev/null and b/flags/flags/flat/48/New-Zealand.png differ diff --git a/flags/flags/flat/48/Nicaragua.png b/flags/flags/flat/48/Nicaragua.png new file mode 100644 index 0000000..ecb6750 Binary files /dev/null and b/flags/flags/flat/48/Nicaragua.png differ diff --git a/flags/flags/flat/48/Niger.png b/flags/flags/flat/48/Niger.png new file mode 100644 index 0000000..92cfb2e Binary files /dev/null and b/flags/flags/flat/48/Niger.png differ diff --git a/flags/flags/flat/48/Nigeria.png b/flags/flags/flat/48/Nigeria.png new file mode 100644 index 0000000..a7c3d8e Binary files /dev/null and b/flags/flags/flat/48/Nigeria.png differ diff --git a/flags/flags/flat/48/Niue.png b/flags/flags/flat/48/Niue.png new file mode 100644 index 0000000..fb4113a Binary files /dev/null and b/flags/flags/flat/48/Niue.png differ diff --git a/flags/flags/flat/48/Norfolk-Island.png b/flags/flags/flat/48/Norfolk-Island.png new file mode 100644 index 0000000..2b55a90 Binary files /dev/null and b/flags/flags/flat/48/Norfolk-Island.png differ diff --git a/flags/flags/flat/48/North-Korea.png b/flags/flags/flat/48/North-Korea.png new file mode 100644 index 0000000..4e42428 Binary files /dev/null and b/flags/flags/flat/48/North-Korea.png differ diff --git a/flags/flags/flat/48/Northern-Cyprus.png b/flags/flags/flat/48/Northern-Cyprus.png new file mode 100644 index 0000000..01a421c Binary files /dev/null and b/flags/flags/flat/48/Northern-Cyprus.png differ diff --git a/flags/flags/flat/48/Northern-Mariana-Islands.png b/flags/flags/flat/48/Northern-Mariana-Islands.png new file mode 100644 index 0000000..6b74dce Binary files /dev/null and b/flags/flags/flat/48/Northern-Mariana-Islands.png differ diff --git a/flags/flags/flat/48/Norway.png b/flags/flags/flat/48/Norway.png new file mode 100644 index 0000000..dda0080 Binary files /dev/null and b/flags/flags/flat/48/Norway.png differ diff --git a/flags/flags/flat/48/Olympics.png b/flags/flags/flat/48/Olympics.png new file mode 100644 index 0000000..d4b2208 Binary files /dev/null and b/flags/flags/flat/48/Olympics.png differ diff --git a/flags/flags/flat/48/Oman.png b/flags/flags/flat/48/Oman.png new file mode 100644 index 0000000..4527a30 Binary files /dev/null and b/flags/flags/flat/48/Oman.png differ diff --git a/flags/flags/flat/48/Pakistan.png b/flags/flags/flat/48/Pakistan.png new file mode 100644 index 0000000..0fcec21 Binary files /dev/null and b/flags/flags/flat/48/Pakistan.png differ diff --git a/flags/flags/flat/48/Palau.png b/flags/flags/flat/48/Palau.png new file mode 100644 index 0000000..ae6d466 Binary files /dev/null and b/flags/flags/flat/48/Palau.png differ diff --git a/flags/flags/flat/48/Palestine.png b/flags/flags/flat/48/Palestine.png new file mode 100644 index 0000000..5e05877 Binary files /dev/null and b/flags/flags/flat/48/Palestine.png differ diff --git a/flags/flags/flat/48/Panama.png b/flags/flags/flat/48/Panama.png new file mode 100644 index 0000000..b454fe6 Binary files /dev/null and b/flags/flags/flat/48/Panama.png differ diff --git a/flags/flags/flat/48/Papua-New-Guinea.png b/flags/flags/flat/48/Papua-New-Guinea.png new file mode 100644 index 0000000..5066566 Binary files /dev/null and b/flags/flags/flat/48/Papua-New-Guinea.png differ diff --git a/flags/flags/flat/48/Paraguay.png b/flags/flags/flat/48/Paraguay.png new file mode 100644 index 0000000..c0c1888 Binary files /dev/null and b/flags/flags/flat/48/Paraguay.png differ diff --git a/flags/flags/flat/48/Peru.png b/flags/flags/flat/48/Peru.png new file mode 100644 index 0000000..a1dd5f2 Binary files /dev/null and b/flags/flags/flat/48/Peru.png differ diff --git a/flags/flags/flat/48/Philippines.png b/flags/flags/flat/48/Philippines.png new file mode 100644 index 0000000..bc2f953 Binary files /dev/null and b/flags/flags/flat/48/Philippines.png differ diff --git a/flags/flags/flat/48/Pitcairn-Islands.png b/flags/flags/flat/48/Pitcairn-Islands.png new file mode 100644 index 0000000..1047395 Binary files /dev/null and b/flags/flags/flat/48/Pitcairn-Islands.png differ diff --git a/flags/flags/flat/48/Poland.png b/flags/flags/flat/48/Poland.png new file mode 100644 index 0000000..f486f46 Binary files /dev/null and b/flags/flags/flat/48/Poland.png differ diff --git a/flags/flags/flat/48/Portugal.png b/flags/flags/flat/48/Portugal.png new file mode 100644 index 0000000..0de8f73 Binary files /dev/null and b/flags/flags/flat/48/Portugal.png differ diff --git a/flags/flags/flat/48/Puerto-Rico.png b/flags/flags/flat/48/Puerto-Rico.png new file mode 100644 index 0000000..0350ccf Binary files /dev/null and b/flags/flags/flat/48/Puerto-Rico.png differ diff --git a/flags/flags/flat/48/Qatar.png b/flags/flags/flat/48/Qatar.png new file mode 100644 index 0000000..d6bf989 Binary files /dev/null and b/flags/flags/flat/48/Qatar.png differ diff --git a/flags/flags/flat/48/Red-Cross.png b/flags/flags/flat/48/Red-Cross.png new file mode 100644 index 0000000..fbef077 Binary files /dev/null and b/flags/flags/flat/48/Red-Cross.png differ diff --git a/flags/flags/flat/48/Republic-of-the-Congo.png b/flags/flags/flat/48/Republic-of-the-Congo.png new file mode 100644 index 0000000..a0aa655 Binary files /dev/null and b/flags/flags/flat/48/Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/48/Romania.png b/flags/flags/flat/48/Romania.png new file mode 100644 index 0000000..18dd87f Binary files /dev/null and b/flags/flags/flat/48/Romania.png differ diff --git a/flags/flags/flat/48/Russia.png b/flags/flags/flat/48/Russia.png new file mode 100644 index 0000000..0096497 Binary files /dev/null and b/flags/flags/flat/48/Russia.png differ diff --git a/flags/flags/flat/48/Rwanda.png b/flags/flags/flat/48/Rwanda.png new file mode 100644 index 0000000..111ff8a Binary files /dev/null and b/flags/flags/flat/48/Rwanda.png differ diff --git a/flags/flags/flat/48/Saint-Barthelemy.png b/flags/flags/flat/48/Saint-Barthelemy.png new file mode 100644 index 0000000..bbd2217 Binary files /dev/null and b/flags/flags/flat/48/Saint-Barthelemy.png differ diff --git a/flags/flags/flat/48/Saint-Helena.png b/flags/flags/flat/48/Saint-Helena.png new file mode 100644 index 0000000..d3c75c3 Binary files /dev/null and b/flags/flags/flat/48/Saint-Helena.png differ diff --git a/flags/flags/flat/48/Saint-Kitts-and-Nevis.png b/flags/flags/flat/48/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..f2db036 Binary files /dev/null and b/flags/flags/flat/48/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/flat/48/Saint-Lucia.png b/flags/flags/flat/48/Saint-Lucia.png new file mode 100644 index 0000000..403f568 Binary files /dev/null and b/flags/flags/flat/48/Saint-Lucia.png differ diff --git a/flags/flags/flat/48/Saint-Vincent-and-the-Grenadines.png b/flags/flags/flat/48/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..48a0ea4 Binary files /dev/null and b/flags/flags/flat/48/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/flat/48/Samoa.png b/flags/flags/flat/48/Samoa.png new file mode 100644 index 0000000..8619c3d Binary files /dev/null and b/flags/flags/flat/48/Samoa.png differ diff --git a/flags/flags/flat/48/San-Marino.png b/flags/flags/flat/48/San-Marino.png new file mode 100644 index 0000000..185b054 Binary files /dev/null and b/flags/flags/flat/48/San-Marino.png differ diff --git a/flags/flags/flat/48/Sao-Tome-and-Principe.png b/flags/flags/flat/48/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..ff4561d Binary files /dev/null and b/flags/flags/flat/48/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/flat/48/Saudi-Arabia.png b/flags/flags/flat/48/Saudi-Arabia.png new file mode 100644 index 0000000..70a703c Binary files /dev/null and b/flags/flags/flat/48/Saudi-Arabia.png differ diff --git a/flags/flags/flat/48/Scotland.png b/flags/flags/flat/48/Scotland.png new file mode 100644 index 0000000..3100407 Binary files /dev/null and b/flags/flags/flat/48/Scotland.png differ diff --git a/flags/flags/flat/48/Senegal.png b/flags/flags/flat/48/Senegal.png new file mode 100644 index 0000000..08a0576 Binary files /dev/null and b/flags/flags/flat/48/Senegal.png differ diff --git a/flags/flags/flat/48/Serbia.png b/flags/flags/flat/48/Serbia.png new file mode 100644 index 0000000..f0ed406 Binary files /dev/null and b/flags/flags/flat/48/Serbia.png differ diff --git a/flags/flags/flat/48/Seychelles.png b/flags/flags/flat/48/Seychelles.png new file mode 100644 index 0000000..fb3db98 Binary files /dev/null and b/flags/flags/flat/48/Seychelles.png differ diff --git a/flags/flags/flat/48/Sierra-Leone.png b/flags/flags/flat/48/Sierra-Leone.png new file mode 100644 index 0000000..a2c9dcd Binary files /dev/null and b/flags/flags/flat/48/Sierra-Leone.png differ diff --git a/flags/flags/flat/48/Singapore.png b/flags/flags/flat/48/Singapore.png new file mode 100644 index 0000000..08f99c2 Binary files /dev/null and b/flags/flags/flat/48/Singapore.png differ diff --git a/flags/flags/flat/48/Slovakia.png b/flags/flags/flat/48/Slovakia.png new file mode 100644 index 0000000..01a84de Binary files /dev/null and b/flags/flags/flat/48/Slovakia.png differ diff --git a/flags/flags/flat/48/Slovenia.png b/flags/flags/flat/48/Slovenia.png new file mode 100644 index 0000000..7aa3b9c Binary files /dev/null and b/flags/flags/flat/48/Slovenia.png differ diff --git a/flags/flags/flat/48/Solomon-Islands.png b/flags/flags/flat/48/Solomon-Islands.png new file mode 100644 index 0000000..969f24c Binary files /dev/null and b/flags/flags/flat/48/Solomon-Islands.png differ diff --git a/flags/flags/flat/48/Somalia.png b/flags/flags/flat/48/Somalia.png new file mode 100644 index 0000000..b9eb25b Binary files /dev/null and b/flags/flags/flat/48/Somalia.png differ diff --git a/flags/flags/flat/48/Somaliland.png b/flags/flags/flat/48/Somaliland.png new file mode 100644 index 0000000..0e213bf Binary files /dev/null and b/flags/flags/flat/48/Somaliland.png differ diff --git a/flags/flags/flat/48/South-Africa.png b/flags/flags/flat/48/South-Africa.png new file mode 100644 index 0000000..fee7308 Binary files /dev/null and b/flags/flags/flat/48/South-Africa.png differ diff --git a/flags/flags/flat/48/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/flat/48/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..62f0744 Binary files /dev/null and b/flags/flags/flat/48/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/flat/48/South-Korea.png b/flags/flags/flat/48/South-Korea.png new file mode 100644 index 0000000..3bade0c Binary files /dev/null and b/flags/flags/flat/48/South-Korea.png differ diff --git a/flags/flags/flat/48/South-Ossetia.png b/flags/flags/flat/48/South-Ossetia.png new file mode 100644 index 0000000..cd7a326 Binary files /dev/null and b/flags/flags/flat/48/South-Ossetia.png differ diff --git a/flags/flags/flat/48/South-Sudan.png b/flags/flags/flat/48/South-Sudan.png new file mode 100644 index 0000000..c96bcb9 Binary files /dev/null and b/flags/flags/flat/48/South-Sudan.png differ diff --git a/flags/flags/flat/48/Spain.png b/flags/flags/flat/48/Spain.png new file mode 100644 index 0000000..eece738 Binary files /dev/null and b/flags/flags/flat/48/Spain.png differ diff --git a/flags/flags/flat/48/Sri-Lanka.png b/flags/flags/flat/48/Sri-Lanka.png new file mode 100644 index 0000000..c6e3b1d Binary files /dev/null and b/flags/flags/flat/48/Sri-Lanka.png differ diff --git a/flags/flags/flat/48/Sudan.png b/flags/flags/flat/48/Sudan.png new file mode 100644 index 0000000..dc40ab6 Binary files /dev/null and b/flags/flags/flat/48/Sudan.png differ diff --git a/flags/flags/flat/48/Suriname.png b/flags/flags/flat/48/Suriname.png new file mode 100644 index 0000000..be5f367 Binary files /dev/null and b/flags/flags/flat/48/Suriname.png differ diff --git a/flags/flags/flat/48/Swaziland.png b/flags/flags/flat/48/Swaziland.png new file mode 100644 index 0000000..03254da Binary files /dev/null and b/flags/flags/flat/48/Swaziland.png differ diff --git a/flags/flags/flat/48/Sweden.png b/flags/flags/flat/48/Sweden.png new file mode 100644 index 0000000..bfbcc55 Binary files /dev/null and b/flags/flags/flat/48/Sweden.png differ diff --git a/flags/flags/flat/48/Switzerland.png b/flags/flags/flat/48/Switzerland.png new file mode 100644 index 0000000..eeec1ca Binary files /dev/null and b/flags/flags/flat/48/Switzerland.png differ diff --git a/flags/flags/flat/48/Syria.png b/flags/flags/flat/48/Syria.png new file mode 100644 index 0000000..3cf344c Binary files /dev/null and b/flags/flags/flat/48/Syria.png differ diff --git a/flags/flags/flat/48/Taiwan.png b/flags/flags/flat/48/Taiwan.png new file mode 100644 index 0000000..b94edd2 Binary files /dev/null and b/flags/flags/flat/48/Taiwan.png differ diff --git a/flags/flags/flat/48/Tajikistan.png b/flags/flags/flat/48/Tajikistan.png new file mode 100644 index 0000000..b475fb2 Binary files /dev/null and b/flags/flags/flat/48/Tajikistan.png differ diff --git a/flags/flags/flat/48/Tanzania.png b/flags/flags/flat/48/Tanzania.png new file mode 100644 index 0000000..2a167bb Binary files /dev/null and b/flags/flags/flat/48/Tanzania.png differ diff --git a/flags/flags/flat/48/Thailand.png b/flags/flags/flat/48/Thailand.png new file mode 100644 index 0000000..d1d6798 Binary files /dev/null and b/flags/flags/flat/48/Thailand.png differ diff --git a/flags/flags/flat/48/Togo.png b/flags/flags/flat/48/Togo.png new file mode 100644 index 0000000..1b914be Binary files /dev/null and b/flags/flags/flat/48/Togo.png differ diff --git a/flags/flags/flat/48/Tokelau.png b/flags/flags/flat/48/Tokelau.png new file mode 100644 index 0000000..8d6695b Binary files /dev/null and b/flags/flags/flat/48/Tokelau.png differ diff --git a/flags/flags/flat/48/Tonga.png b/flags/flags/flat/48/Tonga.png new file mode 100644 index 0000000..15339aa Binary files /dev/null and b/flags/flags/flat/48/Tonga.png differ diff --git a/flags/flags/flat/48/Trinidad-and-Tobago.png b/flags/flags/flat/48/Trinidad-and-Tobago.png new file mode 100644 index 0000000..bdc23aa Binary files /dev/null and b/flags/flags/flat/48/Trinidad-and-Tobago.png differ diff --git a/flags/flags/flat/48/Tunisia.png b/flags/flags/flat/48/Tunisia.png new file mode 100644 index 0000000..d6a6683 Binary files /dev/null and b/flags/flags/flat/48/Tunisia.png differ diff --git a/flags/flags/flat/48/Turkey.png b/flags/flags/flat/48/Turkey.png new file mode 100644 index 0000000..931d903 Binary files /dev/null and b/flags/flags/flat/48/Turkey.png differ diff --git a/flags/flags/flat/48/Turkmenistan.png b/flags/flags/flat/48/Turkmenistan.png new file mode 100644 index 0000000..a2dd5d6 Binary files /dev/null and b/flags/flags/flat/48/Turkmenistan.png differ diff --git a/flags/flags/flat/48/Turks-and-Caicos-Islands.png b/flags/flags/flat/48/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..df0d691 Binary files /dev/null and b/flags/flags/flat/48/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/flat/48/Tuvalu.png b/flags/flags/flat/48/Tuvalu.png new file mode 100644 index 0000000..5a203c9 Binary files /dev/null and b/flags/flags/flat/48/Tuvalu.png differ diff --git a/flags/flags/flat/48/US-Virgin-Islands.png b/flags/flags/flat/48/US-Virgin-Islands.png new file mode 100644 index 0000000..4112be1 Binary files /dev/null and b/flags/flags/flat/48/US-Virgin-Islands.png differ diff --git a/flags/flags/flat/48/Uganda.png b/flags/flags/flat/48/Uganda.png new file mode 100644 index 0000000..77596a7 Binary files /dev/null and b/flags/flags/flat/48/Uganda.png differ diff --git a/flags/flags/flat/48/Ukraine.png b/flags/flags/flat/48/Ukraine.png new file mode 100644 index 0000000..5088797 Binary files /dev/null and b/flags/flags/flat/48/Ukraine.png differ diff --git a/flags/flags/flat/48/United-Arab-Emirates.png b/flags/flags/flat/48/United-Arab-Emirates.png new file mode 100644 index 0000000..29b9453 Binary files /dev/null and b/flags/flags/flat/48/United-Arab-Emirates.png differ diff --git a/flags/flags/flat/48/United-Kingdom.png b/flags/flags/flat/48/United-Kingdom.png new file mode 100644 index 0000000..22ad6b5 Binary files /dev/null and b/flags/flags/flat/48/United-Kingdom.png differ diff --git a/flags/flags/flat/48/United-Nations.png b/flags/flags/flat/48/United-Nations.png new file mode 100644 index 0000000..65383a0 Binary files /dev/null and b/flags/flags/flat/48/United-Nations.png differ diff --git a/flags/flags/flat/48/United-States.png b/flags/flags/flat/48/United-States.png new file mode 100644 index 0000000..eed544e Binary files /dev/null and b/flags/flags/flat/48/United-States.png differ diff --git a/flags/flags/flat/48/Uruguay.png b/flags/flags/flat/48/Uruguay.png new file mode 100644 index 0000000..857a6c3 Binary files /dev/null and b/flags/flags/flat/48/Uruguay.png differ diff --git a/flags/flags/flat/48/Uzbekistan.png b/flags/flags/flat/48/Uzbekistan.png new file mode 100644 index 0000000..168ff57 Binary files /dev/null and b/flags/flags/flat/48/Uzbekistan.png differ diff --git a/flags/flags/flat/48/Vanuatu.png b/flags/flags/flat/48/Vanuatu.png new file mode 100644 index 0000000..991baa8 Binary files /dev/null and b/flags/flags/flat/48/Vanuatu.png differ diff --git a/flags/flags/flat/48/Vatican-City.png b/flags/flags/flat/48/Vatican-City.png new file mode 100644 index 0000000..62243a2 Binary files /dev/null and b/flags/flags/flat/48/Vatican-City.png differ diff --git a/flags/flags/flat/48/Venezuela.png b/flags/flags/flat/48/Venezuela.png new file mode 100644 index 0000000..a23546a Binary files /dev/null and b/flags/flags/flat/48/Venezuela.png differ diff --git a/flags/flags/flat/48/Vietnam.png b/flags/flags/flat/48/Vietnam.png new file mode 100644 index 0000000..12406cf Binary files /dev/null and b/flags/flags/flat/48/Vietnam.png differ diff --git a/flags/flags/flat/48/Wales.png b/flags/flags/flat/48/Wales.png new file mode 100644 index 0000000..4702806 Binary files /dev/null and b/flags/flags/flat/48/Wales.png differ diff --git a/flags/flags/flat/48/Wallis-And-Futuna.png b/flags/flags/flat/48/Wallis-And-Futuna.png new file mode 100644 index 0000000..6d431c5 Binary files /dev/null and b/flags/flags/flat/48/Wallis-And-Futuna.png differ diff --git a/flags/flags/flat/48/Western-Sahara.png b/flags/flags/flat/48/Western-Sahara.png new file mode 100644 index 0000000..b4cbb19 Binary files /dev/null and b/flags/flags/flat/48/Western-Sahara.png differ diff --git a/flags/flags/flat/48/Yemen.png b/flags/flags/flat/48/Yemen.png new file mode 100644 index 0000000..961f4cd Binary files /dev/null and b/flags/flags/flat/48/Yemen.png differ diff --git a/flags/flags/flat/48/Zambia.png b/flags/flags/flat/48/Zambia.png new file mode 100644 index 0000000..778bd13 Binary files /dev/null and b/flags/flags/flat/48/Zambia.png differ diff --git a/flags/flags/flat/48/Zimbabwe.png b/flags/flags/flat/48/Zimbabwe.png new file mode 100644 index 0000000..539c61d Binary files /dev/null and b/flags/flags/flat/48/Zimbabwe.png differ diff --git a/flags/flags/flat/64/Abkhazia.png b/flags/flags/flat/64/Abkhazia.png new file mode 100644 index 0000000..9f0c76e Binary files /dev/null and b/flags/flags/flat/64/Abkhazia.png differ diff --git a/flags/flags/flat/64/Afghanistan.png b/flags/flags/flat/64/Afghanistan.png new file mode 100644 index 0000000..491039b Binary files /dev/null and b/flags/flags/flat/64/Afghanistan.png differ diff --git a/flags/flags/flat/64/Aland.png b/flags/flags/flat/64/Aland.png new file mode 100644 index 0000000..e11d1f3 Binary files /dev/null and b/flags/flags/flat/64/Aland.png differ diff --git a/flags/flags/flat/64/Albania.png b/flags/flags/flat/64/Albania.png new file mode 100644 index 0000000..16e86a6 Binary files /dev/null and b/flags/flags/flat/64/Albania.png differ diff --git a/flags/flags/flat/64/Algeria.png b/flags/flags/flat/64/Algeria.png new file mode 100644 index 0000000..2ea6765 Binary files /dev/null and b/flags/flags/flat/64/Algeria.png differ diff --git a/flags/flags/flat/64/American-Samoa.png b/flags/flags/flat/64/American-Samoa.png new file mode 100644 index 0000000..45c3ed0 Binary files /dev/null and b/flags/flags/flat/64/American-Samoa.png differ diff --git a/flags/flags/flat/64/Andorra.png b/flags/flags/flat/64/Andorra.png new file mode 100644 index 0000000..24efae5 Binary files /dev/null and b/flags/flags/flat/64/Andorra.png differ diff --git a/flags/flags/flat/64/Angola.png b/flags/flags/flat/64/Angola.png new file mode 100644 index 0000000..d0fb098 Binary files /dev/null and b/flags/flags/flat/64/Angola.png differ diff --git a/flags/flags/flat/64/Anguilla.png b/flags/flags/flat/64/Anguilla.png new file mode 100644 index 0000000..4c6b36d Binary files /dev/null and b/flags/flags/flat/64/Anguilla.png differ diff --git a/flags/flags/flat/64/Antarctica.png b/flags/flags/flat/64/Antarctica.png new file mode 100644 index 0000000..52c2833 Binary files /dev/null and b/flags/flags/flat/64/Antarctica.png differ diff --git a/flags/flags/flat/64/Antigua-and-Barbuda.png b/flags/flags/flat/64/Antigua-and-Barbuda.png new file mode 100644 index 0000000..08c171d Binary files /dev/null and b/flags/flags/flat/64/Antigua-and-Barbuda.png differ diff --git a/flags/flags/flat/64/Argentina.png b/flags/flags/flat/64/Argentina.png new file mode 100644 index 0000000..bfa366f Binary files /dev/null and b/flags/flags/flat/64/Argentina.png differ diff --git a/flags/flags/flat/64/Armenia.png b/flags/flags/flat/64/Armenia.png new file mode 100644 index 0000000..b1f25ba Binary files /dev/null and b/flags/flags/flat/64/Armenia.png differ diff --git a/flags/flags/flat/64/Aruba.png b/flags/flags/flat/64/Aruba.png new file mode 100644 index 0000000..007f032 Binary files /dev/null and b/flags/flags/flat/64/Aruba.png differ diff --git a/flags/flags/flat/64/Australia.png b/flags/flags/flat/64/Australia.png new file mode 100644 index 0000000..5f6e325 Binary files /dev/null and b/flags/flags/flat/64/Australia.png differ diff --git a/flags/flags/flat/64/Austria.png b/flags/flags/flat/64/Austria.png new file mode 100644 index 0000000..bfe3827 Binary files /dev/null and b/flags/flags/flat/64/Austria.png differ diff --git a/flags/flags/flat/64/Azerbaijan.png b/flags/flags/flat/64/Azerbaijan.png new file mode 100644 index 0000000..ac0cbd8 Binary files /dev/null and b/flags/flags/flat/64/Azerbaijan.png differ diff --git a/flags/flags/flat/64/Bahamas.png b/flags/flags/flat/64/Bahamas.png new file mode 100644 index 0000000..15e0682 Binary files /dev/null and b/flags/flags/flat/64/Bahamas.png differ diff --git a/flags/flags/flat/64/Bahrain.png b/flags/flags/flat/64/Bahrain.png new file mode 100644 index 0000000..38d195c Binary files /dev/null and b/flags/flags/flat/64/Bahrain.png differ diff --git a/flags/flags/flat/64/Bangladesh.png b/flags/flags/flat/64/Bangladesh.png new file mode 100644 index 0000000..57cc9f6 Binary files /dev/null and b/flags/flags/flat/64/Bangladesh.png differ diff --git a/flags/flags/flat/64/Barbados.png b/flags/flags/flat/64/Barbados.png new file mode 100644 index 0000000..c84c6ac Binary files /dev/null and b/flags/flags/flat/64/Barbados.png differ diff --git a/flags/flags/flat/64/Belarus.png b/flags/flags/flat/64/Belarus.png new file mode 100644 index 0000000..8d6dc57 Binary files /dev/null and b/flags/flags/flat/64/Belarus.png differ diff --git a/flags/flags/flat/64/Belgium.png b/flags/flags/flat/64/Belgium.png new file mode 100644 index 0000000..1473666 Binary files /dev/null and b/flags/flags/flat/64/Belgium.png differ diff --git a/flags/flags/flat/64/Belize.png b/flags/flags/flat/64/Belize.png new file mode 100644 index 0000000..f3fe26c Binary files /dev/null and b/flags/flags/flat/64/Belize.png differ diff --git a/flags/flags/flat/64/Benin.png b/flags/flags/flat/64/Benin.png new file mode 100644 index 0000000..1e5582a Binary files /dev/null and b/flags/flags/flat/64/Benin.png differ diff --git a/flags/flags/flat/64/Bermuda.png b/flags/flags/flat/64/Bermuda.png new file mode 100644 index 0000000..5b989c1 Binary files /dev/null and b/flags/flags/flat/64/Bermuda.png differ diff --git a/flags/flags/flat/64/Bhutan.png b/flags/flags/flat/64/Bhutan.png new file mode 100644 index 0000000..a83a137 Binary files /dev/null and b/flags/flags/flat/64/Bhutan.png differ diff --git a/flags/flags/flat/64/Bolivia.png b/flags/flags/flat/64/Bolivia.png new file mode 100644 index 0000000..f58824f Binary files /dev/null and b/flags/flags/flat/64/Bolivia.png differ diff --git a/flags/flags/flat/64/Bosnia-and-Herzegovina.png b/flags/flags/flat/64/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..d97b851 Binary files /dev/null and b/flags/flags/flat/64/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/flat/64/Botswana.png b/flags/flags/flat/64/Botswana.png new file mode 100644 index 0000000..45f9717 Binary files /dev/null and b/flags/flags/flat/64/Botswana.png differ diff --git a/flags/flags/flat/64/Brazil.png b/flags/flags/flat/64/Brazil.png new file mode 100644 index 0000000..13bce83 Binary files /dev/null and b/flags/flags/flat/64/Brazil.png differ diff --git a/flags/flags/flat/64/British-Antarctic-Territory.png b/flags/flags/flat/64/British-Antarctic-Territory.png new file mode 100644 index 0000000..550bdfd Binary files /dev/null and b/flags/flags/flat/64/British-Antarctic-Territory.png differ diff --git a/flags/flags/flat/64/British-Virgin-Islands.png b/flags/flags/flat/64/British-Virgin-Islands.png new file mode 100644 index 0000000..470335e Binary files /dev/null and b/flags/flags/flat/64/British-Virgin-Islands.png differ diff --git a/flags/flags/flat/64/Brunei.png b/flags/flags/flat/64/Brunei.png new file mode 100644 index 0000000..c793402 Binary files /dev/null and b/flags/flags/flat/64/Brunei.png differ diff --git a/flags/flags/flat/64/Bulgaria.png b/flags/flags/flat/64/Bulgaria.png new file mode 100644 index 0000000..ba98171 Binary files /dev/null and b/flags/flags/flat/64/Bulgaria.png differ diff --git a/flags/flags/flat/64/Burkina-Faso.png b/flags/flags/flat/64/Burkina-Faso.png new file mode 100644 index 0000000..dc29743 Binary files /dev/null and b/flags/flags/flat/64/Burkina-Faso.png differ diff --git a/flags/flags/flat/64/Burundi.png b/flags/flags/flat/64/Burundi.png new file mode 100644 index 0000000..04c84ba Binary files /dev/null and b/flags/flags/flat/64/Burundi.png differ diff --git a/flags/flags/flat/64/Cambodia.png b/flags/flags/flat/64/Cambodia.png new file mode 100644 index 0000000..d752ca0 Binary files /dev/null and b/flags/flags/flat/64/Cambodia.png differ diff --git a/flags/flags/flat/64/Cameroon.png b/flags/flags/flat/64/Cameroon.png new file mode 100644 index 0000000..9563721 Binary files /dev/null and b/flags/flags/flat/64/Cameroon.png differ diff --git a/flags/flags/flat/64/Canada.png b/flags/flags/flat/64/Canada.png new file mode 100644 index 0000000..fd82ed4 Binary files /dev/null and b/flags/flags/flat/64/Canada.png differ diff --git a/flags/flags/flat/64/Cape-Verde.png b/flags/flags/flat/64/Cape-Verde.png new file mode 100644 index 0000000..cc3d4e8 Binary files /dev/null and b/flags/flags/flat/64/Cape-Verde.png differ diff --git a/flags/flags/flat/64/Cayman-Islands.png b/flags/flags/flat/64/Cayman-Islands.png new file mode 100644 index 0000000..dac58cd Binary files /dev/null and b/flags/flags/flat/64/Cayman-Islands.png differ diff --git a/flags/flags/flat/64/Central-African-Republic.png b/flags/flags/flat/64/Central-African-Republic.png new file mode 100644 index 0000000..82029ea Binary files /dev/null and b/flags/flags/flat/64/Central-African-Republic.png differ diff --git a/flags/flags/flat/64/Chad.png b/flags/flags/flat/64/Chad.png new file mode 100644 index 0000000..214cb0d Binary files /dev/null and b/flags/flags/flat/64/Chad.png differ diff --git a/flags/flags/flat/64/Chile.png b/flags/flags/flat/64/Chile.png new file mode 100644 index 0000000..eaa32e3 Binary files /dev/null and b/flags/flags/flat/64/Chile.png differ diff --git a/flags/flags/flat/64/China.png b/flags/flags/flat/64/China.png new file mode 100644 index 0000000..d75026a Binary files /dev/null and b/flags/flags/flat/64/China.png differ diff --git a/flags/flags/flat/64/Christmas-Island.png b/flags/flags/flat/64/Christmas-Island.png new file mode 100644 index 0000000..b9384b2 Binary files /dev/null and b/flags/flags/flat/64/Christmas-Island.png differ diff --git a/flags/flags/flat/64/Cocos-Keeling-Islands.png b/flags/flags/flat/64/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..2c1d9e3 Binary files /dev/null and b/flags/flags/flat/64/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/flat/64/Colombia.png b/flags/flags/flat/64/Colombia.png new file mode 100644 index 0000000..418df18 Binary files /dev/null and b/flags/flags/flat/64/Colombia.png differ diff --git a/flags/flags/flat/64/Commonwealth.png b/flags/flags/flat/64/Commonwealth.png new file mode 100644 index 0000000..5370d01 Binary files /dev/null and b/flags/flags/flat/64/Commonwealth.png differ diff --git a/flags/flags/flat/64/Comoros.png b/flags/flags/flat/64/Comoros.png new file mode 100644 index 0000000..8a46ac6 Binary files /dev/null and b/flags/flags/flat/64/Comoros.png differ diff --git a/flags/flags/flat/64/Cook-Islands.png b/flags/flags/flat/64/Cook-Islands.png new file mode 100644 index 0000000..621c3ff Binary files /dev/null and b/flags/flags/flat/64/Cook-Islands.png differ diff --git a/flags/flags/flat/64/Costa-Rica.png b/flags/flags/flat/64/Costa-Rica.png new file mode 100644 index 0000000..6e72512 Binary files /dev/null and b/flags/flags/flat/64/Costa-Rica.png differ diff --git a/flags/flags/flat/64/Cote-dIvoire.png b/flags/flags/flat/64/Cote-dIvoire.png new file mode 100644 index 0000000..c7a3a60 Binary files /dev/null and b/flags/flags/flat/64/Cote-dIvoire.png differ diff --git a/flags/flags/flat/64/Croatia.png b/flags/flags/flat/64/Croatia.png new file mode 100644 index 0000000..355c4e8 Binary files /dev/null and b/flags/flags/flat/64/Croatia.png differ diff --git a/flags/flags/flat/64/Cuba.png b/flags/flags/flat/64/Cuba.png new file mode 100644 index 0000000..6430524 Binary files /dev/null and b/flags/flags/flat/64/Cuba.png differ diff --git a/flags/flags/flat/64/Cyprus.png b/flags/flags/flat/64/Cyprus.png new file mode 100644 index 0000000..3ea9c9e Binary files /dev/null and b/flags/flags/flat/64/Cyprus.png differ diff --git a/flags/flags/flat/64/Czech-Republic.png b/flags/flags/flat/64/Czech-Republic.png new file mode 100644 index 0000000..b38296b Binary files /dev/null and b/flags/flags/flat/64/Czech-Republic.png differ diff --git a/flags/flags/flat/64/Democratic-Republic-of-the-Congo.png b/flags/flags/flat/64/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..502bc01 Binary files /dev/null and b/flags/flags/flat/64/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/64/Denmark.png b/flags/flags/flat/64/Denmark.png new file mode 100644 index 0000000..ef9f52f Binary files /dev/null and b/flags/flags/flat/64/Denmark.png differ diff --git a/flags/flags/flat/64/Djibouti.png b/flags/flags/flat/64/Djibouti.png new file mode 100644 index 0000000..794e74c Binary files /dev/null and b/flags/flags/flat/64/Djibouti.png differ diff --git a/flags/flags/flat/64/Dominica.png b/flags/flags/flat/64/Dominica.png new file mode 100644 index 0000000..f7da4c8 Binary files /dev/null and b/flags/flags/flat/64/Dominica.png differ diff --git a/flags/flags/flat/64/Dominican-Republic.png b/flags/flags/flat/64/Dominican-Republic.png new file mode 100644 index 0000000..c34a32f Binary files /dev/null and b/flags/flags/flat/64/Dominican-Republic.png differ diff --git a/flags/flags/flat/64/East-Timor.png b/flags/flags/flat/64/East-Timor.png new file mode 100644 index 0000000..b7db4eb Binary files /dev/null and b/flags/flags/flat/64/East-Timor.png differ diff --git a/flags/flags/flat/64/Ecuador.png b/flags/flags/flat/64/Ecuador.png new file mode 100644 index 0000000..26aaeaa Binary files /dev/null and b/flags/flags/flat/64/Ecuador.png differ diff --git a/flags/flags/flat/64/Egypt.png b/flags/flags/flat/64/Egypt.png new file mode 100644 index 0000000..8cd5b82 Binary files /dev/null and b/flags/flags/flat/64/Egypt.png differ diff --git a/flags/flags/flat/64/El-Salvador.png b/flags/flags/flat/64/El-Salvador.png new file mode 100644 index 0000000..36c9f03 Binary files /dev/null and b/flags/flags/flat/64/El-Salvador.png differ diff --git a/flags/flags/flat/64/England.png b/flags/flags/flat/64/England.png new file mode 100644 index 0000000..d509e60 Binary files /dev/null and b/flags/flags/flat/64/England.png differ diff --git a/flags/flags/flat/64/Equatorial-Guinea.png b/flags/flags/flat/64/Equatorial-Guinea.png new file mode 100644 index 0000000..1473173 Binary files /dev/null and b/flags/flags/flat/64/Equatorial-Guinea.png differ diff --git a/flags/flags/flat/64/Eritrea.png b/flags/flags/flat/64/Eritrea.png new file mode 100644 index 0000000..fa60b10 Binary files /dev/null and b/flags/flags/flat/64/Eritrea.png differ diff --git a/flags/flags/flat/64/Estonia.png b/flags/flags/flat/64/Estonia.png new file mode 100644 index 0000000..c18c562 Binary files /dev/null and b/flags/flags/flat/64/Estonia.png differ diff --git a/flags/flags/flat/64/Ethiopia.png b/flags/flags/flat/64/Ethiopia.png new file mode 100644 index 0000000..e1388a0 Binary files /dev/null and b/flags/flags/flat/64/Ethiopia.png differ diff --git a/flags/flags/flat/64/European-Union.png b/flags/flags/flat/64/European-Union.png new file mode 100644 index 0000000..4f84094 Binary files /dev/null and b/flags/flags/flat/64/European-Union.png differ diff --git a/flags/flags/flat/64/Falkland-Islands.png b/flags/flags/flat/64/Falkland-Islands.png new file mode 100644 index 0000000..eb2dd3c Binary files /dev/null and b/flags/flags/flat/64/Falkland-Islands.png differ diff --git a/flags/flags/flat/64/Faroes.png b/flags/flags/flat/64/Faroes.png new file mode 100644 index 0000000..7942cd9 Binary files /dev/null and b/flags/flags/flat/64/Faroes.png differ diff --git a/flags/flags/flat/64/Fiji.png b/flags/flags/flat/64/Fiji.png new file mode 100644 index 0000000..fafdaae Binary files /dev/null and b/flags/flags/flat/64/Fiji.png differ diff --git a/flags/flags/flat/64/Finland.png b/flags/flags/flat/64/Finland.png new file mode 100644 index 0000000..6eb7e94 Binary files /dev/null and b/flags/flags/flat/64/Finland.png differ diff --git a/flags/flags/flat/64/France.png b/flags/flags/flat/64/France.png new file mode 100644 index 0000000..ea101a5 Binary files /dev/null and b/flags/flags/flat/64/France.png differ diff --git a/flags/flags/flat/64/French-Polynesia.png b/flags/flags/flat/64/French-Polynesia.png new file mode 100644 index 0000000..40e5210 Binary files /dev/null and b/flags/flags/flat/64/French-Polynesia.png differ diff --git a/flags/flags/flat/64/French-Southern-Territories.png b/flags/flags/flat/64/French-Southern-Territories.png new file mode 100644 index 0000000..17bd6c3 Binary files /dev/null and b/flags/flags/flat/64/French-Southern-Territories.png differ diff --git a/flags/flags/flat/64/Gabon.png b/flags/flags/flat/64/Gabon.png new file mode 100644 index 0000000..1b69eaf Binary files /dev/null and b/flags/flags/flat/64/Gabon.png differ diff --git a/flags/flags/flat/64/Gambia.png b/flags/flags/flat/64/Gambia.png new file mode 100644 index 0000000..a54ce95 Binary files /dev/null and b/flags/flags/flat/64/Gambia.png differ diff --git a/flags/flags/flat/64/Georgia.png b/flags/flags/flat/64/Georgia.png new file mode 100644 index 0000000..2026913 Binary files /dev/null and b/flags/flags/flat/64/Georgia.png differ diff --git a/flags/flags/flat/64/Germany.png b/flags/flags/flat/64/Germany.png new file mode 100644 index 0000000..07707aa Binary files /dev/null and b/flags/flags/flat/64/Germany.png differ diff --git a/flags/flags/flat/64/Ghana.png b/flags/flags/flat/64/Ghana.png new file mode 100644 index 0000000..2bdcd4f Binary files /dev/null and b/flags/flags/flat/64/Ghana.png differ diff --git a/flags/flags/flat/64/Gibraltar.png b/flags/flags/flat/64/Gibraltar.png new file mode 100644 index 0000000..3b87254 Binary files /dev/null and b/flags/flags/flat/64/Gibraltar.png differ diff --git a/flags/flags/flat/64/GoSquared.png b/flags/flags/flat/64/GoSquared.png new file mode 100644 index 0000000..fc690f7 Binary files /dev/null and b/flags/flags/flat/64/GoSquared.png differ diff --git a/flags/flags/flat/64/Greece.png b/flags/flags/flat/64/Greece.png new file mode 100644 index 0000000..b7da9cc Binary files /dev/null and b/flags/flags/flat/64/Greece.png differ diff --git a/flags/flags/flat/64/Greenland.png b/flags/flags/flat/64/Greenland.png new file mode 100644 index 0000000..c7554a8 Binary files /dev/null and b/flags/flags/flat/64/Greenland.png differ diff --git a/flags/flags/flat/64/Grenada.png b/flags/flags/flat/64/Grenada.png new file mode 100644 index 0000000..d4a05ad Binary files /dev/null and b/flags/flags/flat/64/Grenada.png differ diff --git a/flags/flags/flat/64/Guam.png b/flags/flags/flat/64/Guam.png new file mode 100644 index 0000000..e68eb53 Binary files /dev/null and b/flags/flags/flat/64/Guam.png differ diff --git a/flags/flags/flat/64/Guatemala.png b/flags/flags/flat/64/Guatemala.png new file mode 100644 index 0000000..6b28067 Binary files /dev/null and b/flags/flags/flat/64/Guatemala.png differ diff --git a/flags/flags/flat/64/Guernsey.png b/flags/flags/flat/64/Guernsey.png new file mode 100644 index 0000000..8fff555 Binary files /dev/null and b/flags/flags/flat/64/Guernsey.png differ diff --git a/flags/flags/flat/64/Guinea-Bissau.png b/flags/flags/flat/64/Guinea-Bissau.png new file mode 100644 index 0000000..cdf103a Binary files /dev/null and b/flags/flags/flat/64/Guinea-Bissau.png differ diff --git a/flags/flags/flat/64/Guinea.png b/flags/flags/flat/64/Guinea.png new file mode 100644 index 0000000..dd79507 Binary files /dev/null and b/flags/flags/flat/64/Guinea.png differ diff --git a/flags/flags/flat/64/Guyana.png b/flags/flags/flat/64/Guyana.png new file mode 100644 index 0000000..1e0632e Binary files /dev/null and b/flags/flags/flat/64/Guyana.png differ diff --git a/flags/flags/flat/64/Haiti.png b/flags/flags/flat/64/Haiti.png new file mode 100644 index 0000000..b958f5b Binary files /dev/null and b/flags/flags/flat/64/Haiti.png differ diff --git a/flags/flags/flat/64/Honduras.png b/flags/flags/flat/64/Honduras.png new file mode 100644 index 0000000..e76b187 Binary files /dev/null and b/flags/flags/flat/64/Honduras.png differ diff --git a/flags/flags/flat/64/Hong-Kong.png b/flags/flags/flat/64/Hong-Kong.png new file mode 100644 index 0000000..111a7a6 Binary files /dev/null and b/flags/flags/flat/64/Hong-Kong.png differ diff --git a/flags/flags/flat/64/Hungary.png b/flags/flags/flat/64/Hungary.png new file mode 100644 index 0000000..afee569 Binary files /dev/null and b/flags/flags/flat/64/Hungary.png differ diff --git a/flags/flags/flat/64/Iceland.png b/flags/flags/flat/64/Iceland.png new file mode 100644 index 0000000..5e198a7 Binary files /dev/null and b/flags/flags/flat/64/Iceland.png differ diff --git a/flags/flags/flat/64/India.png b/flags/flags/flat/64/India.png new file mode 100644 index 0000000..9af8072 Binary files /dev/null and b/flags/flags/flat/64/India.png differ diff --git a/flags/flags/flat/64/Indonesia.png b/flags/flags/flat/64/Indonesia.png new file mode 100644 index 0000000..7fb00cf Binary files /dev/null and b/flags/flags/flat/64/Indonesia.png differ diff --git a/flags/flags/flat/64/Iran.png b/flags/flags/flat/64/Iran.png new file mode 100644 index 0000000..df273f3 Binary files /dev/null and b/flags/flags/flat/64/Iran.png differ diff --git a/flags/flags/flat/64/Iraq.png b/flags/flags/flat/64/Iraq.png new file mode 100644 index 0000000..79e7c2a Binary files /dev/null and b/flags/flags/flat/64/Iraq.png differ diff --git a/flags/flags/flat/64/Ireland.png b/flags/flags/flat/64/Ireland.png new file mode 100644 index 0000000..ab7af0c Binary files /dev/null and b/flags/flags/flat/64/Ireland.png differ diff --git a/flags/flags/flat/64/Isle-of-Man.png b/flags/flags/flat/64/Isle-of-Man.png new file mode 100644 index 0000000..c1f8bbb Binary files /dev/null and b/flags/flags/flat/64/Isle-of-Man.png differ diff --git a/flags/flags/flat/64/Israel.png b/flags/flags/flat/64/Israel.png new file mode 100644 index 0000000..ce6937f Binary files /dev/null and b/flags/flags/flat/64/Israel.png differ diff --git a/flags/flags/flat/64/Italy.png b/flags/flags/flat/64/Italy.png new file mode 100644 index 0000000..1ac67df Binary files /dev/null and b/flags/flags/flat/64/Italy.png differ diff --git a/flags/flags/flat/64/Jamaica.png b/flags/flags/flat/64/Jamaica.png new file mode 100644 index 0000000..2c59808 Binary files /dev/null and b/flags/flags/flat/64/Jamaica.png differ diff --git a/flags/flags/flat/64/Japan.png b/flags/flags/flat/64/Japan.png new file mode 100644 index 0000000..fdd3f5e Binary files /dev/null and b/flags/flags/flat/64/Japan.png differ diff --git a/flags/flags/flat/64/Jersey.png b/flags/flags/flat/64/Jersey.png new file mode 100644 index 0000000..cc26d52 Binary files /dev/null and b/flags/flags/flat/64/Jersey.png differ diff --git a/flags/flags/flat/64/Jordan.png b/flags/flags/flat/64/Jordan.png new file mode 100644 index 0000000..d0b87ec Binary files /dev/null and b/flags/flags/flat/64/Jordan.png differ diff --git a/flags/flags/flat/64/Kazakhstan.png b/flags/flags/flat/64/Kazakhstan.png new file mode 100644 index 0000000..195d978 Binary files /dev/null and b/flags/flags/flat/64/Kazakhstan.png differ diff --git a/flags/flags/flat/64/Kenya.png b/flags/flags/flat/64/Kenya.png new file mode 100644 index 0000000..3065486 Binary files /dev/null and b/flags/flags/flat/64/Kenya.png differ diff --git a/flags/flags/flat/64/Kiribati.png b/flags/flags/flat/64/Kiribati.png new file mode 100644 index 0000000..c8dbdb0 Binary files /dev/null and b/flags/flags/flat/64/Kiribati.png differ diff --git a/flags/flags/flat/64/Kosovo.png b/flags/flags/flat/64/Kosovo.png new file mode 100644 index 0000000..b492595 Binary files /dev/null and b/flags/flags/flat/64/Kosovo.png differ diff --git a/flags/flags/flat/64/Kuwait.png b/flags/flags/flat/64/Kuwait.png new file mode 100644 index 0000000..f5ec795 Binary files /dev/null and b/flags/flags/flat/64/Kuwait.png differ diff --git a/flags/flags/flat/64/Kyrgyzstan.png b/flags/flags/flat/64/Kyrgyzstan.png new file mode 100644 index 0000000..8ea6f5c Binary files /dev/null and b/flags/flags/flat/64/Kyrgyzstan.png differ diff --git a/flags/flags/flat/64/Laos.png b/flags/flags/flat/64/Laos.png new file mode 100644 index 0000000..609436d Binary files /dev/null and b/flags/flags/flat/64/Laos.png differ diff --git a/flags/flags/flat/64/Latvia.png b/flags/flags/flat/64/Latvia.png new file mode 100644 index 0000000..1f8bdac Binary files /dev/null and b/flags/flags/flat/64/Latvia.png differ diff --git a/flags/flags/flat/64/Lebanon.png b/flags/flags/flat/64/Lebanon.png new file mode 100644 index 0000000..a9ffdbc Binary files /dev/null and b/flags/flags/flat/64/Lebanon.png differ diff --git a/flags/flags/flat/64/Lesotho.png b/flags/flags/flat/64/Lesotho.png new file mode 100644 index 0000000..598747e Binary files /dev/null and b/flags/flags/flat/64/Lesotho.png differ diff --git a/flags/flags/flat/64/Liberia.png b/flags/flags/flat/64/Liberia.png new file mode 100644 index 0000000..73aa178 Binary files /dev/null and b/flags/flags/flat/64/Liberia.png differ diff --git a/flags/flags/flat/64/Libya.png b/flags/flags/flat/64/Libya.png new file mode 100644 index 0000000..98f7a4e Binary files /dev/null and b/flags/flags/flat/64/Libya.png differ diff --git a/flags/flags/flat/64/Liechtenstein.png b/flags/flags/flat/64/Liechtenstein.png new file mode 100644 index 0000000..791b27a Binary files /dev/null and b/flags/flags/flat/64/Liechtenstein.png differ diff --git a/flags/flags/flat/64/Lithuania.png b/flags/flags/flat/64/Lithuania.png new file mode 100644 index 0000000..907db39 Binary files /dev/null and b/flags/flags/flat/64/Lithuania.png differ diff --git a/flags/flags/flat/64/Luxembourg.png b/flags/flags/flat/64/Luxembourg.png new file mode 100644 index 0000000..4357a46 Binary files /dev/null and b/flags/flags/flat/64/Luxembourg.png differ diff --git a/flags/flags/flat/64/Macau.png b/flags/flags/flat/64/Macau.png new file mode 100644 index 0000000..a68ca49 Binary files /dev/null and b/flags/flags/flat/64/Macau.png differ diff --git a/flags/flags/flat/64/Macedonia.png b/flags/flags/flat/64/Macedonia.png new file mode 100644 index 0000000..38bb51a Binary files /dev/null and b/flags/flags/flat/64/Macedonia.png differ diff --git a/flags/flags/flat/64/Madagascar.png b/flags/flags/flat/64/Madagascar.png new file mode 100644 index 0000000..f89c650 Binary files /dev/null and b/flags/flags/flat/64/Madagascar.png differ diff --git a/flags/flags/flat/64/Malawi.png b/flags/flags/flat/64/Malawi.png new file mode 100644 index 0000000..b8bd61c Binary files /dev/null and b/flags/flags/flat/64/Malawi.png differ diff --git a/flags/flags/flat/64/Malaysia.png b/flags/flags/flat/64/Malaysia.png new file mode 100644 index 0000000..50bc61d Binary files /dev/null and b/flags/flags/flat/64/Malaysia.png differ diff --git a/flags/flags/flat/64/Maldives.png b/flags/flags/flat/64/Maldives.png new file mode 100644 index 0000000..c41df6d Binary files /dev/null and b/flags/flags/flat/64/Maldives.png differ diff --git a/flags/flags/flat/64/Mali.png b/flags/flags/flat/64/Mali.png new file mode 100644 index 0000000..6e73f35 Binary files /dev/null and b/flags/flags/flat/64/Mali.png differ diff --git a/flags/flags/flat/64/Malta.png b/flags/flags/flat/64/Malta.png new file mode 100644 index 0000000..fcc27ab Binary files /dev/null and b/flags/flags/flat/64/Malta.png differ diff --git a/flags/flags/flat/64/Mars.png b/flags/flags/flat/64/Mars.png new file mode 100644 index 0000000..f3609b7 Binary files /dev/null and b/flags/flags/flat/64/Mars.png differ diff --git a/flags/flags/flat/64/Marshall-Islands.png b/flags/flags/flat/64/Marshall-Islands.png new file mode 100644 index 0000000..a240d70 Binary files /dev/null and b/flags/flags/flat/64/Marshall-Islands.png differ diff --git a/flags/flags/flat/64/Mauritania.png b/flags/flags/flat/64/Mauritania.png new file mode 100644 index 0000000..fb2ac85 Binary files /dev/null and b/flags/flags/flat/64/Mauritania.png differ diff --git a/flags/flags/flat/64/Mauritius.png b/flags/flags/flat/64/Mauritius.png new file mode 100644 index 0000000..176391e Binary files /dev/null and b/flags/flags/flat/64/Mauritius.png differ diff --git a/flags/flags/flat/64/Mayotte.png b/flags/flags/flat/64/Mayotte.png new file mode 100644 index 0000000..1ea71d4 Binary files /dev/null and b/flags/flags/flat/64/Mayotte.png differ diff --git a/flags/flags/flat/64/Mexico.png b/flags/flags/flat/64/Mexico.png new file mode 100644 index 0000000..7bc656c Binary files /dev/null and b/flags/flags/flat/64/Mexico.png differ diff --git a/flags/flags/flat/64/Micronesia.png b/flags/flags/flat/64/Micronesia.png new file mode 100644 index 0000000..be7af70 Binary files /dev/null and b/flags/flags/flat/64/Micronesia.png differ diff --git a/flags/flags/flat/64/Moldova.png b/flags/flags/flat/64/Moldova.png new file mode 100644 index 0000000..7bd750c Binary files /dev/null and b/flags/flags/flat/64/Moldova.png differ diff --git a/flags/flags/flat/64/Monaco.png b/flags/flags/flat/64/Monaco.png new file mode 100644 index 0000000..7fb00cf Binary files /dev/null and b/flags/flags/flat/64/Monaco.png differ diff --git a/flags/flags/flat/64/Mongolia.png b/flags/flags/flat/64/Mongolia.png new file mode 100644 index 0000000..492d87e Binary files /dev/null and b/flags/flags/flat/64/Mongolia.png differ diff --git a/flags/flags/flat/64/Montenegro.png b/flags/flags/flat/64/Montenegro.png new file mode 100644 index 0000000..113a2bc Binary files /dev/null and b/flags/flags/flat/64/Montenegro.png differ diff --git a/flags/flags/flat/64/Montserrat.png b/flags/flags/flat/64/Montserrat.png new file mode 100644 index 0000000..9662beb Binary files /dev/null and b/flags/flags/flat/64/Montserrat.png differ diff --git a/flags/flags/flat/64/Morocco.png b/flags/flags/flat/64/Morocco.png new file mode 100644 index 0000000..e5b2280 Binary files /dev/null and b/flags/flags/flat/64/Morocco.png differ diff --git a/flags/flags/flat/64/Mozambique.png b/flags/flags/flat/64/Mozambique.png new file mode 100644 index 0000000..5b677a8 Binary files /dev/null and b/flags/flags/flat/64/Mozambique.png differ diff --git a/flags/flags/flat/64/Myanmar.png b/flags/flags/flat/64/Myanmar.png new file mode 100644 index 0000000..ddaab40 Binary files /dev/null and b/flags/flags/flat/64/Myanmar.png differ diff --git a/flags/flags/flat/64/NATO.png b/flags/flags/flat/64/NATO.png new file mode 100644 index 0000000..7d59ce9 Binary files /dev/null and b/flags/flags/flat/64/NATO.png differ diff --git a/flags/flags/flat/64/Nagorno-Karabakh.png b/flags/flags/flat/64/Nagorno-Karabakh.png new file mode 100644 index 0000000..65fc50c Binary files /dev/null and b/flags/flags/flat/64/Nagorno-Karabakh.png differ diff --git a/flags/flags/flat/64/Namibia.png b/flags/flags/flat/64/Namibia.png new file mode 100644 index 0000000..879cbdf Binary files /dev/null and b/flags/flags/flat/64/Namibia.png differ diff --git a/flags/flags/flat/64/Nauru.png b/flags/flags/flat/64/Nauru.png new file mode 100644 index 0000000..8c1529d Binary files /dev/null and b/flags/flags/flat/64/Nauru.png differ diff --git a/flags/flags/flat/64/Nepal.png b/flags/flags/flat/64/Nepal.png new file mode 100644 index 0000000..bbfef28 Binary files /dev/null and b/flags/flags/flat/64/Nepal.png differ diff --git a/flags/flags/flat/64/Netherlands-Antilles.png b/flags/flags/flat/64/Netherlands-Antilles.png new file mode 100644 index 0000000..8236bfd Binary files /dev/null and b/flags/flags/flat/64/Netherlands-Antilles.png differ diff --git a/flags/flags/flat/64/Netherlands.png b/flags/flags/flat/64/Netherlands.png new file mode 100644 index 0000000..f1eece1 Binary files /dev/null and b/flags/flags/flat/64/Netherlands.png differ diff --git a/flags/flags/flat/64/New-Caledonia.png b/flags/flags/flat/64/New-Caledonia.png new file mode 100644 index 0000000..1f53a6a Binary files /dev/null and b/flags/flags/flat/64/New-Caledonia.png differ diff --git a/flags/flags/flat/64/New-Zealand.png b/flags/flags/flat/64/New-Zealand.png new file mode 100644 index 0000000..93e9267 Binary files /dev/null and b/flags/flags/flat/64/New-Zealand.png differ diff --git a/flags/flags/flat/64/Nicaragua.png b/flags/flags/flat/64/Nicaragua.png new file mode 100644 index 0000000..bebf90a Binary files /dev/null and b/flags/flags/flat/64/Nicaragua.png differ diff --git a/flags/flags/flat/64/Niger.png b/flags/flags/flat/64/Niger.png new file mode 100644 index 0000000..c77a343 Binary files /dev/null and b/flags/flags/flat/64/Niger.png differ diff --git a/flags/flags/flat/64/Nigeria.png b/flags/flags/flat/64/Nigeria.png new file mode 100644 index 0000000..8c175ed Binary files /dev/null and b/flags/flags/flat/64/Nigeria.png differ diff --git a/flags/flags/flat/64/Niue.png b/flags/flags/flat/64/Niue.png new file mode 100644 index 0000000..17e42be Binary files /dev/null and b/flags/flags/flat/64/Niue.png differ diff --git a/flags/flags/flat/64/Norfolk-Island.png b/flags/flags/flat/64/Norfolk-Island.png new file mode 100644 index 0000000..96f35b0 Binary files /dev/null and b/flags/flags/flat/64/Norfolk-Island.png differ diff --git a/flags/flags/flat/64/North-Korea.png b/flags/flags/flat/64/North-Korea.png new file mode 100644 index 0000000..ee76832 Binary files /dev/null and b/flags/flags/flat/64/North-Korea.png differ diff --git a/flags/flags/flat/64/Northern-Cyprus.png b/flags/flags/flat/64/Northern-Cyprus.png new file mode 100644 index 0000000..e6deb7b Binary files /dev/null and b/flags/flags/flat/64/Northern-Cyprus.png differ diff --git a/flags/flags/flat/64/Northern-Mariana-Islands.png b/flags/flags/flat/64/Northern-Mariana-Islands.png new file mode 100644 index 0000000..9ee8417 Binary files /dev/null and b/flags/flags/flat/64/Northern-Mariana-Islands.png differ diff --git a/flags/flags/flat/64/Norway.png b/flags/flags/flat/64/Norway.png new file mode 100644 index 0000000..e510202 Binary files /dev/null and b/flags/flags/flat/64/Norway.png differ diff --git a/flags/flags/flat/64/Olympics.png b/flags/flags/flat/64/Olympics.png new file mode 100644 index 0000000..4f725c8 Binary files /dev/null and b/flags/flags/flat/64/Olympics.png differ diff --git a/flags/flags/flat/64/Oman.png b/flags/flags/flat/64/Oman.png new file mode 100644 index 0000000..277a288 Binary files /dev/null and b/flags/flags/flat/64/Oman.png differ diff --git a/flags/flags/flat/64/Pakistan.png b/flags/flags/flat/64/Pakistan.png new file mode 100644 index 0000000..dddac0a Binary files /dev/null and b/flags/flags/flat/64/Pakistan.png differ diff --git a/flags/flags/flat/64/Palau.png b/flags/flags/flat/64/Palau.png new file mode 100644 index 0000000..ff39886 Binary files /dev/null and b/flags/flags/flat/64/Palau.png differ diff --git a/flags/flags/flat/64/Palestine.png b/flags/flags/flat/64/Palestine.png new file mode 100644 index 0000000..b7cbe1c Binary files /dev/null and b/flags/flags/flat/64/Palestine.png differ diff --git a/flags/flags/flat/64/Panama.png b/flags/flags/flat/64/Panama.png new file mode 100644 index 0000000..b1e97f8 Binary files /dev/null and b/flags/flags/flat/64/Panama.png differ diff --git a/flags/flags/flat/64/Papua-New-Guinea.png b/flags/flags/flat/64/Papua-New-Guinea.png new file mode 100644 index 0000000..98b81b1 Binary files /dev/null and b/flags/flags/flat/64/Papua-New-Guinea.png differ diff --git a/flags/flags/flat/64/Paraguay.png b/flags/flags/flat/64/Paraguay.png new file mode 100644 index 0000000..04f5d9a Binary files /dev/null and b/flags/flags/flat/64/Paraguay.png differ diff --git a/flags/flags/flat/64/Peru.png b/flags/flags/flat/64/Peru.png new file mode 100644 index 0000000..48c1203 Binary files /dev/null and b/flags/flags/flat/64/Peru.png differ diff --git a/flags/flags/flat/64/Philippines.png b/flags/flags/flat/64/Philippines.png new file mode 100644 index 0000000..63c97db Binary files /dev/null and b/flags/flags/flat/64/Philippines.png differ diff --git a/flags/flags/flat/64/Pitcairn-Islands.png b/flags/flags/flat/64/Pitcairn-Islands.png new file mode 100644 index 0000000..ecc46da Binary files /dev/null and b/flags/flags/flat/64/Pitcairn-Islands.png differ diff --git a/flags/flags/flat/64/Poland.png b/flags/flags/flat/64/Poland.png new file mode 100644 index 0000000..f29c716 Binary files /dev/null and b/flags/flags/flat/64/Poland.png differ diff --git a/flags/flags/flat/64/Portugal.png b/flags/flags/flat/64/Portugal.png new file mode 100644 index 0000000..abdbf31 Binary files /dev/null and b/flags/flags/flat/64/Portugal.png differ diff --git a/flags/flags/flat/64/Puerto-Rico.png b/flags/flags/flat/64/Puerto-Rico.png new file mode 100644 index 0000000..42796fe Binary files /dev/null and b/flags/flags/flat/64/Puerto-Rico.png differ diff --git a/flags/flags/flat/64/Qatar.png b/flags/flags/flat/64/Qatar.png new file mode 100644 index 0000000..3bf9219 Binary files /dev/null and b/flags/flags/flat/64/Qatar.png differ diff --git a/flags/flags/flat/64/Red-Cross.png b/flags/flags/flat/64/Red-Cross.png new file mode 100644 index 0000000..20eed4b Binary files /dev/null and b/flags/flags/flat/64/Red-Cross.png differ diff --git a/flags/flags/flat/64/Republic-of-the-Congo.png b/flags/flags/flat/64/Republic-of-the-Congo.png new file mode 100644 index 0000000..187226c Binary files /dev/null and b/flags/flags/flat/64/Republic-of-the-Congo.png differ diff --git a/flags/flags/flat/64/Romania.png b/flags/flags/flat/64/Romania.png new file mode 100644 index 0000000..5968cb1 Binary files /dev/null and b/flags/flags/flat/64/Romania.png differ diff --git a/flags/flags/flat/64/Russia.png b/flags/flags/flat/64/Russia.png new file mode 100644 index 0000000..e87d758 Binary files /dev/null and b/flags/flags/flat/64/Russia.png differ diff --git a/flags/flags/flat/64/Rwanda.png b/flags/flags/flat/64/Rwanda.png new file mode 100644 index 0000000..4898fcc Binary files /dev/null and b/flags/flags/flat/64/Rwanda.png differ diff --git a/flags/flags/flat/64/Saint-Barthelemy.png b/flags/flags/flat/64/Saint-Barthelemy.png new file mode 100644 index 0000000..bdac5e0 Binary files /dev/null and b/flags/flags/flat/64/Saint-Barthelemy.png differ diff --git a/flags/flags/flat/64/Saint-Helena.png b/flags/flags/flat/64/Saint-Helena.png new file mode 100644 index 0000000..dd89323 Binary files /dev/null and b/flags/flags/flat/64/Saint-Helena.png differ diff --git a/flags/flags/flat/64/Saint-Kitts-and-Nevis.png b/flags/flags/flat/64/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..a5c0ffb Binary files /dev/null and b/flags/flags/flat/64/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/flat/64/Saint-Lucia.png b/flags/flags/flat/64/Saint-Lucia.png new file mode 100644 index 0000000..a2016b2 Binary files /dev/null and b/flags/flags/flat/64/Saint-Lucia.png differ diff --git a/flags/flags/flat/64/Saint-Vincent-and-the-Grenadines.png b/flags/flags/flat/64/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..28aad72 Binary files /dev/null and b/flags/flags/flat/64/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/flat/64/Samoa.png b/flags/flags/flat/64/Samoa.png new file mode 100644 index 0000000..3942e20 Binary files /dev/null and b/flags/flags/flat/64/Samoa.png differ diff --git a/flags/flags/flat/64/San-Marino.png b/flags/flags/flat/64/San-Marino.png new file mode 100644 index 0000000..944ba86 Binary files /dev/null and b/flags/flags/flat/64/San-Marino.png differ diff --git a/flags/flags/flat/64/Sao-Tome-and-Principe.png b/flags/flags/flat/64/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..c5952d3 Binary files /dev/null and b/flags/flags/flat/64/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/flat/64/Saudi-Arabia.png b/flags/flags/flat/64/Saudi-Arabia.png new file mode 100644 index 0000000..87c67b0 Binary files /dev/null and b/flags/flags/flat/64/Saudi-Arabia.png differ diff --git a/flags/flags/flat/64/Scotland.png b/flags/flags/flat/64/Scotland.png new file mode 100644 index 0000000..15ef0d8 Binary files /dev/null and b/flags/flags/flat/64/Scotland.png differ diff --git a/flags/flags/flat/64/Senegal.png b/flags/flags/flat/64/Senegal.png new file mode 100644 index 0000000..7c90de1 Binary files /dev/null and b/flags/flags/flat/64/Senegal.png differ diff --git a/flags/flags/flat/64/Serbia.png b/flags/flags/flat/64/Serbia.png new file mode 100644 index 0000000..7b3c823 Binary files /dev/null and b/flags/flags/flat/64/Serbia.png differ diff --git a/flags/flags/flat/64/Seychelles.png b/flags/flags/flat/64/Seychelles.png new file mode 100644 index 0000000..f3d60e9 Binary files /dev/null and b/flags/flags/flat/64/Seychelles.png differ diff --git a/flags/flags/flat/64/Sierra-Leone.png b/flags/flags/flat/64/Sierra-Leone.png new file mode 100644 index 0000000..d36d704 Binary files /dev/null and b/flags/flags/flat/64/Sierra-Leone.png differ diff --git a/flags/flags/flat/64/Singapore.png b/flags/flags/flat/64/Singapore.png new file mode 100644 index 0000000..27e950c Binary files /dev/null and b/flags/flags/flat/64/Singapore.png differ diff --git a/flags/flags/flat/64/Slovakia.png b/flags/flags/flat/64/Slovakia.png new file mode 100644 index 0000000..a1540e1 Binary files /dev/null and b/flags/flags/flat/64/Slovakia.png differ diff --git a/flags/flags/flat/64/Slovenia.png b/flags/flags/flat/64/Slovenia.png new file mode 100644 index 0000000..2a52b54 Binary files /dev/null and b/flags/flags/flat/64/Slovenia.png differ diff --git a/flags/flags/flat/64/Solomon-Islands.png b/flags/flags/flat/64/Solomon-Islands.png new file mode 100644 index 0000000..43b9068 Binary files /dev/null and b/flags/flags/flat/64/Solomon-Islands.png differ diff --git a/flags/flags/flat/64/Somalia.png b/flags/flags/flat/64/Somalia.png new file mode 100644 index 0000000..a3f52cf Binary files /dev/null and b/flags/flags/flat/64/Somalia.png differ diff --git a/flags/flags/flat/64/Somaliland.png b/flags/flags/flat/64/Somaliland.png new file mode 100644 index 0000000..d1123c5 Binary files /dev/null and b/flags/flags/flat/64/Somaliland.png differ diff --git a/flags/flags/flat/64/South-Africa.png b/flags/flags/flat/64/South-Africa.png new file mode 100644 index 0000000..c426db6 Binary files /dev/null and b/flags/flags/flat/64/South-Africa.png differ diff --git a/flags/flags/flat/64/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/flat/64/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..a216c57 Binary files /dev/null and b/flags/flags/flat/64/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/flat/64/South-Korea.png b/flags/flags/flat/64/South-Korea.png new file mode 100644 index 0000000..b3159e8 Binary files /dev/null and b/flags/flags/flat/64/South-Korea.png differ diff --git a/flags/flags/flat/64/South-Ossetia.png b/flags/flags/flat/64/South-Ossetia.png new file mode 100644 index 0000000..4fba485 Binary files /dev/null and b/flags/flags/flat/64/South-Ossetia.png differ diff --git a/flags/flags/flat/64/South-Sudan.png b/flags/flags/flat/64/South-Sudan.png new file mode 100644 index 0000000..15ff92b Binary files /dev/null and b/flags/flags/flat/64/South-Sudan.png differ diff --git a/flags/flags/flat/64/Spain.png b/flags/flags/flat/64/Spain.png new file mode 100644 index 0000000..3f7e39c Binary files /dev/null and b/flags/flags/flat/64/Spain.png differ diff --git a/flags/flags/flat/64/Sri-Lanka.png b/flags/flags/flat/64/Sri-Lanka.png new file mode 100644 index 0000000..ecc6f0d Binary files /dev/null and b/flags/flags/flat/64/Sri-Lanka.png differ diff --git a/flags/flags/flat/64/Sudan.png b/flags/flags/flat/64/Sudan.png new file mode 100644 index 0000000..6d364de Binary files /dev/null and b/flags/flags/flat/64/Sudan.png differ diff --git a/flags/flags/flat/64/Suriname.png b/flags/flags/flat/64/Suriname.png new file mode 100644 index 0000000..973655f Binary files /dev/null and b/flags/flags/flat/64/Suriname.png differ diff --git a/flags/flags/flat/64/Swaziland.png b/flags/flags/flat/64/Swaziland.png new file mode 100644 index 0000000..7889710 Binary files /dev/null and b/flags/flags/flat/64/Swaziland.png differ diff --git a/flags/flags/flat/64/Sweden.png b/flags/flags/flat/64/Sweden.png new file mode 100644 index 0000000..3dbe1ec Binary files /dev/null and b/flags/flags/flat/64/Sweden.png differ diff --git a/flags/flags/flat/64/Switzerland.png b/flags/flags/flat/64/Switzerland.png new file mode 100644 index 0000000..368e226 Binary files /dev/null and b/flags/flags/flat/64/Switzerland.png differ diff --git a/flags/flags/flat/64/Syria.png b/flags/flags/flat/64/Syria.png new file mode 100644 index 0000000..897c6b3 Binary files /dev/null and b/flags/flags/flat/64/Syria.png differ diff --git a/flags/flags/flat/64/Taiwan.png b/flags/flags/flat/64/Taiwan.png new file mode 100644 index 0000000..044f0fa Binary files /dev/null and b/flags/flags/flat/64/Taiwan.png differ diff --git a/flags/flags/flat/64/Tajikistan.png b/flags/flags/flat/64/Tajikistan.png new file mode 100644 index 0000000..7591f28 Binary files /dev/null and b/flags/flags/flat/64/Tajikistan.png differ diff --git a/flags/flags/flat/64/Tanzania.png b/flags/flags/flat/64/Tanzania.png new file mode 100644 index 0000000..e034a04 Binary files /dev/null and b/flags/flags/flat/64/Tanzania.png differ diff --git a/flags/flags/flat/64/Thailand.png b/flags/flags/flat/64/Thailand.png new file mode 100644 index 0000000..eb652f2 Binary files /dev/null and b/flags/flags/flat/64/Thailand.png differ diff --git a/flags/flags/flat/64/Togo.png b/flags/flags/flat/64/Togo.png new file mode 100644 index 0000000..66eae0f Binary files /dev/null and b/flags/flags/flat/64/Togo.png differ diff --git a/flags/flags/flat/64/Tokelau.png b/flags/flags/flat/64/Tokelau.png new file mode 100644 index 0000000..e8b3855 Binary files /dev/null and b/flags/flags/flat/64/Tokelau.png differ diff --git a/flags/flags/flat/64/Tonga.png b/flags/flags/flat/64/Tonga.png new file mode 100644 index 0000000..e1d96b3 Binary files /dev/null and b/flags/flags/flat/64/Tonga.png differ diff --git a/flags/flags/flat/64/Trinidad-and-Tobago.png b/flags/flags/flat/64/Trinidad-and-Tobago.png new file mode 100644 index 0000000..ca612a6 Binary files /dev/null and b/flags/flags/flat/64/Trinidad-and-Tobago.png differ diff --git a/flags/flags/flat/64/Tunisia.png b/flags/flags/flat/64/Tunisia.png new file mode 100644 index 0000000..92ec1ef Binary files /dev/null and b/flags/flags/flat/64/Tunisia.png differ diff --git a/flags/flags/flat/64/Turkey.png b/flags/flags/flat/64/Turkey.png new file mode 100644 index 0000000..838049d Binary files /dev/null and b/flags/flags/flat/64/Turkey.png differ diff --git a/flags/flags/flat/64/Turkmenistan.png b/flags/flags/flat/64/Turkmenistan.png new file mode 100644 index 0000000..9d82abc Binary files /dev/null and b/flags/flags/flat/64/Turkmenistan.png differ diff --git a/flags/flags/flat/64/Turks-and-Caicos-Islands.png b/flags/flags/flat/64/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..5b794ec Binary files /dev/null and b/flags/flags/flat/64/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/flat/64/Tuvalu.png b/flags/flags/flat/64/Tuvalu.png new file mode 100644 index 0000000..94839b1 Binary files /dev/null and b/flags/flags/flat/64/Tuvalu.png differ diff --git a/flags/flags/flat/64/US-Virgin-Islands.png b/flags/flags/flat/64/US-Virgin-Islands.png new file mode 100644 index 0000000..733e515 Binary files /dev/null and b/flags/flags/flat/64/US-Virgin-Islands.png differ diff --git a/flags/flags/flat/64/Uganda.png b/flags/flags/flat/64/Uganda.png new file mode 100644 index 0000000..5a6be88 Binary files /dev/null and b/flags/flags/flat/64/Uganda.png differ diff --git a/flags/flags/flat/64/Ukraine.png b/flags/flags/flat/64/Ukraine.png new file mode 100644 index 0000000..115de4b Binary files /dev/null and b/flags/flags/flat/64/Ukraine.png differ diff --git a/flags/flags/flat/64/United-Arab-Emirates.png b/flags/flags/flat/64/United-Arab-Emirates.png new file mode 100644 index 0000000..05acc83 Binary files /dev/null and b/flags/flags/flat/64/United-Arab-Emirates.png differ diff --git a/flags/flags/flat/64/United-Kingdom.png b/flags/flags/flat/64/United-Kingdom.png new file mode 100644 index 0000000..96a97f7 Binary files /dev/null and b/flags/flags/flat/64/United-Kingdom.png differ diff --git a/flags/flags/flat/64/United-Nations.png b/flags/flags/flat/64/United-Nations.png new file mode 100644 index 0000000..6372c3b Binary files /dev/null and b/flags/flags/flat/64/United-Nations.png differ diff --git a/flags/flags/flat/64/United-States.png b/flags/flags/flat/64/United-States.png new file mode 100644 index 0000000..57f3cbe Binary files /dev/null and b/flags/flags/flat/64/United-States.png differ diff --git a/flags/flags/flat/64/Uruguay.png b/flags/flags/flat/64/Uruguay.png new file mode 100644 index 0000000..1cae642 Binary files /dev/null and b/flags/flags/flat/64/Uruguay.png differ diff --git a/flags/flags/flat/64/Uzbekistan.png b/flags/flags/flat/64/Uzbekistan.png new file mode 100644 index 0000000..a29cd4e Binary files /dev/null and b/flags/flags/flat/64/Uzbekistan.png differ diff --git a/flags/flags/flat/64/Vanuatu.png b/flags/flags/flat/64/Vanuatu.png new file mode 100644 index 0000000..10591b5 Binary files /dev/null and b/flags/flags/flat/64/Vanuatu.png differ diff --git a/flags/flags/flat/64/Vatican-City.png b/flags/flags/flat/64/Vatican-City.png new file mode 100644 index 0000000..1fd41bc Binary files /dev/null and b/flags/flags/flat/64/Vatican-City.png differ diff --git a/flags/flags/flat/64/Venezuela.png b/flags/flags/flat/64/Venezuela.png new file mode 100644 index 0000000..8281889 Binary files /dev/null and b/flags/flags/flat/64/Venezuela.png differ diff --git a/flags/flags/flat/64/Vietnam.png b/flags/flags/flat/64/Vietnam.png new file mode 100644 index 0000000..4a715d7 Binary files /dev/null and b/flags/flags/flat/64/Vietnam.png differ diff --git a/flags/flags/flat/64/Wales.png b/flags/flags/flat/64/Wales.png new file mode 100644 index 0000000..c33f9f4 Binary files /dev/null and b/flags/flags/flat/64/Wales.png differ diff --git a/flags/flags/flat/64/Wallis-And-Futuna.png b/flags/flags/flat/64/Wallis-And-Futuna.png new file mode 100644 index 0000000..0c47a29 Binary files /dev/null and b/flags/flags/flat/64/Wallis-And-Futuna.png differ diff --git a/flags/flags/flat/64/Western-Sahara.png b/flags/flags/flat/64/Western-Sahara.png new file mode 100644 index 0000000..7b4eb90 Binary files /dev/null and b/flags/flags/flat/64/Western-Sahara.png differ diff --git a/flags/flags/flat/64/Yemen.png b/flags/flags/flat/64/Yemen.png new file mode 100644 index 0000000..20c417a Binary files /dev/null and b/flags/flags/flat/64/Yemen.png differ diff --git a/flags/flags/flat/64/Zambia.png b/flags/flags/flat/64/Zambia.png new file mode 100644 index 0000000..8c876c6 Binary files /dev/null and b/flags/flags/flat/64/Zambia.png differ diff --git a/flags/flags/flat/64/Zimbabwe.png b/flags/flags/flat/64/Zimbabwe.png new file mode 100644 index 0000000..47e8aa7 Binary files /dev/null and b/flags/flags/flat/64/Zimbabwe.png differ diff --git a/flags/flags/flat/icns/Abkhazia.icns b/flags/flags/flat/icns/Abkhazia.icns new file mode 100644 index 0000000..9de99d2 Binary files /dev/null and b/flags/flags/flat/icns/Abkhazia.icns differ diff --git a/flags/flags/flat/icns/Afghanistan.icns b/flags/flags/flat/icns/Afghanistan.icns new file mode 100644 index 0000000..4e78ff6 Binary files /dev/null and b/flags/flags/flat/icns/Afghanistan.icns differ diff --git a/flags/flags/flat/icns/Aland.icns b/flags/flags/flat/icns/Aland.icns new file mode 100644 index 0000000..8bc1377 Binary files /dev/null and b/flags/flags/flat/icns/Aland.icns differ diff --git a/flags/flags/flat/icns/Albania.icns b/flags/flags/flat/icns/Albania.icns new file mode 100644 index 0000000..37f52de Binary files /dev/null and b/flags/flags/flat/icns/Albania.icns differ diff --git a/flags/flags/flat/icns/Algeria.icns b/flags/flags/flat/icns/Algeria.icns new file mode 100644 index 0000000..7fdfddd Binary files /dev/null and b/flags/flags/flat/icns/Algeria.icns differ diff --git a/flags/flags/flat/icns/American-Samoa.icns b/flags/flags/flat/icns/American-Samoa.icns new file mode 100644 index 0000000..e3fb147 Binary files /dev/null and b/flags/flags/flat/icns/American-Samoa.icns differ diff --git a/flags/flags/flat/icns/Andorra.icns b/flags/flags/flat/icns/Andorra.icns new file mode 100644 index 0000000..e988c7d Binary files /dev/null and b/flags/flags/flat/icns/Andorra.icns differ diff --git a/flags/flags/flat/icns/Angola.icns b/flags/flags/flat/icns/Angola.icns new file mode 100644 index 0000000..8616047 Binary files /dev/null and b/flags/flags/flat/icns/Angola.icns differ diff --git a/flags/flags/flat/icns/Anguilla.icns b/flags/flags/flat/icns/Anguilla.icns new file mode 100644 index 0000000..ec031d8 Binary files /dev/null and b/flags/flags/flat/icns/Anguilla.icns differ diff --git a/flags/flags/flat/icns/Antarctica.icns b/flags/flags/flat/icns/Antarctica.icns new file mode 100644 index 0000000..411cabf Binary files /dev/null and b/flags/flags/flat/icns/Antarctica.icns differ diff --git a/flags/flags/flat/icns/Antigua-and-Barbuda.icns b/flags/flags/flat/icns/Antigua-and-Barbuda.icns new file mode 100644 index 0000000..9a6d881 Binary files /dev/null and b/flags/flags/flat/icns/Antigua-and-Barbuda.icns differ diff --git a/flags/flags/flat/icns/Argentina.icns b/flags/flags/flat/icns/Argentina.icns new file mode 100644 index 0000000..30d7c7a Binary files /dev/null and b/flags/flags/flat/icns/Argentina.icns differ diff --git a/flags/flags/flat/icns/Armenia.icns b/flags/flags/flat/icns/Armenia.icns new file mode 100644 index 0000000..6fd3174 Binary files /dev/null and b/flags/flags/flat/icns/Armenia.icns differ diff --git a/flags/flags/flat/icns/Aruba.icns b/flags/flags/flat/icns/Aruba.icns new file mode 100644 index 0000000..32f2ec3 Binary files /dev/null and b/flags/flags/flat/icns/Aruba.icns differ diff --git a/flags/flags/flat/icns/Australia.icns b/flags/flags/flat/icns/Australia.icns new file mode 100644 index 0000000..0b127e9 Binary files /dev/null and b/flags/flags/flat/icns/Australia.icns differ diff --git a/flags/flags/flat/icns/Austria.icns b/flags/flags/flat/icns/Austria.icns new file mode 100644 index 0000000..11999c7 Binary files /dev/null and b/flags/flags/flat/icns/Austria.icns differ diff --git a/flags/flags/flat/icns/Azerbaijan.icns b/flags/flags/flat/icns/Azerbaijan.icns new file mode 100644 index 0000000..01ecf42 Binary files /dev/null and b/flags/flags/flat/icns/Azerbaijan.icns differ diff --git a/flags/flags/flat/icns/Bahamas.icns b/flags/flags/flat/icns/Bahamas.icns new file mode 100644 index 0000000..f275163 Binary files /dev/null and b/flags/flags/flat/icns/Bahamas.icns differ diff --git a/flags/flags/flat/icns/Bahrain.icns b/flags/flags/flat/icns/Bahrain.icns new file mode 100644 index 0000000..fb34bc5 Binary files /dev/null and b/flags/flags/flat/icns/Bahrain.icns differ diff --git a/flags/flags/flat/icns/Bangladesh.icns b/flags/flags/flat/icns/Bangladesh.icns new file mode 100644 index 0000000..2125f31 Binary files /dev/null and b/flags/flags/flat/icns/Bangladesh.icns differ diff --git a/flags/flags/flat/icns/Barbados.icns b/flags/flags/flat/icns/Barbados.icns new file mode 100644 index 0000000..89f338c Binary files /dev/null and b/flags/flags/flat/icns/Barbados.icns differ diff --git a/flags/flags/flat/icns/Belarus.icns b/flags/flags/flat/icns/Belarus.icns new file mode 100644 index 0000000..eeafd5a Binary files /dev/null and b/flags/flags/flat/icns/Belarus.icns differ diff --git a/flags/flags/flat/icns/Belgium.icns b/flags/flags/flat/icns/Belgium.icns new file mode 100644 index 0000000..9382261 Binary files /dev/null and b/flags/flags/flat/icns/Belgium.icns differ diff --git a/flags/flags/flat/icns/Belize.icns b/flags/flags/flat/icns/Belize.icns new file mode 100644 index 0000000..69d67e7 Binary files /dev/null and b/flags/flags/flat/icns/Belize.icns differ diff --git a/flags/flags/flat/icns/Benin.icns b/flags/flags/flat/icns/Benin.icns new file mode 100644 index 0000000..f32cd6f Binary files /dev/null and b/flags/flags/flat/icns/Benin.icns differ diff --git a/flags/flags/flat/icns/Bermuda.icns b/flags/flags/flat/icns/Bermuda.icns new file mode 100644 index 0000000..84c758e Binary files /dev/null and b/flags/flags/flat/icns/Bermuda.icns differ diff --git a/flags/flags/flat/icns/Bhutan.icns b/flags/flags/flat/icns/Bhutan.icns new file mode 100644 index 0000000..a3a3cb3 Binary files /dev/null and b/flags/flags/flat/icns/Bhutan.icns differ diff --git a/flags/flags/flat/icns/Bolivia.icns b/flags/flags/flat/icns/Bolivia.icns new file mode 100644 index 0000000..bc0d31d Binary files /dev/null and b/flags/flags/flat/icns/Bolivia.icns differ diff --git a/flags/flags/flat/icns/Bosnia-and-Herzegovina.icns b/flags/flags/flat/icns/Bosnia-and-Herzegovina.icns new file mode 100644 index 0000000..8b6e3bf Binary files /dev/null and b/flags/flags/flat/icns/Bosnia-and-Herzegovina.icns differ diff --git a/flags/flags/flat/icns/Botswana.icns b/flags/flags/flat/icns/Botswana.icns new file mode 100644 index 0000000..8fbaf7e Binary files /dev/null and b/flags/flags/flat/icns/Botswana.icns differ diff --git a/flags/flags/flat/icns/Brazil.icns b/flags/flags/flat/icns/Brazil.icns new file mode 100644 index 0000000..4257319 Binary files /dev/null and b/flags/flags/flat/icns/Brazil.icns differ diff --git a/flags/flags/flat/icns/British-Antarctic-Territory.icns b/flags/flags/flat/icns/British-Antarctic-Territory.icns new file mode 100644 index 0000000..05f19b0 Binary files /dev/null and b/flags/flags/flat/icns/British-Antarctic-Territory.icns differ diff --git a/flags/flags/flat/icns/British-Virgin-Islands.icns b/flags/flags/flat/icns/British-Virgin-Islands.icns new file mode 100644 index 0000000..39ffac4 Binary files /dev/null and b/flags/flags/flat/icns/British-Virgin-Islands.icns differ diff --git a/flags/flags/flat/icns/Brunei.icns b/flags/flags/flat/icns/Brunei.icns new file mode 100644 index 0000000..557123c Binary files /dev/null and b/flags/flags/flat/icns/Brunei.icns differ diff --git a/flags/flags/flat/icns/Bulgaria.icns b/flags/flags/flat/icns/Bulgaria.icns new file mode 100644 index 0000000..b429e99 Binary files /dev/null and b/flags/flags/flat/icns/Bulgaria.icns differ diff --git a/flags/flags/flat/icns/Burkina-Faso.icns b/flags/flags/flat/icns/Burkina-Faso.icns new file mode 100644 index 0000000..703fe88 Binary files /dev/null and b/flags/flags/flat/icns/Burkina-Faso.icns differ diff --git a/flags/flags/flat/icns/Burundi.icns b/flags/flags/flat/icns/Burundi.icns new file mode 100644 index 0000000..7bed862 Binary files /dev/null and b/flags/flags/flat/icns/Burundi.icns differ diff --git a/flags/flags/flat/icns/Cambodia.icns b/flags/flags/flat/icns/Cambodia.icns new file mode 100644 index 0000000..6cd9e54 Binary files /dev/null and b/flags/flags/flat/icns/Cambodia.icns differ diff --git a/flags/flags/flat/icns/Cameroon.icns b/flags/flags/flat/icns/Cameroon.icns new file mode 100644 index 0000000..312ebff Binary files /dev/null and b/flags/flags/flat/icns/Cameroon.icns differ diff --git a/flags/flags/flat/icns/Canada.icns b/flags/flags/flat/icns/Canada.icns new file mode 100644 index 0000000..99d1336 Binary files /dev/null and b/flags/flags/flat/icns/Canada.icns differ diff --git a/flags/flags/flat/icns/Cape-Verde.icns b/flags/flags/flat/icns/Cape-Verde.icns new file mode 100644 index 0000000..88e73df Binary files /dev/null and b/flags/flags/flat/icns/Cape-Verde.icns differ diff --git a/flags/flags/flat/icns/Cayman-Islands.icns b/flags/flags/flat/icns/Cayman-Islands.icns new file mode 100644 index 0000000..32a9eff Binary files /dev/null and b/flags/flags/flat/icns/Cayman-Islands.icns differ diff --git a/flags/flags/flat/icns/Central-African-Republic.icns b/flags/flags/flat/icns/Central-African-Republic.icns new file mode 100644 index 0000000..27d7de5 Binary files /dev/null and b/flags/flags/flat/icns/Central-African-Republic.icns differ diff --git a/flags/flags/flat/icns/Chad.icns b/flags/flags/flat/icns/Chad.icns new file mode 100644 index 0000000..2107e1d Binary files /dev/null and b/flags/flags/flat/icns/Chad.icns differ diff --git a/flags/flags/flat/icns/Chile.icns b/flags/flags/flat/icns/Chile.icns new file mode 100644 index 0000000..074d3c2 Binary files /dev/null and b/flags/flags/flat/icns/Chile.icns differ diff --git a/flags/flags/flat/icns/China.icns b/flags/flags/flat/icns/China.icns new file mode 100644 index 0000000..7a8f6af Binary files /dev/null and b/flags/flags/flat/icns/China.icns differ diff --git a/flags/flags/flat/icns/Christmas-Island.icns b/flags/flags/flat/icns/Christmas-Island.icns new file mode 100644 index 0000000..10050e4 Binary files /dev/null and b/flags/flags/flat/icns/Christmas-Island.icns differ diff --git a/flags/flags/flat/icns/Cocos-Keeling-Islands.icns b/flags/flags/flat/icns/Cocos-Keeling-Islands.icns new file mode 100644 index 0000000..256a062 Binary files /dev/null and b/flags/flags/flat/icns/Cocos-Keeling-Islands.icns differ diff --git a/flags/flags/flat/icns/Colombia.icns b/flags/flags/flat/icns/Colombia.icns new file mode 100644 index 0000000..4d9be46 Binary files /dev/null and b/flags/flags/flat/icns/Colombia.icns differ diff --git a/flags/flags/flat/icns/Commonwealth.icns b/flags/flags/flat/icns/Commonwealth.icns new file mode 100644 index 0000000..36403ad Binary files /dev/null and b/flags/flags/flat/icns/Commonwealth.icns differ diff --git a/flags/flags/flat/icns/Comoros.icns b/flags/flags/flat/icns/Comoros.icns new file mode 100644 index 0000000..d718595 Binary files /dev/null and b/flags/flags/flat/icns/Comoros.icns differ diff --git a/flags/flags/flat/icns/Cook-Islands.icns b/flags/flags/flat/icns/Cook-Islands.icns new file mode 100644 index 0000000..c22b35d Binary files /dev/null and b/flags/flags/flat/icns/Cook-Islands.icns differ diff --git a/flags/flags/flat/icns/Costa-Rica.icns b/flags/flags/flat/icns/Costa-Rica.icns new file mode 100644 index 0000000..668903f Binary files /dev/null and b/flags/flags/flat/icns/Costa-Rica.icns differ diff --git a/flags/flags/flat/icns/Cote-dIvoire.icns b/flags/flags/flat/icns/Cote-dIvoire.icns new file mode 100644 index 0000000..00cc073 Binary files /dev/null and b/flags/flags/flat/icns/Cote-dIvoire.icns differ diff --git a/flags/flags/flat/icns/Croatia.icns b/flags/flags/flat/icns/Croatia.icns new file mode 100644 index 0000000..346ee62 Binary files /dev/null and b/flags/flags/flat/icns/Croatia.icns differ diff --git a/flags/flags/flat/icns/Cuba.icns b/flags/flags/flat/icns/Cuba.icns new file mode 100644 index 0000000..e6ff79f Binary files /dev/null and b/flags/flags/flat/icns/Cuba.icns differ diff --git a/flags/flags/flat/icns/Cyprus.icns b/flags/flags/flat/icns/Cyprus.icns new file mode 100644 index 0000000..fd571a5 Binary files /dev/null and b/flags/flags/flat/icns/Cyprus.icns differ diff --git a/flags/flags/flat/icns/Czech-Republic.icns b/flags/flags/flat/icns/Czech-Republic.icns new file mode 100644 index 0000000..0965d64 Binary files /dev/null and b/flags/flags/flat/icns/Czech-Republic.icns differ diff --git a/flags/flags/flat/icns/Democratic-Republic-of-the-Congo.icns b/flags/flags/flat/icns/Democratic-Republic-of-the-Congo.icns new file mode 100644 index 0000000..f04f1ae Binary files /dev/null and b/flags/flags/flat/icns/Democratic-Republic-of-the-Congo.icns differ diff --git a/flags/flags/flat/icns/Denmark.icns b/flags/flags/flat/icns/Denmark.icns new file mode 100644 index 0000000..8518b55 Binary files /dev/null and b/flags/flags/flat/icns/Denmark.icns differ diff --git a/flags/flags/flat/icns/Djibouti.icns b/flags/flags/flat/icns/Djibouti.icns new file mode 100644 index 0000000..64b0bf9 Binary files /dev/null and b/flags/flags/flat/icns/Djibouti.icns differ diff --git a/flags/flags/flat/icns/Dominica.icns b/flags/flags/flat/icns/Dominica.icns new file mode 100644 index 0000000..832a177 Binary files /dev/null and b/flags/flags/flat/icns/Dominica.icns differ diff --git a/flags/flags/flat/icns/Dominican-Republic.icns b/flags/flags/flat/icns/Dominican-Republic.icns new file mode 100644 index 0000000..2cd5737 Binary files /dev/null and b/flags/flags/flat/icns/Dominican-Republic.icns differ diff --git a/flags/flags/flat/icns/East-Timor.icns b/flags/flags/flat/icns/East-Timor.icns new file mode 100644 index 0000000..f4dfa77 Binary files /dev/null and b/flags/flags/flat/icns/East-Timor.icns differ diff --git a/flags/flags/flat/icns/Ecuador.icns b/flags/flags/flat/icns/Ecuador.icns new file mode 100644 index 0000000..81fcac2 Binary files /dev/null and b/flags/flags/flat/icns/Ecuador.icns differ diff --git a/flags/flags/flat/icns/Egypt.icns b/flags/flags/flat/icns/Egypt.icns new file mode 100644 index 0000000..72b0f49 Binary files /dev/null and b/flags/flags/flat/icns/Egypt.icns differ diff --git a/flags/flags/flat/icns/El-Salvador.icns b/flags/flags/flat/icns/El-Salvador.icns new file mode 100644 index 0000000..9b3caea Binary files /dev/null and b/flags/flags/flat/icns/El-Salvador.icns differ diff --git a/flags/flags/flat/icns/England.icns b/flags/flags/flat/icns/England.icns new file mode 100644 index 0000000..f5e37b2 Binary files /dev/null and b/flags/flags/flat/icns/England.icns differ diff --git a/flags/flags/flat/icns/Equatorial-Guinea.icns b/flags/flags/flat/icns/Equatorial-Guinea.icns new file mode 100644 index 0000000..d5a3851 Binary files /dev/null and b/flags/flags/flat/icns/Equatorial-Guinea.icns differ diff --git a/flags/flags/flat/icns/Eritrea.icns b/flags/flags/flat/icns/Eritrea.icns new file mode 100644 index 0000000..807deaf Binary files /dev/null and b/flags/flags/flat/icns/Eritrea.icns differ diff --git a/flags/flags/flat/icns/Estonia.icns b/flags/flags/flat/icns/Estonia.icns new file mode 100644 index 0000000..6b77365 Binary files /dev/null and b/flags/flags/flat/icns/Estonia.icns differ diff --git a/flags/flags/flat/icns/Ethiopia.icns b/flags/flags/flat/icns/Ethiopia.icns new file mode 100644 index 0000000..9860902 Binary files /dev/null and b/flags/flags/flat/icns/Ethiopia.icns differ diff --git a/flags/flags/flat/icns/European-Union.icns b/flags/flags/flat/icns/European-Union.icns new file mode 100644 index 0000000..d063a49 Binary files /dev/null and b/flags/flags/flat/icns/European-Union.icns differ diff --git a/flags/flags/flat/icns/Falkland-Islands.icns b/flags/flags/flat/icns/Falkland-Islands.icns new file mode 100644 index 0000000..c0caddc Binary files /dev/null and b/flags/flags/flat/icns/Falkland-Islands.icns differ diff --git a/flags/flags/flat/icns/Faroes.icns b/flags/flags/flat/icns/Faroes.icns new file mode 100644 index 0000000..dbe5e58 Binary files /dev/null and b/flags/flags/flat/icns/Faroes.icns differ diff --git a/flags/flags/flat/icns/Fiji.icns b/flags/flags/flat/icns/Fiji.icns new file mode 100644 index 0000000..5382e11 Binary files /dev/null and b/flags/flags/flat/icns/Fiji.icns differ diff --git a/flags/flags/flat/icns/Finland.icns b/flags/flags/flat/icns/Finland.icns new file mode 100644 index 0000000..db565b9 Binary files /dev/null and b/flags/flags/flat/icns/Finland.icns differ diff --git a/flags/flags/flat/icns/France.icns b/flags/flags/flat/icns/France.icns new file mode 100644 index 0000000..fd96924 Binary files /dev/null and b/flags/flags/flat/icns/France.icns differ diff --git a/flags/flags/flat/icns/French-Polynesia.icns b/flags/flags/flat/icns/French-Polynesia.icns new file mode 100644 index 0000000..bec5e8d Binary files /dev/null and b/flags/flags/flat/icns/French-Polynesia.icns differ diff --git a/flags/flags/flat/icns/French-Southern-Territories.icns b/flags/flags/flat/icns/French-Southern-Territories.icns new file mode 100644 index 0000000..8e83108 Binary files /dev/null and b/flags/flags/flat/icns/French-Southern-Territories.icns differ diff --git a/flags/flags/flat/icns/Gabon.icns b/flags/flags/flat/icns/Gabon.icns new file mode 100644 index 0000000..aeb0d26 Binary files /dev/null and b/flags/flags/flat/icns/Gabon.icns differ diff --git a/flags/flags/flat/icns/Gambia.icns b/flags/flags/flat/icns/Gambia.icns new file mode 100644 index 0000000..d6a10c0 Binary files /dev/null and b/flags/flags/flat/icns/Gambia.icns differ diff --git a/flags/flags/flat/icns/Georgia.icns b/flags/flags/flat/icns/Georgia.icns new file mode 100644 index 0000000..46f1d6e Binary files /dev/null and b/flags/flags/flat/icns/Georgia.icns differ diff --git a/flags/flags/flat/icns/Germany.icns b/flags/flags/flat/icns/Germany.icns new file mode 100644 index 0000000..53fc8ac Binary files /dev/null and b/flags/flags/flat/icns/Germany.icns differ diff --git a/flags/flags/flat/icns/Ghana.icns b/flags/flags/flat/icns/Ghana.icns new file mode 100644 index 0000000..ff1326f Binary files /dev/null and b/flags/flags/flat/icns/Ghana.icns differ diff --git a/flags/flags/flat/icns/Gibraltar.icns b/flags/flags/flat/icns/Gibraltar.icns new file mode 100644 index 0000000..d27c1e9 Binary files /dev/null and b/flags/flags/flat/icns/Gibraltar.icns differ diff --git a/flags/flags/flat/icns/GoSquared.icns b/flags/flags/flat/icns/GoSquared.icns new file mode 100644 index 0000000..db112e9 Binary files /dev/null and b/flags/flags/flat/icns/GoSquared.icns differ diff --git a/flags/flags/flat/icns/Greece.icns b/flags/flags/flat/icns/Greece.icns new file mode 100644 index 0000000..33de70f Binary files /dev/null and b/flags/flags/flat/icns/Greece.icns differ diff --git a/flags/flags/flat/icns/Greenland.icns b/flags/flags/flat/icns/Greenland.icns new file mode 100644 index 0000000..15df6a0 Binary files /dev/null and b/flags/flags/flat/icns/Greenland.icns differ diff --git a/flags/flags/flat/icns/Grenada.icns b/flags/flags/flat/icns/Grenada.icns new file mode 100644 index 0000000..b5b9739 Binary files /dev/null and b/flags/flags/flat/icns/Grenada.icns differ diff --git a/flags/flags/flat/icns/Guam.icns b/flags/flags/flat/icns/Guam.icns new file mode 100644 index 0000000..aa5f45e Binary files /dev/null and b/flags/flags/flat/icns/Guam.icns differ diff --git a/flags/flags/flat/icns/Guatemala.icns b/flags/flags/flat/icns/Guatemala.icns new file mode 100644 index 0000000..e80667c Binary files /dev/null and b/flags/flags/flat/icns/Guatemala.icns differ diff --git a/flags/flags/flat/icns/Guernsey.icns b/flags/flags/flat/icns/Guernsey.icns new file mode 100644 index 0000000..6b70daf Binary files /dev/null and b/flags/flags/flat/icns/Guernsey.icns differ diff --git a/flags/flags/flat/icns/Guinea-Bissau.icns b/flags/flags/flat/icns/Guinea-Bissau.icns new file mode 100644 index 0000000..2728ce6 Binary files /dev/null and b/flags/flags/flat/icns/Guinea-Bissau.icns differ diff --git a/flags/flags/flat/icns/Guinea.icns b/flags/flags/flat/icns/Guinea.icns new file mode 100644 index 0000000..939f3e2 Binary files /dev/null and b/flags/flags/flat/icns/Guinea.icns differ diff --git a/flags/flags/flat/icns/Guyana.icns b/flags/flags/flat/icns/Guyana.icns new file mode 100644 index 0000000..85c8acd Binary files /dev/null and b/flags/flags/flat/icns/Guyana.icns differ diff --git a/flags/flags/flat/icns/Haiti.icns b/flags/flags/flat/icns/Haiti.icns new file mode 100644 index 0000000..ef4b7ce Binary files /dev/null and b/flags/flags/flat/icns/Haiti.icns differ diff --git a/flags/flags/flat/icns/Honduras.icns b/flags/flags/flat/icns/Honduras.icns new file mode 100644 index 0000000..a3180ee Binary files /dev/null and b/flags/flags/flat/icns/Honduras.icns differ diff --git a/flags/flags/flat/icns/Hong-Kong.icns b/flags/flags/flat/icns/Hong-Kong.icns new file mode 100644 index 0000000..e295167 Binary files /dev/null and b/flags/flags/flat/icns/Hong-Kong.icns differ diff --git a/flags/flags/flat/icns/Hungary.icns b/flags/flags/flat/icns/Hungary.icns new file mode 100644 index 0000000..f6658da Binary files /dev/null and b/flags/flags/flat/icns/Hungary.icns differ diff --git a/flags/flags/flat/icns/Iceland.icns b/flags/flags/flat/icns/Iceland.icns new file mode 100644 index 0000000..86e3dcb Binary files /dev/null and b/flags/flags/flat/icns/Iceland.icns differ diff --git a/flags/flags/flat/icns/India.icns b/flags/flags/flat/icns/India.icns new file mode 100644 index 0000000..405b822 Binary files /dev/null and b/flags/flags/flat/icns/India.icns differ diff --git a/flags/flags/flat/icns/Indonesia.icns b/flags/flags/flat/icns/Indonesia.icns new file mode 100644 index 0000000..66522a4 Binary files /dev/null and b/flags/flags/flat/icns/Indonesia.icns differ diff --git a/flags/flags/flat/icns/Iran.icns b/flags/flags/flat/icns/Iran.icns new file mode 100644 index 0000000..d67b7e5 Binary files /dev/null and b/flags/flags/flat/icns/Iran.icns differ diff --git a/flags/flags/flat/icns/Iraq.icns b/flags/flags/flat/icns/Iraq.icns new file mode 100644 index 0000000..0736da8 Binary files /dev/null and b/flags/flags/flat/icns/Iraq.icns differ diff --git a/flags/flags/flat/icns/Ireland.icns b/flags/flags/flat/icns/Ireland.icns new file mode 100644 index 0000000..9488251 Binary files /dev/null and b/flags/flags/flat/icns/Ireland.icns differ diff --git a/flags/flags/flat/icns/Isle-of-Man.icns b/flags/flags/flat/icns/Isle-of-Man.icns new file mode 100644 index 0000000..0dfbbc6 Binary files /dev/null and b/flags/flags/flat/icns/Isle-of-Man.icns differ diff --git a/flags/flags/flat/icns/Israel.icns b/flags/flags/flat/icns/Israel.icns new file mode 100644 index 0000000..0e4f447 Binary files /dev/null and b/flags/flags/flat/icns/Israel.icns differ diff --git a/flags/flags/flat/icns/Italy.icns b/flags/flags/flat/icns/Italy.icns new file mode 100644 index 0000000..c81f96a Binary files /dev/null and b/flags/flags/flat/icns/Italy.icns differ diff --git a/flags/flags/flat/icns/Jamaica.icns b/flags/flags/flat/icns/Jamaica.icns new file mode 100644 index 0000000..625da47 Binary files /dev/null and b/flags/flags/flat/icns/Jamaica.icns differ diff --git a/flags/flags/flat/icns/Japan.icns b/flags/flags/flat/icns/Japan.icns new file mode 100644 index 0000000..a2087e5 Binary files /dev/null and b/flags/flags/flat/icns/Japan.icns differ diff --git a/flags/flags/flat/icns/Jersey.icns b/flags/flags/flat/icns/Jersey.icns new file mode 100644 index 0000000..6b7ebdb Binary files /dev/null and b/flags/flags/flat/icns/Jersey.icns differ diff --git a/flags/flags/flat/icns/Jordan.icns b/flags/flags/flat/icns/Jordan.icns new file mode 100644 index 0000000..19873d6 Binary files /dev/null and b/flags/flags/flat/icns/Jordan.icns differ diff --git a/flags/flags/flat/icns/Kazakhstan.icns b/flags/flags/flat/icns/Kazakhstan.icns new file mode 100644 index 0000000..3358d88 Binary files /dev/null and b/flags/flags/flat/icns/Kazakhstan.icns differ diff --git a/flags/flags/flat/icns/Kenya.icns b/flags/flags/flat/icns/Kenya.icns new file mode 100644 index 0000000..233410d Binary files /dev/null and b/flags/flags/flat/icns/Kenya.icns differ diff --git a/flags/flags/flat/icns/Kiribati.icns b/flags/flags/flat/icns/Kiribati.icns new file mode 100644 index 0000000..51b85d8 Binary files /dev/null and b/flags/flags/flat/icns/Kiribati.icns differ diff --git a/flags/flags/flat/icns/Kosovo.icns b/flags/flags/flat/icns/Kosovo.icns new file mode 100644 index 0000000..97c15ca Binary files /dev/null and b/flags/flags/flat/icns/Kosovo.icns differ diff --git a/flags/flags/flat/icns/Kuwait.icns b/flags/flags/flat/icns/Kuwait.icns new file mode 100644 index 0000000..612bbc4 Binary files /dev/null and b/flags/flags/flat/icns/Kuwait.icns differ diff --git a/flags/flags/flat/icns/Kyrgyzstan.icns b/flags/flags/flat/icns/Kyrgyzstan.icns new file mode 100644 index 0000000..1279853 Binary files /dev/null and b/flags/flags/flat/icns/Kyrgyzstan.icns differ diff --git a/flags/flags/flat/icns/Laos.icns b/flags/flags/flat/icns/Laos.icns new file mode 100644 index 0000000..2f9f326 Binary files /dev/null and b/flags/flags/flat/icns/Laos.icns differ diff --git a/flags/flags/flat/icns/Latvia.icns b/flags/flags/flat/icns/Latvia.icns new file mode 100644 index 0000000..5ee92b0 Binary files /dev/null and b/flags/flags/flat/icns/Latvia.icns differ diff --git a/flags/flags/flat/icns/Lebanon.icns b/flags/flags/flat/icns/Lebanon.icns new file mode 100644 index 0000000..fd2c085 Binary files /dev/null and b/flags/flags/flat/icns/Lebanon.icns differ diff --git a/flags/flags/flat/icns/Lesotho.icns b/flags/flags/flat/icns/Lesotho.icns new file mode 100644 index 0000000..39e8a1c Binary files /dev/null and b/flags/flags/flat/icns/Lesotho.icns differ diff --git a/flags/flags/flat/icns/Liberia.icns b/flags/flags/flat/icns/Liberia.icns new file mode 100644 index 0000000..26f68e5 Binary files /dev/null and b/flags/flags/flat/icns/Liberia.icns differ diff --git a/flags/flags/flat/icns/Libya.icns b/flags/flags/flat/icns/Libya.icns new file mode 100644 index 0000000..ccb80a3 Binary files /dev/null and b/flags/flags/flat/icns/Libya.icns differ diff --git a/flags/flags/flat/icns/Liechtenstein.icns b/flags/flags/flat/icns/Liechtenstein.icns new file mode 100644 index 0000000..e3bf91a Binary files /dev/null and b/flags/flags/flat/icns/Liechtenstein.icns differ diff --git a/flags/flags/flat/icns/Lithuania.icns b/flags/flags/flat/icns/Lithuania.icns new file mode 100644 index 0000000..8d0ab1a Binary files /dev/null and b/flags/flags/flat/icns/Lithuania.icns differ diff --git a/flags/flags/flat/icns/Luxembourg.icns b/flags/flags/flat/icns/Luxembourg.icns new file mode 100644 index 0000000..c8931d9 Binary files /dev/null and b/flags/flags/flat/icns/Luxembourg.icns differ diff --git a/flags/flags/flat/icns/Macau.icns b/flags/flags/flat/icns/Macau.icns new file mode 100644 index 0000000..cddd0c7 Binary files /dev/null and b/flags/flags/flat/icns/Macau.icns differ diff --git a/flags/flags/flat/icns/Macedonia.icns b/flags/flags/flat/icns/Macedonia.icns new file mode 100644 index 0000000..05e9398 Binary files /dev/null and b/flags/flags/flat/icns/Macedonia.icns differ diff --git a/flags/flags/flat/icns/Madagascar.icns b/flags/flags/flat/icns/Madagascar.icns new file mode 100644 index 0000000..ec942dc Binary files /dev/null and b/flags/flags/flat/icns/Madagascar.icns differ diff --git a/flags/flags/flat/icns/Malawi.icns b/flags/flags/flat/icns/Malawi.icns new file mode 100644 index 0000000..c21ab3a Binary files /dev/null and b/flags/flags/flat/icns/Malawi.icns differ diff --git a/flags/flags/flat/icns/Malaysia.icns b/flags/flags/flat/icns/Malaysia.icns new file mode 100644 index 0000000..278af24 Binary files /dev/null and b/flags/flags/flat/icns/Malaysia.icns differ diff --git a/flags/flags/flat/icns/Maldives.icns b/flags/flags/flat/icns/Maldives.icns new file mode 100644 index 0000000..6dbaa40 Binary files /dev/null and b/flags/flags/flat/icns/Maldives.icns differ diff --git a/flags/flags/flat/icns/Mali.icns b/flags/flags/flat/icns/Mali.icns new file mode 100644 index 0000000..575f4eb Binary files /dev/null and b/flags/flags/flat/icns/Mali.icns differ diff --git a/flags/flags/flat/icns/Malta.icns b/flags/flags/flat/icns/Malta.icns new file mode 100644 index 0000000..b6fff47 Binary files /dev/null and b/flags/flags/flat/icns/Malta.icns differ diff --git a/flags/flags/flat/icns/Mars.icns b/flags/flags/flat/icns/Mars.icns new file mode 100644 index 0000000..c31e91a Binary files /dev/null and b/flags/flags/flat/icns/Mars.icns differ diff --git a/flags/flags/flat/icns/Marshall-Islands.icns b/flags/flags/flat/icns/Marshall-Islands.icns new file mode 100644 index 0000000..28cae1a Binary files /dev/null and b/flags/flags/flat/icns/Marshall-Islands.icns differ diff --git a/flags/flags/flat/icns/Mauritania.icns b/flags/flags/flat/icns/Mauritania.icns new file mode 100644 index 0000000..397fde0 Binary files /dev/null and b/flags/flags/flat/icns/Mauritania.icns differ diff --git a/flags/flags/flat/icns/Mauritius.icns b/flags/flags/flat/icns/Mauritius.icns new file mode 100644 index 0000000..3df74fa Binary files /dev/null and b/flags/flags/flat/icns/Mauritius.icns differ diff --git a/flags/flags/flat/icns/Mayotte.icns b/flags/flags/flat/icns/Mayotte.icns new file mode 100644 index 0000000..bd400bc Binary files /dev/null and b/flags/flags/flat/icns/Mayotte.icns differ diff --git a/flags/flags/flat/icns/Mexico.icns b/flags/flags/flat/icns/Mexico.icns new file mode 100644 index 0000000..6972e1f Binary files /dev/null and b/flags/flags/flat/icns/Mexico.icns differ diff --git a/flags/flags/flat/icns/Micronesia.icns b/flags/flags/flat/icns/Micronesia.icns new file mode 100644 index 0000000..dcd5068 Binary files /dev/null and b/flags/flags/flat/icns/Micronesia.icns differ diff --git a/flags/flags/flat/icns/Moldova.icns b/flags/flags/flat/icns/Moldova.icns new file mode 100644 index 0000000..b7a478e Binary files /dev/null and b/flags/flags/flat/icns/Moldova.icns differ diff --git a/flags/flags/flat/icns/Monaco.icns b/flags/flags/flat/icns/Monaco.icns new file mode 100644 index 0000000..66522a4 Binary files /dev/null and b/flags/flags/flat/icns/Monaco.icns differ diff --git a/flags/flags/flat/icns/Mongolia.icns b/flags/flags/flat/icns/Mongolia.icns new file mode 100644 index 0000000..f8d8d83 Binary files /dev/null and b/flags/flags/flat/icns/Mongolia.icns differ diff --git a/flags/flags/flat/icns/Montenegro.icns b/flags/flags/flat/icns/Montenegro.icns new file mode 100644 index 0000000..360d9a6 Binary files /dev/null and b/flags/flags/flat/icns/Montenegro.icns differ diff --git a/flags/flags/flat/icns/Montserrat.icns b/flags/flags/flat/icns/Montserrat.icns new file mode 100644 index 0000000..18afd0f Binary files /dev/null and b/flags/flags/flat/icns/Montserrat.icns differ diff --git a/flags/flags/flat/icns/Morocco.icns b/flags/flags/flat/icns/Morocco.icns new file mode 100644 index 0000000..b9e9d9c Binary files /dev/null and b/flags/flags/flat/icns/Morocco.icns differ diff --git a/flags/flags/flat/icns/Mozambique.icns b/flags/flags/flat/icns/Mozambique.icns new file mode 100644 index 0000000..72ab6f8 Binary files /dev/null and b/flags/flags/flat/icns/Mozambique.icns differ diff --git a/flags/flags/flat/icns/Myanmar.icns b/flags/flags/flat/icns/Myanmar.icns new file mode 100644 index 0000000..e5be0ba Binary files /dev/null and b/flags/flags/flat/icns/Myanmar.icns differ diff --git a/flags/flags/flat/icns/NATO.icns b/flags/flags/flat/icns/NATO.icns new file mode 100644 index 0000000..59e4986 Binary files /dev/null and b/flags/flags/flat/icns/NATO.icns differ diff --git a/flags/flags/flat/icns/Nagorno-Karabakh.icns b/flags/flags/flat/icns/Nagorno-Karabakh.icns new file mode 100644 index 0000000..2ddf244 Binary files /dev/null and b/flags/flags/flat/icns/Nagorno-Karabakh.icns differ diff --git a/flags/flags/flat/icns/Namibia.icns b/flags/flags/flat/icns/Namibia.icns new file mode 100644 index 0000000..187091e Binary files /dev/null and b/flags/flags/flat/icns/Namibia.icns differ diff --git a/flags/flags/flat/icns/Nauru.icns b/flags/flags/flat/icns/Nauru.icns new file mode 100644 index 0000000..474beca Binary files /dev/null and b/flags/flags/flat/icns/Nauru.icns differ diff --git a/flags/flags/flat/icns/Nepal.icns b/flags/flags/flat/icns/Nepal.icns new file mode 100644 index 0000000..1bd1c54 Binary files /dev/null and b/flags/flags/flat/icns/Nepal.icns differ diff --git a/flags/flags/flat/icns/Netherlands-Antilles.icns b/flags/flags/flat/icns/Netherlands-Antilles.icns new file mode 100644 index 0000000..b994f9a Binary files /dev/null and b/flags/flags/flat/icns/Netherlands-Antilles.icns differ diff --git a/flags/flags/flat/icns/Netherlands.icns b/flags/flags/flat/icns/Netherlands.icns new file mode 100644 index 0000000..192c217 Binary files /dev/null and b/flags/flags/flat/icns/Netherlands.icns differ diff --git a/flags/flags/flat/icns/New-Caledonia.icns b/flags/flags/flat/icns/New-Caledonia.icns new file mode 100644 index 0000000..449be0c Binary files /dev/null and b/flags/flags/flat/icns/New-Caledonia.icns differ diff --git a/flags/flags/flat/icns/New-Zealand.icns b/flags/flags/flat/icns/New-Zealand.icns new file mode 100644 index 0000000..62ef9e5 Binary files /dev/null and b/flags/flags/flat/icns/New-Zealand.icns differ diff --git a/flags/flags/flat/icns/Nicaragua.icns b/flags/flags/flat/icns/Nicaragua.icns new file mode 100644 index 0000000..da7932e Binary files /dev/null and b/flags/flags/flat/icns/Nicaragua.icns differ diff --git a/flags/flags/flat/icns/Niger.icns b/flags/flags/flat/icns/Niger.icns new file mode 100644 index 0000000..6e0f201 Binary files /dev/null and b/flags/flags/flat/icns/Niger.icns differ diff --git a/flags/flags/flat/icns/Nigeria.icns b/flags/flags/flat/icns/Nigeria.icns new file mode 100644 index 0000000..c67059a Binary files /dev/null and b/flags/flags/flat/icns/Nigeria.icns differ diff --git a/flags/flags/flat/icns/Niue.icns b/flags/flags/flat/icns/Niue.icns new file mode 100644 index 0000000..e3c5b37 Binary files /dev/null and b/flags/flags/flat/icns/Niue.icns differ diff --git a/flags/flags/flat/icns/Norfolk-Island.icns b/flags/flags/flat/icns/Norfolk-Island.icns new file mode 100644 index 0000000..d8ddd03 Binary files /dev/null and b/flags/flags/flat/icns/Norfolk-Island.icns differ diff --git a/flags/flags/flat/icns/North-Korea.icns b/flags/flags/flat/icns/North-Korea.icns new file mode 100644 index 0000000..81a95a3 Binary files /dev/null and b/flags/flags/flat/icns/North-Korea.icns differ diff --git a/flags/flags/flat/icns/Northern-Cyprus.icns b/flags/flags/flat/icns/Northern-Cyprus.icns new file mode 100644 index 0000000..b709a64 Binary files /dev/null and b/flags/flags/flat/icns/Northern-Cyprus.icns differ diff --git a/flags/flags/flat/icns/Northern-Mariana-Islands.icns b/flags/flags/flat/icns/Northern-Mariana-Islands.icns new file mode 100644 index 0000000..c328090 Binary files /dev/null and b/flags/flags/flat/icns/Northern-Mariana-Islands.icns differ diff --git a/flags/flags/flat/icns/Norway.icns b/flags/flags/flat/icns/Norway.icns new file mode 100644 index 0000000..cd57689 Binary files /dev/null and b/flags/flags/flat/icns/Norway.icns differ diff --git a/flags/flags/flat/icns/Olympics.icns b/flags/flags/flat/icns/Olympics.icns new file mode 100644 index 0000000..1c9615b Binary files /dev/null and b/flags/flags/flat/icns/Olympics.icns differ diff --git a/flags/flags/flat/icns/Oman.icns b/flags/flags/flat/icns/Oman.icns new file mode 100644 index 0000000..1a09a65 Binary files /dev/null and b/flags/flags/flat/icns/Oman.icns differ diff --git a/flags/flags/flat/icns/Pakistan.icns b/flags/flags/flat/icns/Pakistan.icns new file mode 100644 index 0000000..a3d8745 Binary files /dev/null and b/flags/flags/flat/icns/Pakistan.icns differ diff --git a/flags/flags/flat/icns/Palau.icns b/flags/flags/flat/icns/Palau.icns new file mode 100644 index 0000000..3c7b128 Binary files /dev/null and b/flags/flags/flat/icns/Palau.icns differ diff --git a/flags/flags/flat/icns/Palestine.icns b/flags/flags/flat/icns/Palestine.icns new file mode 100644 index 0000000..ab0d897 Binary files /dev/null and b/flags/flags/flat/icns/Palestine.icns differ diff --git a/flags/flags/flat/icns/Panama.icns b/flags/flags/flat/icns/Panama.icns new file mode 100644 index 0000000..2a272d7 Binary files /dev/null and b/flags/flags/flat/icns/Panama.icns differ diff --git a/flags/flags/flat/icns/Papua-New-Guinea.icns b/flags/flags/flat/icns/Papua-New-Guinea.icns new file mode 100644 index 0000000..b6aae0e Binary files /dev/null and b/flags/flags/flat/icns/Papua-New-Guinea.icns differ diff --git a/flags/flags/flat/icns/Paraguay.icns b/flags/flags/flat/icns/Paraguay.icns new file mode 100644 index 0000000..bb26553 Binary files /dev/null and b/flags/flags/flat/icns/Paraguay.icns differ diff --git a/flags/flags/flat/icns/Peru.icns b/flags/flags/flat/icns/Peru.icns new file mode 100644 index 0000000..0841265 Binary files /dev/null and b/flags/flags/flat/icns/Peru.icns differ diff --git a/flags/flags/flat/icns/Philippines.icns b/flags/flags/flat/icns/Philippines.icns new file mode 100644 index 0000000..6259df2 Binary files /dev/null and b/flags/flags/flat/icns/Philippines.icns differ diff --git a/flags/flags/flat/icns/Pitcairn-Islands.icns b/flags/flags/flat/icns/Pitcairn-Islands.icns new file mode 100644 index 0000000..49c0a8d Binary files /dev/null and b/flags/flags/flat/icns/Pitcairn-Islands.icns differ diff --git a/flags/flags/flat/icns/Poland.icns b/flags/flags/flat/icns/Poland.icns new file mode 100644 index 0000000..bf67ef4 Binary files /dev/null and b/flags/flags/flat/icns/Poland.icns differ diff --git a/flags/flags/flat/icns/Portugal.icns b/flags/flags/flat/icns/Portugal.icns new file mode 100644 index 0000000..fae7e13 Binary files /dev/null and b/flags/flags/flat/icns/Portugal.icns differ diff --git a/flags/flags/flat/icns/Puerto-Rico.icns b/flags/flags/flat/icns/Puerto-Rico.icns new file mode 100644 index 0000000..3b9ad5a Binary files /dev/null and b/flags/flags/flat/icns/Puerto-Rico.icns differ diff --git a/flags/flags/flat/icns/Qatar.icns b/flags/flags/flat/icns/Qatar.icns new file mode 100644 index 0000000..925d6c0 Binary files /dev/null and b/flags/flags/flat/icns/Qatar.icns differ diff --git a/flags/flags/flat/icns/Red-Cross.icns b/flags/flags/flat/icns/Red-Cross.icns new file mode 100644 index 0000000..0873ef7 Binary files /dev/null and b/flags/flags/flat/icns/Red-Cross.icns differ diff --git a/flags/flags/flat/icns/Republic-of-the-Congo.icns b/flags/flags/flat/icns/Republic-of-the-Congo.icns new file mode 100644 index 0000000..56f0950 Binary files /dev/null and b/flags/flags/flat/icns/Republic-of-the-Congo.icns differ diff --git a/flags/flags/flat/icns/Romania.icns b/flags/flags/flat/icns/Romania.icns new file mode 100644 index 0000000..171fc73 Binary files /dev/null and b/flags/flags/flat/icns/Romania.icns differ diff --git a/flags/flags/flat/icns/Russia.icns b/flags/flags/flat/icns/Russia.icns new file mode 100644 index 0000000..8244075 Binary files /dev/null and b/flags/flags/flat/icns/Russia.icns differ diff --git a/flags/flags/flat/icns/Rwanda.icns b/flags/flags/flat/icns/Rwanda.icns new file mode 100644 index 0000000..bd49ec6 Binary files /dev/null and b/flags/flags/flat/icns/Rwanda.icns differ diff --git a/flags/flags/flat/icns/Saint-Barthelemy.icns b/flags/flags/flat/icns/Saint-Barthelemy.icns new file mode 100644 index 0000000..f9217ae Binary files /dev/null and b/flags/flags/flat/icns/Saint-Barthelemy.icns differ diff --git a/flags/flags/flat/icns/Saint-Helena.icns b/flags/flags/flat/icns/Saint-Helena.icns new file mode 100644 index 0000000..3d95a21 Binary files /dev/null and b/flags/flags/flat/icns/Saint-Helena.icns differ diff --git a/flags/flags/flat/icns/Saint-Kitts-and-Nevis.icns b/flags/flags/flat/icns/Saint-Kitts-and-Nevis.icns new file mode 100644 index 0000000..f4001c9 Binary files /dev/null and b/flags/flags/flat/icns/Saint-Kitts-and-Nevis.icns differ diff --git a/flags/flags/flat/icns/Saint-Lucia.icns b/flags/flags/flat/icns/Saint-Lucia.icns new file mode 100644 index 0000000..2cdd1dc Binary files /dev/null and b/flags/flags/flat/icns/Saint-Lucia.icns differ diff --git a/flags/flags/flat/icns/Saint-Vincent-and-the-Grenadines.icns b/flags/flags/flat/icns/Saint-Vincent-and-the-Grenadines.icns new file mode 100644 index 0000000..460759c Binary files /dev/null and b/flags/flags/flat/icns/Saint-Vincent-and-the-Grenadines.icns differ diff --git a/flags/flags/flat/icns/Samoa.icns b/flags/flags/flat/icns/Samoa.icns new file mode 100644 index 0000000..fc088e0 Binary files /dev/null and b/flags/flags/flat/icns/Samoa.icns differ diff --git a/flags/flags/flat/icns/San-Marino.icns b/flags/flags/flat/icns/San-Marino.icns new file mode 100644 index 0000000..490ad8a Binary files /dev/null and b/flags/flags/flat/icns/San-Marino.icns differ diff --git a/flags/flags/flat/icns/Sao-Tome-and-Principe.icns b/flags/flags/flat/icns/Sao-Tome-and-Principe.icns new file mode 100644 index 0000000..4f03b6b Binary files /dev/null and b/flags/flags/flat/icns/Sao-Tome-and-Principe.icns differ diff --git a/flags/flags/flat/icns/Saudi-Arabia.icns b/flags/flags/flat/icns/Saudi-Arabia.icns new file mode 100644 index 0000000..edb2dec Binary files /dev/null and b/flags/flags/flat/icns/Saudi-Arabia.icns differ diff --git a/flags/flags/flat/icns/Scotland.icns b/flags/flags/flat/icns/Scotland.icns new file mode 100644 index 0000000..07ecadc Binary files /dev/null and b/flags/flags/flat/icns/Scotland.icns differ diff --git a/flags/flags/flat/icns/Senegal.icns b/flags/flags/flat/icns/Senegal.icns new file mode 100644 index 0000000..0a8fe28 Binary files /dev/null and b/flags/flags/flat/icns/Senegal.icns differ diff --git a/flags/flags/flat/icns/Serbia.icns b/flags/flags/flat/icns/Serbia.icns new file mode 100644 index 0000000..b13fb39 Binary files /dev/null and b/flags/flags/flat/icns/Serbia.icns differ diff --git a/flags/flags/flat/icns/Seychelles.icns b/flags/flags/flat/icns/Seychelles.icns new file mode 100644 index 0000000..c82f290 Binary files /dev/null and b/flags/flags/flat/icns/Seychelles.icns differ diff --git a/flags/flags/flat/icns/Sierra-Leone.icns b/flags/flags/flat/icns/Sierra-Leone.icns new file mode 100644 index 0000000..d3ebb8c Binary files /dev/null and b/flags/flags/flat/icns/Sierra-Leone.icns differ diff --git a/flags/flags/flat/icns/Singapore.icns b/flags/flags/flat/icns/Singapore.icns new file mode 100644 index 0000000..9b8e1c3 Binary files /dev/null and b/flags/flags/flat/icns/Singapore.icns differ diff --git a/flags/flags/flat/icns/Slovakia.icns b/flags/flags/flat/icns/Slovakia.icns new file mode 100644 index 0000000..b1338f6 Binary files /dev/null and b/flags/flags/flat/icns/Slovakia.icns differ diff --git a/flags/flags/flat/icns/Slovenia.icns b/flags/flags/flat/icns/Slovenia.icns new file mode 100644 index 0000000..eba99e5 Binary files /dev/null and b/flags/flags/flat/icns/Slovenia.icns differ diff --git a/flags/flags/flat/icns/Solomon-Islands.icns b/flags/flags/flat/icns/Solomon-Islands.icns new file mode 100644 index 0000000..9ced476 Binary files /dev/null and b/flags/flags/flat/icns/Solomon-Islands.icns differ diff --git a/flags/flags/flat/icns/Somalia.icns b/flags/flags/flat/icns/Somalia.icns new file mode 100644 index 0000000..1cd15cb Binary files /dev/null and b/flags/flags/flat/icns/Somalia.icns differ diff --git a/flags/flags/flat/icns/Somaliland.icns b/flags/flags/flat/icns/Somaliland.icns new file mode 100644 index 0000000..3077537 Binary files /dev/null and b/flags/flags/flat/icns/Somaliland.icns differ diff --git a/flags/flags/flat/icns/South-Africa.icns b/flags/flags/flat/icns/South-Africa.icns new file mode 100644 index 0000000..8bb7eee Binary files /dev/null and b/flags/flags/flat/icns/South-Africa.icns differ diff --git a/flags/flags/flat/icns/South-Georgia-and-the-South-Sandwich-Islands.icns b/flags/flags/flat/icns/South-Georgia-and-the-South-Sandwich-Islands.icns new file mode 100644 index 0000000..13f1dd0 Binary files /dev/null and b/flags/flags/flat/icns/South-Georgia-and-the-South-Sandwich-Islands.icns differ diff --git a/flags/flags/flat/icns/South-Korea.icns b/flags/flags/flat/icns/South-Korea.icns new file mode 100644 index 0000000..52ce69c Binary files /dev/null and b/flags/flags/flat/icns/South-Korea.icns differ diff --git a/flags/flags/flat/icns/South-Ossetia.icns b/flags/flags/flat/icns/South-Ossetia.icns new file mode 100644 index 0000000..9d4c7d7 Binary files /dev/null and b/flags/flags/flat/icns/South-Ossetia.icns differ diff --git a/flags/flags/flat/icns/South-Sudan.icns b/flags/flags/flat/icns/South-Sudan.icns new file mode 100644 index 0000000..597984d Binary files /dev/null and b/flags/flags/flat/icns/South-Sudan.icns differ diff --git a/flags/flags/flat/icns/Spain.icns b/flags/flags/flat/icns/Spain.icns new file mode 100644 index 0000000..7dfae51 Binary files /dev/null and b/flags/flags/flat/icns/Spain.icns differ diff --git a/flags/flags/flat/icns/Sri-Lanka.icns b/flags/flags/flat/icns/Sri-Lanka.icns new file mode 100644 index 0000000..d0ade29 Binary files /dev/null and b/flags/flags/flat/icns/Sri-Lanka.icns differ diff --git a/flags/flags/flat/icns/Sudan.icns b/flags/flags/flat/icns/Sudan.icns new file mode 100644 index 0000000..539558a Binary files /dev/null and b/flags/flags/flat/icns/Sudan.icns differ diff --git a/flags/flags/flat/icns/Suriname.icns b/flags/flags/flat/icns/Suriname.icns new file mode 100644 index 0000000..7cba06d Binary files /dev/null and b/flags/flags/flat/icns/Suriname.icns differ diff --git a/flags/flags/flat/icns/Swaziland.icns b/flags/flags/flat/icns/Swaziland.icns new file mode 100644 index 0000000..3867796 Binary files /dev/null and b/flags/flags/flat/icns/Swaziland.icns differ diff --git a/flags/flags/flat/icns/Sweden.icns b/flags/flags/flat/icns/Sweden.icns new file mode 100644 index 0000000..f01095e Binary files /dev/null and b/flags/flags/flat/icns/Sweden.icns differ diff --git a/flags/flags/flat/icns/Switzerland.icns b/flags/flags/flat/icns/Switzerland.icns new file mode 100644 index 0000000..080f7a2 Binary files /dev/null and b/flags/flags/flat/icns/Switzerland.icns differ diff --git a/flags/flags/flat/icns/Syria.icns b/flags/flags/flat/icns/Syria.icns new file mode 100644 index 0000000..ac6519e Binary files /dev/null and b/flags/flags/flat/icns/Syria.icns differ diff --git a/flags/flags/flat/icns/Taiwan.icns b/flags/flags/flat/icns/Taiwan.icns new file mode 100644 index 0000000..6ff528c Binary files /dev/null and b/flags/flags/flat/icns/Taiwan.icns differ diff --git a/flags/flags/flat/icns/Tajikistan.icns b/flags/flags/flat/icns/Tajikistan.icns new file mode 100644 index 0000000..6d0fc7a Binary files /dev/null and b/flags/flags/flat/icns/Tajikistan.icns differ diff --git a/flags/flags/flat/icns/Tanzania.icns b/flags/flags/flat/icns/Tanzania.icns new file mode 100644 index 0000000..9fcab79 Binary files /dev/null and b/flags/flags/flat/icns/Tanzania.icns differ diff --git a/flags/flags/flat/icns/Thailand.icns b/flags/flags/flat/icns/Thailand.icns new file mode 100644 index 0000000..3a79eb6 Binary files /dev/null and b/flags/flags/flat/icns/Thailand.icns differ diff --git a/flags/flags/flat/icns/Togo.icns b/flags/flags/flat/icns/Togo.icns new file mode 100644 index 0000000..30ed77f Binary files /dev/null and b/flags/flags/flat/icns/Togo.icns differ diff --git a/flags/flags/flat/icns/Tokelau.icns b/flags/flags/flat/icns/Tokelau.icns new file mode 100644 index 0000000..5dcd13c Binary files /dev/null and b/flags/flags/flat/icns/Tokelau.icns differ diff --git a/flags/flags/flat/icns/Tonga.icns b/flags/flags/flat/icns/Tonga.icns new file mode 100644 index 0000000..2f84b27 Binary files /dev/null and b/flags/flags/flat/icns/Tonga.icns differ diff --git a/flags/flags/flat/icns/Trinidad-and-Tobago.icns b/flags/flags/flat/icns/Trinidad-and-Tobago.icns new file mode 100644 index 0000000..17f4944 Binary files /dev/null and b/flags/flags/flat/icns/Trinidad-and-Tobago.icns differ diff --git a/flags/flags/flat/icns/Tunisia.icns b/flags/flags/flat/icns/Tunisia.icns new file mode 100644 index 0000000..2fcef9e Binary files /dev/null and b/flags/flags/flat/icns/Tunisia.icns differ diff --git a/flags/flags/flat/icns/Turkey.icns b/flags/flags/flat/icns/Turkey.icns new file mode 100644 index 0000000..65df45f Binary files /dev/null and b/flags/flags/flat/icns/Turkey.icns differ diff --git a/flags/flags/flat/icns/Turkmenistan.icns b/flags/flags/flat/icns/Turkmenistan.icns new file mode 100644 index 0000000..5d9d849 Binary files /dev/null and b/flags/flags/flat/icns/Turkmenistan.icns differ diff --git a/flags/flags/flat/icns/Turks-and-Caicos-Islands.icns b/flags/flags/flat/icns/Turks-and-Caicos-Islands.icns new file mode 100644 index 0000000..597b4ec Binary files /dev/null and b/flags/flags/flat/icns/Turks-and-Caicos-Islands.icns differ diff --git a/flags/flags/flat/icns/Tuvalu.icns b/flags/flags/flat/icns/Tuvalu.icns new file mode 100644 index 0000000..1d16ebb Binary files /dev/null and b/flags/flags/flat/icns/Tuvalu.icns differ diff --git a/flags/flags/flat/icns/US-Virgin-Islands.icns b/flags/flags/flat/icns/US-Virgin-Islands.icns new file mode 100644 index 0000000..3dd332f Binary files /dev/null and b/flags/flags/flat/icns/US-Virgin-Islands.icns differ diff --git a/flags/flags/flat/icns/Uganda.icns b/flags/flags/flat/icns/Uganda.icns new file mode 100644 index 0000000..21bada8 Binary files /dev/null and b/flags/flags/flat/icns/Uganda.icns differ diff --git a/flags/flags/flat/icns/Ukraine.icns b/flags/flags/flat/icns/Ukraine.icns new file mode 100644 index 0000000..cbc4d31 Binary files /dev/null and b/flags/flags/flat/icns/Ukraine.icns differ diff --git a/flags/flags/flat/icns/United-Arab-Emirates.icns b/flags/flags/flat/icns/United-Arab-Emirates.icns new file mode 100644 index 0000000..4a30ea5 Binary files /dev/null and b/flags/flags/flat/icns/United-Arab-Emirates.icns differ diff --git a/flags/flags/flat/icns/United-Kingdom.icns b/flags/flags/flat/icns/United-Kingdom.icns new file mode 100644 index 0000000..6f60a9b Binary files /dev/null and b/flags/flags/flat/icns/United-Kingdom.icns differ diff --git a/flags/flags/flat/icns/United-Nations.icns b/flags/flags/flat/icns/United-Nations.icns new file mode 100644 index 0000000..de86916 Binary files /dev/null and b/flags/flags/flat/icns/United-Nations.icns differ diff --git a/flags/flags/flat/icns/United-States.icns b/flags/flags/flat/icns/United-States.icns new file mode 100644 index 0000000..957d2de Binary files /dev/null and b/flags/flags/flat/icns/United-States.icns differ diff --git a/flags/flags/flat/icns/Uruguay.icns b/flags/flags/flat/icns/Uruguay.icns new file mode 100644 index 0000000..d9abb81 Binary files /dev/null and b/flags/flags/flat/icns/Uruguay.icns differ diff --git a/flags/flags/flat/icns/Uzbekistan.icns b/flags/flags/flat/icns/Uzbekistan.icns new file mode 100644 index 0000000..fb0a553 Binary files /dev/null and b/flags/flags/flat/icns/Uzbekistan.icns differ diff --git a/flags/flags/flat/icns/Vanuatu.icns b/flags/flags/flat/icns/Vanuatu.icns new file mode 100644 index 0000000..8de77bb Binary files /dev/null and b/flags/flags/flat/icns/Vanuatu.icns differ diff --git a/flags/flags/flat/icns/Vatican-City.icns b/flags/flags/flat/icns/Vatican-City.icns new file mode 100644 index 0000000..0e75328 Binary files /dev/null and b/flags/flags/flat/icns/Vatican-City.icns differ diff --git a/flags/flags/flat/icns/Venezuela.icns b/flags/flags/flat/icns/Venezuela.icns new file mode 100644 index 0000000..e2ee002 Binary files /dev/null and b/flags/flags/flat/icns/Venezuela.icns differ diff --git a/flags/flags/flat/icns/Vietnam.icns b/flags/flags/flat/icns/Vietnam.icns new file mode 100644 index 0000000..657d0f8 Binary files /dev/null and b/flags/flags/flat/icns/Vietnam.icns differ diff --git a/flags/flags/flat/icns/Wales.icns b/flags/flags/flat/icns/Wales.icns new file mode 100644 index 0000000..f9a31b7 Binary files /dev/null and b/flags/flags/flat/icns/Wales.icns differ diff --git a/flags/flags/flat/icns/Wallis-And-Futuna.icns b/flags/flags/flat/icns/Wallis-And-Futuna.icns new file mode 100644 index 0000000..3e92ff0 Binary files /dev/null and b/flags/flags/flat/icns/Wallis-And-Futuna.icns differ diff --git a/flags/flags/flat/icns/Western-Sahara.icns b/flags/flags/flat/icns/Western-Sahara.icns new file mode 100644 index 0000000..b60956b Binary files /dev/null and b/flags/flags/flat/icns/Western-Sahara.icns differ diff --git a/flags/flags/flat/icns/Yemen.icns b/flags/flags/flat/icns/Yemen.icns new file mode 100644 index 0000000..a0235d2 Binary files /dev/null and b/flags/flags/flat/icns/Yemen.icns differ diff --git a/flags/flags/flat/icns/Zambia.icns b/flags/flags/flat/icns/Zambia.icns new file mode 100644 index 0000000..956cf16 Binary files /dev/null and b/flags/flags/flat/icns/Zambia.icns differ diff --git a/flags/flags/flat/icns/Zimbabwe.icns b/flags/flags/flat/icns/Zimbabwe.icns new file mode 100644 index 0000000..c40b4e9 Binary files /dev/null and b/flags/flags/flat/icns/Zimbabwe.icns differ diff --git a/flags/flags/flat/ico/Abkhazia.ico b/flags/flags/flat/ico/Abkhazia.ico new file mode 100644 index 0000000..5cb6c8a Binary files /dev/null and b/flags/flags/flat/ico/Abkhazia.ico differ diff --git a/flags/flags/flat/ico/Afghanistan.ico b/flags/flags/flat/ico/Afghanistan.ico new file mode 100644 index 0000000..9659d77 Binary files /dev/null and b/flags/flags/flat/ico/Afghanistan.ico differ diff --git a/flags/flags/flat/ico/Aland.ico b/flags/flags/flat/ico/Aland.ico new file mode 100644 index 0000000..64c4f0e Binary files /dev/null and b/flags/flags/flat/ico/Aland.ico differ diff --git a/flags/flags/flat/ico/Albania.ico b/flags/flags/flat/ico/Albania.ico new file mode 100644 index 0000000..0ab5ed1 Binary files /dev/null and b/flags/flags/flat/ico/Albania.ico differ diff --git a/flags/flags/flat/ico/Algeria.ico b/flags/flags/flat/ico/Algeria.ico new file mode 100644 index 0000000..9d2fff9 Binary files /dev/null and b/flags/flags/flat/ico/Algeria.ico differ diff --git a/flags/flags/flat/ico/American-Samoa.ico b/flags/flags/flat/ico/American-Samoa.ico new file mode 100644 index 0000000..659962b Binary files /dev/null and b/flags/flags/flat/ico/American-Samoa.ico differ diff --git a/flags/flags/flat/ico/Andorra.ico b/flags/flags/flat/ico/Andorra.ico new file mode 100644 index 0000000..ae8ab18 Binary files /dev/null and b/flags/flags/flat/ico/Andorra.ico differ diff --git a/flags/flags/flat/ico/Angola.ico b/flags/flags/flat/ico/Angola.ico new file mode 100644 index 0000000..e6e1681 Binary files /dev/null and b/flags/flags/flat/ico/Angola.ico differ diff --git a/flags/flags/flat/ico/Anguilla.ico b/flags/flags/flat/ico/Anguilla.ico new file mode 100644 index 0000000..7f30297 Binary files /dev/null and b/flags/flags/flat/ico/Anguilla.ico differ diff --git a/flags/flags/flat/ico/Antarctica.ico b/flags/flags/flat/ico/Antarctica.ico new file mode 100644 index 0000000..53a4fee Binary files /dev/null and b/flags/flags/flat/ico/Antarctica.ico differ diff --git a/flags/flags/flat/ico/Antigua-and-Barbuda.ico b/flags/flags/flat/ico/Antigua-and-Barbuda.ico new file mode 100644 index 0000000..2899dcd Binary files /dev/null and b/flags/flags/flat/ico/Antigua-and-Barbuda.ico differ diff --git a/flags/flags/flat/ico/Argentina.ico b/flags/flags/flat/ico/Argentina.ico new file mode 100644 index 0000000..844cafb Binary files /dev/null and b/flags/flags/flat/ico/Argentina.ico differ diff --git a/flags/flags/flat/ico/Armenia.ico b/flags/flags/flat/ico/Armenia.ico new file mode 100644 index 0000000..58df3a4 Binary files /dev/null and b/flags/flags/flat/ico/Armenia.ico differ diff --git a/flags/flags/flat/ico/Aruba.ico b/flags/flags/flat/ico/Aruba.ico new file mode 100644 index 0000000..899c32a Binary files /dev/null and b/flags/flags/flat/ico/Aruba.ico differ diff --git a/flags/flags/flat/ico/Australia.ico b/flags/flags/flat/ico/Australia.ico new file mode 100644 index 0000000..d2d104b Binary files /dev/null and b/flags/flags/flat/ico/Australia.ico differ diff --git a/flags/flags/flat/ico/Austria.ico b/flags/flags/flat/ico/Austria.ico new file mode 100644 index 0000000..232f9a4 Binary files /dev/null and b/flags/flags/flat/ico/Austria.ico differ diff --git a/flags/flags/flat/ico/Azerbaijan.ico b/flags/flags/flat/ico/Azerbaijan.ico new file mode 100644 index 0000000..e8120cf Binary files /dev/null and b/flags/flags/flat/ico/Azerbaijan.ico differ diff --git a/flags/flags/flat/ico/Bahamas.ico b/flags/flags/flat/ico/Bahamas.ico new file mode 100644 index 0000000..09a7d0d Binary files /dev/null and b/flags/flags/flat/ico/Bahamas.ico differ diff --git a/flags/flags/flat/ico/Bahrain.ico b/flags/flags/flat/ico/Bahrain.ico new file mode 100644 index 0000000..396dd9c Binary files /dev/null and b/flags/flags/flat/ico/Bahrain.ico differ diff --git a/flags/flags/flat/ico/Bangladesh.ico b/flags/flags/flat/ico/Bangladesh.ico new file mode 100644 index 0000000..054649b Binary files /dev/null and b/flags/flags/flat/ico/Bangladesh.ico differ diff --git a/flags/flags/flat/ico/Barbados.ico b/flags/flags/flat/ico/Barbados.ico new file mode 100644 index 0000000..42e0b5e Binary files /dev/null and b/flags/flags/flat/ico/Barbados.ico differ diff --git a/flags/flags/flat/ico/Belarus.ico b/flags/flags/flat/ico/Belarus.ico new file mode 100644 index 0000000..9d92a8a Binary files /dev/null and b/flags/flags/flat/ico/Belarus.ico differ diff --git a/flags/flags/flat/ico/Belgium.ico b/flags/flags/flat/ico/Belgium.ico new file mode 100644 index 0000000..2941c53 Binary files /dev/null and b/flags/flags/flat/ico/Belgium.ico differ diff --git a/flags/flags/flat/ico/Belize.ico b/flags/flags/flat/ico/Belize.ico new file mode 100644 index 0000000..2c74512 Binary files /dev/null and b/flags/flags/flat/ico/Belize.ico differ diff --git a/flags/flags/flat/ico/Benin.ico b/flags/flags/flat/ico/Benin.ico new file mode 100644 index 0000000..25a7536 Binary files /dev/null and b/flags/flags/flat/ico/Benin.ico differ diff --git a/flags/flags/flat/ico/Bermuda.ico b/flags/flags/flat/ico/Bermuda.ico new file mode 100644 index 0000000..9d0b57b Binary files /dev/null and b/flags/flags/flat/ico/Bermuda.ico differ diff --git a/flags/flags/flat/ico/Bhutan.ico b/flags/flags/flat/ico/Bhutan.ico new file mode 100644 index 0000000..aef52ce Binary files /dev/null and b/flags/flags/flat/ico/Bhutan.ico differ diff --git a/flags/flags/flat/ico/Bolivia.ico b/flags/flags/flat/ico/Bolivia.ico new file mode 100644 index 0000000..f2fbbb8 Binary files /dev/null and b/flags/flags/flat/ico/Bolivia.ico differ diff --git a/flags/flags/flat/ico/Bosnia-and-Herzegovina.ico b/flags/flags/flat/ico/Bosnia-and-Herzegovina.ico new file mode 100644 index 0000000..ca3ec12 Binary files /dev/null and b/flags/flags/flat/ico/Bosnia-and-Herzegovina.ico differ diff --git a/flags/flags/flat/ico/Botswana.ico b/flags/flags/flat/ico/Botswana.ico new file mode 100644 index 0000000..8ed667d Binary files /dev/null and b/flags/flags/flat/ico/Botswana.ico differ diff --git a/flags/flags/flat/ico/Brazil.ico b/flags/flags/flat/ico/Brazil.ico new file mode 100644 index 0000000..9c5dd5c Binary files /dev/null and b/flags/flags/flat/ico/Brazil.ico differ diff --git a/flags/flags/flat/ico/British-Antarctic-Territory.ico b/flags/flags/flat/ico/British-Antarctic-Territory.ico new file mode 100644 index 0000000..11acb9f Binary files /dev/null and b/flags/flags/flat/ico/British-Antarctic-Territory.ico differ diff --git a/flags/flags/flat/ico/British-Virgin-Islands.ico b/flags/flags/flat/ico/British-Virgin-Islands.ico new file mode 100644 index 0000000..7716ad4 Binary files /dev/null and b/flags/flags/flat/ico/British-Virgin-Islands.ico differ diff --git a/flags/flags/flat/ico/Brunei.ico b/flags/flags/flat/ico/Brunei.ico new file mode 100644 index 0000000..8761fd8 Binary files /dev/null and b/flags/flags/flat/ico/Brunei.ico differ diff --git a/flags/flags/flat/ico/Bulgaria.ico b/flags/flags/flat/ico/Bulgaria.ico new file mode 100644 index 0000000..0df5e53 Binary files /dev/null and b/flags/flags/flat/ico/Bulgaria.ico differ diff --git a/flags/flags/flat/ico/Burkina-Faso.ico b/flags/flags/flat/ico/Burkina-Faso.ico new file mode 100644 index 0000000..8dda53f Binary files /dev/null and b/flags/flags/flat/ico/Burkina-Faso.ico differ diff --git a/flags/flags/flat/ico/Burundi.ico b/flags/flags/flat/ico/Burundi.ico new file mode 100644 index 0000000..89a913e Binary files /dev/null and b/flags/flags/flat/ico/Burundi.ico differ diff --git a/flags/flags/flat/ico/Cambodia.ico b/flags/flags/flat/ico/Cambodia.ico new file mode 100644 index 0000000..f62cc96 Binary files /dev/null and b/flags/flags/flat/ico/Cambodia.ico differ diff --git a/flags/flags/flat/ico/Cameroon.ico b/flags/flags/flat/ico/Cameroon.ico new file mode 100644 index 0000000..ee35c75 Binary files /dev/null and b/flags/flags/flat/ico/Cameroon.ico differ diff --git a/flags/flags/flat/ico/Canada.ico b/flags/flags/flat/ico/Canada.ico new file mode 100644 index 0000000..b258145 Binary files /dev/null and b/flags/flags/flat/ico/Canada.ico differ diff --git a/flags/flags/flat/ico/Cape-Verde.ico b/flags/flags/flat/ico/Cape-Verde.ico new file mode 100644 index 0000000..299f147 Binary files /dev/null and b/flags/flags/flat/ico/Cape-Verde.ico differ diff --git a/flags/flags/flat/ico/Cayman-Islands.ico b/flags/flags/flat/ico/Cayman-Islands.ico new file mode 100644 index 0000000..52e0825 Binary files /dev/null and b/flags/flags/flat/ico/Cayman-Islands.ico differ diff --git a/flags/flags/flat/ico/Central-African-Republic.ico b/flags/flags/flat/ico/Central-African-Republic.ico new file mode 100644 index 0000000..1f321e3 Binary files /dev/null and b/flags/flags/flat/ico/Central-African-Republic.ico differ diff --git a/flags/flags/flat/ico/Chad.ico b/flags/flags/flat/ico/Chad.ico new file mode 100644 index 0000000..77c4fcc Binary files /dev/null and b/flags/flags/flat/ico/Chad.ico differ diff --git a/flags/flags/flat/ico/Chile.ico b/flags/flags/flat/ico/Chile.ico new file mode 100644 index 0000000..9c599ce Binary files /dev/null and b/flags/flags/flat/ico/Chile.ico differ diff --git a/flags/flags/flat/ico/China.ico b/flags/flags/flat/ico/China.ico new file mode 100644 index 0000000..55cc3d9 Binary files /dev/null and b/flags/flags/flat/ico/China.ico differ diff --git a/flags/flags/flat/ico/Christmas-Island.ico b/flags/flags/flat/ico/Christmas-Island.ico new file mode 100644 index 0000000..5bbac42 Binary files /dev/null and b/flags/flags/flat/ico/Christmas-Island.ico differ diff --git a/flags/flags/flat/ico/Cocos-Keeling-Islands.ico b/flags/flags/flat/ico/Cocos-Keeling-Islands.ico new file mode 100644 index 0000000..07df1cc Binary files /dev/null and b/flags/flags/flat/ico/Cocos-Keeling-Islands.ico differ diff --git a/flags/flags/flat/ico/Colombia.ico b/flags/flags/flat/ico/Colombia.ico new file mode 100644 index 0000000..17db460 Binary files /dev/null and b/flags/flags/flat/ico/Colombia.ico differ diff --git a/flags/flags/flat/ico/Commonwealth.ico b/flags/flags/flat/ico/Commonwealth.ico new file mode 100644 index 0000000..544548f Binary files /dev/null and b/flags/flags/flat/ico/Commonwealth.ico differ diff --git a/flags/flags/flat/ico/Comoros.ico b/flags/flags/flat/ico/Comoros.ico new file mode 100644 index 0000000..e8164fc Binary files /dev/null and b/flags/flags/flat/ico/Comoros.ico differ diff --git a/flags/flags/flat/ico/Cook-Islands.ico b/flags/flags/flat/ico/Cook-Islands.ico new file mode 100644 index 0000000..22b4a40 Binary files /dev/null and b/flags/flags/flat/ico/Cook-Islands.ico differ diff --git a/flags/flags/flat/ico/Costa-Rica.ico b/flags/flags/flat/ico/Costa-Rica.ico new file mode 100644 index 0000000..7ea5601 Binary files /dev/null and b/flags/flags/flat/ico/Costa-Rica.ico differ diff --git a/flags/flags/flat/ico/Cote-dIvoire.ico b/flags/flags/flat/ico/Cote-dIvoire.ico new file mode 100644 index 0000000..fd6954c Binary files /dev/null and b/flags/flags/flat/ico/Cote-dIvoire.ico differ diff --git a/flags/flags/flat/ico/Croatia.ico b/flags/flags/flat/ico/Croatia.ico new file mode 100644 index 0000000..96365f8 Binary files /dev/null and b/flags/flags/flat/ico/Croatia.ico differ diff --git a/flags/flags/flat/ico/Cuba.ico b/flags/flags/flat/ico/Cuba.ico new file mode 100644 index 0000000..dcdf746 Binary files /dev/null and b/flags/flags/flat/ico/Cuba.ico differ diff --git a/flags/flags/flat/ico/Cyprus.ico b/flags/flags/flat/ico/Cyprus.ico new file mode 100644 index 0000000..1a7e336 Binary files /dev/null and b/flags/flags/flat/ico/Cyprus.ico differ diff --git a/flags/flags/flat/ico/Czech-Republic.ico b/flags/flags/flat/ico/Czech-Republic.ico new file mode 100644 index 0000000..bbc512a Binary files /dev/null and b/flags/flags/flat/ico/Czech-Republic.ico differ diff --git a/flags/flags/flat/ico/Democratic-Republic-of-the-Congo.ico b/flags/flags/flat/ico/Democratic-Republic-of-the-Congo.ico new file mode 100644 index 0000000..172dfd3 Binary files /dev/null and b/flags/flags/flat/ico/Democratic-Republic-of-the-Congo.ico differ diff --git a/flags/flags/flat/ico/Denmark.ico b/flags/flags/flat/ico/Denmark.ico new file mode 100644 index 0000000..1326715 Binary files /dev/null and b/flags/flags/flat/ico/Denmark.ico differ diff --git a/flags/flags/flat/ico/Djibouti.ico b/flags/flags/flat/ico/Djibouti.ico new file mode 100644 index 0000000..b39e1d8 Binary files /dev/null and b/flags/flags/flat/ico/Djibouti.ico differ diff --git a/flags/flags/flat/ico/Dominica.ico b/flags/flags/flat/ico/Dominica.ico new file mode 100644 index 0000000..5a9b9cc Binary files /dev/null and b/flags/flags/flat/ico/Dominica.ico differ diff --git a/flags/flags/flat/ico/Dominican-Republic.ico b/flags/flags/flat/ico/Dominican-Republic.ico new file mode 100644 index 0000000..1437e3e Binary files /dev/null and b/flags/flags/flat/ico/Dominican-Republic.ico differ diff --git a/flags/flags/flat/ico/East-Timor.ico b/flags/flags/flat/ico/East-Timor.ico new file mode 100644 index 0000000..a7e6272 Binary files /dev/null and b/flags/flags/flat/ico/East-Timor.ico differ diff --git a/flags/flags/flat/ico/Ecuador.ico b/flags/flags/flat/ico/Ecuador.ico new file mode 100644 index 0000000..e724c96 Binary files /dev/null and b/flags/flags/flat/ico/Ecuador.ico differ diff --git a/flags/flags/flat/ico/Egypt.ico b/flags/flags/flat/ico/Egypt.ico new file mode 100644 index 0000000..e6cf745 Binary files /dev/null and b/flags/flags/flat/ico/Egypt.ico differ diff --git a/flags/flags/flat/ico/El-Salvador.ico b/flags/flags/flat/ico/El-Salvador.ico new file mode 100644 index 0000000..fefae71 Binary files /dev/null and b/flags/flags/flat/ico/El-Salvador.ico differ diff --git a/flags/flags/flat/ico/England.ico b/flags/flags/flat/ico/England.ico new file mode 100644 index 0000000..e64e9b4 Binary files /dev/null and b/flags/flags/flat/ico/England.ico differ diff --git a/flags/flags/flat/ico/Equatorial-Guinea.ico b/flags/flags/flat/ico/Equatorial-Guinea.ico new file mode 100644 index 0000000..e8d3f05 Binary files /dev/null and b/flags/flags/flat/ico/Equatorial-Guinea.ico differ diff --git a/flags/flags/flat/ico/Eritrea.ico b/flags/flags/flat/ico/Eritrea.ico new file mode 100644 index 0000000..8650734 Binary files /dev/null and b/flags/flags/flat/ico/Eritrea.ico differ diff --git a/flags/flags/flat/ico/Estonia.ico b/flags/flags/flat/ico/Estonia.ico new file mode 100644 index 0000000..c51f1be Binary files /dev/null and b/flags/flags/flat/ico/Estonia.ico differ diff --git a/flags/flags/flat/ico/Ethiopia.ico b/flags/flags/flat/ico/Ethiopia.ico new file mode 100644 index 0000000..4e4756b Binary files /dev/null and b/flags/flags/flat/ico/Ethiopia.ico differ diff --git a/flags/flags/flat/ico/European-Union.ico b/flags/flags/flat/ico/European-Union.ico new file mode 100644 index 0000000..eef9b3f Binary files /dev/null and b/flags/flags/flat/ico/European-Union.ico differ diff --git a/flags/flags/flat/ico/Falkland-Islands.ico b/flags/flags/flat/ico/Falkland-Islands.ico new file mode 100644 index 0000000..7e5adca Binary files /dev/null and b/flags/flags/flat/ico/Falkland-Islands.ico differ diff --git a/flags/flags/flat/ico/Faroes.ico b/flags/flags/flat/ico/Faroes.ico new file mode 100644 index 0000000..081f153 Binary files /dev/null and b/flags/flags/flat/ico/Faroes.ico differ diff --git a/flags/flags/flat/ico/Fiji.ico b/flags/flags/flat/ico/Fiji.ico new file mode 100644 index 0000000..dc5ade6 Binary files /dev/null and b/flags/flags/flat/ico/Fiji.ico differ diff --git a/flags/flags/flat/ico/Finland.ico b/flags/flags/flat/ico/Finland.ico new file mode 100644 index 0000000..50f5618 Binary files /dev/null and b/flags/flags/flat/ico/Finland.ico differ diff --git a/flags/flags/flat/ico/France.ico b/flags/flags/flat/ico/France.ico new file mode 100644 index 0000000..438380e Binary files /dev/null and b/flags/flags/flat/ico/France.ico differ diff --git a/flags/flags/flat/ico/French-Polynesia.ico b/flags/flags/flat/ico/French-Polynesia.ico new file mode 100644 index 0000000..408b004 Binary files /dev/null and b/flags/flags/flat/ico/French-Polynesia.ico differ diff --git a/flags/flags/flat/ico/French-Southern-Territories.ico b/flags/flags/flat/ico/French-Southern-Territories.ico new file mode 100644 index 0000000..44db656 Binary files /dev/null and b/flags/flags/flat/ico/French-Southern-Territories.ico differ diff --git a/flags/flags/flat/ico/Gabon.ico b/flags/flags/flat/ico/Gabon.ico new file mode 100644 index 0000000..b808606 Binary files /dev/null and b/flags/flags/flat/ico/Gabon.ico differ diff --git a/flags/flags/flat/ico/Gambia.ico b/flags/flags/flat/ico/Gambia.ico new file mode 100644 index 0000000..76704b3 Binary files /dev/null and b/flags/flags/flat/ico/Gambia.ico differ diff --git a/flags/flags/flat/ico/Georgia.ico b/flags/flags/flat/ico/Georgia.ico new file mode 100644 index 0000000..3e7d71e Binary files /dev/null and b/flags/flags/flat/ico/Georgia.ico differ diff --git a/flags/flags/flat/ico/Germany.ico b/flags/flags/flat/ico/Germany.ico new file mode 100644 index 0000000..a64eef0 Binary files /dev/null and b/flags/flags/flat/ico/Germany.ico differ diff --git a/flags/flags/flat/ico/Ghana.ico b/flags/flags/flat/ico/Ghana.ico new file mode 100644 index 0000000..b4899db Binary files /dev/null and b/flags/flags/flat/ico/Ghana.ico differ diff --git a/flags/flags/flat/ico/Gibraltar.ico b/flags/flags/flat/ico/Gibraltar.ico new file mode 100644 index 0000000..f077ea3 Binary files /dev/null and b/flags/flags/flat/ico/Gibraltar.ico differ diff --git a/flags/flags/flat/ico/GoSquared.ico b/flags/flags/flat/ico/GoSquared.ico new file mode 100644 index 0000000..9d6d9db Binary files /dev/null and b/flags/flags/flat/ico/GoSquared.ico differ diff --git a/flags/flags/flat/ico/Greece.ico b/flags/flags/flat/ico/Greece.ico new file mode 100644 index 0000000..ed5ce06 Binary files /dev/null and b/flags/flags/flat/ico/Greece.ico differ diff --git a/flags/flags/flat/ico/Greenland.ico b/flags/flags/flat/ico/Greenland.ico new file mode 100644 index 0000000..eb66c98 Binary files /dev/null and b/flags/flags/flat/ico/Greenland.ico differ diff --git a/flags/flags/flat/ico/Grenada.ico b/flags/flags/flat/ico/Grenada.ico new file mode 100644 index 0000000..5bfa015 Binary files /dev/null and b/flags/flags/flat/ico/Grenada.ico differ diff --git a/flags/flags/flat/ico/Guam.ico b/flags/flags/flat/ico/Guam.ico new file mode 100644 index 0000000..b01c356 Binary files /dev/null and b/flags/flags/flat/ico/Guam.ico differ diff --git a/flags/flags/flat/ico/Guatemala.ico b/flags/flags/flat/ico/Guatemala.ico new file mode 100644 index 0000000..d931334 Binary files /dev/null and b/flags/flags/flat/ico/Guatemala.ico differ diff --git a/flags/flags/flat/ico/Guernsey.ico b/flags/flags/flat/ico/Guernsey.ico new file mode 100644 index 0000000..0c648f4 Binary files /dev/null and b/flags/flags/flat/ico/Guernsey.ico differ diff --git a/flags/flags/flat/ico/Guinea-Bissau.ico b/flags/flags/flat/ico/Guinea-Bissau.ico new file mode 100644 index 0000000..14a888e Binary files /dev/null and b/flags/flags/flat/ico/Guinea-Bissau.ico differ diff --git a/flags/flags/flat/ico/Guinea.ico b/flags/flags/flat/ico/Guinea.ico new file mode 100644 index 0000000..c4dd20e Binary files /dev/null and b/flags/flags/flat/ico/Guinea.ico differ diff --git a/flags/flags/flat/ico/Guyana.ico b/flags/flags/flat/ico/Guyana.ico new file mode 100644 index 0000000..bc63583 Binary files /dev/null and b/flags/flags/flat/ico/Guyana.ico differ diff --git a/flags/flags/flat/ico/Haiti.ico b/flags/flags/flat/ico/Haiti.ico new file mode 100644 index 0000000..1234019 Binary files /dev/null and b/flags/flags/flat/ico/Haiti.ico differ diff --git a/flags/flags/flat/ico/Honduras.ico b/flags/flags/flat/ico/Honduras.ico new file mode 100644 index 0000000..18a07c1 Binary files /dev/null and b/flags/flags/flat/ico/Honduras.ico differ diff --git a/flags/flags/flat/ico/Hong-Kong.ico b/flags/flags/flat/ico/Hong-Kong.ico new file mode 100644 index 0000000..fe1caf7 Binary files /dev/null and b/flags/flags/flat/ico/Hong-Kong.ico differ diff --git a/flags/flags/flat/ico/Hungary.ico b/flags/flags/flat/ico/Hungary.ico new file mode 100644 index 0000000..f2413b0 Binary files /dev/null and b/flags/flags/flat/ico/Hungary.ico differ diff --git a/flags/flags/flat/ico/Iceland.ico b/flags/flags/flat/ico/Iceland.ico new file mode 100644 index 0000000..dcaaa24 Binary files /dev/null and b/flags/flags/flat/ico/Iceland.ico differ diff --git a/flags/flags/flat/ico/India.ico b/flags/flags/flat/ico/India.ico new file mode 100644 index 0000000..4d87d4e Binary files /dev/null and b/flags/flags/flat/ico/India.ico differ diff --git a/flags/flags/flat/ico/Indonesia.ico b/flags/flags/flat/ico/Indonesia.ico new file mode 100644 index 0000000..855b630 Binary files /dev/null and b/flags/flags/flat/ico/Indonesia.ico differ diff --git a/flags/flags/flat/ico/Iran.ico b/flags/flags/flat/ico/Iran.ico new file mode 100644 index 0000000..07800e8 Binary files /dev/null and b/flags/flags/flat/ico/Iran.ico differ diff --git a/flags/flags/flat/ico/Iraq.ico b/flags/flags/flat/ico/Iraq.ico new file mode 100644 index 0000000..480f8e9 Binary files /dev/null and b/flags/flags/flat/ico/Iraq.ico differ diff --git a/flags/flags/flat/ico/Ireland.ico b/flags/flags/flat/ico/Ireland.ico new file mode 100644 index 0000000..2eb1873 Binary files /dev/null and b/flags/flags/flat/ico/Ireland.ico differ diff --git a/flags/flags/flat/ico/Isle-of-Man.ico b/flags/flags/flat/ico/Isle-of-Man.ico new file mode 100644 index 0000000..6615764 Binary files /dev/null and b/flags/flags/flat/ico/Isle-of-Man.ico differ diff --git a/flags/flags/flat/ico/Israel.ico b/flags/flags/flat/ico/Israel.ico new file mode 100644 index 0000000..f5441e3 Binary files /dev/null and b/flags/flags/flat/ico/Israel.ico differ diff --git a/flags/flags/flat/ico/Italy.ico b/flags/flags/flat/ico/Italy.ico new file mode 100644 index 0000000..c3ad843 Binary files /dev/null and b/flags/flags/flat/ico/Italy.ico differ diff --git a/flags/flags/flat/ico/Jamaica.ico b/flags/flags/flat/ico/Jamaica.ico new file mode 100644 index 0000000..1d8d016 Binary files /dev/null and b/flags/flags/flat/ico/Jamaica.ico differ diff --git a/flags/flags/flat/ico/Japan.ico b/flags/flags/flat/ico/Japan.ico new file mode 100644 index 0000000..7ea95d7 Binary files /dev/null and b/flags/flags/flat/ico/Japan.ico differ diff --git a/flags/flags/flat/ico/Jersey.ico b/flags/flags/flat/ico/Jersey.ico new file mode 100644 index 0000000..c738b1c Binary files /dev/null and b/flags/flags/flat/ico/Jersey.ico differ diff --git a/flags/flags/flat/ico/Jordan.ico b/flags/flags/flat/ico/Jordan.ico new file mode 100644 index 0000000..f5cc152 Binary files /dev/null and b/flags/flags/flat/ico/Jordan.ico differ diff --git a/flags/flags/flat/ico/Kazakhstan.ico b/flags/flags/flat/ico/Kazakhstan.ico new file mode 100644 index 0000000..3c2686f Binary files /dev/null and b/flags/flags/flat/ico/Kazakhstan.ico differ diff --git a/flags/flags/flat/ico/Kenya.ico b/flags/flags/flat/ico/Kenya.ico new file mode 100644 index 0000000..2a3e919 Binary files /dev/null and b/flags/flags/flat/ico/Kenya.ico differ diff --git a/flags/flags/flat/ico/Kiribati.ico b/flags/flags/flat/ico/Kiribati.ico new file mode 100644 index 0000000..75b54a4 Binary files /dev/null and b/flags/flags/flat/ico/Kiribati.ico differ diff --git a/flags/flags/flat/ico/Kosovo.ico b/flags/flags/flat/ico/Kosovo.ico new file mode 100644 index 0000000..dc781c8 Binary files /dev/null and b/flags/flags/flat/ico/Kosovo.ico differ diff --git a/flags/flags/flat/ico/Kuwait.ico b/flags/flags/flat/ico/Kuwait.ico new file mode 100644 index 0000000..8b036d4 Binary files /dev/null and b/flags/flags/flat/ico/Kuwait.ico differ diff --git a/flags/flags/flat/ico/Kyrgyzstan.ico b/flags/flags/flat/ico/Kyrgyzstan.ico new file mode 100644 index 0000000..d601e0b Binary files /dev/null and b/flags/flags/flat/ico/Kyrgyzstan.ico differ diff --git a/flags/flags/flat/ico/Laos.ico b/flags/flags/flat/ico/Laos.ico new file mode 100644 index 0000000..b6682e9 Binary files /dev/null and b/flags/flags/flat/ico/Laos.ico differ diff --git a/flags/flags/flat/ico/Latvia.ico b/flags/flags/flat/ico/Latvia.ico new file mode 100644 index 0000000..954f27b Binary files /dev/null and b/flags/flags/flat/ico/Latvia.ico differ diff --git a/flags/flags/flat/ico/Lebanon.ico b/flags/flags/flat/ico/Lebanon.ico new file mode 100644 index 0000000..ae64066 Binary files /dev/null and b/flags/flags/flat/ico/Lebanon.ico differ diff --git a/flags/flags/flat/ico/Lesotho.ico b/flags/flags/flat/ico/Lesotho.ico new file mode 100644 index 0000000..12aecae Binary files /dev/null and b/flags/flags/flat/ico/Lesotho.ico differ diff --git a/flags/flags/flat/ico/Liberia.ico b/flags/flags/flat/ico/Liberia.ico new file mode 100644 index 0000000..54048f0 Binary files /dev/null and b/flags/flags/flat/ico/Liberia.ico differ diff --git a/flags/flags/flat/ico/Libya.ico b/flags/flags/flat/ico/Libya.ico new file mode 100644 index 0000000..dc1733b Binary files /dev/null and b/flags/flags/flat/ico/Libya.ico differ diff --git a/flags/flags/flat/ico/Liechtenstein.ico b/flags/flags/flat/ico/Liechtenstein.ico new file mode 100644 index 0000000..8b96b10 Binary files /dev/null and b/flags/flags/flat/ico/Liechtenstein.ico differ diff --git a/flags/flags/flat/ico/Lithuania.ico b/flags/flags/flat/ico/Lithuania.ico new file mode 100644 index 0000000..3f132f6 Binary files /dev/null and b/flags/flags/flat/ico/Lithuania.ico differ diff --git a/flags/flags/flat/ico/Luxembourg.ico b/flags/flags/flat/ico/Luxembourg.ico new file mode 100644 index 0000000..49d9322 Binary files /dev/null and b/flags/flags/flat/ico/Luxembourg.ico differ diff --git a/flags/flags/flat/ico/Macau.ico b/flags/flags/flat/ico/Macau.ico new file mode 100644 index 0000000..fccd33e Binary files /dev/null and b/flags/flags/flat/ico/Macau.ico differ diff --git a/flags/flags/flat/ico/Macedonia.ico b/flags/flags/flat/ico/Macedonia.ico new file mode 100644 index 0000000..612c570 Binary files /dev/null and b/flags/flags/flat/ico/Macedonia.ico differ diff --git a/flags/flags/flat/ico/Madagascar.ico b/flags/flags/flat/ico/Madagascar.ico new file mode 100644 index 0000000..c0fcc4a Binary files /dev/null and b/flags/flags/flat/ico/Madagascar.ico differ diff --git a/flags/flags/flat/ico/Malawi.ico b/flags/flags/flat/ico/Malawi.ico new file mode 100644 index 0000000..22d93db Binary files /dev/null and b/flags/flags/flat/ico/Malawi.ico differ diff --git a/flags/flags/flat/ico/Malaysia.ico b/flags/flags/flat/ico/Malaysia.ico new file mode 100644 index 0000000..49eb911 Binary files /dev/null and b/flags/flags/flat/ico/Malaysia.ico differ diff --git a/flags/flags/flat/ico/Maldives.ico b/flags/flags/flat/ico/Maldives.ico new file mode 100644 index 0000000..aac3a13 Binary files /dev/null and b/flags/flags/flat/ico/Maldives.ico differ diff --git a/flags/flags/flat/ico/Mali.ico b/flags/flags/flat/ico/Mali.ico new file mode 100644 index 0000000..cee1b14 Binary files /dev/null and b/flags/flags/flat/ico/Mali.ico differ diff --git a/flags/flags/flat/ico/Malta.ico b/flags/flags/flat/ico/Malta.ico new file mode 100644 index 0000000..d70054f Binary files /dev/null and b/flags/flags/flat/ico/Malta.ico differ diff --git a/flags/flags/flat/ico/Mars.ico b/flags/flags/flat/ico/Mars.ico new file mode 100644 index 0000000..a702afb Binary files /dev/null and b/flags/flags/flat/ico/Mars.ico differ diff --git a/flags/flags/flat/ico/Marshall-Islands.ico b/flags/flags/flat/ico/Marshall-Islands.ico new file mode 100644 index 0000000..500aa7c Binary files /dev/null and b/flags/flags/flat/ico/Marshall-Islands.ico differ diff --git a/flags/flags/flat/ico/Mauritania.ico b/flags/flags/flat/ico/Mauritania.ico new file mode 100644 index 0000000..5ccb5b3 Binary files /dev/null and b/flags/flags/flat/ico/Mauritania.ico differ diff --git a/flags/flags/flat/ico/Mauritius.ico b/flags/flags/flat/ico/Mauritius.ico new file mode 100644 index 0000000..c46e9b2 Binary files /dev/null and b/flags/flags/flat/ico/Mauritius.ico differ diff --git a/flags/flags/flat/ico/Mayotte.ico b/flags/flags/flat/ico/Mayotte.ico new file mode 100644 index 0000000..ca69454 Binary files /dev/null and b/flags/flags/flat/ico/Mayotte.ico differ diff --git a/flags/flags/flat/ico/Mexico.ico b/flags/flags/flat/ico/Mexico.ico new file mode 100644 index 0000000..3892f45 Binary files /dev/null and b/flags/flags/flat/ico/Mexico.ico differ diff --git a/flags/flags/flat/ico/Micronesia.ico b/flags/flags/flat/ico/Micronesia.ico new file mode 100644 index 0000000..5319e0c Binary files /dev/null and b/flags/flags/flat/ico/Micronesia.ico differ diff --git a/flags/flags/flat/ico/Moldova.ico b/flags/flags/flat/ico/Moldova.ico new file mode 100644 index 0000000..03242f6 Binary files /dev/null and b/flags/flags/flat/ico/Moldova.ico differ diff --git a/flags/flags/flat/ico/Monaco.ico b/flags/flags/flat/ico/Monaco.ico new file mode 100644 index 0000000..855b630 Binary files /dev/null and b/flags/flags/flat/ico/Monaco.ico differ diff --git a/flags/flags/flat/ico/Mongolia.ico b/flags/flags/flat/ico/Mongolia.ico new file mode 100644 index 0000000..243e614 Binary files /dev/null and b/flags/flags/flat/ico/Mongolia.ico differ diff --git a/flags/flags/flat/ico/Montenegro.ico b/flags/flags/flat/ico/Montenegro.ico new file mode 100644 index 0000000..ae6ca65 Binary files /dev/null and b/flags/flags/flat/ico/Montenegro.ico differ diff --git a/flags/flags/flat/ico/Montserrat.ico b/flags/flags/flat/ico/Montserrat.ico new file mode 100644 index 0000000..8c91ceb Binary files /dev/null and b/flags/flags/flat/ico/Montserrat.ico differ diff --git a/flags/flags/flat/ico/Morocco.ico b/flags/flags/flat/ico/Morocco.ico new file mode 100644 index 0000000..1954648 Binary files /dev/null and b/flags/flags/flat/ico/Morocco.ico differ diff --git a/flags/flags/flat/ico/Mozambique.ico b/flags/flags/flat/ico/Mozambique.ico new file mode 100644 index 0000000..3d1011f Binary files /dev/null and b/flags/flags/flat/ico/Mozambique.ico differ diff --git a/flags/flags/flat/ico/Myanmar.ico b/flags/flags/flat/ico/Myanmar.ico new file mode 100644 index 0000000..16dd4db Binary files /dev/null and b/flags/flags/flat/ico/Myanmar.ico differ diff --git a/flags/flags/flat/ico/NATO.ico b/flags/flags/flat/ico/NATO.ico new file mode 100644 index 0000000..7f52c54 Binary files /dev/null and b/flags/flags/flat/ico/NATO.ico differ diff --git a/flags/flags/flat/ico/Nagorno-Karabakh.ico b/flags/flags/flat/ico/Nagorno-Karabakh.ico new file mode 100644 index 0000000..8f77d44 Binary files /dev/null and b/flags/flags/flat/ico/Nagorno-Karabakh.ico differ diff --git a/flags/flags/flat/ico/Namibia.ico b/flags/flags/flat/ico/Namibia.ico new file mode 100644 index 0000000..a2bd0c8 Binary files /dev/null and b/flags/flags/flat/ico/Namibia.ico differ diff --git a/flags/flags/flat/ico/Nauru.ico b/flags/flags/flat/ico/Nauru.ico new file mode 100644 index 0000000..5202663 Binary files /dev/null and b/flags/flags/flat/ico/Nauru.ico differ diff --git a/flags/flags/flat/ico/Nepal.ico b/flags/flags/flat/ico/Nepal.ico new file mode 100644 index 0000000..2df5321 Binary files /dev/null and b/flags/flags/flat/ico/Nepal.ico differ diff --git a/flags/flags/flat/ico/Netherlands-Antilles.ico b/flags/flags/flat/ico/Netherlands-Antilles.ico new file mode 100644 index 0000000..f910305 Binary files /dev/null and b/flags/flags/flat/ico/Netherlands-Antilles.ico differ diff --git a/flags/flags/flat/ico/Netherlands.ico b/flags/flags/flat/ico/Netherlands.ico new file mode 100644 index 0000000..4a57ec9 Binary files /dev/null and b/flags/flags/flat/ico/Netherlands.ico differ diff --git a/flags/flags/flat/ico/New-Caledonia.ico b/flags/flags/flat/ico/New-Caledonia.ico new file mode 100644 index 0000000..893f792 Binary files /dev/null and b/flags/flags/flat/ico/New-Caledonia.ico differ diff --git a/flags/flags/flat/ico/New-Zealand.ico b/flags/flags/flat/ico/New-Zealand.ico new file mode 100644 index 0000000..4c902f7 Binary files /dev/null and b/flags/flags/flat/ico/New-Zealand.ico differ diff --git a/flags/flags/flat/ico/Nicaragua.ico b/flags/flags/flat/ico/Nicaragua.ico new file mode 100644 index 0000000..17ba82e Binary files /dev/null and b/flags/flags/flat/ico/Nicaragua.ico differ diff --git a/flags/flags/flat/ico/Niger.ico b/flags/flags/flat/ico/Niger.ico new file mode 100644 index 0000000..c2b4e21 Binary files /dev/null and b/flags/flags/flat/ico/Niger.ico differ diff --git a/flags/flags/flat/ico/Nigeria.ico b/flags/flags/flat/ico/Nigeria.ico new file mode 100644 index 0000000..1248bff Binary files /dev/null and b/flags/flags/flat/ico/Nigeria.ico differ diff --git a/flags/flags/flat/ico/Niue.ico b/flags/flags/flat/ico/Niue.ico new file mode 100644 index 0000000..1c39ca8 Binary files /dev/null and b/flags/flags/flat/ico/Niue.ico differ diff --git a/flags/flags/flat/ico/Norfolk-Island.ico b/flags/flags/flat/ico/Norfolk-Island.ico new file mode 100644 index 0000000..05156d7 Binary files /dev/null and b/flags/flags/flat/ico/Norfolk-Island.ico differ diff --git a/flags/flags/flat/ico/North-Korea.ico b/flags/flags/flat/ico/North-Korea.ico new file mode 100644 index 0000000..af22689 Binary files /dev/null and b/flags/flags/flat/ico/North-Korea.ico differ diff --git a/flags/flags/flat/ico/Northern-Cyprus.ico b/flags/flags/flat/ico/Northern-Cyprus.ico new file mode 100644 index 0000000..02795dd Binary files /dev/null and b/flags/flags/flat/ico/Northern-Cyprus.ico differ diff --git a/flags/flags/flat/ico/Northern-Mariana-Islands.ico b/flags/flags/flat/ico/Northern-Mariana-Islands.ico new file mode 100644 index 0000000..c863699 Binary files /dev/null and b/flags/flags/flat/ico/Northern-Mariana-Islands.ico differ diff --git a/flags/flags/flat/ico/Norway.ico b/flags/flags/flat/ico/Norway.ico new file mode 100644 index 0000000..9a332a9 Binary files /dev/null and b/flags/flags/flat/ico/Norway.ico differ diff --git a/flags/flags/flat/ico/Olympics.ico b/flags/flags/flat/ico/Olympics.ico new file mode 100644 index 0000000..0783341 Binary files /dev/null and b/flags/flags/flat/ico/Olympics.ico differ diff --git a/flags/flags/flat/ico/Oman.ico b/flags/flags/flat/ico/Oman.ico new file mode 100644 index 0000000..3476865 Binary files /dev/null and b/flags/flags/flat/ico/Oman.ico differ diff --git a/flags/flags/flat/ico/Pakistan.ico b/flags/flags/flat/ico/Pakistan.ico new file mode 100644 index 0000000..be8f3a6 Binary files /dev/null and b/flags/flags/flat/ico/Pakistan.ico differ diff --git a/flags/flags/flat/ico/Palau.ico b/flags/flags/flat/ico/Palau.ico new file mode 100644 index 0000000..b5921e7 Binary files /dev/null and b/flags/flags/flat/ico/Palau.ico differ diff --git a/flags/flags/flat/ico/Palestine.ico b/flags/flags/flat/ico/Palestine.ico new file mode 100644 index 0000000..fcab572 Binary files /dev/null and b/flags/flags/flat/ico/Palestine.ico differ diff --git a/flags/flags/flat/ico/Panama.ico b/flags/flags/flat/ico/Panama.ico new file mode 100644 index 0000000..c407aec Binary files /dev/null and b/flags/flags/flat/ico/Panama.ico differ diff --git a/flags/flags/flat/ico/Papua-New-Guinea.ico b/flags/flags/flat/ico/Papua-New-Guinea.ico new file mode 100644 index 0000000..4996910 Binary files /dev/null and b/flags/flags/flat/ico/Papua-New-Guinea.ico differ diff --git a/flags/flags/flat/ico/Paraguay.ico b/flags/flags/flat/ico/Paraguay.ico new file mode 100644 index 0000000..7e6d351 Binary files /dev/null and b/flags/flags/flat/ico/Paraguay.ico differ diff --git a/flags/flags/flat/ico/Peru.ico b/flags/flags/flat/ico/Peru.ico new file mode 100644 index 0000000..1016597 Binary files /dev/null and b/flags/flags/flat/ico/Peru.ico differ diff --git a/flags/flags/flat/ico/Philippines.ico b/flags/flags/flat/ico/Philippines.ico new file mode 100644 index 0000000..22d90be Binary files /dev/null and b/flags/flags/flat/ico/Philippines.ico differ diff --git a/flags/flags/flat/ico/Pitcairn-Islands.ico b/flags/flags/flat/ico/Pitcairn-Islands.ico new file mode 100644 index 0000000..ac482f5 Binary files /dev/null and b/flags/flags/flat/ico/Pitcairn-Islands.ico differ diff --git a/flags/flags/flat/ico/Poland.ico b/flags/flags/flat/ico/Poland.ico new file mode 100644 index 0000000..c89e6bd Binary files /dev/null and b/flags/flags/flat/ico/Poland.ico differ diff --git a/flags/flags/flat/ico/Portugal.ico b/flags/flags/flat/ico/Portugal.ico new file mode 100644 index 0000000..84c62ec Binary files /dev/null and b/flags/flags/flat/ico/Portugal.ico differ diff --git a/flags/flags/flat/ico/Puerto-Rico.ico b/flags/flags/flat/ico/Puerto-Rico.ico new file mode 100644 index 0000000..8a6862b Binary files /dev/null and b/flags/flags/flat/ico/Puerto-Rico.ico differ diff --git a/flags/flags/flat/ico/Qatar.ico b/flags/flags/flat/ico/Qatar.ico new file mode 100644 index 0000000..a5d08d9 Binary files /dev/null and b/flags/flags/flat/ico/Qatar.ico differ diff --git a/flags/flags/flat/ico/Red-Cross.ico b/flags/flags/flat/ico/Red-Cross.ico new file mode 100644 index 0000000..915ba93 Binary files /dev/null and b/flags/flags/flat/ico/Red-Cross.ico differ diff --git a/flags/flags/flat/ico/Republic-of-the-Congo.ico b/flags/flags/flat/ico/Republic-of-the-Congo.ico new file mode 100644 index 0000000..e877292 Binary files /dev/null and b/flags/flags/flat/ico/Republic-of-the-Congo.ico differ diff --git a/flags/flags/flat/ico/Romania.ico b/flags/flags/flat/ico/Romania.ico new file mode 100644 index 0000000..c2d46c5 Binary files /dev/null and b/flags/flags/flat/ico/Romania.ico differ diff --git a/flags/flags/flat/ico/Russia.ico b/flags/flags/flat/ico/Russia.ico new file mode 100644 index 0000000..67a24d9 Binary files /dev/null and b/flags/flags/flat/ico/Russia.ico differ diff --git a/flags/flags/flat/ico/Rwanda.ico b/flags/flags/flat/ico/Rwanda.ico new file mode 100644 index 0000000..ab10ecf Binary files /dev/null and b/flags/flags/flat/ico/Rwanda.ico differ diff --git a/flags/flags/flat/ico/Saint-Barthelemy.ico b/flags/flags/flat/ico/Saint-Barthelemy.ico new file mode 100644 index 0000000..f949fb0 Binary files /dev/null and b/flags/flags/flat/ico/Saint-Barthelemy.ico differ diff --git a/flags/flags/flat/ico/Saint-Helena.ico b/flags/flags/flat/ico/Saint-Helena.ico new file mode 100644 index 0000000..35dbbcf Binary files /dev/null and b/flags/flags/flat/ico/Saint-Helena.ico differ diff --git a/flags/flags/flat/ico/Saint-Kitts-and-Nevis.ico b/flags/flags/flat/ico/Saint-Kitts-and-Nevis.ico new file mode 100644 index 0000000..1d9ec0a Binary files /dev/null and b/flags/flags/flat/ico/Saint-Kitts-and-Nevis.ico differ diff --git a/flags/flags/flat/ico/Saint-Lucia.ico b/flags/flags/flat/ico/Saint-Lucia.ico new file mode 100644 index 0000000..990c953 Binary files /dev/null and b/flags/flags/flat/ico/Saint-Lucia.ico differ diff --git a/flags/flags/flat/ico/Saint-Vincent-and-the-Grenadines.ico b/flags/flags/flat/ico/Saint-Vincent-and-the-Grenadines.ico new file mode 100644 index 0000000..0643151 Binary files /dev/null and b/flags/flags/flat/ico/Saint-Vincent-and-the-Grenadines.ico differ diff --git a/flags/flags/flat/ico/Samoa.ico b/flags/flags/flat/ico/Samoa.ico new file mode 100644 index 0000000..e3baca1 Binary files /dev/null and b/flags/flags/flat/ico/Samoa.ico differ diff --git a/flags/flags/flat/ico/San-Marino.ico b/flags/flags/flat/ico/San-Marino.ico new file mode 100644 index 0000000..8d522f7 Binary files /dev/null and b/flags/flags/flat/ico/San-Marino.ico differ diff --git a/flags/flags/flat/ico/Sao-Tome-and-Principe.ico b/flags/flags/flat/ico/Sao-Tome-and-Principe.ico new file mode 100644 index 0000000..55f48c1 Binary files /dev/null and b/flags/flags/flat/ico/Sao-Tome-and-Principe.ico differ diff --git a/flags/flags/flat/ico/Saudi-Arabia.ico b/flags/flags/flat/ico/Saudi-Arabia.ico new file mode 100644 index 0000000..f4f8254 Binary files /dev/null and b/flags/flags/flat/ico/Saudi-Arabia.ico differ diff --git a/flags/flags/flat/ico/Scotland.ico b/flags/flags/flat/ico/Scotland.ico new file mode 100644 index 0000000..a85b5e8 Binary files /dev/null and b/flags/flags/flat/ico/Scotland.ico differ diff --git a/flags/flags/flat/ico/Senegal.ico b/flags/flags/flat/ico/Senegal.ico new file mode 100644 index 0000000..1de8e8d Binary files /dev/null and b/flags/flags/flat/ico/Senegal.ico differ diff --git a/flags/flags/flat/ico/Serbia.ico b/flags/flags/flat/ico/Serbia.ico new file mode 100644 index 0000000..76c2e73 Binary files /dev/null and b/flags/flags/flat/ico/Serbia.ico differ diff --git a/flags/flags/flat/ico/Seychelles.ico b/flags/flags/flat/ico/Seychelles.ico new file mode 100644 index 0000000..aa860e6 Binary files /dev/null and b/flags/flags/flat/ico/Seychelles.ico differ diff --git a/flags/flags/flat/ico/Sierra-Leone.ico b/flags/flags/flat/ico/Sierra-Leone.ico new file mode 100644 index 0000000..772b52a Binary files /dev/null and b/flags/flags/flat/ico/Sierra-Leone.ico differ diff --git a/flags/flags/flat/ico/Singapore.ico b/flags/flags/flat/ico/Singapore.ico new file mode 100644 index 0000000..babc988 Binary files /dev/null and b/flags/flags/flat/ico/Singapore.ico differ diff --git a/flags/flags/flat/ico/Slovakia.ico b/flags/flags/flat/ico/Slovakia.ico new file mode 100644 index 0000000..7d57fc5 Binary files /dev/null and b/flags/flags/flat/ico/Slovakia.ico differ diff --git a/flags/flags/flat/ico/Slovenia.ico b/flags/flags/flat/ico/Slovenia.ico new file mode 100644 index 0000000..51a72ea Binary files /dev/null and b/flags/flags/flat/ico/Slovenia.ico differ diff --git a/flags/flags/flat/ico/Solomon-Islands.ico b/flags/flags/flat/ico/Solomon-Islands.ico new file mode 100644 index 0000000..65a1abe Binary files /dev/null and b/flags/flags/flat/ico/Solomon-Islands.ico differ diff --git a/flags/flags/flat/ico/Somalia.ico b/flags/flags/flat/ico/Somalia.ico new file mode 100644 index 0000000..ebde4c1 Binary files /dev/null and b/flags/flags/flat/ico/Somalia.ico differ diff --git a/flags/flags/flat/ico/Somaliland.ico b/flags/flags/flat/ico/Somaliland.ico new file mode 100644 index 0000000..d75b34c Binary files /dev/null and b/flags/flags/flat/ico/Somaliland.ico differ diff --git a/flags/flags/flat/ico/South-Africa.ico b/flags/flags/flat/ico/South-Africa.ico new file mode 100644 index 0000000..6ad2bb7 Binary files /dev/null and b/flags/flags/flat/ico/South-Africa.ico differ diff --git a/flags/flags/flat/ico/South-Georgia-and-the-South-Sandwich-Islands.ico b/flags/flags/flat/ico/South-Georgia-and-the-South-Sandwich-Islands.ico new file mode 100644 index 0000000..f998d01 Binary files /dev/null and b/flags/flags/flat/ico/South-Georgia-and-the-South-Sandwich-Islands.ico differ diff --git a/flags/flags/flat/ico/South-Korea.ico b/flags/flags/flat/ico/South-Korea.ico new file mode 100644 index 0000000..a51501b Binary files /dev/null and b/flags/flags/flat/ico/South-Korea.ico differ diff --git a/flags/flags/flat/ico/South-Ossetia.ico b/flags/flags/flat/ico/South-Ossetia.ico new file mode 100644 index 0000000..63735a7 Binary files /dev/null and b/flags/flags/flat/ico/South-Ossetia.ico differ diff --git a/flags/flags/flat/ico/South-Sudan.ico b/flags/flags/flat/ico/South-Sudan.ico new file mode 100644 index 0000000..6e7c381 Binary files /dev/null and b/flags/flags/flat/ico/South-Sudan.ico differ diff --git a/flags/flags/flat/ico/Spain.ico b/flags/flags/flat/ico/Spain.ico new file mode 100644 index 0000000..47a06ec Binary files /dev/null and b/flags/flags/flat/ico/Spain.ico differ diff --git a/flags/flags/flat/ico/Sri-Lanka.ico b/flags/flags/flat/ico/Sri-Lanka.ico new file mode 100644 index 0000000..12c2fb3 Binary files /dev/null and b/flags/flags/flat/ico/Sri-Lanka.ico differ diff --git a/flags/flags/flat/ico/Sudan.ico b/flags/flags/flat/ico/Sudan.ico new file mode 100644 index 0000000..bff31ce Binary files /dev/null and b/flags/flags/flat/ico/Sudan.ico differ diff --git a/flags/flags/flat/ico/Suriname.ico b/flags/flags/flat/ico/Suriname.ico new file mode 100644 index 0000000..763d4f1 Binary files /dev/null and b/flags/flags/flat/ico/Suriname.ico differ diff --git a/flags/flags/flat/ico/Swaziland.ico b/flags/flags/flat/ico/Swaziland.ico new file mode 100644 index 0000000..03a6a92 Binary files /dev/null and b/flags/flags/flat/ico/Swaziland.ico differ diff --git a/flags/flags/flat/ico/Sweden.ico b/flags/flags/flat/ico/Sweden.ico new file mode 100644 index 0000000..8a65a96 Binary files /dev/null and b/flags/flags/flat/ico/Sweden.ico differ diff --git a/flags/flags/flat/ico/Switzerland.ico b/flags/flags/flat/ico/Switzerland.ico new file mode 100644 index 0000000..8203a0d Binary files /dev/null and b/flags/flags/flat/ico/Switzerland.ico differ diff --git a/flags/flags/flat/ico/Syria.ico b/flags/flags/flat/ico/Syria.ico new file mode 100644 index 0000000..4f47fe8 Binary files /dev/null and b/flags/flags/flat/ico/Syria.ico differ diff --git a/flags/flags/flat/ico/Taiwan.ico b/flags/flags/flat/ico/Taiwan.ico new file mode 100644 index 0000000..f086ac2 Binary files /dev/null and b/flags/flags/flat/ico/Taiwan.ico differ diff --git a/flags/flags/flat/ico/Tajikistan.ico b/flags/flags/flat/ico/Tajikistan.ico new file mode 100644 index 0000000..ae872de Binary files /dev/null and b/flags/flags/flat/ico/Tajikistan.ico differ diff --git a/flags/flags/flat/ico/Tanzania.ico b/flags/flags/flat/ico/Tanzania.ico new file mode 100644 index 0000000..d1ba481 Binary files /dev/null and b/flags/flags/flat/ico/Tanzania.ico differ diff --git a/flags/flags/flat/ico/Thailand.ico b/flags/flags/flat/ico/Thailand.ico new file mode 100644 index 0000000..f14aec8 Binary files /dev/null and b/flags/flags/flat/ico/Thailand.ico differ diff --git a/flags/flags/flat/ico/Togo.ico b/flags/flags/flat/ico/Togo.ico new file mode 100644 index 0000000..c46f742 Binary files /dev/null and b/flags/flags/flat/ico/Togo.ico differ diff --git a/flags/flags/flat/ico/Tokelau.ico b/flags/flags/flat/ico/Tokelau.ico new file mode 100644 index 0000000..9ca43ff Binary files /dev/null and b/flags/flags/flat/ico/Tokelau.ico differ diff --git a/flags/flags/flat/ico/Tonga.ico b/flags/flags/flat/ico/Tonga.ico new file mode 100644 index 0000000..5d7e632 Binary files /dev/null and b/flags/flags/flat/ico/Tonga.ico differ diff --git a/flags/flags/flat/ico/Trinidad-and-Tobago.ico b/flags/flags/flat/ico/Trinidad-and-Tobago.ico new file mode 100644 index 0000000..01ac330 Binary files /dev/null and b/flags/flags/flat/ico/Trinidad-and-Tobago.ico differ diff --git a/flags/flags/flat/ico/Tunisia.ico b/flags/flags/flat/ico/Tunisia.ico new file mode 100644 index 0000000..7d06f67 Binary files /dev/null and b/flags/flags/flat/ico/Tunisia.ico differ diff --git a/flags/flags/flat/ico/Turkey.ico b/flags/flags/flat/ico/Turkey.ico new file mode 100644 index 0000000..2709f69 Binary files /dev/null and b/flags/flags/flat/ico/Turkey.ico differ diff --git a/flags/flags/flat/ico/Turkmenistan.ico b/flags/flags/flat/ico/Turkmenistan.ico new file mode 100644 index 0000000..8d074ec Binary files /dev/null and b/flags/flags/flat/ico/Turkmenistan.ico differ diff --git a/flags/flags/flat/ico/Turks-and-Caicos-Islands.ico b/flags/flags/flat/ico/Turks-and-Caicos-Islands.ico new file mode 100644 index 0000000..2d2e763 Binary files /dev/null and b/flags/flags/flat/ico/Turks-and-Caicos-Islands.ico differ diff --git a/flags/flags/flat/ico/Tuvalu.ico b/flags/flags/flat/ico/Tuvalu.ico new file mode 100644 index 0000000..4e32a39 Binary files /dev/null and b/flags/flags/flat/ico/Tuvalu.ico differ diff --git a/flags/flags/flat/ico/US-Virgin-Islands.ico b/flags/flags/flat/ico/US-Virgin-Islands.ico new file mode 100644 index 0000000..69a582e Binary files /dev/null and b/flags/flags/flat/ico/US-Virgin-Islands.ico differ diff --git a/flags/flags/flat/ico/Uganda.ico b/flags/flags/flat/ico/Uganda.ico new file mode 100644 index 0000000..1fafb7a Binary files /dev/null and b/flags/flags/flat/ico/Uganda.ico differ diff --git a/flags/flags/flat/ico/Ukraine.ico b/flags/flags/flat/ico/Ukraine.ico new file mode 100644 index 0000000..653c3d7 Binary files /dev/null and b/flags/flags/flat/ico/Ukraine.ico differ diff --git a/flags/flags/flat/ico/United-Arab-Emirates.ico b/flags/flags/flat/ico/United-Arab-Emirates.ico new file mode 100644 index 0000000..d96ee3e Binary files /dev/null and b/flags/flags/flat/ico/United-Arab-Emirates.ico differ diff --git a/flags/flags/flat/ico/United-Kingdom.ico b/flags/flags/flat/ico/United-Kingdom.ico new file mode 100644 index 0000000..5f87d4c Binary files /dev/null and b/flags/flags/flat/ico/United-Kingdom.ico differ diff --git a/flags/flags/flat/ico/United-Nations.ico b/flags/flags/flat/ico/United-Nations.ico new file mode 100644 index 0000000..2507c44 Binary files /dev/null and b/flags/flags/flat/ico/United-Nations.ico differ diff --git a/flags/flags/flat/ico/United-States.ico b/flags/flags/flat/ico/United-States.ico new file mode 100644 index 0000000..e774243 Binary files /dev/null and b/flags/flags/flat/ico/United-States.ico differ diff --git a/flags/flags/flat/ico/Uruguay.ico b/flags/flags/flat/ico/Uruguay.ico new file mode 100644 index 0000000..569e3b0 Binary files /dev/null and b/flags/flags/flat/ico/Uruguay.ico differ diff --git a/flags/flags/flat/ico/Uzbekistan.ico b/flags/flags/flat/ico/Uzbekistan.ico new file mode 100644 index 0000000..7727dfc Binary files /dev/null and b/flags/flags/flat/ico/Uzbekistan.ico differ diff --git a/flags/flags/flat/ico/Vanuatu.ico b/flags/flags/flat/ico/Vanuatu.ico new file mode 100644 index 0000000..d191f19 Binary files /dev/null and b/flags/flags/flat/ico/Vanuatu.ico differ diff --git a/flags/flags/flat/ico/Vatican-City.ico b/flags/flags/flat/ico/Vatican-City.ico new file mode 100644 index 0000000..55a3642 Binary files /dev/null and b/flags/flags/flat/ico/Vatican-City.ico differ diff --git a/flags/flags/flat/ico/Venezuela.ico b/flags/flags/flat/ico/Venezuela.ico new file mode 100644 index 0000000..5c1e472 Binary files /dev/null and b/flags/flags/flat/ico/Venezuela.ico differ diff --git a/flags/flags/flat/ico/Vietnam.ico b/flags/flags/flat/ico/Vietnam.ico new file mode 100644 index 0000000..6dcc1d6 Binary files /dev/null and b/flags/flags/flat/ico/Vietnam.ico differ diff --git a/flags/flags/flat/ico/Wales.ico b/flags/flags/flat/ico/Wales.ico new file mode 100644 index 0000000..b4c5daa Binary files /dev/null and b/flags/flags/flat/ico/Wales.ico differ diff --git a/flags/flags/flat/ico/Wallis-And-Futuna.ico b/flags/flags/flat/ico/Wallis-And-Futuna.ico new file mode 100644 index 0000000..6b9e9d6 Binary files /dev/null and b/flags/flags/flat/ico/Wallis-And-Futuna.ico differ diff --git a/flags/flags/flat/ico/Western-Sahara.ico b/flags/flags/flat/ico/Western-Sahara.ico new file mode 100644 index 0000000..54b138e Binary files /dev/null and b/flags/flags/flat/ico/Western-Sahara.ico differ diff --git a/flags/flags/flat/ico/Yemen.ico b/flags/flags/flat/ico/Yemen.ico new file mode 100644 index 0000000..94134a1 Binary files /dev/null and b/flags/flags/flat/ico/Yemen.ico differ diff --git a/flags/flags/flat/ico/Zambia.ico b/flags/flags/flat/ico/Zambia.ico new file mode 100644 index 0000000..48b28df Binary files /dev/null and b/flags/flags/flat/ico/Zambia.ico differ diff --git a/flags/flags/flat/ico/Zimbabwe.ico b/flags/flags/flat/ico/Zimbabwe.ico new file mode 100644 index 0000000..fbc489c Binary files /dev/null and b/flags/flags/flat/ico/Zimbabwe.ico differ diff --git a/flags/flags/shiny/16/Abkhazia.png b/flags/flags/shiny/16/Abkhazia.png new file mode 100644 index 0000000..ad5d130 Binary files /dev/null and b/flags/flags/shiny/16/Abkhazia.png differ diff --git a/flags/flags/shiny/16/Afghanistan.png b/flags/flags/shiny/16/Afghanistan.png new file mode 100644 index 0000000..61e9518 Binary files /dev/null and b/flags/flags/shiny/16/Afghanistan.png differ diff --git a/flags/flags/shiny/16/Aland.png b/flags/flags/shiny/16/Aland.png new file mode 100644 index 0000000..46a1802 Binary files /dev/null and b/flags/flags/shiny/16/Aland.png differ diff --git a/flags/flags/shiny/16/Albania.png b/flags/flags/shiny/16/Albania.png new file mode 100644 index 0000000..5bd4986 Binary files /dev/null and b/flags/flags/shiny/16/Albania.png differ diff --git a/flags/flags/shiny/16/Algeria.png b/flags/flags/shiny/16/Algeria.png new file mode 100644 index 0000000..65a50f3 Binary files /dev/null and b/flags/flags/shiny/16/Algeria.png differ diff --git a/flags/flags/shiny/16/American-Samoa.png b/flags/flags/shiny/16/American-Samoa.png new file mode 100644 index 0000000..43b5aec Binary files /dev/null and b/flags/flags/shiny/16/American-Samoa.png differ diff --git a/flags/flags/shiny/16/Andorra.png b/flags/flags/shiny/16/Andorra.png new file mode 100644 index 0000000..bdbe434 Binary files /dev/null and b/flags/flags/shiny/16/Andorra.png differ diff --git a/flags/flags/shiny/16/Angola.png b/flags/flags/shiny/16/Angola.png new file mode 100644 index 0000000..fa426da Binary files /dev/null and b/flags/flags/shiny/16/Angola.png differ diff --git a/flags/flags/shiny/16/Anguilla.png b/flags/flags/shiny/16/Anguilla.png new file mode 100644 index 0000000..3206b92 Binary files /dev/null and b/flags/flags/shiny/16/Anguilla.png differ diff --git a/flags/flags/shiny/16/Antarctica.png b/flags/flags/shiny/16/Antarctica.png new file mode 100644 index 0000000..cfa0b9f Binary files /dev/null and b/flags/flags/shiny/16/Antarctica.png differ diff --git a/flags/flags/shiny/16/Antigua-and-Barbuda.png b/flags/flags/shiny/16/Antigua-and-Barbuda.png new file mode 100644 index 0000000..cb6b940 Binary files /dev/null and b/flags/flags/shiny/16/Antigua-and-Barbuda.png differ diff --git a/flags/flags/shiny/16/Argentina.png b/flags/flags/shiny/16/Argentina.png new file mode 100644 index 0000000..e1fa97b Binary files /dev/null and b/flags/flags/shiny/16/Argentina.png differ diff --git a/flags/flags/shiny/16/Armenia.png b/flags/flags/shiny/16/Armenia.png new file mode 100644 index 0000000..83df09a Binary files /dev/null and b/flags/flags/shiny/16/Armenia.png differ diff --git a/flags/flags/shiny/16/Aruba.png b/flags/flags/shiny/16/Aruba.png new file mode 100644 index 0000000..b21c2ea Binary files /dev/null and b/flags/flags/shiny/16/Aruba.png differ diff --git a/flags/flags/shiny/16/Australia.png b/flags/flags/shiny/16/Australia.png new file mode 100644 index 0000000..11f4d1c Binary files /dev/null and b/flags/flags/shiny/16/Australia.png differ diff --git a/flags/flags/shiny/16/Austria.png b/flags/flags/shiny/16/Austria.png new file mode 100644 index 0000000..794bd2f Binary files /dev/null and b/flags/flags/shiny/16/Austria.png differ diff --git a/flags/flags/shiny/16/Azerbaijan.png b/flags/flags/shiny/16/Azerbaijan.png new file mode 100644 index 0000000..878e559 Binary files /dev/null and b/flags/flags/shiny/16/Azerbaijan.png differ diff --git a/flags/flags/shiny/16/Bahamas.png b/flags/flags/shiny/16/Bahamas.png new file mode 100644 index 0000000..aabafab Binary files /dev/null and b/flags/flags/shiny/16/Bahamas.png differ diff --git a/flags/flags/shiny/16/Bahrain.png b/flags/flags/shiny/16/Bahrain.png new file mode 100644 index 0000000..b3eb851 Binary files /dev/null and b/flags/flags/shiny/16/Bahrain.png differ diff --git a/flags/flags/shiny/16/Bangladesh.png b/flags/flags/shiny/16/Bangladesh.png new file mode 100644 index 0000000..b6c440a Binary files /dev/null and b/flags/flags/shiny/16/Bangladesh.png differ diff --git a/flags/flags/shiny/16/Barbados.png b/flags/flags/shiny/16/Barbados.png new file mode 100644 index 0000000..be3d149 Binary files /dev/null and b/flags/flags/shiny/16/Barbados.png differ diff --git a/flags/flags/shiny/16/Belarus.png b/flags/flags/shiny/16/Belarus.png new file mode 100644 index 0000000..0376c98 Binary files /dev/null and b/flags/flags/shiny/16/Belarus.png differ diff --git a/flags/flags/shiny/16/Belgium.png b/flags/flags/shiny/16/Belgium.png new file mode 100644 index 0000000..5e47a3a Binary files /dev/null and b/flags/flags/shiny/16/Belgium.png differ diff --git a/flags/flags/shiny/16/Belize.png b/flags/flags/shiny/16/Belize.png new file mode 100644 index 0000000..0291200 Binary files /dev/null and b/flags/flags/shiny/16/Belize.png differ diff --git a/flags/flags/shiny/16/Benin.png b/flags/flags/shiny/16/Benin.png new file mode 100644 index 0000000..688797f Binary files /dev/null and b/flags/flags/shiny/16/Benin.png differ diff --git a/flags/flags/shiny/16/Bermuda.png b/flags/flags/shiny/16/Bermuda.png new file mode 100644 index 0000000..132e990 Binary files /dev/null and b/flags/flags/shiny/16/Bermuda.png differ diff --git a/flags/flags/shiny/16/Bhutan.png b/flags/flags/shiny/16/Bhutan.png new file mode 100644 index 0000000..026fde3 Binary files /dev/null and b/flags/flags/shiny/16/Bhutan.png differ diff --git a/flags/flags/shiny/16/Bolivia.png b/flags/flags/shiny/16/Bolivia.png new file mode 100644 index 0000000..63d8e76 Binary files /dev/null and b/flags/flags/shiny/16/Bolivia.png differ diff --git a/flags/flags/shiny/16/Bosnia-and-Herzegovina.png b/flags/flags/shiny/16/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..b484edb Binary files /dev/null and b/flags/flags/shiny/16/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/shiny/16/Botswana.png b/flags/flags/shiny/16/Botswana.png new file mode 100644 index 0000000..b4a502b Binary files /dev/null and b/flags/flags/shiny/16/Botswana.png differ diff --git a/flags/flags/shiny/16/Brazil.png b/flags/flags/shiny/16/Brazil.png new file mode 100644 index 0000000..42e1849 Binary files /dev/null and b/flags/flags/shiny/16/Brazil.png differ diff --git a/flags/flags/shiny/16/British-Antarctic-Territory.png b/flags/flags/shiny/16/British-Antarctic-Territory.png new file mode 100644 index 0000000..74a1847 Binary files /dev/null and b/flags/flags/shiny/16/British-Antarctic-Territory.png differ diff --git a/flags/flags/shiny/16/British-Virgin-Islands.png b/flags/flags/shiny/16/British-Virgin-Islands.png new file mode 100644 index 0000000..d337635 Binary files /dev/null and b/flags/flags/shiny/16/British-Virgin-Islands.png differ diff --git a/flags/flags/shiny/16/Brunei.png b/flags/flags/shiny/16/Brunei.png new file mode 100644 index 0000000..62882e8 Binary files /dev/null and b/flags/flags/shiny/16/Brunei.png differ diff --git a/flags/flags/shiny/16/Bulgaria.png b/flags/flags/shiny/16/Bulgaria.png new file mode 100644 index 0000000..775550c Binary files /dev/null and b/flags/flags/shiny/16/Bulgaria.png differ diff --git a/flags/flags/shiny/16/Burkina-Faso.png b/flags/flags/shiny/16/Burkina-Faso.png new file mode 100644 index 0000000..9e0643c Binary files /dev/null and b/flags/flags/shiny/16/Burkina-Faso.png differ diff --git a/flags/flags/shiny/16/Burundi.png b/flags/flags/shiny/16/Burundi.png new file mode 100644 index 0000000..394a829 Binary files /dev/null and b/flags/flags/shiny/16/Burundi.png differ diff --git a/flags/flags/shiny/16/Cambodia.png b/flags/flags/shiny/16/Cambodia.png new file mode 100644 index 0000000..4f80d8c Binary files /dev/null and b/flags/flags/shiny/16/Cambodia.png differ diff --git a/flags/flags/shiny/16/Cameroon.png b/flags/flags/shiny/16/Cameroon.png new file mode 100644 index 0000000..7b21abc Binary files /dev/null and b/flags/flags/shiny/16/Cameroon.png differ diff --git a/flags/flags/shiny/16/Canada.png b/flags/flags/shiny/16/Canada.png new file mode 100644 index 0000000..0906eca Binary files /dev/null and b/flags/flags/shiny/16/Canada.png differ diff --git a/flags/flags/shiny/16/Cape-Verde.png b/flags/flags/shiny/16/Cape-Verde.png new file mode 100644 index 0000000..f0c6fb0 Binary files /dev/null and b/flags/flags/shiny/16/Cape-Verde.png differ diff --git a/flags/flags/shiny/16/Cayman-Islands.png b/flags/flags/shiny/16/Cayman-Islands.png new file mode 100644 index 0000000..c787eb0 Binary files /dev/null and b/flags/flags/shiny/16/Cayman-Islands.png differ diff --git a/flags/flags/shiny/16/Central-African-Republic.png b/flags/flags/shiny/16/Central-African-Republic.png new file mode 100644 index 0000000..32cb360 Binary files /dev/null and b/flags/flags/shiny/16/Central-African-Republic.png differ diff --git a/flags/flags/shiny/16/Chad.png b/flags/flags/shiny/16/Chad.png new file mode 100644 index 0000000..d382728 Binary files /dev/null and b/flags/flags/shiny/16/Chad.png differ diff --git a/flags/flags/shiny/16/Chile.png b/flags/flags/shiny/16/Chile.png new file mode 100644 index 0000000..57bf33e Binary files /dev/null and b/flags/flags/shiny/16/Chile.png differ diff --git a/flags/flags/shiny/16/China.png b/flags/flags/shiny/16/China.png new file mode 100644 index 0000000..8c35f25 Binary files /dev/null and b/flags/flags/shiny/16/China.png differ diff --git a/flags/flags/shiny/16/Christmas-Island.png b/flags/flags/shiny/16/Christmas-Island.png new file mode 100644 index 0000000..6d068d8 Binary files /dev/null and b/flags/flags/shiny/16/Christmas-Island.png differ diff --git a/flags/flags/shiny/16/Cocos-Keeling-Islands.png b/flags/flags/shiny/16/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..d599e12 Binary files /dev/null and b/flags/flags/shiny/16/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/shiny/16/Colombia.png b/flags/flags/shiny/16/Colombia.png new file mode 100644 index 0000000..25142bc Binary files /dev/null and b/flags/flags/shiny/16/Colombia.png differ diff --git a/flags/flags/shiny/16/Commonwealth.png b/flags/flags/shiny/16/Commonwealth.png new file mode 100644 index 0000000..8f0aaa0 Binary files /dev/null and b/flags/flags/shiny/16/Commonwealth.png differ diff --git a/flags/flags/shiny/16/Comoros.png b/flags/flags/shiny/16/Comoros.png new file mode 100644 index 0000000..5eedfeb Binary files /dev/null and b/flags/flags/shiny/16/Comoros.png differ diff --git a/flags/flags/shiny/16/Cook-Islands.png b/flags/flags/shiny/16/Cook-Islands.png new file mode 100644 index 0000000..e07ed83 Binary files /dev/null and b/flags/flags/shiny/16/Cook-Islands.png differ diff --git a/flags/flags/shiny/16/Costa-Rica.png b/flags/flags/shiny/16/Costa-Rica.png new file mode 100644 index 0000000..17eeb62 Binary files /dev/null and b/flags/flags/shiny/16/Costa-Rica.png differ diff --git a/flags/flags/shiny/16/Cote-dIvoire.png b/flags/flags/shiny/16/Cote-dIvoire.png new file mode 100644 index 0000000..e519e0b Binary files /dev/null and b/flags/flags/shiny/16/Cote-dIvoire.png differ diff --git a/flags/flags/shiny/16/Croatia.png b/flags/flags/shiny/16/Croatia.png new file mode 100644 index 0000000..d0b5266 Binary files /dev/null and b/flags/flags/shiny/16/Croatia.png differ diff --git a/flags/flags/shiny/16/Cuba.png b/flags/flags/shiny/16/Cuba.png new file mode 100644 index 0000000..cd80f6d Binary files /dev/null and b/flags/flags/shiny/16/Cuba.png differ diff --git a/flags/flags/shiny/16/Cyprus.png b/flags/flags/shiny/16/Cyprus.png new file mode 100644 index 0000000..3aff6b8 Binary files /dev/null and b/flags/flags/shiny/16/Cyprus.png differ diff --git a/flags/flags/shiny/16/Czech-Republic.png b/flags/flags/shiny/16/Czech-Republic.png new file mode 100644 index 0000000..1bbbf0d Binary files /dev/null and b/flags/flags/shiny/16/Czech-Republic.png differ diff --git a/flags/flags/shiny/16/Democratic-Republic-of-the-Congo.png b/flags/flags/shiny/16/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..de00b2f Binary files /dev/null and b/flags/flags/shiny/16/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/16/Denmark.png b/flags/flags/shiny/16/Denmark.png new file mode 100644 index 0000000..a81768c Binary files /dev/null and b/flags/flags/shiny/16/Denmark.png differ diff --git a/flags/flags/shiny/16/Djibouti.png b/flags/flags/shiny/16/Djibouti.png new file mode 100644 index 0000000..78660a1 Binary files /dev/null and b/flags/flags/shiny/16/Djibouti.png differ diff --git a/flags/flags/shiny/16/Dominica.png b/flags/flags/shiny/16/Dominica.png new file mode 100644 index 0000000..93700d7 Binary files /dev/null and b/flags/flags/shiny/16/Dominica.png differ diff --git a/flags/flags/shiny/16/Dominican-Republic.png b/flags/flags/shiny/16/Dominican-Republic.png new file mode 100644 index 0000000..4b2c207 Binary files /dev/null and b/flags/flags/shiny/16/Dominican-Republic.png differ diff --git a/flags/flags/shiny/16/East-Timor.png b/flags/flags/shiny/16/East-Timor.png new file mode 100644 index 0000000..7e17f16 Binary files /dev/null and b/flags/flags/shiny/16/East-Timor.png differ diff --git a/flags/flags/shiny/16/Ecuador.png b/flags/flags/shiny/16/Ecuador.png new file mode 100644 index 0000000..204c631 Binary files /dev/null and b/flags/flags/shiny/16/Ecuador.png differ diff --git a/flags/flags/shiny/16/Egypt.png b/flags/flags/shiny/16/Egypt.png new file mode 100644 index 0000000..96c93ed Binary files /dev/null and b/flags/flags/shiny/16/Egypt.png differ diff --git a/flags/flags/shiny/16/El-Salvador.png b/flags/flags/shiny/16/El-Salvador.png new file mode 100644 index 0000000..82fc634 Binary files /dev/null and b/flags/flags/shiny/16/El-Salvador.png differ diff --git a/flags/flags/shiny/16/England.png b/flags/flags/shiny/16/England.png new file mode 100644 index 0000000..87d6ded Binary files /dev/null and b/flags/flags/shiny/16/England.png differ diff --git a/flags/flags/shiny/16/Equatorial-Guinea.png b/flags/flags/shiny/16/Equatorial-Guinea.png new file mode 100644 index 0000000..22e85d7 Binary files /dev/null and b/flags/flags/shiny/16/Equatorial-Guinea.png differ diff --git a/flags/flags/shiny/16/Eritrea.png b/flags/flags/shiny/16/Eritrea.png new file mode 100644 index 0000000..273ef15 Binary files /dev/null and b/flags/flags/shiny/16/Eritrea.png differ diff --git a/flags/flags/shiny/16/Estonia.png b/flags/flags/shiny/16/Estonia.png new file mode 100644 index 0000000..6c19913 Binary files /dev/null and b/flags/flags/shiny/16/Estonia.png differ diff --git a/flags/flags/shiny/16/Ethiopia.png b/flags/flags/shiny/16/Ethiopia.png new file mode 100644 index 0000000..c66f7ac Binary files /dev/null and b/flags/flags/shiny/16/Ethiopia.png differ diff --git a/flags/flags/shiny/16/European-Union.png b/flags/flags/shiny/16/European-Union.png new file mode 100644 index 0000000..7652407 Binary files /dev/null and b/flags/flags/shiny/16/European-Union.png differ diff --git a/flags/flags/shiny/16/Falkland-Islands.png b/flags/flags/shiny/16/Falkland-Islands.png new file mode 100644 index 0000000..8c4e4a7 Binary files /dev/null and b/flags/flags/shiny/16/Falkland-Islands.png differ diff --git a/flags/flags/shiny/16/Faroes.png b/flags/flags/shiny/16/Faroes.png new file mode 100644 index 0000000..4264083 Binary files /dev/null and b/flags/flags/shiny/16/Faroes.png differ diff --git a/flags/flags/shiny/16/Fiji.png b/flags/flags/shiny/16/Fiji.png new file mode 100644 index 0000000..a90ae00 Binary files /dev/null and b/flags/flags/shiny/16/Fiji.png differ diff --git a/flags/flags/shiny/16/Finland.png b/flags/flags/shiny/16/Finland.png new file mode 100644 index 0000000..627ad2e Binary files /dev/null and b/flags/flags/shiny/16/Finland.png differ diff --git a/flags/flags/shiny/16/France.png b/flags/flags/shiny/16/France.png new file mode 100644 index 0000000..b18c5ff Binary files /dev/null and b/flags/flags/shiny/16/France.png differ diff --git a/flags/flags/shiny/16/French-Polynesia.png b/flags/flags/shiny/16/French-Polynesia.png new file mode 100644 index 0000000..5f9a5a5 Binary files /dev/null and b/flags/flags/shiny/16/French-Polynesia.png differ diff --git a/flags/flags/shiny/16/French-Southern-Territories.png b/flags/flags/shiny/16/French-Southern-Territories.png new file mode 100644 index 0000000..0cb1a01 Binary files /dev/null and b/flags/flags/shiny/16/French-Southern-Territories.png differ diff --git a/flags/flags/shiny/16/Gabon.png b/flags/flags/shiny/16/Gabon.png new file mode 100644 index 0000000..2b198db Binary files /dev/null and b/flags/flags/shiny/16/Gabon.png differ diff --git a/flags/flags/shiny/16/Gambia.png b/flags/flags/shiny/16/Gambia.png new file mode 100644 index 0000000..b056657 Binary files /dev/null and b/flags/flags/shiny/16/Gambia.png differ diff --git a/flags/flags/shiny/16/Georgia.png b/flags/flags/shiny/16/Georgia.png new file mode 100644 index 0000000..b6b33ec Binary files /dev/null and b/flags/flags/shiny/16/Georgia.png differ diff --git a/flags/flags/shiny/16/Germany.png b/flags/flags/shiny/16/Germany.png new file mode 100644 index 0000000..d282989 Binary files /dev/null and b/flags/flags/shiny/16/Germany.png differ diff --git a/flags/flags/shiny/16/Ghana.png b/flags/flags/shiny/16/Ghana.png new file mode 100644 index 0000000..3ba2af7 Binary files /dev/null and b/flags/flags/shiny/16/Ghana.png differ diff --git a/flags/flags/shiny/16/Gibraltar.png b/flags/flags/shiny/16/Gibraltar.png new file mode 100644 index 0000000..7a79f3e Binary files /dev/null and b/flags/flags/shiny/16/Gibraltar.png differ diff --git a/flags/flags/shiny/16/GoSquared.png b/flags/flags/shiny/16/GoSquared.png new file mode 100644 index 0000000..6c5fb56 Binary files /dev/null and b/flags/flags/shiny/16/GoSquared.png differ diff --git a/flags/flags/shiny/16/Greece.png b/flags/flags/shiny/16/Greece.png new file mode 100644 index 0000000..9321a1e Binary files /dev/null and b/flags/flags/shiny/16/Greece.png differ diff --git a/flags/flags/shiny/16/Greenland.png b/flags/flags/shiny/16/Greenland.png new file mode 100644 index 0000000..6f27d69 Binary files /dev/null and b/flags/flags/shiny/16/Greenland.png differ diff --git a/flags/flags/shiny/16/Grenada.png b/flags/flags/shiny/16/Grenada.png new file mode 100644 index 0000000..5ec83c4 Binary files /dev/null and b/flags/flags/shiny/16/Grenada.png differ diff --git a/flags/flags/shiny/16/Guam.png b/flags/flags/shiny/16/Guam.png new file mode 100644 index 0000000..fa0cc49 Binary files /dev/null and b/flags/flags/shiny/16/Guam.png differ diff --git a/flags/flags/shiny/16/Guatemala.png b/flags/flags/shiny/16/Guatemala.png new file mode 100644 index 0000000..dacd490 Binary files /dev/null and b/flags/flags/shiny/16/Guatemala.png differ diff --git a/flags/flags/shiny/16/Guernsey.png b/flags/flags/shiny/16/Guernsey.png new file mode 100644 index 0000000..f2c1b71 Binary files /dev/null and b/flags/flags/shiny/16/Guernsey.png differ diff --git a/flags/flags/shiny/16/Guinea-Bissau.png b/flags/flags/shiny/16/Guinea-Bissau.png new file mode 100644 index 0000000..4f48bec Binary files /dev/null and b/flags/flags/shiny/16/Guinea-Bissau.png differ diff --git a/flags/flags/shiny/16/Guinea.png b/flags/flags/shiny/16/Guinea.png new file mode 100644 index 0000000..4b4a25a Binary files /dev/null and b/flags/flags/shiny/16/Guinea.png differ diff --git a/flags/flags/shiny/16/Guyana.png b/flags/flags/shiny/16/Guyana.png new file mode 100644 index 0000000..17a1692 Binary files /dev/null and b/flags/flags/shiny/16/Guyana.png differ diff --git a/flags/flags/shiny/16/Haiti.png b/flags/flags/shiny/16/Haiti.png new file mode 100644 index 0000000..d20cf24 Binary files /dev/null and b/flags/flags/shiny/16/Haiti.png differ diff --git a/flags/flags/shiny/16/Honduras.png b/flags/flags/shiny/16/Honduras.png new file mode 100644 index 0000000..4aadec8 Binary files /dev/null and b/flags/flags/shiny/16/Honduras.png differ diff --git a/flags/flags/shiny/16/Hong-Kong.png b/flags/flags/shiny/16/Hong-Kong.png new file mode 100644 index 0000000..a2bd2ea Binary files /dev/null and b/flags/flags/shiny/16/Hong-Kong.png differ diff --git a/flags/flags/shiny/16/Hungary.png b/flags/flags/shiny/16/Hungary.png new file mode 100644 index 0000000..ae5c6c9 Binary files /dev/null and b/flags/flags/shiny/16/Hungary.png differ diff --git a/flags/flags/shiny/16/Iceland.png b/flags/flags/shiny/16/Iceland.png new file mode 100644 index 0000000..d535f7f Binary files /dev/null and b/flags/flags/shiny/16/Iceland.png differ diff --git a/flags/flags/shiny/16/India.png b/flags/flags/shiny/16/India.png new file mode 100644 index 0000000..e5dd9d2 Binary files /dev/null and b/flags/flags/shiny/16/India.png differ diff --git a/flags/flags/shiny/16/Indonesia.png b/flags/flags/shiny/16/Indonesia.png new file mode 100644 index 0000000..9881b87 Binary files /dev/null and b/flags/flags/shiny/16/Indonesia.png differ diff --git a/flags/flags/shiny/16/Iran.png b/flags/flags/shiny/16/Iran.png new file mode 100644 index 0000000..5388dfb Binary files /dev/null and b/flags/flags/shiny/16/Iran.png differ diff --git a/flags/flags/shiny/16/Iraq.png b/flags/flags/shiny/16/Iraq.png new file mode 100644 index 0000000..1f28ebd Binary files /dev/null and b/flags/flags/shiny/16/Iraq.png differ diff --git a/flags/flags/shiny/16/Ireland.png b/flags/flags/shiny/16/Ireland.png new file mode 100644 index 0000000..ec9ba0f Binary files /dev/null and b/flags/flags/shiny/16/Ireland.png differ diff --git a/flags/flags/shiny/16/Isle-of-Man.png b/flags/flags/shiny/16/Isle-of-Man.png new file mode 100644 index 0000000..06ee5c4 Binary files /dev/null and b/flags/flags/shiny/16/Isle-of-Man.png differ diff --git a/flags/flags/shiny/16/Israel.png b/flags/flags/shiny/16/Israel.png new file mode 100644 index 0000000..13e3503 Binary files /dev/null and b/flags/flags/shiny/16/Israel.png differ diff --git a/flags/flags/shiny/16/Italy.png b/flags/flags/shiny/16/Italy.png new file mode 100644 index 0000000..42d1677 Binary files /dev/null and b/flags/flags/shiny/16/Italy.png differ diff --git a/flags/flags/shiny/16/Jamaica.png b/flags/flags/shiny/16/Jamaica.png new file mode 100644 index 0000000..6237052 Binary files /dev/null and b/flags/flags/shiny/16/Jamaica.png differ diff --git a/flags/flags/shiny/16/Japan.png b/flags/flags/shiny/16/Japan.png new file mode 100644 index 0000000..a742140 Binary files /dev/null and b/flags/flags/shiny/16/Japan.png differ diff --git a/flags/flags/shiny/16/Jersey.png b/flags/flags/shiny/16/Jersey.png new file mode 100644 index 0000000..407e319 Binary files /dev/null and b/flags/flags/shiny/16/Jersey.png differ diff --git a/flags/flags/shiny/16/Jordan.png b/flags/flags/shiny/16/Jordan.png new file mode 100644 index 0000000..8e11b7b Binary files /dev/null and b/flags/flags/shiny/16/Jordan.png differ diff --git a/flags/flags/shiny/16/Kazakhstan.png b/flags/flags/shiny/16/Kazakhstan.png new file mode 100644 index 0000000..5fe5a82 Binary files /dev/null and b/flags/flags/shiny/16/Kazakhstan.png differ diff --git a/flags/flags/shiny/16/Kenya.png b/flags/flags/shiny/16/Kenya.png new file mode 100644 index 0000000..e1ac097 Binary files /dev/null and b/flags/flags/shiny/16/Kenya.png differ diff --git a/flags/flags/shiny/16/Kiribati.png b/flags/flags/shiny/16/Kiribati.png new file mode 100644 index 0000000..1990c8d Binary files /dev/null and b/flags/flags/shiny/16/Kiribati.png differ diff --git a/flags/flags/shiny/16/Kosovo.png b/flags/flags/shiny/16/Kosovo.png new file mode 100644 index 0000000..cf0ad17 Binary files /dev/null and b/flags/flags/shiny/16/Kosovo.png differ diff --git a/flags/flags/shiny/16/Kuwait.png b/flags/flags/shiny/16/Kuwait.png new file mode 100644 index 0000000..af0191c Binary files /dev/null and b/flags/flags/shiny/16/Kuwait.png differ diff --git a/flags/flags/shiny/16/Kyrgyzstan.png b/flags/flags/shiny/16/Kyrgyzstan.png new file mode 100644 index 0000000..2de2061 Binary files /dev/null and b/flags/flags/shiny/16/Kyrgyzstan.png differ diff --git a/flags/flags/shiny/16/Laos.png b/flags/flags/shiny/16/Laos.png new file mode 100644 index 0000000..d68c937 Binary files /dev/null and b/flags/flags/shiny/16/Laos.png differ diff --git a/flags/flags/shiny/16/Latvia.png b/flags/flags/shiny/16/Latvia.png new file mode 100644 index 0000000..c31180d Binary files /dev/null and b/flags/flags/shiny/16/Latvia.png differ diff --git a/flags/flags/shiny/16/Lebanon.png b/flags/flags/shiny/16/Lebanon.png new file mode 100644 index 0000000..627a3aa Binary files /dev/null and b/flags/flags/shiny/16/Lebanon.png differ diff --git a/flags/flags/shiny/16/Lesotho.png b/flags/flags/shiny/16/Lesotho.png new file mode 100644 index 0000000..c8a5493 Binary files /dev/null and b/flags/flags/shiny/16/Lesotho.png differ diff --git a/flags/flags/shiny/16/Liberia.png b/flags/flags/shiny/16/Liberia.png new file mode 100644 index 0000000..4918491 Binary files /dev/null and b/flags/flags/shiny/16/Liberia.png differ diff --git a/flags/flags/shiny/16/Libya.png b/flags/flags/shiny/16/Libya.png new file mode 100644 index 0000000..6847120 Binary files /dev/null and b/flags/flags/shiny/16/Libya.png differ diff --git a/flags/flags/shiny/16/Liechtenstein.png b/flags/flags/shiny/16/Liechtenstein.png new file mode 100644 index 0000000..7d65fba Binary files /dev/null and b/flags/flags/shiny/16/Liechtenstein.png differ diff --git a/flags/flags/shiny/16/Lithuania.png b/flags/flags/shiny/16/Lithuania.png new file mode 100644 index 0000000..f12a14b Binary files /dev/null and b/flags/flags/shiny/16/Lithuania.png differ diff --git a/flags/flags/shiny/16/Luxembourg.png b/flags/flags/shiny/16/Luxembourg.png new file mode 100644 index 0000000..59b08cc Binary files /dev/null and b/flags/flags/shiny/16/Luxembourg.png differ diff --git a/flags/flags/shiny/16/Macau.png b/flags/flags/shiny/16/Macau.png new file mode 100644 index 0000000..ff2e117 Binary files /dev/null and b/flags/flags/shiny/16/Macau.png differ diff --git a/flags/flags/shiny/16/Macedonia.png b/flags/flags/shiny/16/Macedonia.png new file mode 100644 index 0000000..1f6b1c7 Binary files /dev/null and b/flags/flags/shiny/16/Macedonia.png differ diff --git a/flags/flags/shiny/16/Madagascar.png b/flags/flags/shiny/16/Madagascar.png new file mode 100644 index 0000000..c55a2f4 Binary files /dev/null and b/flags/flags/shiny/16/Madagascar.png differ diff --git a/flags/flags/shiny/16/Malawi.png b/flags/flags/shiny/16/Malawi.png new file mode 100644 index 0000000..9b70c79 Binary files /dev/null and b/flags/flags/shiny/16/Malawi.png differ diff --git a/flags/flags/shiny/16/Malaysia.png b/flags/flags/shiny/16/Malaysia.png new file mode 100644 index 0000000..9b7b458 Binary files /dev/null and b/flags/flags/shiny/16/Malaysia.png differ diff --git a/flags/flags/shiny/16/Maldives.png b/flags/flags/shiny/16/Maldives.png new file mode 100644 index 0000000..94d63cf Binary files /dev/null and b/flags/flags/shiny/16/Maldives.png differ diff --git a/flags/flags/shiny/16/Mali.png b/flags/flags/shiny/16/Mali.png new file mode 100644 index 0000000..530e5c5 Binary files /dev/null and b/flags/flags/shiny/16/Mali.png differ diff --git a/flags/flags/shiny/16/Malta.png b/flags/flags/shiny/16/Malta.png new file mode 100644 index 0000000..e77d8b2 Binary files /dev/null and b/flags/flags/shiny/16/Malta.png differ diff --git a/flags/flags/shiny/16/Mars.png b/flags/flags/shiny/16/Mars.png new file mode 100644 index 0000000..ba98c22 Binary files /dev/null and b/flags/flags/shiny/16/Mars.png differ diff --git a/flags/flags/shiny/16/Marshall-Islands.png b/flags/flags/shiny/16/Marshall-Islands.png new file mode 100644 index 0000000..7ffbb41 Binary files /dev/null and b/flags/flags/shiny/16/Marshall-Islands.png differ diff --git a/flags/flags/shiny/16/Mauritania.png b/flags/flags/shiny/16/Mauritania.png new file mode 100644 index 0000000..f25680e Binary files /dev/null and b/flags/flags/shiny/16/Mauritania.png differ diff --git a/flags/flags/shiny/16/Mauritius.png b/flags/flags/shiny/16/Mauritius.png new file mode 100644 index 0000000..d7d7e1c Binary files /dev/null and b/flags/flags/shiny/16/Mauritius.png differ diff --git a/flags/flags/shiny/16/Mayotte.png b/flags/flags/shiny/16/Mayotte.png new file mode 100644 index 0000000..877ddf8 Binary files /dev/null and b/flags/flags/shiny/16/Mayotte.png differ diff --git a/flags/flags/shiny/16/Mexico.png b/flags/flags/shiny/16/Mexico.png new file mode 100644 index 0000000..d05b37a Binary files /dev/null and b/flags/flags/shiny/16/Mexico.png differ diff --git a/flags/flags/shiny/16/Micronesia.png b/flags/flags/shiny/16/Micronesia.png new file mode 100644 index 0000000..bf420a8 Binary files /dev/null and b/flags/flags/shiny/16/Micronesia.png differ diff --git a/flags/flags/shiny/16/Moldova.png b/flags/flags/shiny/16/Moldova.png new file mode 100644 index 0000000..4ebe0d6 Binary files /dev/null and b/flags/flags/shiny/16/Moldova.png differ diff --git a/flags/flags/shiny/16/Monaco.png b/flags/flags/shiny/16/Monaco.png new file mode 100644 index 0000000..9881b87 Binary files /dev/null and b/flags/flags/shiny/16/Monaco.png differ diff --git a/flags/flags/shiny/16/Mongolia.png b/flags/flags/shiny/16/Mongolia.png new file mode 100644 index 0000000..8589e8d Binary files /dev/null and b/flags/flags/shiny/16/Mongolia.png differ diff --git a/flags/flags/shiny/16/Montenegro.png b/flags/flags/shiny/16/Montenegro.png new file mode 100644 index 0000000..96e74b0 Binary files /dev/null and b/flags/flags/shiny/16/Montenegro.png differ diff --git a/flags/flags/shiny/16/Montserrat.png b/flags/flags/shiny/16/Montserrat.png new file mode 100644 index 0000000..1689556 Binary files /dev/null and b/flags/flags/shiny/16/Montserrat.png differ diff --git a/flags/flags/shiny/16/Morocco.png b/flags/flags/shiny/16/Morocco.png new file mode 100644 index 0000000..67fe432 Binary files /dev/null and b/flags/flags/shiny/16/Morocco.png differ diff --git a/flags/flags/shiny/16/Mozambique.png b/flags/flags/shiny/16/Mozambique.png new file mode 100644 index 0000000..a919a16 Binary files /dev/null and b/flags/flags/shiny/16/Mozambique.png differ diff --git a/flags/flags/shiny/16/Myanmar.png b/flags/flags/shiny/16/Myanmar.png new file mode 100644 index 0000000..102f811 Binary files /dev/null and b/flags/flags/shiny/16/Myanmar.png differ diff --git a/flags/flags/shiny/16/NATO.png b/flags/flags/shiny/16/NATO.png new file mode 100644 index 0000000..f52845a Binary files /dev/null and b/flags/flags/shiny/16/NATO.png differ diff --git a/flags/flags/shiny/16/Nagorno-Karabakh.png b/flags/flags/shiny/16/Nagorno-Karabakh.png new file mode 100644 index 0000000..0edf82f Binary files /dev/null and b/flags/flags/shiny/16/Nagorno-Karabakh.png differ diff --git a/flags/flags/shiny/16/Namibia.png b/flags/flags/shiny/16/Namibia.png new file mode 100644 index 0000000..a053026 Binary files /dev/null and b/flags/flags/shiny/16/Namibia.png differ diff --git a/flags/flags/shiny/16/Nauru.png b/flags/flags/shiny/16/Nauru.png new file mode 100644 index 0000000..ee4d01e Binary files /dev/null and b/flags/flags/shiny/16/Nauru.png differ diff --git a/flags/flags/shiny/16/Nepal.png b/flags/flags/shiny/16/Nepal.png new file mode 100644 index 0000000..23c3c6d Binary files /dev/null and b/flags/flags/shiny/16/Nepal.png differ diff --git a/flags/flags/shiny/16/Netherlands-Antilles.png b/flags/flags/shiny/16/Netherlands-Antilles.png new file mode 100644 index 0000000..0fc1c3b Binary files /dev/null and b/flags/flags/shiny/16/Netherlands-Antilles.png differ diff --git a/flags/flags/shiny/16/Netherlands.png b/flags/flags/shiny/16/Netherlands.png new file mode 100644 index 0000000..e1ede53 Binary files /dev/null and b/flags/flags/shiny/16/Netherlands.png differ diff --git a/flags/flags/shiny/16/New-Caledonia.png b/flags/flags/shiny/16/New-Caledonia.png new file mode 100644 index 0000000..d04c592 Binary files /dev/null and b/flags/flags/shiny/16/New-Caledonia.png differ diff --git a/flags/flags/shiny/16/New-Zealand.png b/flags/flags/shiny/16/New-Zealand.png new file mode 100644 index 0000000..c44ca79 Binary files /dev/null and b/flags/flags/shiny/16/New-Zealand.png differ diff --git a/flags/flags/shiny/16/Nicaragua.png b/flags/flags/shiny/16/Nicaragua.png new file mode 100644 index 0000000..3b542e4 Binary files /dev/null and b/flags/flags/shiny/16/Nicaragua.png differ diff --git a/flags/flags/shiny/16/Niger.png b/flags/flags/shiny/16/Niger.png new file mode 100644 index 0000000..94c9512 Binary files /dev/null and b/flags/flags/shiny/16/Niger.png differ diff --git a/flags/flags/shiny/16/Nigeria.png b/flags/flags/shiny/16/Nigeria.png new file mode 100644 index 0000000..4265810 Binary files /dev/null and b/flags/flags/shiny/16/Nigeria.png differ diff --git a/flags/flags/shiny/16/Niue.png b/flags/flags/shiny/16/Niue.png new file mode 100644 index 0000000..354a67c Binary files /dev/null and b/flags/flags/shiny/16/Niue.png differ diff --git a/flags/flags/shiny/16/Norfolk-Island.png b/flags/flags/shiny/16/Norfolk-Island.png new file mode 100644 index 0000000..d09be06 Binary files /dev/null and b/flags/flags/shiny/16/Norfolk-Island.png differ diff --git a/flags/flags/shiny/16/North-Korea.png b/flags/flags/shiny/16/North-Korea.png new file mode 100644 index 0000000..9716adc Binary files /dev/null and b/flags/flags/shiny/16/North-Korea.png differ diff --git a/flags/flags/shiny/16/Northern-Cyprus.png b/flags/flags/shiny/16/Northern-Cyprus.png new file mode 100644 index 0000000..600c7f2 Binary files /dev/null and b/flags/flags/shiny/16/Northern-Cyprus.png differ diff --git a/flags/flags/shiny/16/Northern-Mariana-Islands.png b/flags/flags/shiny/16/Northern-Mariana-Islands.png new file mode 100644 index 0000000..0a80d84 Binary files /dev/null and b/flags/flags/shiny/16/Northern-Mariana-Islands.png differ diff --git a/flags/flags/shiny/16/Norway.png b/flags/flags/shiny/16/Norway.png new file mode 100644 index 0000000..9f79424 Binary files /dev/null and b/flags/flags/shiny/16/Norway.png differ diff --git a/flags/flags/shiny/16/Olympics.png b/flags/flags/shiny/16/Olympics.png new file mode 100644 index 0000000..2109917 Binary files /dev/null and b/flags/flags/shiny/16/Olympics.png differ diff --git a/flags/flags/shiny/16/Oman.png b/flags/flags/shiny/16/Oman.png new file mode 100644 index 0000000..0e12bf9 Binary files /dev/null and b/flags/flags/shiny/16/Oman.png differ diff --git a/flags/flags/shiny/16/Pakistan.png b/flags/flags/shiny/16/Pakistan.png new file mode 100644 index 0000000..2f2550c Binary files /dev/null and b/flags/flags/shiny/16/Pakistan.png differ diff --git a/flags/flags/shiny/16/Palau.png b/flags/flags/shiny/16/Palau.png new file mode 100644 index 0000000..a5b01c3 Binary files /dev/null and b/flags/flags/shiny/16/Palau.png differ diff --git a/flags/flags/shiny/16/Palestine.png b/flags/flags/shiny/16/Palestine.png new file mode 100644 index 0000000..7145cbe Binary files /dev/null and b/flags/flags/shiny/16/Palestine.png differ diff --git a/flags/flags/shiny/16/Panama.png b/flags/flags/shiny/16/Panama.png new file mode 100644 index 0000000..87f2a4b Binary files /dev/null and b/flags/flags/shiny/16/Panama.png differ diff --git a/flags/flags/shiny/16/Papua-New-Guinea.png b/flags/flags/shiny/16/Papua-New-Guinea.png new file mode 100644 index 0000000..a7d1d23 Binary files /dev/null and b/flags/flags/shiny/16/Papua-New-Guinea.png differ diff --git a/flags/flags/shiny/16/Paraguay.png b/flags/flags/shiny/16/Paraguay.png new file mode 100644 index 0000000..ab391d7 Binary files /dev/null and b/flags/flags/shiny/16/Paraguay.png differ diff --git a/flags/flags/shiny/16/Peru.png b/flags/flags/shiny/16/Peru.png new file mode 100644 index 0000000..792a9ce Binary files /dev/null and b/flags/flags/shiny/16/Peru.png differ diff --git a/flags/flags/shiny/16/Philippines.png b/flags/flags/shiny/16/Philippines.png new file mode 100644 index 0000000..fd9d8fb Binary files /dev/null and b/flags/flags/shiny/16/Philippines.png differ diff --git a/flags/flags/shiny/16/Pitcairn-Islands.png b/flags/flags/shiny/16/Pitcairn-Islands.png new file mode 100644 index 0000000..18b8e38 Binary files /dev/null and b/flags/flags/shiny/16/Pitcairn-Islands.png differ diff --git a/flags/flags/shiny/16/Poland.png b/flags/flags/shiny/16/Poland.png new file mode 100644 index 0000000..e30222e Binary files /dev/null and b/flags/flags/shiny/16/Poland.png differ diff --git a/flags/flags/shiny/16/Portugal.png b/flags/flags/shiny/16/Portugal.png new file mode 100644 index 0000000..eab3f39 Binary files /dev/null and b/flags/flags/shiny/16/Portugal.png differ diff --git a/flags/flags/shiny/16/Puerto-Rico.png b/flags/flags/shiny/16/Puerto-Rico.png new file mode 100644 index 0000000..bac124c Binary files /dev/null and b/flags/flags/shiny/16/Puerto-Rico.png differ diff --git a/flags/flags/shiny/16/Qatar.png b/flags/flags/shiny/16/Qatar.png new file mode 100644 index 0000000..c3f3d57 Binary files /dev/null and b/flags/flags/shiny/16/Qatar.png differ diff --git a/flags/flags/shiny/16/Red-Cross.png b/flags/flags/shiny/16/Red-Cross.png new file mode 100644 index 0000000..c672f88 Binary files /dev/null and b/flags/flags/shiny/16/Red-Cross.png differ diff --git a/flags/flags/shiny/16/Republic-of-the-Congo.png b/flags/flags/shiny/16/Republic-of-the-Congo.png new file mode 100644 index 0000000..f35021f Binary files /dev/null and b/flags/flags/shiny/16/Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/16/Romania.png b/flags/flags/shiny/16/Romania.png new file mode 100644 index 0000000..79a7d55 Binary files /dev/null and b/flags/flags/shiny/16/Romania.png differ diff --git a/flags/flags/shiny/16/Russia.png b/flags/flags/shiny/16/Russia.png new file mode 100644 index 0000000..0d74832 Binary files /dev/null and b/flags/flags/shiny/16/Russia.png differ diff --git a/flags/flags/shiny/16/Rwanda.png b/flags/flags/shiny/16/Rwanda.png new file mode 100644 index 0000000..64d72c9 Binary files /dev/null and b/flags/flags/shiny/16/Rwanda.png differ diff --git a/flags/flags/shiny/16/Saint-Barthelemy.png b/flags/flags/shiny/16/Saint-Barthelemy.png new file mode 100644 index 0000000..79e24d2 Binary files /dev/null and b/flags/flags/shiny/16/Saint-Barthelemy.png differ diff --git a/flags/flags/shiny/16/Saint-Helena.png b/flags/flags/shiny/16/Saint-Helena.png new file mode 100644 index 0000000..8640c10 Binary files /dev/null and b/flags/flags/shiny/16/Saint-Helena.png differ diff --git a/flags/flags/shiny/16/Saint-Kitts-and-Nevis.png b/flags/flags/shiny/16/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..be930df Binary files /dev/null and b/flags/flags/shiny/16/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/shiny/16/Saint-Lucia.png b/flags/flags/shiny/16/Saint-Lucia.png new file mode 100644 index 0000000..8e93f66 Binary files /dev/null and b/flags/flags/shiny/16/Saint-Lucia.png differ diff --git a/flags/flags/shiny/16/Saint-Vincent-and-the-Grenadines.png b/flags/flags/shiny/16/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..28b71cf Binary files /dev/null and b/flags/flags/shiny/16/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/shiny/16/Samoa.png b/flags/flags/shiny/16/Samoa.png new file mode 100644 index 0000000..45fe25f Binary files /dev/null and b/flags/flags/shiny/16/Samoa.png differ diff --git a/flags/flags/shiny/16/San-Marino.png b/flags/flags/shiny/16/San-Marino.png new file mode 100644 index 0000000..64e5428 Binary files /dev/null and b/flags/flags/shiny/16/San-Marino.png differ diff --git a/flags/flags/shiny/16/Sao-Tome-and-Principe.png b/flags/flags/shiny/16/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..8eab5c5 Binary files /dev/null and b/flags/flags/shiny/16/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/shiny/16/Saudi-Arabia.png b/flags/flags/shiny/16/Saudi-Arabia.png new file mode 100644 index 0000000..b9f78ad Binary files /dev/null and b/flags/flags/shiny/16/Saudi-Arabia.png differ diff --git a/flags/flags/shiny/16/Scotland.png b/flags/flags/shiny/16/Scotland.png new file mode 100644 index 0000000..53864fd Binary files /dev/null and b/flags/flags/shiny/16/Scotland.png differ diff --git a/flags/flags/shiny/16/Senegal.png b/flags/flags/shiny/16/Senegal.png new file mode 100644 index 0000000..08ba0f5 Binary files /dev/null and b/flags/flags/shiny/16/Senegal.png differ diff --git a/flags/flags/shiny/16/Serbia.png b/flags/flags/shiny/16/Serbia.png new file mode 100644 index 0000000..5a6f9a3 Binary files /dev/null and b/flags/flags/shiny/16/Serbia.png differ diff --git a/flags/flags/shiny/16/Seychelles.png b/flags/flags/shiny/16/Seychelles.png new file mode 100644 index 0000000..0ff3930 Binary files /dev/null and b/flags/flags/shiny/16/Seychelles.png differ diff --git a/flags/flags/shiny/16/Sierra-Leone.png b/flags/flags/shiny/16/Sierra-Leone.png new file mode 100644 index 0000000..23695b3 Binary files /dev/null and b/flags/flags/shiny/16/Sierra-Leone.png differ diff --git a/flags/flags/shiny/16/Singapore.png b/flags/flags/shiny/16/Singapore.png new file mode 100644 index 0000000..b274a5d Binary files /dev/null and b/flags/flags/shiny/16/Singapore.png differ diff --git a/flags/flags/shiny/16/Slovakia.png b/flags/flags/shiny/16/Slovakia.png new file mode 100644 index 0000000..1409b5f Binary files /dev/null and b/flags/flags/shiny/16/Slovakia.png differ diff --git a/flags/flags/shiny/16/Slovenia.png b/flags/flags/shiny/16/Slovenia.png new file mode 100644 index 0000000..5b257f2 Binary files /dev/null and b/flags/flags/shiny/16/Slovenia.png differ diff --git a/flags/flags/shiny/16/Solomon-Islands.png b/flags/flags/shiny/16/Solomon-Islands.png new file mode 100644 index 0000000..bfd2624 Binary files /dev/null and b/flags/flags/shiny/16/Solomon-Islands.png differ diff --git a/flags/flags/shiny/16/Somalia.png b/flags/flags/shiny/16/Somalia.png new file mode 100644 index 0000000..021f6ca Binary files /dev/null and b/flags/flags/shiny/16/Somalia.png differ diff --git a/flags/flags/shiny/16/Somaliland.png b/flags/flags/shiny/16/Somaliland.png new file mode 100644 index 0000000..46ce0d5 Binary files /dev/null and b/flags/flags/shiny/16/Somaliland.png differ diff --git a/flags/flags/shiny/16/South-Africa.png b/flags/flags/shiny/16/South-Africa.png new file mode 100644 index 0000000..2c2eff8 Binary files /dev/null and b/flags/flags/shiny/16/South-Africa.png differ diff --git a/flags/flags/shiny/16/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/shiny/16/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..fbd3fd7 Binary files /dev/null and b/flags/flags/shiny/16/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/shiny/16/South-Korea.png b/flags/flags/shiny/16/South-Korea.png new file mode 100644 index 0000000..7878247 Binary files /dev/null and b/flags/flags/shiny/16/South-Korea.png differ diff --git a/flags/flags/shiny/16/South-Ossetia.png b/flags/flags/shiny/16/South-Ossetia.png new file mode 100644 index 0000000..c076713 Binary files /dev/null and b/flags/flags/shiny/16/South-Ossetia.png differ diff --git a/flags/flags/shiny/16/South-Sudan.png b/flags/flags/shiny/16/South-Sudan.png new file mode 100644 index 0000000..8c6616c Binary files /dev/null and b/flags/flags/shiny/16/South-Sudan.png differ diff --git a/flags/flags/shiny/16/Spain.png b/flags/flags/shiny/16/Spain.png new file mode 100644 index 0000000..df2315f Binary files /dev/null and b/flags/flags/shiny/16/Spain.png differ diff --git a/flags/flags/shiny/16/Sri-Lanka.png b/flags/flags/shiny/16/Sri-Lanka.png new file mode 100644 index 0000000..e926ca3 Binary files /dev/null and b/flags/flags/shiny/16/Sri-Lanka.png differ diff --git a/flags/flags/shiny/16/Sudan.png b/flags/flags/shiny/16/Sudan.png new file mode 100644 index 0000000..25e8425 Binary files /dev/null and b/flags/flags/shiny/16/Sudan.png differ diff --git a/flags/flags/shiny/16/Suriname.png b/flags/flags/shiny/16/Suriname.png new file mode 100644 index 0000000..2b114de Binary files /dev/null and b/flags/flags/shiny/16/Suriname.png differ diff --git a/flags/flags/shiny/16/Swaziland.png b/flags/flags/shiny/16/Swaziland.png new file mode 100644 index 0000000..555a279 Binary files /dev/null and b/flags/flags/shiny/16/Swaziland.png differ diff --git a/flags/flags/shiny/16/Sweden.png b/flags/flags/shiny/16/Sweden.png new file mode 100644 index 0000000..f9ad787 Binary files /dev/null and b/flags/flags/shiny/16/Sweden.png differ diff --git a/flags/flags/shiny/16/Switzerland.png b/flags/flags/shiny/16/Switzerland.png new file mode 100644 index 0000000..de304f3 Binary files /dev/null and b/flags/flags/shiny/16/Switzerland.png differ diff --git a/flags/flags/shiny/16/Syria.png b/flags/flags/shiny/16/Syria.png new file mode 100644 index 0000000..82ab48c Binary files /dev/null and b/flags/flags/shiny/16/Syria.png differ diff --git a/flags/flags/shiny/16/Taiwan.png b/flags/flags/shiny/16/Taiwan.png new file mode 100644 index 0000000..cb691b3 Binary files /dev/null and b/flags/flags/shiny/16/Taiwan.png differ diff --git a/flags/flags/shiny/16/Tajikistan.png b/flags/flags/shiny/16/Tajikistan.png new file mode 100644 index 0000000..2731fd5 Binary files /dev/null and b/flags/flags/shiny/16/Tajikistan.png differ diff --git a/flags/flags/shiny/16/Tanzania.png b/flags/flags/shiny/16/Tanzania.png new file mode 100644 index 0000000..5b7395e Binary files /dev/null and b/flags/flags/shiny/16/Tanzania.png differ diff --git a/flags/flags/shiny/16/Thailand.png b/flags/flags/shiny/16/Thailand.png new file mode 100644 index 0000000..485709a Binary files /dev/null and b/flags/flags/shiny/16/Thailand.png differ diff --git a/flags/flags/shiny/16/Togo.png b/flags/flags/shiny/16/Togo.png new file mode 100644 index 0000000..52e3a51 Binary files /dev/null and b/flags/flags/shiny/16/Togo.png differ diff --git a/flags/flags/shiny/16/Tokelau.png b/flags/flags/shiny/16/Tokelau.png new file mode 100644 index 0000000..78c1a29 Binary files /dev/null and b/flags/flags/shiny/16/Tokelau.png differ diff --git a/flags/flags/shiny/16/Tonga.png b/flags/flags/shiny/16/Tonga.png new file mode 100644 index 0000000..ea666d2 Binary files /dev/null and b/flags/flags/shiny/16/Tonga.png differ diff --git a/flags/flags/shiny/16/Trinidad-and-Tobago.png b/flags/flags/shiny/16/Trinidad-and-Tobago.png new file mode 100644 index 0000000..e929812 Binary files /dev/null and b/flags/flags/shiny/16/Trinidad-and-Tobago.png differ diff --git a/flags/flags/shiny/16/Tunisia.png b/flags/flags/shiny/16/Tunisia.png new file mode 100644 index 0000000..fd2b160 Binary files /dev/null and b/flags/flags/shiny/16/Tunisia.png differ diff --git a/flags/flags/shiny/16/Turkey.png b/flags/flags/shiny/16/Turkey.png new file mode 100644 index 0000000..d5a384a Binary files /dev/null and b/flags/flags/shiny/16/Turkey.png differ diff --git a/flags/flags/shiny/16/Turkmenistan.png b/flags/flags/shiny/16/Turkmenistan.png new file mode 100644 index 0000000..4a31703 Binary files /dev/null and b/flags/flags/shiny/16/Turkmenistan.png differ diff --git a/flags/flags/shiny/16/Turks-and-Caicos-Islands.png b/flags/flags/shiny/16/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..5edc6e9 Binary files /dev/null and b/flags/flags/shiny/16/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/shiny/16/Tuvalu.png b/flags/flags/shiny/16/Tuvalu.png new file mode 100644 index 0000000..40a5323 Binary files /dev/null and b/flags/flags/shiny/16/Tuvalu.png differ diff --git a/flags/flags/shiny/16/US-Virgin-Islands.png b/flags/flags/shiny/16/US-Virgin-Islands.png new file mode 100644 index 0000000..5fa3126 Binary files /dev/null and b/flags/flags/shiny/16/US-Virgin-Islands.png differ diff --git a/flags/flags/shiny/16/Uganda.png b/flags/flags/shiny/16/Uganda.png new file mode 100644 index 0000000..d07682e Binary files /dev/null and b/flags/flags/shiny/16/Uganda.png differ diff --git a/flags/flags/shiny/16/Ukraine.png b/flags/flags/shiny/16/Ukraine.png new file mode 100644 index 0000000..70db400 Binary files /dev/null and b/flags/flags/shiny/16/Ukraine.png differ diff --git a/flags/flags/shiny/16/United-Arab-Emirates.png b/flags/flags/shiny/16/United-Arab-Emirates.png new file mode 100644 index 0000000..501ebc6 Binary files /dev/null and b/flags/flags/shiny/16/United-Arab-Emirates.png differ diff --git a/flags/flags/shiny/16/United-Kingdom.png b/flags/flags/shiny/16/United-Kingdom.png new file mode 100644 index 0000000..a1d267e Binary files /dev/null and b/flags/flags/shiny/16/United-Kingdom.png differ diff --git a/flags/flags/shiny/16/United-Nations.png b/flags/flags/shiny/16/United-Nations.png new file mode 100644 index 0000000..42b3e1e Binary files /dev/null and b/flags/flags/shiny/16/United-Nations.png differ diff --git a/flags/flags/shiny/16/United-States.png b/flags/flags/shiny/16/United-States.png new file mode 100644 index 0000000..5706b57 Binary files /dev/null and b/flags/flags/shiny/16/United-States.png differ diff --git a/flags/flags/shiny/16/Uruguay.png b/flags/flags/shiny/16/Uruguay.png new file mode 100644 index 0000000..419d11f Binary files /dev/null and b/flags/flags/shiny/16/Uruguay.png differ diff --git a/flags/flags/shiny/16/Uzbekistan.png b/flags/flags/shiny/16/Uzbekistan.png new file mode 100644 index 0000000..b88e27e Binary files /dev/null and b/flags/flags/shiny/16/Uzbekistan.png differ diff --git a/flags/flags/shiny/16/Vanuatu.png b/flags/flags/shiny/16/Vanuatu.png new file mode 100644 index 0000000..e898000 Binary files /dev/null and b/flags/flags/shiny/16/Vanuatu.png differ diff --git a/flags/flags/shiny/16/Vatican-City.png b/flags/flags/shiny/16/Vatican-City.png new file mode 100644 index 0000000..da76146 Binary files /dev/null and b/flags/flags/shiny/16/Vatican-City.png differ diff --git a/flags/flags/shiny/16/Venezuela.png b/flags/flags/shiny/16/Venezuela.png new file mode 100644 index 0000000..9e51f9a Binary files /dev/null and b/flags/flags/shiny/16/Venezuela.png differ diff --git a/flags/flags/shiny/16/Vietnam.png b/flags/flags/shiny/16/Vietnam.png new file mode 100644 index 0000000..06b9498 Binary files /dev/null and b/flags/flags/shiny/16/Vietnam.png differ diff --git a/flags/flags/shiny/16/Wales.png b/flags/flags/shiny/16/Wales.png new file mode 100644 index 0000000..aad4ede Binary files /dev/null and b/flags/flags/shiny/16/Wales.png differ diff --git a/flags/flags/shiny/16/Wallis-And-Futuna.png b/flags/flags/shiny/16/Wallis-And-Futuna.png new file mode 100644 index 0000000..79bf057 Binary files /dev/null and b/flags/flags/shiny/16/Wallis-And-Futuna.png differ diff --git a/flags/flags/shiny/16/Western-Sahara.png b/flags/flags/shiny/16/Western-Sahara.png new file mode 100644 index 0000000..2a53959 Binary files /dev/null and b/flags/flags/shiny/16/Western-Sahara.png differ diff --git a/flags/flags/shiny/16/Yemen.png b/flags/flags/shiny/16/Yemen.png new file mode 100644 index 0000000..19a9e90 Binary files /dev/null and b/flags/flags/shiny/16/Yemen.png differ diff --git a/flags/flags/shiny/16/Zambia.png b/flags/flags/shiny/16/Zambia.png new file mode 100644 index 0000000..cd3d06a Binary files /dev/null and b/flags/flags/shiny/16/Zambia.png differ diff --git a/flags/flags/shiny/16/Zimbabwe.png b/flags/flags/shiny/16/Zimbabwe.png new file mode 100644 index 0000000..a40454d Binary files /dev/null and b/flags/flags/shiny/16/Zimbabwe.png differ diff --git a/flags/flags/shiny/24/Abkhazia.png b/flags/flags/shiny/24/Abkhazia.png new file mode 100644 index 0000000..267eb2f Binary files /dev/null and b/flags/flags/shiny/24/Abkhazia.png differ diff --git a/flags/flags/shiny/24/Afghanistan.png b/flags/flags/shiny/24/Afghanistan.png new file mode 100644 index 0000000..11074cc Binary files /dev/null and b/flags/flags/shiny/24/Afghanistan.png differ diff --git a/flags/flags/shiny/24/Aland.png b/flags/flags/shiny/24/Aland.png new file mode 100644 index 0000000..32d8161 Binary files /dev/null and b/flags/flags/shiny/24/Aland.png differ diff --git a/flags/flags/shiny/24/Albania.png b/flags/flags/shiny/24/Albania.png new file mode 100644 index 0000000..9b6ce18 Binary files /dev/null and b/flags/flags/shiny/24/Albania.png differ diff --git a/flags/flags/shiny/24/Algeria.png b/flags/flags/shiny/24/Algeria.png new file mode 100644 index 0000000..9cde087 Binary files /dev/null and b/flags/flags/shiny/24/Algeria.png differ diff --git a/flags/flags/shiny/24/American-Samoa.png b/flags/flags/shiny/24/American-Samoa.png new file mode 100644 index 0000000..bc04b1d Binary files /dev/null and b/flags/flags/shiny/24/American-Samoa.png differ diff --git a/flags/flags/shiny/24/Andorra.png b/flags/flags/shiny/24/Andorra.png new file mode 100644 index 0000000..52b3f8d Binary files /dev/null and b/flags/flags/shiny/24/Andorra.png differ diff --git a/flags/flags/shiny/24/Angola.png b/flags/flags/shiny/24/Angola.png new file mode 100644 index 0000000..f73e6e3 Binary files /dev/null and b/flags/flags/shiny/24/Angola.png differ diff --git a/flags/flags/shiny/24/Anguilla.png b/flags/flags/shiny/24/Anguilla.png new file mode 100644 index 0000000..c2d32a3 Binary files /dev/null and b/flags/flags/shiny/24/Anguilla.png differ diff --git a/flags/flags/shiny/24/Antarctica.png b/flags/flags/shiny/24/Antarctica.png new file mode 100644 index 0000000..cfd62d0 Binary files /dev/null and b/flags/flags/shiny/24/Antarctica.png differ diff --git a/flags/flags/shiny/24/Antigua-and-Barbuda.png b/flags/flags/shiny/24/Antigua-and-Barbuda.png new file mode 100644 index 0000000..ca68482 Binary files /dev/null and b/flags/flags/shiny/24/Antigua-and-Barbuda.png differ diff --git a/flags/flags/shiny/24/Argentina.png b/flags/flags/shiny/24/Argentina.png new file mode 100644 index 0000000..3f11d75 Binary files /dev/null and b/flags/flags/shiny/24/Argentina.png differ diff --git a/flags/flags/shiny/24/Armenia.png b/flags/flags/shiny/24/Armenia.png new file mode 100644 index 0000000..30975d0 Binary files /dev/null and b/flags/flags/shiny/24/Armenia.png differ diff --git a/flags/flags/shiny/24/Aruba.png b/flags/flags/shiny/24/Aruba.png new file mode 100644 index 0000000..6416975 Binary files /dev/null and b/flags/flags/shiny/24/Aruba.png differ diff --git a/flags/flags/shiny/24/Australia.png b/flags/flags/shiny/24/Australia.png new file mode 100644 index 0000000..1f60807 Binary files /dev/null and b/flags/flags/shiny/24/Australia.png differ diff --git a/flags/flags/shiny/24/Austria.png b/flags/flags/shiny/24/Austria.png new file mode 100644 index 0000000..563e011 Binary files /dev/null and b/flags/flags/shiny/24/Austria.png differ diff --git a/flags/flags/shiny/24/Azerbaijan.png b/flags/flags/shiny/24/Azerbaijan.png new file mode 100644 index 0000000..f2c8a78 Binary files /dev/null and b/flags/flags/shiny/24/Azerbaijan.png differ diff --git a/flags/flags/shiny/24/Bahamas.png b/flags/flags/shiny/24/Bahamas.png new file mode 100644 index 0000000..24db9da Binary files /dev/null and b/flags/flags/shiny/24/Bahamas.png differ diff --git a/flags/flags/shiny/24/Bahrain.png b/flags/flags/shiny/24/Bahrain.png new file mode 100644 index 0000000..3ac5bae Binary files /dev/null and b/flags/flags/shiny/24/Bahrain.png differ diff --git a/flags/flags/shiny/24/Bangladesh.png b/flags/flags/shiny/24/Bangladesh.png new file mode 100644 index 0000000..88e78d7 Binary files /dev/null and b/flags/flags/shiny/24/Bangladesh.png differ diff --git a/flags/flags/shiny/24/Barbados.png b/flags/flags/shiny/24/Barbados.png new file mode 100644 index 0000000..863a347 Binary files /dev/null and b/flags/flags/shiny/24/Barbados.png differ diff --git a/flags/flags/shiny/24/Belarus.png b/flags/flags/shiny/24/Belarus.png new file mode 100644 index 0000000..784f69c Binary files /dev/null and b/flags/flags/shiny/24/Belarus.png differ diff --git a/flags/flags/shiny/24/Belgium.png b/flags/flags/shiny/24/Belgium.png new file mode 100644 index 0000000..c3ea8ce Binary files /dev/null and b/flags/flags/shiny/24/Belgium.png differ diff --git a/flags/flags/shiny/24/Belize.png b/flags/flags/shiny/24/Belize.png new file mode 100644 index 0000000..ca66a15 Binary files /dev/null and b/flags/flags/shiny/24/Belize.png differ diff --git a/flags/flags/shiny/24/Benin.png b/flags/flags/shiny/24/Benin.png new file mode 100644 index 0000000..d78c94c Binary files /dev/null and b/flags/flags/shiny/24/Benin.png differ diff --git a/flags/flags/shiny/24/Bermuda.png b/flags/flags/shiny/24/Bermuda.png new file mode 100644 index 0000000..ed7fb2f Binary files /dev/null and b/flags/flags/shiny/24/Bermuda.png differ diff --git a/flags/flags/shiny/24/Bhutan.png b/flags/flags/shiny/24/Bhutan.png new file mode 100644 index 0000000..13989ed Binary files /dev/null and b/flags/flags/shiny/24/Bhutan.png differ diff --git a/flags/flags/shiny/24/Bolivia.png b/flags/flags/shiny/24/Bolivia.png new file mode 100644 index 0000000..ac32cdf Binary files /dev/null and b/flags/flags/shiny/24/Bolivia.png differ diff --git a/flags/flags/shiny/24/Bosnia-and-Herzegovina.png b/flags/flags/shiny/24/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..a4b3d21 Binary files /dev/null and b/flags/flags/shiny/24/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/shiny/24/Botswana.png b/flags/flags/shiny/24/Botswana.png new file mode 100644 index 0000000..77c3761 Binary files /dev/null and b/flags/flags/shiny/24/Botswana.png differ diff --git a/flags/flags/shiny/24/Brazil.png b/flags/flags/shiny/24/Brazil.png new file mode 100644 index 0000000..e660338 Binary files /dev/null and b/flags/flags/shiny/24/Brazil.png differ diff --git a/flags/flags/shiny/24/British-Antarctic-Territory.png b/flags/flags/shiny/24/British-Antarctic-Territory.png new file mode 100644 index 0000000..fae8b5e Binary files /dev/null and b/flags/flags/shiny/24/British-Antarctic-Territory.png differ diff --git a/flags/flags/shiny/24/British-Virgin-Islands.png b/flags/flags/shiny/24/British-Virgin-Islands.png new file mode 100644 index 0000000..00c72f8 Binary files /dev/null and b/flags/flags/shiny/24/British-Virgin-Islands.png differ diff --git a/flags/flags/shiny/24/Brunei.png b/flags/flags/shiny/24/Brunei.png new file mode 100644 index 0000000..d6d0d6c Binary files /dev/null and b/flags/flags/shiny/24/Brunei.png differ diff --git a/flags/flags/shiny/24/Bulgaria.png b/flags/flags/shiny/24/Bulgaria.png new file mode 100644 index 0000000..ffb444a Binary files /dev/null and b/flags/flags/shiny/24/Bulgaria.png differ diff --git a/flags/flags/shiny/24/Burkina-Faso.png b/flags/flags/shiny/24/Burkina-Faso.png new file mode 100644 index 0000000..cb5daf2 Binary files /dev/null and b/flags/flags/shiny/24/Burkina-Faso.png differ diff --git a/flags/flags/shiny/24/Burundi.png b/flags/flags/shiny/24/Burundi.png new file mode 100644 index 0000000..ebe14f3 Binary files /dev/null and b/flags/flags/shiny/24/Burundi.png differ diff --git a/flags/flags/shiny/24/Cambodia.png b/flags/flags/shiny/24/Cambodia.png new file mode 100644 index 0000000..4881570 Binary files /dev/null and b/flags/flags/shiny/24/Cambodia.png differ diff --git a/flags/flags/shiny/24/Cameroon.png b/flags/flags/shiny/24/Cameroon.png new file mode 100644 index 0000000..c03409b Binary files /dev/null and b/flags/flags/shiny/24/Cameroon.png differ diff --git a/flags/flags/shiny/24/Canada.png b/flags/flags/shiny/24/Canada.png new file mode 100644 index 0000000..fd089c2 Binary files /dev/null and b/flags/flags/shiny/24/Canada.png differ diff --git a/flags/flags/shiny/24/Cape-Verde.png b/flags/flags/shiny/24/Cape-Verde.png new file mode 100644 index 0000000..b8bf179 Binary files /dev/null and b/flags/flags/shiny/24/Cape-Verde.png differ diff --git a/flags/flags/shiny/24/Cayman-Islands.png b/flags/flags/shiny/24/Cayman-Islands.png new file mode 100644 index 0000000..49e4c7c Binary files /dev/null and b/flags/flags/shiny/24/Cayman-Islands.png differ diff --git a/flags/flags/shiny/24/Central-African-Republic.png b/flags/flags/shiny/24/Central-African-Republic.png new file mode 100644 index 0000000..ae33452 Binary files /dev/null and b/flags/flags/shiny/24/Central-African-Republic.png differ diff --git a/flags/flags/shiny/24/Chad.png b/flags/flags/shiny/24/Chad.png new file mode 100644 index 0000000..8b17d5c Binary files /dev/null and b/flags/flags/shiny/24/Chad.png differ diff --git a/flags/flags/shiny/24/Chile.png b/flags/flags/shiny/24/Chile.png new file mode 100644 index 0000000..6768c75 Binary files /dev/null and b/flags/flags/shiny/24/Chile.png differ diff --git a/flags/flags/shiny/24/China.png b/flags/flags/shiny/24/China.png new file mode 100644 index 0000000..08fca13 Binary files /dev/null and b/flags/flags/shiny/24/China.png differ diff --git a/flags/flags/shiny/24/Christmas-Island.png b/flags/flags/shiny/24/Christmas-Island.png new file mode 100644 index 0000000..0916464 Binary files /dev/null and b/flags/flags/shiny/24/Christmas-Island.png differ diff --git a/flags/flags/shiny/24/Cocos-Keeling-Islands.png b/flags/flags/shiny/24/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..35cfe7f Binary files /dev/null and b/flags/flags/shiny/24/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/shiny/24/Colombia.png b/flags/flags/shiny/24/Colombia.png new file mode 100644 index 0000000..af86cd0 Binary files /dev/null and b/flags/flags/shiny/24/Colombia.png differ diff --git a/flags/flags/shiny/24/Commonwealth.png b/flags/flags/shiny/24/Commonwealth.png new file mode 100644 index 0000000..52ded7e Binary files /dev/null and b/flags/flags/shiny/24/Commonwealth.png differ diff --git a/flags/flags/shiny/24/Comoros.png b/flags/flags/shiny/24/Comoros.png new file mode 100644 index 0000000..eef9dcb Binary files /dev/null and b/flags/flags/shiny/24/Comoros.png differ diff --git a/flags/flags/shiny/24/Cook-Islands.png b/flags/flags/shiny/24/Cook-Islands.png new file mode 100644 index 0000000..fbdb7dd Binary files /dev/null and b/flags/flags/shiny/24/Cook-Islands.png differ diff --git a/flags/flags/shiny/24/Costa-Rica.png b/flags/flags/shiny/24/Costa-Rica.png new file mode 100644 index 0000000..9de7a24 Binary files /dev/null and b/flags/flags/shiny/24/Costa-Rica.png differ diff --git a/flags/flags/shiny/24/Cote-dIvoire.png b/flags/flags/shiny/24/Cote-dIvoire.png new file mode 100644 index 0000000..8326e1d Binary files /dev/null and b/flags/flags/shiny/24/Cote-dIvoire.png differ diff --git a/flags/flags/shiny/24/Croatia.png b/flags/flags/shiny/24/Croatia.png new file mode 100644 index 0000000..e4fc75a Binary files /dev/null and b/flags/flags/shiny/24/Croatia.png differ diff --git a/flags/flags/shiny/24/Cuba.png b/flags/flags/shiny/24/Cuba.png new file mode 100644 index 0000000..4ba1a41 Binary files /dev/null and b/flags/flags/shiny/24/Cuba.png differ diff --git a/flags/flags/shiny/24/Cyprus.png b/flags/flags/shiny/24/Cyprus.png new file mode 100644 index 0000000..885bfd6 Binary files /dev/null and b/flags/flags/shiny/24/Cyprus.png differ diff --git a/flags/flags/shiny/24/Czech-Republic.png b/flags/flags/shiny/24/Czech-Republic.png new file mode 100644 index 0000000..73ac442 Binary files /dev/null and b/flags/flags/shiny/24/Czech-Republic.png differ diff --git a/flags/flags/shiny/24/Democratic-Republic-of-the-Congo.png b/flags/flags/shiny/24/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..bec710d Binary files /dev/null and b/flags/flags/shiny/24/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/24/Denmark.png b/flags/flags/shiny/24/Denmark.png new file mode 100644 index 0000000..6edf00b Binary files /dev/null and b/flags/flags/shiny/24/Denmark.png differ diff --git a/flags/flags/shiny/24/Djibouti.png b/flags/flags/shiny/24/Djibouti.png new file mode 100644 index 0000000..68a297b Binary files /dev/null and b/flags/flags/shiny/24/Djibouti.png differ diff --git a/flags/flags/shiny/24/Dominica.png b/flags/flags/shiny/24/Dominica.png new file mode 100644 index 0000000..7cd1131 Binary files /dev/null and b/flags/flags/shiny/24/Dominica.png differ diff --git a/flags/flags/shiny/24/Dominican-Republic.png b/flags/flags/shiny/24/Dominican-Republic.png new file mode 100644 index 0000000..d2ae5b6 Binary files /dev/null and b/flags/flags/shiny/24/Dominican-Republic.png differ diff --git a/flags/flags/shiny/24/East-Timor.png b/flags/flags/shiny/24/East-Timor.png new file mode 100644 index 0000000..a8e5a43 Binary files /dev/null and b/flags/flags/shiny/24/East-Timor.png differ diff --git a/flags/flags/shiny/24/Ecuador.png b/flags/flags/shiny/24/Ecuador.png new file mode 100644 index 0000000..ba11aaa Binary files /dev/null and b/flags/flags/shiny/24/Ecuador.png differ diff --git a/flags/flags/shiny/24/Egypt.png b/flags/flags/shiny/24/Egypt.png new file mode 100644 index 0000000..9b157a4 Binary files /dev/null and b/flags/flags/shiny/24/Egypt.png differ diff --git a/flags/flags/shiny/24/El-Salvador.png b/flags/flags/shiny/24/El-Salvador.png new file mode 100644 index 0000000..a369796 Binary files /dev/null and b/flags/flags/shiny/24/El-Salvador.png differ diff --git a/flags/flags/shiny/24/England.png b/flags/flags/shiny/24/England.png new file mode 100644 index 0000000..ce1d226 Binary files /dev/null and b/flags/flags/shiny/24/England.png differ diff --git a/flags/flags/shiny/24/Equatorial-Guinea.png b/flags/flags/shiny/24/Equatorial-Guinea.png new file mode 100644 index 0000000..ce53907 Binary files /dev/null and b/flags/flags/shiny/24/Equatorial-Guinea.png differ diff --git a/flags/flags/shiny/24/Eritrea.png b/flags/flags/shiny/24/Eritrea.png new file mode 100644 index 0000000..c36d218 Binary files /dev/null and b/flags/flags/shiny/24/Eritrea.png differ diff --git a/flags/flags/shiny/24/Estonia.png b/flags/flags/shiny/24/Estonia.png new file mode 100644 index 0000000..20150fc Binary files /dev/null and b/flags/flags/shiny/24/Estonia.png differ diff --git a/flags/flags/shiny/24/Ethiopia.png b/flags/flags/shiny/24/Ethiopia.png new file mode 100644 index 0000000..87da26f Binary files /dev/null and b/flags/flags/shiny/24/Ethiopia.png differ diff --git a/flags/flags/shiny/24/European-Union.png b/flags/flags/shiny/24/European-Union.png new file mode 100644 index 0000000..ccdf7d8 Binary files /dev/null and b/flags/flags/shiny/24/European-Union.png differ diff --git a/flags/flags/shiny/24/Falkland-Islands.png b/flags/flags/shiny/24/Falkland-Islands.png new file mode 100644 index 0000000..f9ebef2 Binary files /dev/null and b/flags/flags/shiny/24/Falkland-Islands.png differ diff --git a/flags/flags/shiny/24/Faroes.png b/flags/flags/shiny/24/Faroes.png new file mode 100644 index 0000000..8cb6c90 Binary files /dev/null and b/flags/flags/shiny/24/Faroes.png differ diff --git a/flags/flags/shiny/24/Fiji.png b/flags/flags/shiny/24/Fiji.png new file mode 100644 index 0000000..13a8bfd Binary files /dev/null and b/flags/flags/shiny/24/Fiji.png differ diff --git a/flags/flags/shiny/24/Finland.png b/flags/flags/shiny/24/Finland.png new file mode 100644 index 0000000..c9f17f6 Binary files /dev/null and b/flags/flags/shiny/24/Finland.png differ diff --git a/flags/flags/shiny/24/France.png b/flags/flags/shiny/24/France.png new file mode 100644 index 0000000..f27f411 Binary files /dev/null and b/flags/flags/shiny/24/France.png differ diff --git a/flags/flags/shiny/24/French-Polynesia.png b/flags/flags/shiny/24/French-Polynesia.png new file mode 100644 index 0000000..2ad2502 Binary files /dev/null and b/flags/flags/shiny/24/French-Polynesia.png differ diff --git a/flags/flags/shiny/24/French-Southern-Territories.png b/flags/flags/shiny/24/French-Southern-Territories.png new file mode 100644 index 0000000..64a3748 Binary files /dev/null and b/flags/flags/shiny/24/French-Southern-Territories.png differ diff --git a/flags/flags/shiny/24/Gabon.png b/flags/flags/shiny/24/Gabon.png new file mode 100644 index 0000000..317dd67 Binary files /dev/null and b/flags/flags/shiny/24/Gabon.png differ diff --git a/flags/flags/shiny/24/Gambia.png b/flags/flags/shiny/24/Gambia.png new file mode 100644 index 0000000..814d391 Binary files /dev/null and b/flags/flags/shiny/24/Gambia.png differ diff --git a/flags/flags/shiny/24/Georgia.png b/flags/flags/shiny/24/Georgia.png new file mode 100644 index 0000000..eda18d8 Binary files /dev/null and b/flags/flags/shiny/24/Georgia.png differ diff --git a/flags/flags/shiny/24/Germany.png b/flags/flags/shiny/24/Germany.png new file mode 100644 index 0000000..0c229c3 Binary files /dev/null and b/flags/flags/shiny/24/Germany.png differ diff --git a/flags/flags/shiny/24/Ghana.png b/flags/flags/shiny/24/Ghana.png new file mode 100644 index 0000000..4fcc198 Binary files /dev/null and b/flags/flags/shiny/24/Ghana.png differ diff --git a/flags/flags/shiny/24/Gibraltar.png b/flags/flags/shiny/24/Gibraltar.png new file mode 100644 index 0000000..8b76b45 Binary files /dev/null and b/flags/flags/shiny/24/Gibraltar.png differ diff --git a/flags/flags/shiny/24/GoSquared.png b/flags/flags/shiny/24/GoSquared.png new file mode 100644 index 0000000..ae596b4 Binary files /dev/null and b/flags/flags/shiny/24/GoSquared.png differ diff --git a/flags/flags/shiny/24/Greece.png b/flags/flags/shiny/24/Greece.png new file mode 100644 index 0000000..5f6320f Binary files /dev/null and b/flags/flags/shiny/24/Greece.png differ diff --git a/flags/flags/shiny/24/Greenland.png b/flags/flags/shiny/24/Greenland.png new file mode 100644 index 0000000..a3835b7 Binary files /dev/null and b/flags/flags/shiny/24/Greenland.png differ diff --git a/flags/flags/shiny/24/Grenada.png b/flags/flags/shiny/24/Grenada.png new file mode 100644 index 0000000..1670317 Binary files /dev/null and b/flags/flags/shiny/24/Grenada.png differ diff --git a/flags/flags/shiny/24/Guam.png b/flags/flags/shiny/24/Guam.png new file mode 100644 index 0000000..5004db6 Binary files /dev/null and b/flags/flags/shiny/24/Guam.png differ diff --git a/flags/flags/shiny/24/Guatemala.png b/flags/flags/shiny/24/Guatemala.png new file mode 100644 index 0000000..a587b51 Binary files /dev/null and b/flags/flags/shiny/24/Guatemala.png differ diff --git a/flags/flags/shiny/24/Guernsey.png b/flags/flags/shiny/24/Guernsey.png new file mode 100644 index 0000000..273e5e7 Binary files /dev/null and b/flags/flags/shiny/24/Guernsey.png differ diff --git a/flags/flags/shiny/24/Guinea-Bissau.png b/flags/flags/shiny/24/Guinea-Bissau.png new file mode 100644 index 0000000..808a1ef Binary files /dev/null and b/flags/flags/shiny/24/Guinea-Bissau.png differ diff --git a/flags/flags/shiny/24/Guinea.png b/flags/flags/shiny/24/Guinea.png new file mode 100644 index 0000000..1c3b5b2 Binary files /dev/null and b/flags/flags/shiny/24/Guinea.png differ diff --git a/flags/flags/shiny/24/Guyana.png b/flags/flags/shiny/24/Guyana.png new file mode 100644 index 0000000..b94d736 Binary files /dev/null and b/flags/flags/shiny/24/Guyana.png differ diff --git a/flags/flags/shiny/24/Haiti.png b/flags/flags/shiny/24/Haiti.png new file mode 100644 index 0000000..9f52fc4 Binary files /dev/null and b/flags/flags/shiny/24/Haiti.png differ diff --git a/flags/flags/shiny/24/Honduras.png b/flags/flags/shiny/24/Honduras.png new file mode 100644 index 0000000..9635f7e Binary files /dev/null and b/flags/flags/shiny/24/Honduras.png differ diff --git a/flags/flags/shiny/24/Hong-Kong.png b/flags/flags/shiny/24/Hong-Kong.png new file mode 100644 index 0000000..c17e4ce Binary files /dev/null and b/flags/flags/shiny/24/Hong-Kong.png differ diff --git a/flags/flags/shiny/24/Hungary.png b/flags/flags/shiny/24/Hungary.png new file mode 100644 index 0000000..6d4478f Binary files /dev/null and b/flags/flags/shiny/24/Hungary.png differ diff --git a/flags/flags/shiny/24/Iceland.png b/flags/flags/shiny/24/Iceland.png new file mode 100644 index 0000000..33d2499 Binary files /dev/null and b/flags/flags/shiny/24/Iceland.png differ diff --git a/flags/flags/shiny/24/India.png b/flags/flags/shiny/24/India.png new file mode 100644 index 0000000..3e43337 Binary files /dev/null and b/flags/flags/shiny/24/India.png differ diff --git a/flags/flags/shiny/24/Indonesia.png b/flags/flags/shiny/24/Indonesia.png new file mode 100644 index 0000000..63ad1fc Binary files /dev/null and b/flags/flags/shiny/24/Indonesia.png differ diff --git a/flags/flags/shiny/24/Iran.png b/flags/flags/shiny/24/Iran.png new file mode 100644 index 0000000..1506e99 Binary files /dev/null and b/flags/flags/shiny/24/Iran.png differ diff --git a/flags/flags/shiny/24/Iraq.png b/flags/flags/shiny/24/Iraq.png new file mode 100644 index 0000000..6418593 Binary files /dev/null and b/flags/flags/shiny/24/Iraq.png differ diff --git a/flags/flags/shiny/24/Ireland.png b/flags/flags/shiny/24/Ireland.png new file mode 100644 index 0000000..44062f6 Binary files /dev/null and b/flags/flags/shiny/24/Ireland.png differ diff --git a/flags/flags/shiny/24/Isle-of-Man.png b/flags/flags/shiny/24/Isle-of-Man.png new file mode 100644 index 0000000..3f30b7a Binary files /dev/null and b/flags/flags/shiny/24/Isle-of-Man.png differ diff --git a/flags/flags/shiny/24/Israel.png b/flags/flags/shiny/24/Israel.png new file mode 100644 index 0000000..8a8d4a8 Binary files /dev/null and b/flags/flags/shiny/24/Israel.png differ diff --git a/flags/flags/shiny/24/Italy.png b/flags/flags/shiny/24/Italy.png new file mode 100644 index 0000000..53ec702 Binary files /dev/null and b/flags/flags/shiny/24/Italy.png differ diff --git a/flags/flags/shiny/24/Jamaica.png b/flags/flags/shiny/24/Jamaica.png new file mode 100644 index 0000000..b55ccfc Binary files /dev/null and b/flags/flags/shiny/24/Jamaica.png differ diff --git a/flags/flags/shiny/24/Japan.png b/flags/flags/shiny/24/Japan.png new file mode 100644 index 0000000..0516af4 Binary files /dev/null and b/flags/flags/shiny/24/Japan.png differ diff --git a/flags/flags/shiny/24/Jersey.png b/flags/flags/shiny/24/Jersey.png new file mode 100644 index 0000000..2e3a1a7 Binary files /dev/null and b/flags/flags/shiny/24/Jersey.png differ diff --git a/flags/flags/shiny/24/Jordan.png b/flags/flags/shiny/24/Jordan.png new file mode 100644 index 0000000..7a3be3f Binary files /dev/null and b/flags/flags/shiny/24/Jordan.png differ diff --git a/flags/flags/shiny/24/Kazakhstan.png b/flags/flags/shiny/24/Kazakhstan.png new file mode 100644 index 0000000..04e0e42 Binary files /dev/null and b/flags/flags/shiny/24/Kazakhstan.png differ diff --git a/flags/flags/shiny/24/Kenya.png b/flags/flags/shiny/24/Kenya.png new file mode 100644 index 0000000..7296684 Binary files /dev/null and b/flags/flags/shiny/24/Kenya.png differ diff --git a/flags/flags/shiny/24/Kiribati.png b/flags/flags/shiny/24/Kiribati.png new file mode 100644 index 0000000..0bf057e Binary files /dev/null and b/flags/flags/shiny/24/Kiribati.png differ diff --git a/flags/flags/shiny/24/Kosovo.png b/flags/flags/shiny/24/Kosovo.png new file mode 100644 index 0000000..a919bba Binary files /dev/null and b/flags/flags/shiny/24/Kosovo.png differ diff --git a/flags/flags/shiny/24/Kuwait.png b/flags/flags/shiny/24/Kuwait.png new file mode 100644 index 0000000..3e899f6 Binary files /dev/null and b/flags/flags/shiny/24/Kuwait.png differ diff --git a/flags/flags/shiny/24/Kyrgyzstan.png b/flags/flags/shiny/24/Kyrgyzstan.png new file mode 100644 index 0000000..1b38e31 Binary files /dev/null and b/flags/flags/shiny/24/Kyrgyzstan.png differ diff --git a/flags/flags/shiny/24/Laos.png b/flags/flags/shiny/24/Laos.png new file mode 100644 index 0000000..e3d22fd Binary files /dev/null and b/flags/flags/shiny/24/Laos.png differ diff --git a/flags/flags/shiny/24/Latvia.png b/flags/flags/shiny/24/Latvia.png new file mode 100644 index 0000000..89f459f Binary files /dev/null and b/flags/flags/shiny/24/Latvia.png differ diff --git a/flags/flags/shiny/24/Lebanon.png b/flags/flags/shiny/24/Lebanon.png new file mode 100644 index 0000000..04d889c Binary files /dev/null and b/flags/flags/shiny/24/Lebanon.png differ diff --git a/flags/flags/shiny/24/Lesotho.png b/flags/flags/shiny/24/Lesotho.png new file mode 100644 index 0000000..9eca793 Binary files /dev/null and b/flags/flags/shiny/24/Lesotho.png differ diff --git a/flags/flags/shiny/24/Liberia.png b/flags/flags/shiny/24/Liberia.png new file mode 100644 index 0000000..17954ee Binary files /dev/null and b/flags/flags/shiny/24/Liberia.png differ diff --git a/flags/flags/shiny/24/Libya.png b/flags/flags/shiny/24/Libya.png new file mode 100644 index 0000000..58ad284 Binary files /dev/null and b/flags/flags/shiny/24/Libya.png differ diff --git a/flags/flags/shiny/24/Liechtenstein.png b/flags/flags/shiny/24/Liechtenstein.png new file mode 100644 index 0000000..78ddc1f Binary files /dev/null and b/flags/flags/shiny/24/Liechtenstein.png differ diff --git a/flags/flags/shiny/24/Lithuania.png b/flags/flags/shiny/24/Lithuania.png new file mode 100644 index 0000000..3d2b525 Binary files /dev/null and b/flags/flags/shiny/24/Lithuania.png differ diff --git a/flags/flags/shiny/24/Luxembourg.png b/flags/flags/shiny/24/Luxembourg.png new file mode 100644 index 0000000..36171c8 Binary files /dev/null and b/flags/flags/shiny/24/Luxembourg.png differ diff --git a/flags/flags/shiny/24/Macau.png b/flags/flags/shiny/24/Macau.png new file mode 100644 index 0000000..3d9e0e0 Binary files /dev/null and b/flags/flags/shiny/24/Macau.png differ diff --git a/flags/flags/shiny/24/Macedonia.png b/flags/flags/shiny/24/Macedonia.png new file mode 100644 index 0000000..3bdb9a8 Binary files /dev/null and b/flags/flags/shiny/24/Macedonia.png differ diff --git a/flags/flags/shiny/24/Madagascar.png b/flags/flags/shiny/24/Madagascar.png new file mode 100644 index 0000000..78baaa8 Binary files /dev/null and b/flags/flags/shiny/24/Madagascar.png differ diff --git a/flags/flags/shiny/24/Malawi.png b/flags/flags/shiny/24/Malawi.png new file mode 100644 index 0000000..149a1d1 Binary files /dev/null and b/flags/flags/shiny/24/Malawi.png differ diff --git a/flags/flags/shiny/24/Malaysia.png b/flags/flags/shiny/24/Malaysia.png new file mode 100644 index 0000000..7ba7b03 Binary files /dev/null and b/flags/flags/shiny/24/Malaysia.png differ diff --git a/flags/flags/shiny/24/Maldives.png b/flags/flags/shiny/24/Maldives.png new file mode 100644 index 0000000..4e92401 Binary files /dev/null and b/flags/flags/shiny/24/Maldives.png differ diff --git a/flags/flags/shiny/24/Mali.png b/flags/flags/shiny/24/Mali.png new file mode 100644 index 0000000..a027a3c Binary files /dev/null and b/flags/flags/shiny/24/Mali.png differ diff --git a/flags/flags/shiny/24/Malta.png b/flags/flags/shiny/24/Malta.png new file mode 100644 index 0000000..a44e22f Binary files /dev/null and b/flags/flags/shiny/24/Malta.png differ diff --git a/flags/flags/shiny/24/Mars.png b/flags/flags/shiny/24/Mars.png new file mode 100644 index 0000000..cf80d89 Binary files /dev/null and b/flags/flags/shiny/24/Mars.png differ diff --git a/flags/flags/shiny/24/Marshall-Islands.png b/flags/flags/shiny/24/Marshall-Islands.png new file mode 100644 index 0000000..3ead7c0 Binary files /dev/null and b/flags/flags/shiny/24/Marshall-Islands.png differ diff --git a/flags/flags/shiny/24/Mauritania.png b/flags/flags/shiny/24/Mauritania.png new file mode 100644 index 0000000..e5f0792 Binary files /dev/null and b/flags/flags/shiny/24/Mauritania.png differ diff --git a/flags/flags/shiny/24/Mauritius.png b/flags/flags/shiny/24/Mauritius.png new file mode 100644 index 0000000..1c27411 Binary files /dev/null and b/flags/flags/shiny/24/Mauritius.png differ diff --git a/flags/flags/shiny/24/Mayotte.png b/flags/flags/shiny/24/Mayotte.png new file mode 100644 index 0000000..dea0a0f Binary files /dev/null and b/flags/flags/shiny/24/Mayotte.png differ diff --git a/flags/flags/shiny/24/Mexico.png b/flags/flags/shiny/24/Mexico.png new file mode 100644 index 0000000..86f1272 Binary files /dev/null and b/flags/flags/shiny/24/Mexico.png differ diff --git a/flags/flags/shiny/24/Micronesia.png b/flags/flags/shiny/24/Micronesia.png new file mode 100644 index 0000000..e4596ce Binary files /dev/null and b/flags/flags/shiny/24/Micronesia.png differ diff --git a/flags/flags/shiny/24/Moldova.png b/flags/flags/shiny/24/Moldova.png new file mode 100644 index 0000000..6713c38 Binary files /dev/null and b/flags/flags/shiny/24/Moldova.png differ diff --git a/flags/flags/shiny/24/Monaco.png b/flags/flags/shiny/24/Monaco.png new file mode 100644 index 0000000..63ad1fc Binary files /dev/null and b/flags/flags/shiny/24/Monaco.png differ diff --git a/flags/flags/shiny/24/Mongolia.png b/flags/flags/shiny/24/Mongolia.png new file mode 100644 index 0000000..2f71455 Binary files /dev/null and b/flags/flags/shiny/24/Mongolia.png differ diff --git a/flags/flags/shiny/24/Montenegro.png b/flags/flags/shiny/24/Montenegro.png new file mode 100644 index 0000000..663cd07 Binary files /dev/null and b/flags/flags/shiny/24/Montenegro.png differ diff --git a/flags/flags/shiny/24/Montserrat.png b/flags/flags/shiny/24/Montserrat.png new file mode 100644 index 0000000..7f9ee94 Binary files /dev/null and b/flags/flags/shiny/24/Montserrat.png differ diff --git a/flags/flags/shiny/24/Morocco.png b/flags/flags/shiny/24/Morocco.png new file mode 100644 index 0000000..055948e Binary files /dev/null and b/flags/flags/shiny/24/Morocco.png differ diff --git a/flags/flags/shiny/24/Mozambique.png b/flags/flags/shiny/24/Mozambique.png new file mode 100644 index 0000000..f20e525 Binary files /dev/null and b/flags/flags/shiny/24/Mozambique.png differ diff --git a/flags/flags/shiny/24/Myanmar.png b/flags/flags/shiny/24/Myanmar.png new file mode 100644 index 0000000..798d802 Binary files /dev/null and b/flags/flags/shiny/24/Myanmar.png differ diff --git a/flags/flags/shiny/24/NATO.png b/flags/flags/shiny/24/NATO.png new file mode 100644 index 0000000..faa5f76 Binary files /dev/null and b/flags/flags/shiny/24/NATO.png differ diff --git a/flags/flags/shiny/24/Nagorno-Karabakh.png b/flags/flags/shiny/24/Nagorno-Karabakh.png new file mode 100644 index 0000000..a7f3845 Binary files /dev/null and b/flags/flags/shiny/24/Nagorno-Karabakh.png differ diff --git a/flags/flags/shiny/24/Namibia.png b/flags/flags/shiny/24/Namibia.png new file mode 100644 index 0000000..100b38e Binary files /dev/null and b/flags/flags/shiny/24/Namibia.png differ diff --git a/flags/flags/shiny/24/Nauru.png b/flags/flags/shiny/24/Nauru.png new file mode 100644 index 0000000..a970507 Binary files /dev/null and b/flags/flags/shiny/24/Nauru.png differ diff --git a/flags/flags/shiny/24/Nepal.png b/flags/flags/shiny/24/Nepal.png new file mode 100644 index 0000000..75c012e Binary files /dev/null and b/flags/flags/shiny/24/Nepal.png differ diff --git a/flags/flags/shiny/24/Netherlands-Antilles.png b/flags/flags/shiny/24/Netherlands-Antilles.png new file mode 100644 index 0000000..b09f152 Binary files /dev/null and b/flags/flags/shiny/24/Netherlands-Antilles.png differ diff --git a/flags/flags/shiny/24/Netherlands.png b/flags/flags/shiny/24/Netherlands.png new file mode 100644 index 0000000..505b9ce Binary files /dev/null and b/flags/flags/shiny/24/Netherlands.png differ diff --git a/flags/flags/shiny/24/New-Caledonia.png b/flags/flags/shiny/24/New-Caledonia.png new file mode 100644 index 0000000..2c8bb2a Binary files /dev/null and b/flags/flags/shiny/24/New-Caledonia.png differ diff --git a/flags/flags/shiny/24/New-Zealand.png b/flags/flags/shiny/24/New-Zealand.png new file mode 100644 index 0000000..0c5a8e0 Binary files /dev/null and b/flags/flags/shiny/24/New-Zealand.png differ diff --git a/flags/flags/shiny/24/Nicaragua.png b/flags/flags/shiny/24/Nicaragua.png new file mode 100644 index 0000000..709fcc6 Binary files /dev/null and b/flags/flags/shiny/24/Nicaragua.png differ diff --git a/flags/flags/shiny/24/Niger.png b/flags/flags/shiny/24/Niger.png new file mode 100644 index 0000000..8f501cd Binary files /dev/null and b/flags/flags/shiny/24/Niger.png differ diff --git a/flags/flags/shiny/24/Nigeria.png b/flags/flags/shiny/24/Nigeria.png new file mode 100644 index 0000000..4a00307 Binary files /dev/null and b/flags/flags/shiny/24/Nigeria.png differ diff --git a/flags/flags/shiny/24/Niue.png b/flags/flags/shiny/24/Niue.png new file mode 100644 index 0000000..cd3c5dc Binary files /dev/null and b/flags/flags/shiny/24/Niue.png differ diff --git a/flags/flags/shiny/24/Norfolk-Island.png b/flags/flags/shiny/24/Norfolk-Island.png new file mode 100644 index 0000000..be1ed10 Binary files /dev/null and b/flags/flags/shiny/24/Norfolk-Island.png differ diff --git a/flags/flags/shiny/24/North-Korea.png b/flags/flags/shiny/24/North-Korea.png new file mode 100644 index 0000000..8323a97 Binary files /dev/null and b/flags/flags/shiny/24/North-Korea.png differ diff --git a/flags/flags/shiny/24/Northern-Cyprus.png b/flags/flags/shiny/24/Northern-Cyprus.png new file mode 100644 index 0000000..45a987f Binary files /dev/null and b/flags/flags/shiny/24/Northern-Cyprus.png differ diff --git a/flags/flags/shiny/24/Northern-Mariana-Islands.png b/flags/flags/shiny/24/Northern-Mariana-Islands.png new file mode 100644 index 0000000..5b59f91 Binary files /dev/null and b/flags/flags/shiny/24/Northern-Mariana-Islands.png differ diff --git a/flags/flags/shiny/24/Norway.png b/flags/flags/shiny/24/Norway.png new file mode 100644 index 0000000..20d6534 Binary files /dev/null and b/flags/flags/shiny/24/Norway.png differ diff --git a/flags/flags/shiny/24/Olympics.png b/flags/flags/shiny/24/Olympics.png new file mode 100644 index 0000000..9f4b7e4 Binary files /dev/null and b/flags/flags/shiny/24/Olympics.png differ diff --git a/flags/flags/shiny/24/Oman.png b/flags/flags/shiny/24/Oman.png new file mode 100644 index 0000000..384def2 Binary files /dev/null and b/flags/flags/shiny/24/Oman.png differ diff --git a/flags/flags/shiny/24/Pakistan.png b/flags/flags/shiny/24/Pakistan.png new file mode 100644 index 0000000..317e02d Binary files /dev/null and b/flags/flags/shiny/24/Pakistan.png differ diff --git a/flags/flags/shiny/24/Palau.png b/flags/flags/shiny/24/Palau.png new file mode 100644 index 0000000..6852102 Binary files /dev/null and b/flags/flags/shiny/24/Palau.png differ diff --git a/flags/flags/shiny/24/Palestine.png b/flags/flags/shiny/24/Palestine.png new file mode 100644 index 0000000..d95bacb Binary files /dev/null and b/flags/flags/shiny/24/Palestine.png differ diff --git a/flags/flags/shiny/24/Panama.png b/flags/flags/shiny/24/Panama.png new file mode 100644 index 0000000..e20a743 Binary files /dev/null and b/flags/flags/shiny/24/Panama.png differ diff --git a/flags/flags/shiny/24/Papua-New-Guinea.png b/flags/flags/shiny/24/Papua-New-Guinea.png new file mode 100644 index 0000000..13dc48a Binary files /dev/null and b/flags/flags/shiny/24/Papua-New-Guinea.png differ diff --git a/flags/flags/shiny/24/Paraguay.png b/flags/flags/shiny/24/Paraguay.png new file mode 100644 index 0000000..e4445d5 Binary files /dev/null and b/flags/flags/shiny/24/Paraguay.png differ diff --git a/flags/flags/shiny/24/Peru.png b/flags/flags/shiny/24/Peru.png new file mode 100644 index 0000000..616b655 Binary files /dev/null and b/flags/flags/shiny/24/Peru.png differ diff --git a/flags/flags/shiny/24/Philippines.png b/flags/flags/shiny/24/Philippines.png new file mode 100644 index 0000000..36b3612 Binary files /dev/null and b/flags/flags/shiny/24/Philippines.png differ diff --git a/flags/flags/shiny/24/Pitcairn-Islands.png b/flags/flags/shiny/24/Pitcairn-Islands.png new file mode 100644 index 0000000..e26fad9 Binary files /dev/null and b/flags/flags/shiny/24/Pitcairn-Islands.png differ diff --git a/flags/flags/shiny/24/Poland.png b/flags/flags/shiny/24/Poland.png new file mode 100644 index 0000000..92cd1ca Binary files /dev/null and b/flags/flags/shiny/24/Poland.png differ diff --git a/flags/flags/shiny/24/Portugal.png b/flags/flags/shiny/24/Portugal.png new file mode 100644 index 0000000..6e4d734 Binary files /dev/null and b/flags/flags/shiny/24/Portugal.png differ diff --git a/flags/flags/shiny/24/Puerto-Rico.png b/flags/flags/shiny/24/Puerto-Rico.png new file mode 100644 index 0000000..b466682 Binary files /dev/null and b/flags/flags/shiny/24/Puerto-Rico.png differ diff --git a/flags/flags/shiny/24/Qatar.png b/flags/flags/shiny/24/Qatar.png new file mode 100644 index 0000000..e3fa51f Binary files /dev/null and b/flags/flags/shiny/24/Qatar.png differ diff --git a/flags/flags/shiny/24/Red-Cross.png b/flags/flags/shiny/24/Red-Cross.png new file mode 100644 index 0000000..201b1c6 Binary files /dev/null and b/flags/flags/shiny/24/Red-Cross.png differ diff --git a/flags/flags/shiny/24/Republic-of-the-Congo.png b/flags/flags/shiny/24/Republic-of-the-Congo.png new file mode 100644 index 0000000..c0b72bc Binary files /dev/null and b/flags/flags/shiny/24/Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/24/Romania.png b/flags/flags/shiny/24/Romania.png new file mode 100644 index 0000000..e7fa4f5 Binary files /dev/null and b/flags/flags/shiny/24/Romania.png differ diff --git a/flags/flags/shiny/24/Russia.png b/flags/flags/shiny/24/Russia.png new file mode 100644 index 0000000..d9624ca Binary files /dev/null and b/flags/flags/shiny/24/Russia.png differ diff --git a/flags/flags/shiny/24/Rwanda.png b/flags/flags/shiny/24/Rwanda.png new file mode 100644 index 0000000..6f5f588 Binary files /dev/null and b/flags/flags/shiny/24/Rwanda.png differ diff --git a/flags/flags/shiny/24/Saint-Barthelemy.png b/flags/flags/shiny/24/Saint-Barthelemy.png new file mode 100644 index 0000000..ade01d4 Binary files /dev/null and b/flags/flags/shiny/24/Saint-Barthelemy.png differ diff --git a/flags/flags/shiny/24/Saint-Helena.png b/flags/flags/shiny/24/Saint-Helena.png new file mode 100644 index 0000000..2250413 Binary files /dev/null and b/flags/flags/shiny/24/Saint-Helena.png differ diff --git a/flags/flags/shiny/24/Saint-Kitts-and-Nevis.png b/flags/flags/shiny/24/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..55a0a88 Binary files /dev/null and b/flags/flags/shiny/24/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/shiny/24/Saint-Lucia.png b/flags/flags/shiny/24/Saint-Lucia.png new file mode 100644 index 0000000..fbba84e Binary files /dev/null and b/flags/flags/shiny/24/Saint-Lucia.png differ diff --git a/flags/flags/shiny/24/Saint-Vincent-and-the-Grenadines.png b/flags/flags/shiny/24/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..5191c65 Binary files /dev/null and b/flags/flags/shiny/24/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/shiny/24/Samoa.png b/flags/flags/shiny/24/Samoa.png new file mode 100644 index 0000000..520b84f Binary files /dev/null and b/flags/flags/shiny/24/Samoa.png differ diff --git a/flags/flags/shiny/24/San-Marino.png b/flags/flags/shiny/24/San-Marino.png new file mode 100644 index 0000000..fc5036c Binary files /dev/null and b/flags/flags/shiny/24/San-Marino.png differ diff --git a/flags/flags/shiny/24/Sao-Tome-and-Principe.png b/flags/flags/shiny/24/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..3486853 Binary files /dev/null and b/flags/flags/shiny/24/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/shiny/24/Saudi-Arabia.png b/flags/flags/shiny/24/Saudi-Arabia.png new file mode 100644 index 0000000..d386dc0 Binary files /dev/null and b/flags/flags/shiny/24/Saudi-Arabia.png differ diff --git a/flags/flags/shiny/24/Scotland.png b/flags/flags/shiny/24/Scotland.png new file mode 100644 index 0000000..c11234a Binary files /dev/null and b/flags/flags/shiny/24/Scotland.png differ diff --git a/flags/flags/shiny/24/Senegal.png b/flags/flags/shiny/24/Senegal.png new file mode 100644 index 0000000..861df13 Binary files /dev/null and b/flags/flags/shiny/24/Senegal.png differ diff --git a/flags/flags/shiny/24/Serbia.png b/flags/flags/shiny/24/Serbia.png new file mode 100644 index 0000000..4c1e9f5 Binary files /dev/null and b/flags/flags/shiny/24/Serbia.png differ diff --git a/flags/flags/shiny/24/Seychelles.png b/flags/flags/shiny/24/Seychelles.png new file mode 100644 index 0000000..dd27a21 Binary files /dev/null and b/flags/flags/shiny/24/Seychelles.png differ diff --git a/flags/flags/shiny/24/Sierra-Leone.png b/flags/flags/shiny/24/Sierra-Leone.png new file mode 100644 index 0000000..f5ccc93 Binary files /dev/null and b/flags/flags/shiny/24/Sierra-Leone.png differ diff --git a/flags/flags/shiny/24/Singapore.png b/flags/flags/shiny/24/Singapore.png new file mode 100644 index 0000000..a3dbbfc Binary files /dev/null and b/flags/flags/shiny/24/Singapore.png differ diff --git a/flags/flags/shiny/24/Slovakia.png b/flags/flags/shiny/24/Slovakia.png new file mode 100644 index 0000000..bf7a247 Binary files /dev/null and b/flags/flags/shiny/24/Slovakia.png differ diff --git a/flags/flags/shiny/24/Slovenia.png b/flags/flags/shiny/24/Slovenia.png new file mode 100644 index 0000000..9938bee Binary files /dev/null and b/flags/flags/shiny/24/Slovenia.png differ diff --git a/flags/flags/shiny/24/Solomon-Islands.png b/flags/flags/shiny/24/Solomon-Islands.png new file mode 100644 index 0000000..1c25553 Binary files /dev/null and b/flags/flags/shiny/24/Solomon-Islands.png differ diff --git a/flags/flags/shiny/24/Somalia.png b/flags/flags/shiny/24/Somalia.png new file mode 100644 index 0000000..ea7eb21 Binary files /dev/null and b/flags/flags/shiny/24/Somalia.png differ diff --git a/flags/flags/shiny/24/Somaliland.png b/flags/flags/shiny/24/Somaliland.png new file mode 100644 index 0000000..00a975f Binary files /dev/null and b/flags/flags/shiny/24/Somaliland.png differ diff --git a/flags/flags/shiny/24/South-Africa.png b/flags/flags/shiny/24/South-Africa.png new file mode 100644 index 0000000..177fe75 Binary files /dev/null and b/flags/flags/shiny/24/South-Africa.png differ diff --git a/flags/flags/shiny/24/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/shiny/24/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..00d20b6 Binary files /dev/null and b/flags/flags/shiny/24/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/shiny/24/South-Korea.png b/flags/flags/shiny/24/South-Korea.png new file mode 100644 index 0000000..f6f6baa Binary files /dev/null and b/flags/flags/shiny/24/South-Korea.png differ diff --git a/flags/flags/shiny/24/South-Ossetia.png b/flags/flags/shiny/24/South-Ossetia.png new file mode 100644 index 0000000..7b3324e Binary files /dev/null and b/flags/flags/shiny/24/South-Ossetia.png differ diff --git a/flags/flags/shiny/24/South-Sudan.png b/flags/flags/shiny/24/South-Sudan.png new file mode 100644 index 0000000..7e64489 Binary files /dev/null and b/flags/flags/shiny/24/South-Sudan.png differ diff --git a/flags/flags/shiny/24/Spain.png b/flags/flags/shiny/24/Spain.png new file mode 100644 index 0000000..39d0c76 Binary files /dev/null and b/flags/flags/shiny/24/Spain.png differ diff --git a/flags/flags/shiny/24/Sri-Lanka.png b/flags/flags/shiny/24/Sri-Lanka.png new file mode 100644 index 0000000..d393119 Binary files /dev/null and b/flags/flags/shiny/24/Sri-Lanka.png differ diff --git a/flags/flags/shiny/24/Sudan.png b/flags/flags/shiny/24/Sudan.png new file mode 100644 index 0000000..4cbba36 Binary files /dev/null and b/flags/flags/shiny/24/Sudan.png differ diff --git a/flags/flags/shiny/24/Suriname.png b/flags/flags/shiny/24/Suriname.png new file mode 100644 index 0000000..4fa6114 Binary files /dev/null and b/flags/flags/shiny/24/Suriname.png differ diff --git a/flags/flags/shiny/24/Swaziland.png b/flags/flags/shiny/24/Swaziland.png new file mode 100644 index 0000000..b89f4d1 Binary files /dev/null and b/flags/flags/shiny/24/Swaziland.png differ diff --git a/flags/flags/shiny/24/Sweden.png b/flags/flags/shiny/24/Sweden.png new file mode 100644 index 0000000..fd0b55b Binary files /dev/null and b/flags/flags/shiny/24/Sweden.png differ diff --git a/flags/flags/shiny/24/Switzerland.png b/flags/flags/shiny/24/Switzerland.png new file mode 100644 index 0000000..2f22b90 Binary files /dev/null and b/flags/flags/shiny/24/Switzerland.png differ diff --git a/flags/flags/shiny/24/Syria.png b/flags/flags/shiny/24/Syria.png new file mode 100644 index 0000000..aee3c96 Binary files /dev/null and b/flags/flags/shiny/24/Syria.png differ diff --git a/flags/flags/shiny/24/Taiwan.png b/flags/flags/shiny/24/Taiwan.png new file mode 100644 index 0000000..0bd4125 Binary files /dev/null and b/flags/flags/shiny/24/Taiwan.png differ diff --git a/flags/flags/shiny/24/Tajikistan.png b/flags/flags/shiny/24/Tajikistan.png new file mode 100644 index 0000000..6922244 Binary files /dev/null and b/flags/flags/shiny/24/Tajikistan.png differ diff --git a/flags/flags/shiny/24/Tanzania.png b/flags/flags/shiny/24/Tanzania.png new file mode 100644 index 0000000..c927c65 Binary files /dev/null and b/flags/flags/shiny/24/Tanzania.png differ diff --git a/flags/flags/shiny/24/Thailand.png b/flags/flags/shiny/24/Thailand.png new file mode 100644 index 0000000..0ea4ed8 Binary files /dev/null and b/flags/flags/shiny/24/Thailand.png differ diff --git a/flags/flags/shiny/24/Togo.png b/flags/flags/shiny/24/Togo.png new file mode 100644 index 0000000..00933c4 Binary files /dev/null and b/flags/flags/shiny/24/Togo.png differ diff --git a/flags/flags/shiny/24/Tokelau.png b/flags/flags/shiny/24/Tokelau.png new file mode 100644 index 0000000..466a67b Binary files /dev/null and b/flags/flags/shiny/24/Tokelau.png differ diff --git a/flags/flags/shiny/24/Tonga.png b/flags/flags/shiny/24/Tonga.png new file mode 100644 index 0000000..f2e9026 Binary files /dev/null and b/flags/flags/shiny/24/Tonga.png differ diff --git a/flags/flags/shiny/24/Trinidad-and-Tobago.png b/flags/flags/shiny/24/Trinidad-and-Tobago.png new file mode 100644 index 0000000..99b1d60 Binary files /dev/null and b/flags/flags/shiny/24/Trinidad-and-Tobago.png differ diff --git a/flags/flags/shiny/24/Tunisia.png b/flags/flags/shiny/24/Tunisia.png new file mode 100644 index 0000000..deacc5b Binary files /dev/null and b/flags/flags/shiny/24/Tunisia.png differ diff --git a/flags/flags/shiny/24/Turkey.png b/flags/flags/shiny/24/Turkey.png new file mode 100644 index 0000000..786d736 Binary files /dev/null and b/flags/flags/shiny/24/Turkey.png differ diff --git a/flags/flags/shiny/24/Turkmenistan.png b/flags/flags/shiny/24/Turkmenistan.png new file mode 100644 index 0000000..e0813d0 Binary files /dev/null and b/flags/flags/shiny/24/Turkmenistan.png differ diff --git a/flags/flags/shiny/24/Turks-and-Caicos-Islands.png b/flags/flags/shiny/24/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..f076b4a Binary files /dev/null and b/flags/flags/shiny/24/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/shiny/24/Tuvalu.png b/flags/flags/shiny/24/Tuvalu.png new file mode 100644 index 0000000..3c36378 Binary files /dev/null and b/flags/flags/shiny/24/Tuvalu.png differ diff --git a/flags/flags/shiny/24/US-Virgin-Islands.png b/flags/flags/shiny/24/US-Virgin-Islands.png new file mode 100644 index 0000000..bce202d Binary files /dev/null and b/flags/flags/shiny/24/US-Virgin-Islands.png differ diff --git a/flags/flags/shiny/24/Uganda.png b/flags/flags/shiny/24/Uganda.png new file mode 100644 index 0000000..209aa45 Binary files /dev/null and b/flags/flags/shiny/24/Uganda.png differ diff --git a/flags/flags/shiny/24/Ukraine.png b/flags/flags/shiny/24/Ukraine.png new file mode 100644 index 0000000..e46611f Binary files /dev/null and b/flags/flags/shiny/24/Ukraine.png differ diff --git a/flags/flags/shiny/24/United-Arab-Emirates.png b/flags/flags/shiny/24/United-Arab-Emirates.png new file mode 100644 index 0000000..a4383d2 Binary files /dev/null and b/flags/flags/shiny/24/United-Arab-Emirates.png differ diff --git a/flags/flags/shiny/24/United-Kingdom.png b/flags/flags/shiny/24/United-Kingdom.png new file mode 100644 index 0000000..02fa2a1 Binary files /dev/null and b/flags/flags/shiny/24/United-Kingdom.png differ diff --git a/flags/flags/shiny/24/United-Nations.png b/flags/flags/shiny/24/United-Nations.png new file mode 100644 index 0000000..7d0dda1 Binary files /dev/null and b/flags/flags/shiny/24/United-Nations.png differ diff --git a/flags/flags/shiny/24/United-States.png b/flags/flags/shiny/24/United-States.png new file mode 100644 index 0000000..2b04dcf Binary files /dev/null and b/flags/flags/shiny/24/United-States.png differ diff --git a/flags/flags/shiny/24/Uruguay.png b/flags/flags/shiny/24/Uruguay.png new file mode 100644 index 0000000..0edaf69 Binary files /dev/null and b/flags/flags/shiny/24/Uruguay.png differ diff --git a/flags/flags/shiny/24/Uzbekistan.png b/flags/flags/shiny/24/Uzbekistan.png new file mode 100644 index 0000000..19f5c39 Binary files /dev/null and b/flags/flags/shiny/24/Uzbekistan.png differ diff --git a/flags/flags/shiny/24/Vanuatu.png b/flags/flags/shiny/24/Vanuatu.png new file mode 100644 index 0000000..08534b9 Binary files /dev/null and b/flags/flags/shiny/24/Vanuatu.png differ diff --git a/flags/flags/shiny/24/Vatican-City.png b/flags/flags/shiny/24/Vatican-City.png new file mode 100644 index 0000000..ed1d70a Binary files /dev/null and b/flags/flags/shiny/24/Vatican-City.png differ diff --git a/flags/flags/shiny/24/Venezuela.png b/flags/flags/shiny/24/Venezuela.png new file mode 100644 index 0000000..e28cbf7 Binary files /dev/null and b/flags/flags/shiny/24/Venezuela.png differ diff --git a/flags/flags/shiny/24/Vietnam.png b/flags/flags/shiny/24/Vietnam.png new file mode 100644 index 0000000..33385c1 Binary files /dev/null and b/flags/flags/shiny/24/Vietnam.png differ diff --git a/flags/flags/shiny/24/Wales.png b/flags/flags/shiny/24/Wales.png new file mode 100644 index 0000000..30d99d6 Binary files /dev/null and b/flags/flags/shiny/24/Wales.png differ diff --git a/flags/flags/shiny/24/Wallis-And-Futuna.png b/flags/flags/shiny/24/Wallis-And-Futuna.png new file mode 100644 index 0000000..97678d8 Binary files /dev/null and b/flags/flags/shiny/24/Wallis-And-Futuna.png differ diff --git a/flags/flags/shiny/24/Western-Sahara.png b/flags/flags/shiny/24/Western-Sahara.png new file mode 100644 index 0000000..caec718 Binary files /dev/null and b/flags/flags/shiny/24/Western-Sahara.png differ diff --git a/flags/flags/shiny/24/Yemen.png b/flags/flags/shiny/24/Yemen.png new file mode 100644 index 0000000..651c4f0 Binary files /dev/null and b/flags/flags/shiny/24/Yemen.png differ diff --git a/flags/flags/shiny/24/Zambia.png b/flags/flags/shiny/24/Zambia.png new file mode 100644 index 0000000..26f9969 Binary files /dev/null and b/flags/flags/shiny/24/Zambia.png differ diff --git a/flags/flags/shiny/24/Zimbabwe.png b/flags/flags/shiny/24/Zimbabwe.png new file mode 100644 index 0000000..6cccf56 Binary files /dev/null and b/flags/flags/shiny/24/Zimbabwe.png differ diff --git a/flags/flags/shiny/32/Abkhazia.png b/flags/flags/shiny/32/Abkhazia.png new file mode 100644 index 0000000..159f1ba Binary files /dev/null and b/flags/flags/shiny/32/Abkhazia.png differ diff --git a/flags/flags/shiny/32/Afghanistan.png b/flags/flags/shiny/32/Afghanistan.png new file mode 100644 index 0000000..594d060 Binary files /dev/null and b/flags/flags/shiny/32/Afghanistan.png differ diff --git a/flags/flags/shiny/32/Aland.png b/flags/flags/shiny/32/Aland.png new file mode 100644 index 0000000..66f2830 Binary files /dev/null and b/flags/flags/shiny/32/Aland.png differ diff --git a/flags/flags/shiny/32/Albania.png b/flags/flags/shiny/32/Albania.png new file mode 100644 index 0000000..ff840aa Binary files /dev/null and b/flags/flags/shiny/32/Albania.png differ diff --git a/flags/flags/shiny/32/Algeria.png b/flags/flags/shiny/32/Algeria.png new file mode 100644 index 0000000..e4eef52 Binary files /dev/null and b/flags/flags/shiny/32/Algeria.png differ diff --git a/flags/flags/shiny/32/American-Samoa.png b/flags/flags/shiny/32/American-Samoa.png new file mode 100644 index 0000000..5d89b3b Binary files /dev/null and b/flags/flags/shiny/32/American-Samoa.png differ diff --git a/flags/flags/shiny/32/Andorra.png b/flags/flags/shiny/32/Andorra.png new file mode 100644 index 0000000..1052256 Binary files /dev/null and b/flags/flags/shiny/32/Andorra.png differ diff --git a/flags/flags/shiny/32/Angola.png b/flags/flags/shiny/32/Angola.png new file mode 100644 index 0000000..ef33703 Binary files /dev/null and b/flags/flags/shiny/32/Angola.png differ diff --git a/flags/flags/shiny/32/Anguilla.png b/flags/flags/shiny/32/Anguilla.png new file mode 100644 index 0000000..e1aae86 Binary files /dev/null and b/flags/flags/shiny/32/Anguilla.png differ diff --git a/flags/flags/shiny/32/Antarctica.png b/flags/flags/shiny/32/Antarctica.png new file mode 100644 index 0000000..39e5e2f Binary files /dev/null and b/flags/flags/shiny/32/Antarctica.png differ diff --git a/flags/flags/shiny/32/Antigua-and-Barbuda.png b/flags/flags/shiny/32/Antigua-and-Barbuda.png new file mode 100644 index 0000000..29dded8 Binary files /dev/null and b/flags/flags/shiny/32/Antigua-and-Barbuda.png differ diff --git a/flags/flags/shiny/32/Argentina.png b/flags/flags/shiny/32/Argentina.png new file mode 100644 index 0000000..eb3f0d8 Binary files /dev/null and b/flags/flags/shiny/32/Argentina.png differ diff --git a/flags/flags/shiny/32/Armenia.png b/flags/flags/shiny/32/Armenia.png new file mode 100644 index 0000000..3a6e11b Binary files /dev/null and b/flags/flags/shiny/32/Armenia.png differ diff --git a/flags/flags/shiny/32/Aruba.png b/flags/flags/shiny/32/Aruba.png new file mode 100644 index 0000000..5841373 Binary files /dev/null and b/flags/flags/shiny/32/Aruba.png differ diff --git a/flags/flags/shiny/32/Australia.png b/flags/flags/shiny/32/Australia.png new file mode 100644 index 0000000..5135f7c Binary files /dev/null and b/flags/flags/shiny/32/Australia.png differ diff --git a/flags/flags/shiny/32/Austria.png b/flags/flags/shiny/32/Austria.png new file mode 100644 index 0000000..c699394 Binary files /dev/null and b/flags/flags/shiny/32/Austria.png differ diff --git a/flags/flags/shiny/32/Azerbaijan.png b/flags/flags/shiny/32/Azerbaijan.png new file mode 100644 index 0000000..de44c66 Binary files /dev/null and b/flags/flags/shiny/32/Azerbaijan.png differ diff --git a/flags/flags/shiny/32/Bahamas.png b/flags/flags/shiny/32/Bahamas.png new file mode 100644 index 0000000..2517602 Binary files /dev/null and b/flags/flags/shiny/32/Bahamas.png differ diff --git a/flags/flags/shiny/32/Bahrain.png b/flags/flags/shiny/32/Bahrain.png new file mode 100644 index 0000000..b753f24 Binary files /dev/null and b/flags/flags/shiny/32/Bahrain.png differ diff --git a/flags/flags/shiny/32/Bangladesh.png b/flags/flags/shiny/32/Bangladesh.png new file mode 100644 index 0000000..12c1f8a Binary files /dev/null and b/flags/flags/shiny/32/Bangladesh.png differ diff --git a/flags/flags/shiny/32/Barbados.png b/flags/flags/shiny/32/Barbados.png new file mode 100644 index 0000000..b631ef0 Binary files /dev/null and b/flags/flags/shiny/32/Barbados.png differ diff --git a/flags/flags/shiny/32/Belarus.png b/flags/flags/shiny/32/Belarus.png new file mode 100644 index 0000000..ded745b Binary files /dev/null and b/flags/flags/shiny/32/Belarus.png differ diff --git a/flags/flags/shiny/32/Belgium.png b/flags/flags/shiny/32/Belgium.png new file mode 100644 index 0000000..38c2e8a Binary files /dev/null and b/flags/flags/shiny/32/Belgium.png differ diff --git a/flags/flags/shiny/32/Belize.png b/flags/flags/shiny/32/Belize.png new file mode 100644 index 0000000..9fc1b47 Binary files /dev/null and b/flags/flags/shiny/32/Belize.png differ diff --git a/flags/flags/shiny/32/Benin.png b/flags/flags/shiny/32/Benin.png new file mode 100644 index 0000000..4999b28 Binary files /dev/null and b/flags/flags/shiny/32/Benin.png differ diff --git a/flags/flags/shiny/32/Bermuda.png b/flags/flags/shiny/32/Bermuda.png new file mode 100644 index 0000000..3b5d2b7 Binary files /dev/null and b/flags/flags/shiny/32/Bermuda.png differ diff --git a/flags/flags/shiny/32/Bhutan.png b/flags/flags/shiny/32/Bhutan.png new file mode 100644 index 0000000..4290f0a Binary files /dev/null and b/flags/flags/shiny/32/Bhutan.png differ diff --git a/flags/flags/shiny/32/Bolivia.png b/flags/flags/shiny/32/Bolivia.png new file mode 100644 index 0000000..3cecb07 Binary files /dev/null and b/flags/flags/shiny/32/Bolivia.png differ diff --git a/flags/flags/shiny/32/Bosnia-and-Herzegovina.png b/flags/flags/shiny/32/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..20cae4d Binary files /dev/null and b/flags/flags/shiny/32/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/shiny/32/Botswana.png b/flags/flags/shiny/32/Botswana.png new file mode 100644 index 0000000..8bd54e9 Binary files /dev/null and b/flags/flags/shiny/32/Botswana.png differ diff --git a/flags/flags/shiny/32/Brazil.png b/flags/flags/shiny/32/Brazil.png new file mode 100644 index 0000000..79ecfcb Binary files /dev/null and b/flags/flags/shiny/32/Brazil.png differ diff --git a/flags/flags/shiny/32/British-Antarctic-Territory.png b/flags/flags/shiny/32/British-Antarctic-Territory.png new file mode 100644 index 0000000..e4031c8 Binary files /dev/null and b/flags/flags/shiny/32/British-Antarctic-Territory.png differ diff --git a/flags/flags/shiny/32/British-Virgin-Islands.png b/flags/flags/shiny/32/British-Virgin-Islands.png new file mode 100644 index 0000000..810e982 Binary files /dev/null and b/flags/flags/shiny/32/British-Virgin-Islands.png differ diff --git a/flags/flags/shiny/32/Brunei.png b/flags/flags/shiny/32/Brunei.png new file mode 100644 index 0000000..0da9406 Binary files /dev/null and b/flags/flags/shiny/32/Brunei.png differ diff --git a/flags/flags/shiny/32/Bulgaria.png b/flags/flags/shiny/32/Bulgaria.png new file mode 100644 index 0000000..6bdf9b1 Binary files /dev/null and b/flags/flags/shiny/32/Bulgaria.png differ diff --git a/flags/flags/shiny/32/Burkina-Faso.png b/flags/flags/shiny/32/Burkina-Faso.png new file mode 100644 index 0000000..a0b176e Binary files /dev/null and b/flags/flags/shiny/32/Burkina-Faso.png differ diff --git a/flags/flags/shiny/32/Burundi.png b/flags/flags/shiny/32/Burundi.png new file mode 100644 index 0000000..348b5d4 Binary files /dev/null and b/flags/flags/shiny/32/Burundi.png differ diff --git a/flags/flags/shiny/32/Cambodia.png b/flags/flags/shiny/32/Cambodia.png new file mode 100644 index 0000000..be536d0 Binary files /dev/null and b/flags/flags/shiny/32/Cambodia.png differ diff --git a/flags/flags/shiny/32/Cameroon.png b/flags/flags/shiny/32/Cameroon.png new file mode 100644 index 0000000..977580d Binary files /dev/null and b/flags/flags/shiny/32/Cameroon.png differ diff --git a/flags/flags/shiny/32/Canada.png b/flags/flags/shiny/32/Canada.png new file mode 100644 index 0000000..3f1ab11 Binary files /dev/null and b/flags/flags/shiny/32/Canada.png differ diff --git a/flags/flags/shiny/32/Cape-Verde.png b/flags/flags/shiny/32/Cape-Verde.png new file mode 100644 index 0000000..2e54a57 Binary files /dev/null and b/flags/flags/shiny/32/Cape-Verde.png differ diff --git a/flags/flags/shiny/32/Cayman-Islands.png b/flags/flags/shiny/32/Cayman-Islands.png new file mode 100644 index 0000000..0ad539e Binary files /dev/null and b/flags/flags/shiny/32/Cayman-Islands.png differ diff --git a/flags/flags/shiny/32/Central-African-Republic.png b/flags/flags/shiny/32/Central-African-Republic.png new file mode 100644 index 0000000..52cfc90 Binary files /dev/null and b/flags/flags/shiny/32/Central-African-Republic.png differ diff --git a/flags/flags/shiny/32/Chad.png b/flags/flags/shiny/32/Chad.png new file mode 100644 index 0000000..4c8a5d4 Binary files /dev/null and b/flags/flags/shiny/32/Chad.png differ diff --git a/flags/flags/shiny/32/Chile.png b/flags/flags/shiny/32/Chile.png new file mode 100644 index 0000000..a00af03 Binary files /dev/null and b/flags/flags/shiny/32/Chile.png differ diff --git a/flags/flags/shiny/32/China.png b/flags/flags/shiny/32/China.png new file mode 100644 index 0000000..eea8471 Binary files /dev/null and b/flags/flags/shiny/32/China.png differ diff --git a/flags/flags/shiny/32/Christmas-Island.png b/flags/flags/shiny/32/Christmas-Island.png new file mode 100644 index 0000000..d6182ac Binary files /dev/null and b/flags/flags/shiny/32/Christmas-Island.png differ diff --git a/flags/flags/shiny/32/Cocos-Keeling-Islands.png b/flags/flags/shiny/32/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..64f68f9 Binary files /dev/null and b/flags/flags/shiny/32/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/shiny/32/Colombia.png b/flags/flags/shiny/32/Colombia.png new file mode 100644 index 0000000..69935e6 Binary files /dev/null and b/flags/flags/shiny/32/Colombia.png differ diff --git a/flags/flags/shiny/32/Commonwealth.png b/flags/flags/shiny/32/Commonwealth.png new file mode 100644 index 0000000..b9c057e Binary files /dev/null and b/flags/flags/shiny/32/Commonwealth.png differ diff --git a/flags/flags/shiny/32/Comoros.png b/flags/flags/shiny/32/Comoros.png new file mode 100644 index 0000000..6a7126c Binary files /dev/null and b/flags/flags/shiny/32/Comoros.png differ diff --git a/flags/flags/shiny/32/Cook-Islands.png b/flags/flags/shiny/32/Cook-Islands.png new file mode 100644 index 0000000..e3210e6 Binary files /dev/null and b/flags/flags/shiny/32/Cook-Islands.png differ diff --git a/flags/flags/shiny/32/Costa-Rica.png b/flags/flags/shiny/32/Costa-Rica.png new file mode 100644 index 0000000..87df0cc Binary files /dev/null and b/flags/flags/shiny/32/Costa-Rica.png differ diff --git a/flags/flags/shiny/32/Cote-dIvoire.png b/flags/flags/shiny/32/Cote-dIvoire.png new file mode 100644 index 0000000..8ef4d98 Binary files /dev/null and b/flags/flags/shiny/32/Cote-dIvoire.png differ diff --git a/flags/flags/shiny/32/Croatia.png b/flags/flags/shiny/32/Croatia.png new file mode 100644 index 0000000..35da777 Binary files /dev/null and b/flags/flags/shiny/32/Croatia.png differ diff --git a/flags/flags/shiny/32/Cuba.png b/flags/flags/shiny/32/Cuba.png new file mode 100644 index 0000000..ea4f238 Binary files /dev/null and b/flags/flags/shiny/32/Cuba.png differ diff --git a/flags/flags/shiny/32/Cyprus.png b/flags/flags/shiny/32/Cyprus.png new file mode 100644 index 0000000..b359ba9 Binary files /dev/null and b/flags/flags/shiny/32/Cyprus.png differ diff --git a/flags/flags/shiny/32/Czech-Republic.png b/flags/flags/shiny/32/Czech-Republic.png new file mode 100644 index 0000000..7a45980 Binary files /dev/null and b/flags/flags/shiny/32/Czech-Republic.png differ diff --git a/flags/flags/shiny/32/Democratic-Republic-of-the-Congo.png b/flags/flags/shiny/32/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..1c2932d Binary files /dev/null and b/flags/flags/shiny/32/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/32/Denmark.png b/flags/flags/shiny/32/Denmark.png new file mode 100644 index 0000000..9cb5c29 Binary files /dev/null and b/flags/flags/shiny/32/Denmark.png differ diff --git a/flags/flags/shiny/32/Djibouti.png b/flags/flags/shiny/32/Djibouti.png new file mode 100644 index 0000000..7598d19 Binary files /dev/null and b/flags/flags/shiny/32/Djibouti.png differ diff --git a/flags/flags/shiny/32/Dominica.png b/flags/flags/shiny/32/Dominica.png new file mode 100644 index 0000000..e4d5e6a Binary files /dev/null and b/flags/flags/shiny/32/Dominica.png differ diff --git a/flags/flags/shiny/32/Dominican-Republic.png b/flags/flags/shiny/32/Dominican-Republic.png new file mode 100644 index 0000000..80bbe51 Binary files /dev/null and b/flags/flags/shiny/32/Dominican-Republic.png differ diff --git a/flags/flags/shiny/32/East-Timor.png b/flags/flags/shiny/32/East-Timor.png new file mode 100644 index 0000000..da70cca Binary files /dev/null and b/flags/flags/shiny/32/East-Timor.png differ diff --git a/flags/flags/shiny/32/Ecuador.png b/flags/flags/shiny/32/Ecuador.png new file mode 100644 index 0000000..86c720d Binary files /dev/null and b/flags/flags/shiny/32/Ecuador.png differ diff --git a/flags/flags/shiny/32/Egypt.png b/flags/flags/shiny/32/Egypt.png new file mode 100644 index 0000000..15e5194 Binary files /dev/null and b/flags/flags/shiny/32/Egypt.png differ diff --git a/flags/flags/shiny/32/El-Salvador.png b/flags/flags/shiny/32/El-Salvador.png new file mode 100644 index 0000000..3dad13f Binary files /dev/null and b/flags/flags/shiny/32/El-Salvador.png differ diff --git a/flags/flags/shiny/32/England.png b/flags/flags/shiny/32/England.png new file mode 100644 index 0000000..3d05378 Binary files /dev/null and b/flags/flags/shiny/32/England.png differ diff --git a/flags/flags/shiny/32/Equatorial-Guinea.png b/flags/flags/shiny/32/Equatorial-Guinea.png new file mode 100644 index 0000000..19bb7a3 Binary files /dev/null and b/flags/flags/shiny/32/Equatorial-Guinea.png differ diff --git a/flags/flags/shiny/32/Eritrea.png b/flags/flags/shiny/32/Eritrea.png new file mode 100644 index 0000000..29c2c5a Binary files /dev/null and b/flags/flags/shiny/32/Eritrea.png differ diff --git a/flags/flags/shiny/32/Estonia.png b/flags/flags/shiny/32/Estonia.png new file mode 100644 index 0000000..41dc640 Binary files /dev/null and b/flags/flags/shiny/32/Estonia.png differ diff --git a/flags/flags/shiny/32/Ethiopia.png b/flags/flags/shiny/32/Ethiopia.png new file mode 100644 index 0000000..07c7b40 Binary files /dev/null and b/flags/flags/shiny/32/Ethiopia.png differ diff --git a/flags/flags/shiny/32/European-Union.png b/flags/flags/shiny/32/European-Union.png new file mode 100644 index 0000000..f2936a0 Binary files /dev/null and b/flags/flags/shiny/32/European-Union.png differ diff --git a/flags/flags/shiny/32/Falkland-Islands.png b/flags/flags/shiny/32/Falkland-Islands.png new file mode 100644 index 0000000..af12c55 Binary files /dev/null and b/flags/flags/shiny/32/Falkland-Islands.png differ diff --git a/flags/flags/shiny/32/Faroes.png b/flags/flags/shiny/32/Faroes.png new file mode 100644 index 0000000..30e2338 Binary files /dev/null and b/flags/flags/shiny/32/Faroes.png differ diff --git a/flags/flags/shiny/32/Fiji.png b/flags/flags/shiny/32/Fiji.png new file mode 100644 index 0000000..0b19ac1 Binary files /dev/null and b/flags/flags/shiny/32/Fiji.png differ diff --git a/flags/flags/shiny/32/Finland.png b/flags/flags/shiny/32/Finland.png new file mode 100644 index 0000000..e665307 Binary files /dev/null and b/flags/flags/shiny/32/Finland.png differ diff --git a/flags/flags/shiny/32/France.png b/flags/flags/shiny/32/France.png new file mode 100644 index 0000000..00c2b42 Binary files /dev/null and b/flags/flags/shiny/32/France.png differ diff --git a/flags/flags/shiny/32/French-Polynesia.png b/flags/flags/shiny/32/French-Polynesia.png new file mode 100644 index 0000000..2bd5247 Binary files /dev/null and b/flags/flags/shiny/32/French-Polynesia.png differ diff --git a/flags/flags/shiny/32/French-Southern-Territories.png b/flags/flags/shiny/32/French-Southern-Territories.png new file mode 100644 index 0000000..eda6af3 Binary files /dev/null and b/flags/flags/shiny/32/French-Southern-Territories.png differ diff --git a/flags/flags/shiny/32/Gabon.png b/flags/flags/shiny/32/Gabon.png new file mode 100644 index 0000000..4e2cae3 Binary files /dev/null and b/flags/flags/shiny/32/Gabon.png differ diff --git a/flags/flags/shiny/32/Gambia.png b/flags/flags/shiny/32/Gambia.png new file mode 100644 index 0000000..0e6c447 Binary files /dev/null and b/flags/flags/shiny/32/Gambia.png differ diff --git a/flags/flags/shiny/32/Georgia.png b/flags/flags/shiny/32/Georgia.png new file mode 100644 index 0000000..754f405 Binary files /dev/null and b/flags/flags/shiny/32/Georgia.png differ diff --git a/flags/flags/shiny/32/Germany.png b/flags/flags/shiny/32/Germany.png new file mode 100644 index 0000000..4e84b6e Binary files /dev/null and b/flags/flags/shiny/32/Germany.png differ diff --git a/flags/flags/shiny/32/Ghana.png b/flags/flags/shiny/32/Ghana.png new file mode 100644 index 0000000..0f7e735 Binary files /dev/null and b/flags/flags/shiny/32/Ghana.png differ diff --git a/flags/flags/shiny/32/Gibraltar.png b/flags/flags/shiny/32/Gibraltar.png new file mode 100644 index 0000000..f487f82 Binary files /dev/null and b/flags/flags/shiny/32/Gibraltar.png differ diff --git a/flags/flags/shiny/32/GoSquared.png b/flags/flags/shiny/32/GoSquared.png new file mode 100644 index 0000000..6e26513 Binary files /dev/null and b/flags/flags/shiny/32/GoSquared.png differ diff --git a/flags/flags/shiny/32/Greece.png b/flags/flags/shiny/32/Greece.png new file mode 100644 index 0000000..0f202d5 Binary files /dev/null and b/flags/flags/shiny/32/Greece.png differ diff --git a/flags/flags/shiny/32/Greenland.png b/flags/flags/shiny/32/Greenland.png new file mode 100644 index 0000000..dac9998 Binary files /dev/null and b/flags/flags/shiny/32/Greenland.png differ diff --git a/flags/flags/shiny/32/Grenada.png b/flags/flags/shiny/32/Grenada.png new file mode 100644 index 0000000..f33143c Binary files /dev/null and b/flags/flags/shiny/32/Grenada.png differ diff --git a/flags/flags/shiny/32/Guam.png b/flags/flags/shiny/32/Guam.png new file mode 100644 index 0000000..1b1213f Binary files /dev/null and b/flags/flags/shiny/32/Guam.png differ diff --git a/flags/flags/shiny/32/Guatemala.png b/flags/flags/shiny/32/Guatemala.png new file mode 100644 index 0000000..7d85788 Binary files /dev/null and b/flags/flags/shiny/32/Guatemala.png differ diff --git a/flags/flags/shiny/32/Guernsey.png b/flags/flags/shiny/32/Guernsey.png new file mode 100644 index 0000000..37fabcc Binary files /dev/null and b/flags/flags/shiny/32/Guernsey.png differ diff --git a/flags/flags/shiny/32/Guinea-Bissau.png b/flags/flags/shiny/32/Guinea-Bissau.png new file mode 100644 index 0000000..4fd1490 Binary files /dev/null and b/flags/flags/shiny/32/Guinea-Bissau.png differ diff --git a/flags/flags/shiny/32/Guinea.png b/flags/flags/shiny/32/Guinea.png new file mode 100644 index 0000000..b37e3e9 Binary files /dev/null and b/flags/flags/shiny/32/Guinea.png differ diff --git a/flags/flags/shiny/32/Guyana.png b/flags/flags/shiny/32/Guyana.png new file mode 100644 index 0000000..f60142d Binary files /dev/null and b/flags/flags/shiny/32/Guyana.png differ diff --git a/flags/flags/shiny/32/Haiti.png b/flags/flags/shiny/32/Haiti.png new file mode 100644 index 0000000..3db16a0 Binary files /dev/null and b/flags/flags/shiny/32/Haiti.png differ diff --git a/flags/flags/shiny/32/Honduras.png b/flags/flags/shiny/32/Honduras.png new file mode 100644 index 0000000..1bc0783 Binary files /dev/null and b/flags/flags/shiny/32/Honduras.png differ diff --git a/flags/flags/shiny/32/Hong-Kong.png b/flags/flags/shiny/32/Hong-Kong.png new file mode 100644 index 0000000..d94644b Binary files /dev/null and b/flags/flags/shiny/32/Hong-Kong.png differ diff --git a/flags/flags/shiny/32/Hungary.png b/flags/flags/shiny/32/Hungary.png new file mode 100644 index 0000000..1a03bc7 Binary files /dev/null and b/flags/flags/shiny/32/Hungary.png differ diff --git a/flags/flags/shiny/32/Iceland.png b/flags/flags/shiny/32/Iceland.png new file mode 100644 index 0000000..a996642 Binary files /dev/null and b/flags/flags/shiny/32/Iceland.png differ diff --git a/flags/flags/shiny/32/India.png b/flags/flags/shiny/32/India.png new file mode 100644 index 0000000..4614f30 Binary files /dev/null and b/flags/flags/shiny/32/India.png differ diff --git a/flags/flags/shiny/32/Indonesia.png b/flags/flags/shiny/32/Indonesia.png new file mode 100644 index 0000000..05fb3d7 Binary files /dev/null and b/flags/flags/shiny/32/Indonesia.png differ diff --git a/flags/flags/shiny/32/Iran.png b/flags/flags/shiny/32/Iran.png new file mode 100644 index 0000000..58c142c Binary files /dev/null and b/flags/flags/shiny/32/Iran.png differ diff --git a/flags/flags/shiny/32/Iraq.png b/flags/flags/shiny/32/Iraq.png new file mode 100644 index 0000000..fd397b3 Binary files /dev/null and b/flags/flags/shiny/32/Iraq.png differ diff --git a/flags/flags/shiny/32/Ireland.png b/flags/flags/shiny/32/Ireland.png new file mode 100644 index 0000000..197bc80 Binary files /dev/null and b/flags/flags/shiny/32/Ireland.png differ diff --git a/flags/flags/shiny/32/Isle-of-Man.png b/flags/flags/shiny/32/Isle-of-Man.png new file mode 100644 index 0000000..403ab16 Binary files /dev/null and b/flags/flags/shiny/32/Isle-of-Man.png differ diff --git a/flags/flags/shiny/32/Israel.png b/flags/flags/shiny/32/Israel.png new file mode 100644 index 0000000..1edb473 Binary files /dev/null and b/flags/flags/shiny/32/Israel.png differ diff --git a/flags/flags/shiny/32/Italy.png b/flags/flags/shiny/32/Italy.png new file mode 100644 index 0000000..26071b1 Binary files /dev/null and b/flags/flags/shiny/32/Italy.png differ diff --git a/flags/flags/shiny/32/Jamaica.png b/flags/flags/shiny/32/Jamaica.png new file mode 100644 index 0000000..d327699 Binary files /dev/null and b/flags/flags/shiny/32/Jamaica.png differ diff --git a/flags/flags/shiny/32/Japan.png b/flags/flags/shiny/32/Japan.png new file mode 100644 index 0000000..69cca05 Binary files /dev/null and b/flags/flags/shiny/32/Japan.png differ diff --git a/flags/flags/shiny/32/Jersey.png b/flags/flags/shiny/32/Jersey.png new file mode 100644 index 0000000..b621e1b Binary files /dev/null and b/flags/flags/shiny/32/Jersey.png differ diff --git a/flags/flags/shiny/32/Jordan.png b/flags/flags/shiny/32/Jordan.png new file mode 100644 index 0000000..92dcae5 Binary files /dev/null and b/flags/flags/shiny/32/Jordan.png differ diff --git a/flags/flags/shiny/32/Kazakhstan.png b/flags/flags/shiny/32/Kazakhstan.png new file mode 100644 index 0000000..c71047b Binary files /dev/null and b/flags/flags/shiny/32/Kazakhstan.png differ diff --git a/flags/flags/shiny/32/Kenya.png b/flags/flags/shiny/32/Kenya.png new file mode 100644 index 0000000..e677cd6 Binary files /dev/null and b/flags/flags/shiny/32/Kenya.png differ diff --git a/flags/flags/shiny/32/Kiribati.png b/flags/flags/shiny/32/Kiribati.png new file mode 100644 index 0000000..d2c4406 Binary files /dev/null and b/flags/flags/shiny/32/Kiribati.png differ diff --git a/flags/flags/shiny/32/Kosovo.png b/flags/flags/shiny/32/Kosovo.png new file mode 100644 index 0000000..bcdfe73 Binary files /dev/null and b/flags/flags/shiny/32/Kosovo.png differ diff --git a/flags/flags/shiny/32/Kuwait.png b/flags/flags/shiny/32/Kuwait.png new file mode 100644 index 0000000..70f2946 Binary files /dev/null and b/flags/flags/shiny/32/Kuwait.png differ diff --git a/flags/flags/shiny/32/Kyrgyzstan.png b/flags/flags/shiny/32/Kyrgyzstan.png new file mode 100644 index 0000000..23f3c3f Binary files /dev/null and b/flags/flags/shiny/32/Kyrgyzstan.png differ diff --git a/flags/flags/shiny/32/Laos.png b/flags/flags/shiny/32/Laos.png new file mode 100644 index 0000000..1fb2fee Binary files /dev/null and b/flags/flags/shiny/32/Laos.png differ diff --git a/flags/flags/shiny/32/Latvia.png b/flags/flags/shiny/32/Latvia.png new file mode 100644 index 0000000..63e7c44 Binary files /dev/null and b/flags/flags/shiny/32/Latvia.png differ diff --git a/flags/flags/shiny/32/Lebanon.png b/flags/flags/shiny/32/Lebanon.png new file mode 100644 index 0000000..2817bcc Binary files /dev/null and b/flags/flags/shiny/32/Lebanon.png differ diff --git a/flags/flags/shiny/32/Lesotho.png b/flags/flags/shiny/32/Lesotho.png new file mode 100644 index 0000000..2a91042 Binary files /dev/null and b/flags/flags/shiny/32/Lesotho.png differ diff --git a/flags/flags/shiny/32/Liberia.png b/flags/flags/shiny/32/Liberia.png new file mode 100644 index 0000000..eb821ae Binary files /dev/null and b/flags/flags/shiny/32/Liberia.png differ diff --git a/flags/flags/shiny/32/Libya.png b/flags/flags/shiny/32/Libya.png new file mode 100644 index 0000000..40c3f84 Binary files /dev/null and b/flags/flags/shiny/32/Libya.png differ diff --git a/flags/flags/shiny/32/Liechtenstein.png b/flags/flags/shiny/32/Liechtenstein.png new file mode 100644 index 0000000..eaf426a Binary files /dev/null and b/flags/flags/shiny/32/Liechtenstein.png differ diff --git a/flags/flags/shiny/32/Lithuania.png b/flags/flags/shiny/32/Lithuania.png new file mode 100644 index 0000000..2979c00 Binary files /dev/null and b/flags/flags/shiny/32/Lithuania.png differ diff --git a/flags/flags/shiny/32/Luxembourg.png b/flags/flags/shiny/32/Luxembourg.png new file mode 100644 index 0000000..fd0197b Binary files /dev/null and b/flags/flags/shiny/32/Luxembourg.png differ diff --git a/flags/flags/shiny/32/Macau.png b/flags/flags/shiny/32/Macau.png new file mode 100644 index 0000000..26d9990 Binary files /dev/null and b/flags/flags/shiny/32/Macau.png differ diff --git a/flags/flags/shiny/32/Macedonia.png b/flags/flags/shiny/32/Macedonia.png new file mode 100644 index 0000000..1aa93b7 Binary files /dev/null and b/flags/flags/shiny/32/Macedonia.png differ diff --git a/flags/flags/shiny/32/Madagascar.png b/flags/flags/shiny/32/Madagascar.png new file mode 100644 index 0000000..c5d65b4 Binary files /dev/null and b/flags/flags/shiny/32/Madagascar.png differ diff --git a/flags/flags/shiny/32/Malawi.png b/flags/flags/shiny/32/Malawi.png new file mode 100644 index 0000000..3911698 Binary files /dev/null and b/flags/flags/shiny/32/Malawi.png differ diff --git a/flags/flags/shiny/32/Malaysia.png b/flags/flags/shiny/32/Malaysia.png new file mode 100644 index 0000000..f8b6b98 Binary files /dev/null and b/flags/flags/shiny/32/Malaysia.png differ diff --git a/flags/flags/shiny/32/Maldives.png b/flags/flags/shiny/32/Maldives.png new file mode 100644 index 0000000..d0b2e78 Binary files /dev/null and b/flags/flags/shiny/32/Maldives.png differ diff --git a/flags/flags/shiny/32/Mali.png b/flags/flags/shiny/32/Mali.png new file mode 100644 index 0000000..90b36c8 Binary files /dev/null and b/flags/flags/shiny/32/Mali.png differ diff --git a/flags/flags/shiny/32/Malta.png b/flags/flags/shiny/32/Malta.png new file mode 100644 index 0000000..cdd6f44 Binary files /dev/null and b/flags/flags/shiny/32/Malta.png differ diff --git a/flags/flags/shiny/32/Mars.png b/flags/flags/shiny/32/Mars.png new file mode 100644 index 0000000..93c4521 Binary files /dev/null and b/flags/flags/shiny/32/Mars.png differ diff --git a/flags/flags/shiny/32/Marshall-Islands.png b/flags/flags/shiny/32/Marshall-Islands.png new file mode 100644 index 0000000..e7e3acd Binary files /dev/null and b/flags/flags/shiny/32/Marshall-Islands.png differ diff --git a/flags/flags/shiny/32/Mauritania.png b/flags/flags/shiny/32/Mauritania.png new file mode 100644 index 0000000..5ea54ba Binary files /dev/null and b/flags/flags/shiny/32/Mauritania.png differ diff --git a/flags/flags/shiny/32/Mauritius.png b/flags/flags/shiny/32/Mauritius.png new file mode 100644 index 0000000..75aa760 Binary files /dev/null and b/flags/flags/shiny/32/Mauritius.png differ diff --git a/flags/flags/shiny/32/Mayotte.png b/flags/flags/shiny/32/Mayotte.png new file mode 100644 index 0000000..1420291 Binary files /dev/null and b/flags/flags/shiny/32/Mayotte.png differ diff --git a/flags/flags/shiny/32/Mexico.png b/flags/flags/shiny/32/Mexico.png new file mode 100644 index 0000000..5fc1e67 Binary files /dev/null and b/flags/flags/shiny/32/Mexico.png differ diff --git a/flags/flags/shiny/32/Micronesia.png b/flags/flags/shiny/32/Micronesia.png new file mode 100644 index 0000000..3dc51be Binary files /dev/null and b/flags/flags/shiny/32/Micronesia.png differ diff --git a/flags/flags/shiny/32/Moldova.png b/flags/flags/shiny/32/Moldova.png new file mode 100644 index 0000000..4e2e489 Binary files /dev/null and b/flags/flags/shiny/32/Moldova.png differ diff --git a/flags/flags/shiny/32/Monaco.png b/flags/flags/shiny/32/Monaco.png new file mode 100644 index 0000000..05fb3d7 Binary files /dev/null and b/flags/flags/shiny/32/Monaco.png differ diff --git a/flags/flags/shiny/32/Mongolia.png b/flags/flags/shiny/32/Mongolia.png new file mode 100644 index 0000000..700cfde Binary files /dev/null and b/flags/flags/shiny/32/Mongolia.png differ diff --git a/flags/flags/shiny/32/Montenegro.png b/flags/flags/shiny/32/Montenegro.png new file mode 100644 index 0000000..25be583 Binary files /dev/null and b/flags/flags/shiny/32/Montenegro.png differ diff --git a/flags/flags/shiny/32/Montserrat.png b/flags/flags/shiny/32/Montserrat.png new file mode 100644 index 0000000..28faa78 Binary files /dev/null and b/flags/flags/shiny/32/Montserrat.png differ diff --git a/flags/flags/shiny/32/Morocco.png b/flags/flags/shiny/32/Morocco.png new file mode 100644 index 0000000..0536263 Binary files /dev/null and b/flags/flags/shiny/32/Morocco.png differ diff --git a/flags/flags/shiny/32/Mozambique.png b/flags/flags/shiny/32/Mozambique.png new file mode 100644 index 0000000..b10b18a Binary files /dev/null and b/flags/flags/shiny/32/Mozambique.png differ diff --git a/flags/flags/shiny/32/Myanmar.png b/flags/flags/shiny/32/Myanmar.png new file mode 100644 index 0000000..283508d Binary files /dev/null and b/flags/flags/shiny/32/Myanmar.png differ diff --git a/flags/flags/shiny/32/NATO.png b/flags/flags/shiny/32/NATO.png new file mode 100644 index 0000000..a837cab Binary files /dev/null and b/flags/flags/shiny/32/NATO.png differ diff --git a/flags/flags/shiny/32/Nagorno-Karabakh.png b/flags/flags/shiny/32/Nagorno-Karabakh.png new file mode 100644 index 0000000..d95e66f Binary files /dev/null and b/flags/flags/shiny/32/Nagorno-Karabakh.png differ diff --git a/flags/flags/shiny/32/Namibia.png b/flags/flags/shiny/32/Namibia.png new file mode 100644 index 0000000..0c79cba Binary files /dev/null and b/flags/flags/shiny/32/Namibia.png differ diff --git a/flags/flags/shiny/32/Nauru.png b/flags/flags/shiny/32/Nauru.png new file mode 100644 index 0000000..2d9038a Binary files /dev/null and b/flags/flags/shiny/32/Nauru.png differ diff --git a/flags/flags/shiny/32/Nepal.png b/flags/flags/shiny/32/Nepal.png new file mode 100644 index 0000000..50f04ac Binary files /dev/null and b/flags/flags/shiny/32/Nepal.png differ diff --git a/flags/flags/shiny/32/Netherlands-Antilles.png b/flags/flags/shiny/32/Netherlands-Antilles.png new file mode 100644 index 0000000..dd8b999 Binary files /dev/null and b/flags/flags/shiny/32/Netherlands-Antilles.png differ diff --git a/flags/flags/shiny/32/Netherlands.png b/flags/flags/shiny/32/Netherlands.png new file mode 100644 index 0000000..01b1612 Binary files /dev/null and b/flags/flags/shiny/32/Netherlands.png differ diff --git a/flags/flags/shiny/32/New-Caledonia.png b/flags/flags/shiny/32/New-Caledonia.png new file mode 100644 index 0000000..5a2d759 Binary files /dev/null and b/flags/flags/shiny/32/New-Caledonia.png differ diff --git a/flags/flags/shiny/32/New-Zealand.png b/flags/flags/shiny/32/New-Zealand.png new file mode 100644 index 0000000..6034fde Binary files /dev/null and b/flags/flags/shiny/32/New-Zealand.png differ diff --git a/flags/flags/shiny/32/Nicaragua.png b/flags/flags/shiny/32/Nicaragua.png new file mode 100644 index 0000000..d454076 Binary files /dev/null and b/flags/flags/shiny/32/Nicaragua.png differ diff --git a/flags/flags/shiny/32/Niger.png b/flags/flags/shiny/32/Niger.png new file mode 100644 index 0000000..7108759 Binary files /dev/null and b/flags/flags/shiny/32/Niger.png differ diff --git a/flags/flags/shiny/32/Nigeria.png b/flags/flags/shiny/32/Nigeria.png new file mode 100644 index 0000000..57db1c3 Binary files /dev/null and b/flags/flags/shiny/32/Nigeria.png differ diff --git a/flags/flags/shiny/32/Niue.png b/flags/flags/shiny/32/Niue.png new file mode 100644 index 0000000..f712b41 Binary files /dev/null and b/flags/flags/shiny/32/Niue.png differ diff --git a/flags/flags/shiny/32/Norfolk-Island.png b/flags/flags/shiny/32/Norfolk-Island.png new file mode 100644 index 0000000..9f1bd9b Binary files /dev/null and b/flags/flags/shiny/32/Norfolk-Island.png differ diff --git a/flags/flags/shiny/32/North-Korea.png b/flags/flags/shiny/32/North-Korea.png new file mode 100644 index 0000000..f109971 Binary files /dev/null and b/flags/flags/shiny/32/North-Korea.png differ diff --git a/flags/flags/shiny/32/Northern-Cyprus.png b/flags/flags/shiny/32/Northern-Cyprus.png new file mode 100644 index 0000000..a904bcf Binary files /dev/null and b/flags/flags/shiny/32/Northern-Cyprus.png differ diff --git a/flags/flags/shiny/32/Northern-Mariana-Islands.png b/flags/flags/shiny/32/Northern-Mariana-Islands.png new file mode 100644 index 0000000..218978c Binary files /dev/null and b/flags/flags/shiny/32/Northern-Mariana-Islands.png differ diff --git a/flags/flags/shiny/32/Norway.png b/flags/flags/shiny/32/Norway.png new file mode 100644 index 0000000..dc0d858 Binary files /dev/null and b/flags/flags/shiny/32/Norway.png differ diff --git a/flags/flags/shiny/32/Olympics.png b/flags/flags/shiny/32/Olympics.png new file mode 100644 index 0000000..18605fd Binary files /dev/null and b/flags/flags/shiny/32/Olympics.png differ diff --git a/flags/flags/shiny/32/Oman.png b/flags/flags/shiny/32/Oman.png new file mode 100644 index 0000000..3f65141 Binary files /dev/null and b/flags/flags/shiny/32/Oman.png differ diff --git a/flags/flags/shiny/32/Pakistan.png b/flags/flags/shiny/32/Pakistan.png new file mode 100644 index 0000000..f24fe2b Binary files /dev/null and b/flags/flags/shiny/32/Pakistan.png differ diff --git a/flags/flags/shiny/32/Palau.png b/flags/flags/shiny/32/Palau.png new file mode 100644 index 0000000..b384ef3 Binary files /dev/null and b/flags/flags/shiny/32/Palau.png differ diff --git a/flags/flags/shiny/32/Palestine.png b/flags/flags/shiny/32/Palestine.png new file mode 100644 index 0000000..8efd0d1 Binary files /dev/null and b/flags/flags/shiny/32/Palestine.png differ diff --git a/flags/flags/shiny/32/Panama.png b/flags/flags/shiny/32/Panama.png new file mode 100644 index 0000000..99f9884 Binary files /dev/null and b/flags/flags/shiny/32/Panama.png differ diff --git a/flags/flags/shiny/32/Papua-New-Guinea.png b/flags/flags/shiny/32/Papua-New-Guinea.png new file mode 100644 index 0000000..3e59c8b Binary files /dev/null and b/flags/flags/shiny/32/Papua-New-Guinea.png differ diff --git a/flags/flags/shiny/32/Paraguay.png b/flags/flags/shiny/32/Paraguay.png new file mode 100644 index 0000000..84ff0f9 Binary files /dev/null and b/flags/flags/shiny/32/Paraguay.png differ diff --git a/flags/flags/shiny/32/Peru.png b/flags/flags/shiny/32/Peru.png new file mode 100644 index 0000000..210a0b8 Binary files /dev/null and b/flags/flags/shiny/32/Peru.png differ diff --git a/flags/flags/shiny/32/Philippines.png b/flags/flags/shiny/32/Philippines.png new file mode 100644 index 0000000..aad946d Binary files /dev/null and b/flags/flags/shiny/32/Philippines.png differ diff --git a/flags/flags/shiny/32/Pitcairn-Islands.png b/flags/flags/shiny/32/Pitcairn-Islands.png new file mode 100644 index 0000000..01dead4 Binary files /dev/null and b/flags/flags/shiny/32/Pitcairn-Islands.png differ diff --git a/flags/flags/shiny/32/Poland.png b/flags/flags/shiny/32/Poland.png new file mode 100644 index 0000000..60cb1b4 Binary files /dev/null and b/flags/flags/shiny/32/Poland.png differ diff --git a/flags/flags/shiny/32/Portugal.png b/flags/flags/shiny/32/Portugal.png new file mode 100644 index 0000000..d9c2383 Binary files /dev/null and b/flags/flags/shiny/32/Portugal.png differ diff --git a/flags/flags/shiny/32/Puerto-Rico.png b/flags/flags/shiny/32/Puerto-Rico.png new file mode 100644 index 0000000..31fbcd3 Binary files /dev/null and b/flags/flags/shiny/32/Puerto-Rico.png differ diff --git a/flags/flags/shiny/32/Qatar.png b/flags/flags/shiny/32/Qatar.png new file mode 100644 index 0000000..55ebe0a Binary files /dev/null and b/flags/flags/shiny/32/Qatar.png differ diff --git a/flags/flags/shiny/32/Red-Cross.png b/flags/flags/shiny/32/Red-Cross.png new file mode 100644 index 0000000..c13cd8d Binary files /dev/null and b/flags/flags/shiny/32/Red-Cross.png differ diff --git a/flags/flags/shiny/32/Republic-of-the-Congo.png b/flags/flags/shiny/32/Republic-of-the-Congo.png new file mode 100644 index 0000000..358de44 Binary files /dev/null and b/flags/flags/shiny/32/Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/32/Romania.png b/flags/flags/shiny/32/Romania.png new file mode 100644 index 0000000..5c68926 Binary files /dev/null and b/flags/flags/shiny/32/Romania.png differ diff --git a/flags/flags/shiny/32/Russia.png b/flags/flags/shiny/32/Russia.png new file mode 100644 index 0000000..6ec5b90 Binary files /dev/null and b/flags/flags/shiny/32/Russia.png differ diff --git a/flags/flags/shiny/32/Rwanda.png b/flags/flags/shiny/32/Rwanda.png new file mode 100644 index 0000000..0ce3a11 Binary files /dev/null and b/flags/flags/shiny/32/Rwanda.png differ diff --git a/flags/flags/shiny/32/Saint-Barthelemy.png b/flags/flags/shiny/32/Saint-Barthelemy.png new file mode 100644 index 0000000..b4677c7 Binary files /dev/null and b/flags/flags/shiny/32/Saint-Barthelemy.png differ diff --git a/flags/flags/shiny/32/Saint-Helena.png b/flags/flags/shiny/32/Saint-Helena.png new file mode 100644 index 0000000..169d5a7 Binary files /dev/null and b/flags/flags/shiny/32/Saint-Helena.png differ diff --git a/flags/flags/shiny/32/Saint-Kitts-and-Nevis.png b/flags/flags/shiny/32/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..b299794 Binary files /dev/null and b/flags/flags/shiny/32/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/shiny/32/Saint-Lucia.png b/flags/flags/shiny/32/Saint-Lucia.png new file mode 100644 index 0000000..a86b4ea Binary files /dev/null and b/flags/flags/shiny/32/Saint-Lucia.png differ diff --git a/flags/flags/shiny/32/Saint-Vincent-and-the-Grenadines.png b/flags/flags/shiny/32/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..e734896 Binary files /dev/null and b/flags/flags/shiny/32/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/shiny/32/Samoa.png b/flags/flags/shiny/32/Samoa.png new file mode 100644 index 0000000..c53c22d Binary files /dev/null and b/flags/flags/shiny/32/Samoa.png differ diff --git a/flags/flags/shiny/32/San-Marino.png b/flags/flags/shiny/32/San-Marino.png new file mode 100644 index 0000000..194e1cd Binary files /dev/null and b/flags/flags/shiny/32/San-Marino.png differ diff --git a/flags/flags/shiny/32/Sao-Tome-and-Principe.png b/flags/flags/shiny/32/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..61125ea Binary files /dev/null and b/flags/flags/shiny/32/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/shiny/32/Saudi-Arabia.png b/flags/flags/shiny/32/Saudi-Arabia.png new file mode 100644 index 0000000..27f6c90 Binary files /dev/null and b/flags/flags/shiny/32/Saudi-Arabia.png differ diff --git a/flags/flags/shiny/32/Scotland.png b/flags/flags/shiny/32/Scotland.png new file mode 100644 index 0000000..38f8d1d Binary files /dev/null and b/flags/flags/shiny/32/Scotland.png differ diff --git a/flags/flags/shiny/32/Senegal.png b/flags/flags/shiny/32/Senegal.png new file mode 100644 index 0000000..b3b9b10 Binary files /dev/null and b/flags/flags/shiny/32/Senegal.png differ diff --git a/flags/flags/shiny/32/Serbia.png b/flags/flags/shiny/32/Serbia.png new file mode 100644 index 0000000..5576a0f Binary files /dev/null and b/flags/flags/shiny/32/Serbia.png differ diff --git a/flags/flags/shiny/32/Seychelles.png b/flags/flags/shiny/32/Seychelles.png new file mode 100644 index 0000000..437d688 Binary files /dev/null and b/flags/flags/shiny/32/Seychelles.png differ diff --git a/flags/flags/shiny/32/Sierra-Leone.png b/flags/flags/shiny/32/Sierra-Leone.png new file mode 100644 index 0000000..d56037b Binary files /dev/null and b/flags/flags/shiny/32/Sierra-Leone.png differ diff --git a/flags/flags/shiny/32/Singapore.png b/flags/flags/shiny/32/Singapore.png new file mode 100644 index 0000000..9f67797 Binary files /dev/null and b/flags/flags/shiny/32/Singapore.png differ diff --git a/flags/flags/shiny/32/Slovakia.png b/flags/flags/shiny/32/Slovakia.png new file mode 100644 index 0000000..0628ea0 Binary files /dev/null and b/flags/flags/shiny/32/Slovakia.png differ diff --git a/flags/flags/shiny/32/Slovenia.png b/flags/flags/shiny/32/Slovenia.png new file mode 100644 index 0000000..5bd7049 Binary files /dev/null and b/flags/flags/shiny/32/Slovenia.png differ diff --git a/flags/flags/shiny/32/Solomon-Islands.png b/flags/flags/shiny/32/Solomon-Islands.png new file mode 100644 index 0000000..379674d Binary files /dev/null and b/flags/flags/shiny/32/Solomon-Islands.png differ diff --git a/flags/flags/shiny/32/Somalia.png b/flags/flags/shiny/32/Somalia.png new file mode 100644 index 0000000..6824850 Binary files /dev/null and b/flags/flags/shiny/32/Somalia.png differ diff --git a/flags/flags/shiny/32/Somaliland.png b/flags/flags/shiny/32/Somaliland.png new file mode 100644 index 0000000..0f45e1e Binary files /dev/null and b/flags/flags/shiny/32/Somaliland.png differ diff --git a/flags/flags/shiny/32/South-Africa.png b/flags/flags/shiny/32/South-Africa.png new file mode 100644 index 0000000..3d792b6 Binary files /dev/null and b/flags/flags/shiny/32/South-Africa.png differ diff --git a/flags/flags/shiny/32/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/shiny/32/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..fcaa793 Binary files /dev/null and b/flags/flags/shiny/32/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/shiny/32/South-Korea.png b/flags/flags/shiny/32/South-Korea.png new file mode 100644 index 0000000..2a3a7ee Binary files /dev/null and b/flags/flags/shiny/32/South-Korea.png differ diff --git a/flags/flags/shiny/32/South-Ossetia.png b/flags/flags/shiny/32/South-Ossetia.png new file mode 100644 index 0000000..c5d5630 Binary files /dev/null and b/flags/flags/shiny/32/South-Ossetia.png differ diff --git a/flags/flags/shiny/32/South-Sudan.png b/flags/flags/shiny/32/South-Sudan.png new file mode 100644 index 0000000..805b169 Binary files /dev/null and b/flags/flags/shiny/32/South-Sudan.png differ diff --git a/flags/flags/shiny/32/Spain.png b/flags/flags/shiny/32/Spain.png new file mode 100644 index 0000000..65814c3 Binary files /dev/null and b/flags/flags/shiny/32/Spain.png differ diff --git a/flags/flags/shiny/32/Sri-Lanka.png b/flags/flags/shiny/32/Sri-Lanka.png new file mode 100644 index 0000000..5bc19e8 Binary files /dev/null and b/flags/flags/shiny/32/Sri-Lanka.png differ diff --git a/flags/flags/shiny/32/Sudan.png b/flags/flags/shiny/32/Sudan.png new file mode 100644 index 0000000..45a7c91 Binary files /dev/null and b/flags/flags/shiny/32/Sudan.png differ diff --git a/flags/flags/shiny/32/Suriname.png b/flags/flags/shiny/32/Suriname.png new file mode 100644 index 0000000..659c0b0 Binary files /dev/null and b/flags/flags/shiny/32/Suriname.png differ diff --git a/flags/flags/shiny/32/Swaziland.png b/flags/flags/shiny/32/Swaziland.png new file mode 100644 index 0000000..1c7406c Binary files /dev/null and b/flags/flags/shiny/32/Swaziland.png differ diff --git a/flags/flags/shiny/32/Sweden.png b/flags/flags/shiny/32/Sweden.png new file mode 100644 index 0000000..c114237 Binary files /dev/null and b/flags/flags/shiny/32/Sweden.png differ diff --git a/flags/flags/shiny/32/Switzerland.png b/flags/flags/shiny/32/Switzerland.png new file mode 100644 index 0000000..8f7c95b Binary files /dev/null and b/flags/flags/shiny/32/Switzerland.png differ diff --git a/flags/flags/shiny/32/Syria.png b/flags/flags/shiny/32/Syria.png new file mode 100644 index 0000000..dd5d0a2 Binary files /dev/null and b/flags/flags/shiny/32/Syria.png differ diff --git a/flags/flags/shiny/32/Taiwan.png b/flags/flags/shiny/32/Taiwan.png new file mode 100644 index 0000000..9265d85 Binary files /dev/null and b/flags/flags/shiny/32/Taiwan.png differ diff --git a/flags/flags/shiny/32/Tajikistan.png b/flags/flags/shiny/32/Tajikistan.png new file mode 100644 index 0000000..97eb04e Binary files /dev/null and b/flags/flags/shiny/32/Tajikistan.png differ diff --git a/flags/flags/shiny/32/Tanzania.png b/flags/flags/shiny/32/Tanzania.png new file mode 100644 index 0000000..ba1dcf0 Binary files /dev/null and b/flags/flags/shiny/32/Tanzania.png differ diff --git a/flags/flags/shiny/32/Thailand.png b/flags/flags/shiny/32/Thailand.png new file mode 100644 index 0000000..68d10bb Binary files /dev/null and b/flags/flags/shiny/32/Thailand.png differ diff --git a/flags/flags/shiny/32/Togo.png b/flags/flags/shiny/32/Togo.png new file mode 100644 index 0000000..7653f21 Binary files /dev/null and b/flags/flags/shiny/32/Togo.png differ diff --git a/flags/flags/shiny/32/Tokelau.png b/flags/flags/shiny/32/Tokelau.png new file mode 100644 index 0000000..61da295 Binary files /dev/null and b/flags/flags/shiny/32/Tokelau.png differ diff --git a/flags/flags/shiny/32/Tonga.png b/flags/flags/shiny/32/Tonga.png new file mode 100644 index 0000000..a903c36 Binary files /dev/null and b/flags/flags/shiny/32/Tonga.png differ diff --git a/flags/flags/shiny/32/Trinidad-and-Tobago.png b/flags/flags/shiny/32/Trinidad-and-Tobago.png new file mode 100644 index 0000000..6ce562b Binary files /dev/null and b/flags/flags/shiny/32/Trinidad-and-Tobago.png differ diff --git a/flags/flags/shiny/32/Tunisia.png b/flags/flags/shiny/32/Tunisia.png new file mode 100644 index 0000000..512c47a Binary files /dev/null and b/flags/flags/shiny/32/Tunisia.png differ diff --git a/flags/flags/shiny/32/Turkey.png b/flags/flags/shiny/32/Turkey.png new file mode 100644 index 0000000..e854a8d Binary files /dev/null and b/flags/flags/shiny/32/Turkey.png differ diff --git a/flags/flags/shiny/32/Turkmenistan.png b/flags/flags/shiny/32/Turkmenistan.png new file mode 100644 index 0000000..14c6046 Binary files /dev/null and b/flags/flags/shiny/32/Turkmenistan.png differ diff --git a/flags/flags/shiny/32/Turks-and-Caicos-Islands.png b/flags/flags/shiny/32/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..aea447f Binary files /dev/null and b/flags/flags/shiny/32/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/shiny/32/Tuvalu.png b/flags/flags/shiny/32/Tuvalu.png new file mode 100644 index 0000000..db0897a Binary files /dev/null and b/flags/flags/shiny/32/Tuvalu.png differ diff --git a/flags/flags/shiny/32/US-Virgin-Islands.png b/flags/flags/shiny/32/US-Virgin-Islands.png new file mode 100644 index 0000000..2fe609b Binary files /dev/null and b/flags/flags/shiny/32/US-Virgin-Islands.png differ diff --git a/flags/flags/shiny/32/Uganda.png b/flags/flags/shiny/32/Uganda.png new file mode 100644 index 0000000..6e60b7a Binary files /dev/null and b/flags/flags/shiny/32/Uganda.png differ diff --git a/flags/flags/shiny/32/Ukraine.png b/flags/flags/shiny/32/Ukraine.png new file mode 100644 index 0000000..151d87a Binary files /dev/null and b/flags/flags/shiny/32/Ukraine.png differ diff --git a/flags/flags/shiny/32/United-Arab-Emirates.png b/flags/flags/shiny/32/United-Arab-Emirates.png new file mode 100644 index 0000000..b3053ef Binary files /dev/null and b/flags/flags/shiny/32/United-Arab-Emirates.png differ diff --git a/flags/flags/shiny/32/United-Kingdom.png b/flags/flags/shiny/32/United-Kingdom.png new file mode 100644 index 0000000..531836e Binary files /dev/null and b/flags/flags/shiny/32/United-Kingdom.png differ diff --git a/flags/flags/shiny/32/United-Nations.png b/flags/flags/shiny/32/United-Nations.png new file mode 100644 index 0000000..a48c0e5 Binary files /dev/null and b/flags/flags/shiny/32/United-Nations.png differ diff --git a/flags/flags/shiny/32/United-States.png b/flags/flags/shiny/32/United-States.png new file mode 100644 index 0000000..44b3c28 Binary files /dev/null and b/flags/flags/shiny/32/United-States.png differ diff --git a/flags/flags/shiny/32/Uruguay.png b/flags/flags/shiny/32/Uruguay.png new file mode 100644 index 0000000..97cb920 Binary files /dev/null and b/flags/flags/shiny/32/Uruguay.png differ diff --git a/flags/flags/shiny/32/Uzbekistan.png b/flags/flags/shiny/32/Uzbekistan.png new file mode 100644 index 0000000..1aa66d8 Binary files /dev/null and b/flags/flags/shiny/32/Uzbekistan.png differ diff --git a/flags/flags/shiny/32/Vanuatu.png b/flags/flags/shiny/32/Vanuatu.png new file mode 100644 index 0000000..1caa6cd Binary files /dev/null and b/flags/flags/shiny/32/Vanuatu.png differ diff --git a/flags/flags/shiny/32/Vatican-City.png b/flags/flags/shiny/32/Vatican-City.png new file mode 100644 index 0000000..d73feed Binary files /dev/null and b/flags/flags/shiny/32/Vatican-City.png differ diff --git a/flags/flags/shiny/32/Venezuela.png b/flags/flags/shiny/32/Venezuela.png new file mode 100644 index 0000000..319645f Binary files /dev/null and b/flags/flags/shiny/32/Venezuela.png differ diff --git a/flags/flags/shiny/32/Vietnam.png b/flags/flags/shiny/32/Vietnam.png new file mode 100644 index 0000000..02bdd0d Binary files /dev/null and b/flags/flags/shiny/32/Vietnam.png differ diff --git a/flags/flags/shiny/32/Wales.png b/flags/flags/shiny/32/Wales.png new file mode 100644 index 0000000..fb77f7d Binary files /dev/null and b/flags/flags/shiny/32/Wales.png differ diff --git a/flags/flags/shiny/32/Wallis-And-Futuna.png b/flags/flags/shiny/32/Wallis-And-Futuna.png new file mode 100644 index 0000000..cd668bc Binary files /dev/null and b/flags/flags/shiny/32/Wallis-And-Futuna.png differ diff --git a/flags/flags/shiny/32/Western-Sahara.png b/flags/flags/shiny/32/Western-Sahara.png new file mode 100644 index 0000000..d25fe2a Binary files /dev/null and b/flags/flags/shiny/32/Western-Sahara.png differ diff --git a/flags/flags/shiny/32/Yemen.png b/flags/flags/shiny/32/Yemen.png new file mode 100644 index 0000000..3362041 Binary files /dev/null and b/flags/flags/shiny/32/Yemen.png differ diff --git a/flags/flags/shiny/32/Zambia.png b/flags/flags/shiny/32/Zambia.png new file mode 100644 index 0000000..685c2cd Binary files /dev/null and b/flags/flags/shiny/32/Zambia.png differ diff --git a/flags/flags/shiny/32/Zimbabwe.png b/flags/flags/shiny/32/Zimbabwe.png new file mode 100644 index 0000000..e80faec Binary files /dev/null and b/flags/flags/shiny/32/Zimbabwe.png differ diff --git a/flags/flags/shiny/48/Abkhazia.png b/flags/flags/shiny/48/Abkhazia.png new file mode 100644 index 0000000..45344ef Binary files /dev/null and b/flags/flags/shiny/48/Abkhazia.png differ diff --git a/flags/flags/shiny/48/Afghanistan.png b/flags/flags/shiny/48/Afghanistan.png new file mode 100644 index 0000000..f8a2089 Binary files /dev/null and b/flags/flags/shiny/48/Afghanistan.png differ diff --git a/flags/flags/shiny/48/Aland.png b/flags/flags/shiny/48/Aland.png new file mode 100644 index 0000000..2f4bd4a Binary files /dev/null and b/flags/flags/shiny/48/Aland.png differ diff --git a/flags/flags/shiny/48/Albania.png b/flags/flags/shiny/48/Albania.png new file mode 100644 index 0000000..f2972da Binary files /dev/null and b/flags/flags/shiny/48/Albania.png differ diff --git a/flags/flags/shiny/48/Algeria.png b/flags/flags/shiny/48/Algeria.png new file mode 100644 index 0000000..450a319 Binary files /dev/null and b/flags/flags/shiny/48/Algeria.png differ diff --git a/flags/flags/shiny/48/American-Samoa.png b/flags/flags/shiny/48/American-Samoa.png new file mode 100644 index 0000000..f6701ad Binary files /dev/null and b/flags/flags/shiny/48/American-Samoa.png differ diff --git a/flags/flags/shiny/48/Andorra.png b/flags/flags/shiny/48/Andorra.png new file mode 100644 index 0000000..7e34545 Binary files /dev/null and b/flags/flags/shiny/48/Andorra.png differ diff --git a/flags/flags/shiny/48/Angola.png b/flags/flags/shiny/48/Angola.png new file mode 100644 index 0000000..6094813 Binary files /dev/null and b/flags/flags/shiny/48/Angola.png differ diff --git a/flags/flags/shiny/48/Anguilla.png b/flags/flags/shiny/48/Anguilla.png new file mode 100644 index 0000000..f443518 Binary files /dev/null and b/flags/flags/shiny/48/Anguilla.png differ diff --git a/flags/flags/shiny/48/Antarctica.png b/flags/flags/shiny/48/Antarctica.png new file mode 100644 index 0000000..f82aea6 Binary files /dev/null and b/flags/flags/shiny/48/Antarctica.png differ diff --git a/flags/flags/shiny/48/Antigua-and-Barbuda.png b/flags/flags/shiny/48/Antigua-and-Barbuda.png new file mode 100644 index 0000000..81e03f6 Binary files /dev/null and b/flags/flags/shiny/48/Antigua-and-Barbuda.png differ diff --git a/flags/flags/shiny/48/Argentina.png b/flags/flags/shiny/48/Argentina.png new file mode 100644 index 0000000..6c0248b Binary files /dev/null and b/flags/flags/shiny/48/Argentina.png differ diff --git a/flags/flags/shiny/48/Armenia.png b/flags/flags/shiny/48/Armenia.png new file mode 100644 index 0000000..dff6909 Binary files /dev/null and b/flags/flags/shiny/48/Armenia.png differ diff --git a/flags/flags/shiny/48/Aruba.png b/flags/flags/shiny/48/Aruba.png new file mode 100644 index 0000000..12f96e7 Binary files /dev/null and b/flags/flags/shiny/48/Aruba.png differ diff --git a/flags/flags/shiny/48/Australia.png b/flags/flags/shiny/48/Australia.png new file mode 100644 index 0000000..5dee590 Binary files /dev/null and b/flags/flags/shiny/48/Australia.png differ diff --git a/flags/flags/shiny/48/Austria.png b/flags/flags/shiny/48/Austria.png new file mode 100644 index 0000000..64aaca4 Binary files /dev/null and b/flags/flags/shiny/48/Austria.png differ diff --git a/flags/flags/shiny/48/Azerbaijan.png b/flags/flags/shiny/48/Azerbaijan.png new file mode 100644 index 0000000..fcca9a0 Binary files /dev/null and b/flags/flags/shiny/48/Azerbaijan.png differ diff --git a/flags/flags/shiny/48/Bahamas.png b/flags/flags/shiny/48/Bahamas.png new file mode 100644 index 0000000..3e06289 Binary files /dev/null and b/flags/flags/shiny/48/Bahamas.png differ diff --git a/flags/flags/shiny/48/Bahrain.png b/flags/flags/shiny/48/Bahrain.png new file mode 100644 index 0000000..02f86ed Binary files /dev/null and b/flags/flags/shiny/48/Bahrain.png differ diff --git a/flags/flags/shiny/48/Bangladesh.png b/flags/flags/shiny/48/Bangladesh.png new file mode 100644 index 0000000..66a2f99 Binary files /dev/null and b/flags/flags/shiny/48/Bangladesh.png differ diff --git a/flags/flags/shiny/48/Barbados.png b/flags/flags/shiny/48/Barbados.png new file mode 100644 index 0000000..26f9355 Binary files /dev/null and b/flags/flags/shiny/48/Barbados.png differ diff --git a/flags/flags/shiny/48/Belarus.png b/flags/flags/shiny/48/Belarus.png new file mode 100644 index 0000000..654cc13 Binary files /dev/null and b/flags/flags/shiny/48/Belarus.png differ diff --git a/flags/flags/shiny/48/Belgium.png b/flags/flags/shiny/48/Belgium.png new file mode 100644 index 0000000..f94127e Binary files /dev/null and b/flags/flags/shiny/48/Belgium.png differ diff --git a/flags/flags/shiny/48/Belize.png b/flags/flags/shiny/48/Belize.png new file mode 100644 index 0000000..6bfeea6 Binary files /dev/null and b/flags/flags/shiny/48/Belize.png differ diff --git a/flags/flags/shiny/48/Benin.png b/flags/flags/shiny/48/Benin.png new file mode 100644 index 0000000..f35ae52 Binary files /dev/null and b/flags/flags/shiny/48/Benin.png differ diff --git a/flags/flags/shiny/48/Bermuda.png b/flags/flags/shiny/48/Bermuda.png new file mode 100644 index 0000000..9288df5 Binary files /dev/null and b/flags/flags/shiny/48/Bermuda.png differ diff --git a/flags/flags/shiny/48/Bhutan.png b/flags/flags/shiny/48/Bhutan.png new file mode 100644 index 0000000..dab69cc Binary files /dev/null and b/flags/flags/shiny/48/Bhutan.png differ diff --git a/flags/flags/shiny/48/Bolivia.png b/flags/flags/shiny/48/Bolivia.png new file mode 100644 index 0000000..f3e14a7 Binary files /dev/null and b/flags/flags/shiny/48/Bolivia.png differ diff --git a/flags/flags/shiny/48/Bosnia-and-Herzegovina.png b/flags/flags/shiny/48/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..bcd7223 Binary files /dev/null and b/flags/flags/shiny/48/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/shiny/48/Botswana.png b/flags/flags/shiny/48/Botswana.png new file mode 100644 index 0000000..ea95524 Binary files /dev/null and b/flags/flags/shiny/48/Botswana.png differ diff --git a/flags/flags/shiny/48/Brazil.png b/flags/flags/shiny/48/Brazil.png new file mode 100644 index 0000000..56d6933 Binary files /dev/null and b/flags/flags/shiny/48/Brazil.png differ diff --git a/flags/flags/shiny/48/British-Antarctic-Territory.png b/flags/flags/shiny/48/British-Antarctic-Territory.png new file mode 100644 index 0000000..1aa2a87 Binary files /dev/null and b/flags/flags/shiny/48/British-Antarctic-Territory.png differ diff --git a/flags/flags/shiny/48/British-Virgin-Islands.png b/flags/flags/shiny/48/British-Virgin-Islands.png new file mode 100644 index 0000000..c688b5c Binary files /dev/null and b/flags/flags/shiny/48/British-Virgin-Islands.png differ diff --git a/flags/flags/shiny/48/Brunei.png b/flags/flags/shiny/48/Brunei.png new file mode 100644 index 0000000..61aa7a0 Binary files /dev/null and b/flags/flags/shiny/48/Brunei.png differ diff --git a/flags/flags/shiny/48/Bulgaria.png b/flags/flags/shiny/48/Bulgaria.png new file mode 100644 index 0000000..96987ee Binary files /dev/null and b/flags/flags/shiny/48/Bulgaria.png differ diff --git a/flags/flags/shiny/48/Burkina-Faso.png b/flags/flags/shiny/48/Burkina-Faso.png new file mode 100644 index 0000000..db65c36 Binary files /dev/null and b/flags/flags/shiny/48/Burkina-Faso.png differ diff --git a/flags/flags/shiny/48/Burundi.png b/flags/flags/shiny/48/Burundi.png new file mode 100644 index 0000000..b680aac Binary files /dev/null and b/flags/flags/shiny/48/Burundi.png differ diff --git a/flags/flags/shiny/48/Cambodia.png b/flags/flags/shiny/48/Cambodia.png new file mode 100644 index 0000000..981807b Binary files /dev/null and b/flags/flags/shiny/48/Cambodia.png differ diff --git a/flags/flags/shiny/48/Cameroon.png b/flags/flags/shiny/48/Cameroon.png new file mode 100644 index 0000000..fce39d5 Binary files /dev/null and b/flags/flags/shiny/48/Cameroon.png differ diff --git a/flags/flags/shiny/48/Canada.png b/flags/flags/shiny/48/Canada.png new file mode 100644 index 0000000..48f5907 Binary files /dev/null and b/flags/flags/shiny/48/Canada.png differ diff --git a/flags/flags/shiny/48/Cape-Verde.png b/flags/flags/shiny/48/Cape-Verde.png new file mode 100644 index 0000000..4d6bba9 Binary files /dev/null and b/flags/flags/shiny/48/Cape-Verde.png differ diff --git a/flags/flags/shiny/48/Cayman-Islands.png b/flags/flags/shiny/48/Cayman-Islands.png new file mode 100644 index 0000000..2c5d8cb Binary files /dev/null and b/flags/flags/shiny/48/Cayman-Islands.png differ diff --git a/flags/flags/shiny/48/Central-African-Republic.png b/flags/flags/shiny/48/Central-African-Republic.png new file mode 100644 index 0000000..b5329ff Binary files /dev/null and b/flags/flags/shiny/48/Central-African-Republic.png differ diff --git a/flags/flags/shiny/48/Chad.png b/flags/flags/shiny/48/Chad.png new file mode 100644 index 0000000..eb2f0e3 Binary files /dev/null and b/flags/flags/shiny/48/Chad.png differ diff --git a/flags/flags/shiny/48/Chile.png b/flags/flags/shiny/48/Chile.png new file mode 100644 index 0000000..7c0fa84 Binary files /dev/null and b/flags/flags/shiny/48/Chile.png differ diff --git a/flags/flags/shiny/48/China.png b/flags/flags/shiny/48/China.png new file mode 100644 index 0000000..5252856 Binary files /dev/null and b/flags/flags/shiny/48/China.png differ diff --git a/flags/flags/shiny/48/Christmas-Island.png b/flags/flags/shiny/48/Christmas-Island.png new file mode 100644 index 0000000..b04c93c Binary files /dev/null and b/flags/flags/shiny/48/Christmas-Island.png differ diff --git a/flags/flags/shiny/48/Cocos-Keeling-Islands.png b/flags/flags/shiny/48/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..32ca763 Binary files /dev/null and b/flags/flags/shiny/48/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/shiny/48/Colombia.png b/flags/flags/shiny/48/Colombia.png new file mode 100644 index 0000000..d12519e Binary files /dev/null and b/flags/flags/shiny/48/Colombia.png differ diff --git a/flags/flags/shiny/48/Commonwealth.png b/flags/flags/shiny/48/Commonwealth.png new file mode 100644 index 0000000..99bf898 Binary files /dev/null and b/flags/flags/shiny/48/Commonwealth.png differ diff --git a/flags/flags/shiny/48/Comoros.png b/flags/flags/shiny/48/Comoros.png new file mode 100644 index 0000000..799ba13 Binary files /dev/null and b/flags/flags/shiny/48/Comoros.png differ diff --git a/flags/flags/shiny/48/Cook-Islands.png b/flags/flags/shiny/48/Cook-Islands.png new file mode 100644 index 0000000..53b530a Binary files /dev/null and b/flags/flags/shiny/48/Cook-Islands.png differ diff --git a/flags/flags/shiny/48/Costa-Rica.png b/flags/flags/shiny/48/Costa-Rica.png new file mode 100644 index 0000000..33de629 Binary files /dev/null and b/flags/flags/shiny/48/Costa-Rica.png differ diff --git a/flags/flags/shiny/48/Cote-dIvoire.png b/flags/flags/shiny/48/Cote-dIvoire.png new file mode 100644 index 0000000..55b166a Binary files /dev/null and b/flags/flags/shiny/48/Cote-dIvoire.png differ diff --git a/flags/flags/shiny/48/Croatia.png b/flags/flags/shiny/48/Croatia.png new file mode 100644 index 0000000..dc25a0c Binary files /dev/null and b/flags/flags/shiny/48/Croatia.png differ diff --git a/flags/flags/shiny/48/Cuba.png b/flags/flags/shiny/48/Cuba.png new file mode 100644 index 0000000..4c68fe4 Binary files /dev/null and b/flags/flags/shiny/48/Cuba.png differ diff --git a/flags/flags/shiny/48/Cyprus.png b/flags/flags/shiny/48/Cyprus.png new file mode 100644 index 0000000..5249cbd Binary files /dev/null and b/flags/flags/shiny/48/Cyprus.png differ diff --git a/flags/flags/shiny/48/Czech-Republic.png b/flags/flags/shiny/48/Czech-Republic.png new file mode 100644 index 0000000..bd5ab6d Binary files /dev/null and b/flags/flags/shiny/48/Czech-Republic.png differ diff --git a/flags/flags/shiny/48/Democratic-Republic-of-the-Congo.png b/flags/flags/shiny/48/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..762e022 Binary files /dev/null and b/flags/flags/shiny/48/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/48/Denmark.png b/flags/flags/shiny/48/Denmark.png new file mode 100644 index 0000000..c9a7728 Binary files /dev/null and b/flags/flags/shiny/48/Denmark.png differ diff --git a/flags/flags/shiny/48/Djibouti.png b/flags/flags/shiny/48/Djibouti.png new file mode 100644 index 0000000..d277e5c Binary files /dev/null and b/flags/flags/shiny/48/Djibouti.png differ diff --git a/flags/flags/shiny/48/Dominica.png b/flags/flags/shiny/48/Dominica.png new file mode 100644 index 0000000..604a1a0 Binary files /dev/null and b/flags/flags/shiny/48/Dominica.png differ diff --git a/flags/flags/shiny/48/Dominican-Republic.png b/flags/flags/shiny/48/Dominican-Republic.png new file mode 100644 index 0000000..2dc0628 Binary files /dev/null and b/flags/flags/shiny/48/Dominican-Republic.png differ diff --git a/flags/flags/shiny/48/East-Timor.png b/flags/flags/shiny/48/East-Timor.png new file mode 100644 index 0000000..deb1123 Binary files /dev/null and b/flags/flags/shiny/48/East-Timor.png differ diff --git a/flags/flags/shiny/48/Ecuador.png b/flags/flags/shiny/48/Ecuador.png new file mode 100644 index 0000000..41853f1 Binary files /dev/null and b/flags/flags/shiny/48/Ecuador.png differ diff --git a/flags/flags/shiny/48/Egypt.png b/flags/flags/shiny/48/Egypt.png new file mode 100644 index 0000000..f0c62e6 Binary files /dev/null and b/flags/flags/shiny/48/Egypt.png differ diff --git a/flags/flags/shiny/48/El-Salvador.png b/flags/flags/shiny/48/El-Salvador.png new file mode 100644 index 0000000..7db0b43 Binary files /dev/null and b/flags/flags/shiny/48/El-Salvador.png differ diff --git a/flags/flags/shiny/48/England.png b/flags/flags/shiny/48/England.png new file mode 100644 index 0000000..45764bc Binary files /dev/null and b/flags/flags/shiny/48/England.png differ diff --git a/flags/flags/shiny/48/Equatorial-Guinea.png b/flags/flags/shiny/48/Equatorial-Guinea.png new file mode 100644 index 0000000..0c2cbc7 Binary files /dev/null and b/flags/flags/shiny/48/Equatorial-Guinea.png differ diff --git a/flags/flags/shiny/48/Eritrea.png b/flags/flags/shiny/48/Eritrea.png new file mode 100644 index 0000000..221d983 Binary files /dev/null and b/flags/flags/shiny/48/Eritrea.png differ diff --git a/flags/flags/shiny/48/Estonia.png b/flags/flags/shiny/48/Estonia.png new file mode 100644 index 0000000..6a99912 Binary files /dev/null and b/flags/flags/shiny/48/Estonia.png differ diff --git a/flags/flags/shiny/48/Ethiopia.png b/flags/flags/shiny/48/Ethiopia.png new file mode 100644 index 0000000..d9beca2 Binary files /dev/null and b/flags/flags/shiny/48/Ethiopia.png differ diff --git a/flags/flags/shiny/48/European-Union.png b/flags/flags/shiny/48/European-Union.png new file mode 100644 index 0000000..8054f2c Binary files /dev/null and b/flags/flags/shiny/48/European-Union.png differ diff --git a/flags/flags/shiny/48/Falkland-Islands.png b/flags/flags/shiny/48/Falkland-Islands.png new file mode 100644 index 0000000..69a8d65 Binary files /dev/null and b/flags/flags/shiny/48/Falkland-Islands.png differ diff --git a/flags/flags/shiny/48/Faroes.png b/flags/flags/shiny/48/Faroes.png new file mode 100644 index 0000000..1338473 Binary files /dev/null and b/flags/flags/shiny/48/Faroes.png differ diff --git a/flags/flags/shiny/48/Fiji.png b/flags/flags/shiny/48/Fiji.png new file mode 100644 index 0000000..9348a75 Binary files /dev/null and b/flags/flags/shiny/48/Fiji.png differ diff --git a/flags/flags/shiny/48/Finland.png b/flags/flags/shiny/48/Finland.png new file mode 100644 index 0000000..3ccbe96 Binary files /dev/null and b/flags/flags/shiny/48/Finland.png differ diff --git a/flags/flags/shiny/48/France.png b/flags/flags/shiny/48/France.png new file mode 100644 index 0000000..6353092 Binary files /dev/null and b/flags/flags/shiny/48/France.png differ diff --git a/flags/flags/shiny/48/French-Polynesia.png b/flags/flags/shiny/48/French-Polynesia.png new file mode 100644 index 0000000..c3d38b5 Binary files /dev/null and b/flags/flags/shiny/48/French-Polynesia.png differ diff --git a/flags/flags/shiny/48/French-Southern-Territories.png b/flags/flags/shiny/48/French-Southern-Territories.png new file mode 100644 index 0000000..e017048 Binary files /dev/null and b/flags/flags/shiny/48/French-Southern-Territories.png differ diff --git a/flags/flags/shiny/48/Gabon.png b/flags/flags/shiny/48/Gabon.png new file mode 100644 index 0000000..ec2cb29 Binary files /dev/null and b/flags/flags/shiny/48/Gabon.png differ diff --git a/flags/flags/shiny/48/Gambia.png b/flags/flags/shiny/48/Gambia.png new file mode 100644 index 0000000..d17f405 Binary files /dev/null and b/flags/flags/shiny/48/Gambia.png differ diff --git a/flags/flags/shiny/48/Georgia.png b/flags/flags/shiny/48/Georgia.png new file mode 100644 index 0000000..6427031 Binary files /dev/null and b/flags/flags/shiny/48/Georgia.png differ diff --git a/flags/flags/shiny/48/Germany.png b/flags/flags/shiny/48/Germany.png new file mode 100644 index 0000000..2eae857 Binary files /dev/null and b/flags/flags/shiny/48/Germany.png differ diff --git a/flags/flags/shiny/48/Ghana.png b/flags/flags/shiny/48/Ghana.png new file mode 100644 index 0000000..d811bdf Binary files /dev/null and b/flags/flags/shiny/48/Ghana.png differ diff --git a/flags/flags/shiny/48/Gibraltar.png b/flags/flags/shiny/48/Gibraltar.png new file mode 100644 index 0000000..fb56d2f Binary files /dev/null and b/flags/flags/shiny/48/Gibraltar.png differ diff --git a/flags/flags/shiny/48/GoSquared.png b/flags/flags/shiny/48/GoSquared.png new file mode 100644 index 0000000..889aef7 Binary files /dev/null and b/flags/flags/shiny/48/GoSquared.png differ diff --git a/flags/flags/shiny/48/Greece.png b/flags/flags/shiny/48/Greece.png new file mode 100644 index 0000000..664e983 Binary files /dev/null and b/flags/flags/shiny/48/Greece.png differ diff --git a/flags/flags/shiny/48/Greenland.png b/flags/flags/shiny/48/Greenland.png new file mode 100644 index 0000000..fed20b0 Binary files /dev/null and b/flags/flags/shiny/48/Greenland.png differ diff --git a/flags/flags/shiny/48/Grenada.png b/flags/flags/shiny/48/Grenada.png new file mode 100644 index 0000000..ff7c546 Binary files /dev/null and b/flags/flags/shiny/48/Grenada.png differ diff --git a/flags/flags/shiny/48/Guam.png b/flags/flags/shiny/48/Guam.png new file mode 100644 index 0000000..aa71b54 Binary files /dev/null and b/flags/flags/shiny/48/Guam.png differ diff --git a/flags/flags/shiny/48/Guatemala.png b/flags/flags/shiny/48/Guatemala.png new file mode 100644 index 0000000..4ff1a93 Binary files /dev/null and b/flags/flags/shiny/48/Guatemala.png differ diff --git a/flags/flags/shiny/48/Guernsey.png b/flags/flags/shiny/48/Guernsey.png new file mode 100644 index 0000000..2f26d13 Binary files /dev/null and b/flags/flags/shiny/48/Guernsey.png differ diff --git a/flags/flags/shiny/48/Guinea-Bissau.png b/flags/flags/shiny/48/Guinea-Bissau.png new file mode 100644 index 0000000..66db3fa Binary files /dev/null and b/flags/flags/shiny/48/Guinea-Bissau.png differ diff --git a/flags/flags/shiny/48/Guinea.png b/flags/flags/shiny/48/Guinea.png new file mode 100644 index 0000000..54e4a2f Binary files /dev/null and b/flags/flags/shiny/48/Guinea.png differ diff --git a/flags/flags/shiny/48/Guyana.png b/flags/flags/shiny/48/Guyana.png new file mode 100644 index 0000000..f7000ea Binary files /dev/null and b/flags/flags/shiny/48/Guyana.png differ diff --git a/flags/flags/shiny/48/Haiti.png b/flags/flags/shiny/48/Haiti.png new file mode 100644 index 0000000..e15231e Binary files /dev/null and b/flags/flags/shiny/48/Haiti.png differ diff --git a/flags/flags/shiny/48/Honduras.png b/flags/flags/shiny/48/Honduras.png new file mode 100644 index 0000000..1d6cf2b Binary files /dev/null and b/flags/flags/shiny/48/Honduras.png differ diff --git a/flags/flags/shiny/48/Hong-Kong.png b/flags/flags/shiny/48/Hong-Kong.png new file mode 100644 index 0000000..f619cbc Binary files /dev/null and b/flags/flags/shiny/48/Hong-Kong.png differ diff --git a/flags/flags/shiny/48/Hungary.png b/flags/flags/shiny/48/Hungary.png new file mode 100644 index 0000000..81c6da0 Binary files /dev/null and b/flags/flags/shiny/48/Hungary.png differ diff --git a/flags/flags/shiny/48/Iceland.png b/flags/flags/shiny/48/Iceland.png new file mode 100644 index 0000000..80fcf13 Binary files /dev/null and b/flags/flags/shiny/48/Iceland.png differ diff --git a/flags/flags/shiny/48/India.png b/flags/flags/shiny/48/India.png new file mode 100644 index 0000000..e99960b Binary files /dev/null and b/flags/flags/shiny/48/India.png differ diff --git a/flags/flags/shiny/48/Indonesia.png b/flags/flags/shiny/48/Indonesia.png new file mode 100644 index 0000000..4767be4 Binary files /dev/null and b/flags/flags/shiny/48/Indonesia.png differ diff --git a/flags/flags/shiny/48/Iran.png b/flags/flags/shiny/48/Iran.png new file mode 100644 index 0000000..bb56923 Binary files /dev/null and b/flags/flags/shiny/48/Iran.png differ diff --git a/flags/flags/shiny/48/Iraq.png b/flags/flags/shiny/48/Iraq.png new file mode 100644 index 0000000..74681d7 Binary files /dev/null and b/flags/flags/shiny/48/Iraq.png differ diff --git a/flags/flags/shiny/48/Ireland.png b/flags/flags/shiny/48/Ireland.png new file mode 100644 index 0000000..ca1b5b1 Binary files /dev/null and b/flags/flags/shiny/48/Ireland.png differ diff --git a/flags/flags/shiny/48/Isle-of-Man.png b/flags/flags/shiny/48/Isle-of-Man.png new file mode 100644 index 0000000..7c3a9c2 Binary files /dev/null and b/flags/flags/shiny/48/Isle-of-Man.png differ diff --git a/flags/flags/shiny/48/Israel.png b/flags/flags/shiny/48/Israel.png new file mode 100644 index 0000000..f99a59b Binary files /dev/null and b/flags/flags/shiny/48/Israel.png differ diff --git a/flags/flags/shiny/48/Italy.png b/flags/flags/shiny/48/Italy.png new file mode 100644 index 0000000..ea0b791 Binary files /dev/null and b/flags/flags/shiny/48/Italy.png differ diff --git a/flags/flags/shiny/48/Jamaica.png b/flags/flags/shiny/48/Jamaica.png new file mode 100644 index 0000000..b79728e Binary files /dev/null and b/flags/flags/shiny/48/Jamaica.png differ diff --git a/flags/flags/shiny/48/Japan.png b/flags/flags/shiny/48/Japan.png new file mode 100644 index 0000000..122963f Binary files /dev/null and b/flags/flags/shiny/48/Japan.png differ diff --git a/flags/flags/shiny/48/Jersey.png b/flags/flags/shiny/48/Jersey.png new file mode 100644 index 0000000..87435b9 Binary files /dev/null and b/flags/flags/shiny/48/Jersey.png differ diff --git a/flags/flags/shiny/48/Jordan.png b/flags/flags/shiny/48/Jordan.png new file mode 100644 index 0000000..e074264 Binary files /dev/null and b/flags/flags/shiny/48/Jordan.png differ diff --git a/flags/flags/shiny/48/Kazakhstan.png b/flags/flags/shiny/48/Kazakhstan.png new file mode 100644 index 0000000..4f73c21 Binary files /dev/null and b/flags/flags/shiny/48/Kazakhstan.png differ diff --git a/flags/flags/shiny/48/Kenya.png b/flags/flags/shiny/48/Kenya.png new file mode 100644 index 0000000..73d461d Binary files /dev/null and b/flags/flags/shiny/48/Kenya.png differ diff --git a/flags/flags/shiny/48/Kiribati.png b/flags/flags/shiny/48/Kiribati.png new file mode 100644 index 0000000..cfedc8b Binary files /dev/null and b/flags/flags/shiny/48/Kiribati.png differ diff --git a/flags/flags/shiny/48/Kosovo.png b/flags/flags/shiny/48/Kosovo.png new file mode 100644 index 0000000..48997ee Binary files /dev/null and b/flags/flags/shiny/48/Kosovo.png differ diff --git a/flags/flags/shiny/48/Kuwait.png b/flags/flags/shiny/48/Kuwait.png new file mode 100644 index 0000000..3227643 Binary files /dev/null and b/flags/flags/shiny/48/Kuwait.png differ diff --git a/flags/flags/shiny/48/Kyrgyzstan.png b/flags/flags/shiny/48/Kyrgyzstan.png new file mode 100644 index 0000000..e874f10 Binary files /dev/null and b/flags/flags/shiny/48/Kyrgyzstan.png differ diff --git a/flags/flags/shiny/48/Laos.png b/flags/flags/shiny/48/Laos.png new file mode 100644 index 0000000..9dffe06 Binary files /dev/null and b/flags/flags/shiny/48/Laos.png differ diff --git a/flags/flags/shiny/48/Latvia.png b/flags/flags/shiny/48/Latvia.png new file mode 100644 index 0000000..5c2adac Binary files /dev/null and b/flags/flags/shiny/48/Latvia.png differ diff --git a/flags/flags/shiny/48/Lebanon.png b/flags/flags/shiny/48/Lebanon.png new file mode 100644 index 0000000..88ec96f Binary files /dev/null and b/flags/flags/shiny/48/Lebanon.png differ diff --git a/flags/flags/shiny/48/Lesotho.png b/flags/flags/shiny/48/Lesotho.png new file mode 100644 index 0000000..655887e Binary files /dev/null and b/flags/flags/shiny/48/Lesotho.png differ diff --git a/flags/flags/shiny/48/Liberia.png b/flags/flags/shiny/48/Liberia.png new file mode 100644 index 0000000..6815a9a Binary files /dev/null and b/flags/flags/shiny/48/Liberia.png differ diff --git a/flags/flags/shiny/48/Libya.png b/flags/flags/shiny/48/Libya.png new file mode 100644 index 0000000..b3df89e Binary files /dev/null and b/flags/flags/shiny/48/Libya.png differ diff --git a/flags/flags/shiny/48/Liechtenstein.png b/flags/flags/shiny/48/Liechtenstein.png new file mode 100644 index 0000000..c38be4f Binary files /dev/null and b/flags/flags/shiny/48/Liechtenstein.png differ diff --git a/flags/flags/shiny/48/Lithuania.png b/flags/flags/shiny/48/Lithuania.png new file mode 100644 index 0000000..0530b69 Binary files /dev/null and b/flags/flags/shiny/48/Lithuania.png differ diff --git a/flags/flags/shiny/48/Luxembourg.png b/flags/flags/shiny/48/Luxembourg.png new file mode 100644 index 0000000..8fedfc9 Binary files /dev/null and b/flags/flags/shiny/48/Luxembourg.png differ diff --git a/flags/flags/shiny/48/Macau.png b/flags/flags/shiny/48/Macau.png new file mode 100644 index 0000000..b5a1e60 Binary files /dev/null and b/flags/flags/shiny/48/Macau.png differ diff --git a/flags/flags/shiny/48/Macedonia.png b/flags/flags/shiny/48/Macedonia.png new file mode 100644 index 0000000..602ea1f Binary files /dev/null and b/flags/flags/shiny/48/Macedonia.png differ diff --git a/flags/flags/shiny/48/Madagascar.png b/flags/flags/shiny/48/Madagascar.png new file mode 100644 index 0000000..6775ae8 Binary files /dev/null and b/flags/flags/shiny/48/Madagascar.png differ diff --git a/flags/flags/shiny/48/Malawi.png b/flags/flags/shiny/48/Malawi.png new file mode 100644 index 0000000..608ec76 Binary files /dev/null and b/flags/flags/shiny/48/Malawi.png differ diff --git a/flags/flags/shiny/48/Malaysia.png b/flags/flags/shiny/48/Malaysia.png new file mode 100644 index 0000000..02d6a98 Binary files /dev/null and b/flags/flags/shiny/48/Malaysia.png differ diff --git a/flags/flags/shiny/48/Maldives.png b/flags/flags/shiny/48/Maldives.png new file mode 100644 index 0000000..f979b6f Binary files /dev/null and b/flags/flags/shiny/48/Maldives.png differ diff --git a/flags/flags/shiny/48/Mali.png b/flags/flags/shiny/48/Mali.png new file mode 100644 index 0000000..23d7832 Binary files /dev/null and b/flags/flags/shiny/48/Mali.png differ diff --git a/flags/flags/shiny/48/Malta.png b/flags/flags/shiny/48/Malta.png new file mode 100644 index 0000000..4c9f251 Binary files /dev/null and b/flags/flags/shiny/48/Malta.png differ diff --git a/flags/flags/shiny/48/Mars.png b/flags/flags/shiny/48/Mars.png new file mode 100644 index 0000000..602a538 Binary files /dev/null and b/flags/flags/shiny/48/Mars.png differ diff --git a/flags/flags/shiny/48/Marshall-Islands.png b/flags/flags/shiny/48/Marshall-Islands.png new file mode 100644 index 0000000..1b73c66 Binary files /dev/null and b/flags/flags/shiny/48/Marshall-Islands.png differ diff --git a/flags/flags/shiny/48/Mauritania.png b/flags/flags/shiny/48/Mauritania.png new file mode 100644 index 0000000..173c6b4 Binary files /dev/null and b/flags/flags/shiny/48/Mauritania.png differ diff --git a/flags/flags/shiny/48/Mauritius.png b/flags/flags/shiny/48/Mauritius.png new file mode 100644 index 0000000..dd96a83 Binary files /dev/null and b/flags/flags/shiny/48/Mauritius.png differ diff --git a/flags/flags/shiny/48/Mayotte.png b/flags/flags/shiny/48/Mayotte.png new file mode 100644 index 0000000..9e9d210 Binary files /dev/null and b/flags/flags/shiny/48/Mayotte.png differ diff --git a/flags/flags/shiny/48/Mexico.png b/flags/flags/shiny/48/Mexico.png new file mode 100644 index 0000000..99a3049 Binary files /dev/null and b/flags/flags/shiny/48/Mexico.png differ diff --git a/flags/flags/shiny/48/Micronesia.png b/flags/flags/shiny/48/Micronesia.png new file mode 100644 index 0000000..fc722ee Binary files /dev/null and b/flags/flags/shiny/48/Micronesia.png differ diff --git a/flags/flags/shiny/48/Moldova.png b/flags/flags/shiny/48/Moldova.png new file mode 100644 index 0000000..74722d6 Binary files /dev/null and b/flags/flags/shiny/48/Moldova.png differ diff --git a/flags/flags/shiny/48/Monaco.png b/flags/flags/shiny/48/Monaco.png new file mode 100644 index 0000000..4767be4 Binary files /dev/null and b/flags/flags/shiny/48/Monaco.png differ diff --git a/flags/flags/shiny/48/Mongolia.png b/flags/flags/shiny/48/Mongolia.png new file mode 100644 index 0000000..9faf78e Binary files /dev/null and b/flags/flags/shiny/48/Mongolia.png differ diff --git a/flags/flags/shiny/48/Montenegro.png b/flags/flags/shiny/48/Montenegro.png new file mode 100644 index 0000000..c8d2f4a Binary files /dev/null and b/flags/flags/shiny/48/Montenegro.png differ diff --git a/flags/flags/shiny/48/Montserrat.png b/flags/flags/shiny/48/Montserrat.png new file mode 100644 index 0000000..b1f237c Binary files /dev/null and b/flags/flags/shiny/48/Montserrat.png differ diff --git a/flags/flags/shiny/48/Morocco.png b/flags/flags/shiny/48/Morocco.png new file mode 100644 index 0000000..e521425 Binary files /dev/null and b/flags/flags/shiny/48/Morocco.png differ diff --git a/flags/flags/shiny/48/Mozambique.png b/flags/flags/shiny/48/Mozambique.png new file mode 100644 index 0000000..d986f18 Binary files /dev/null and b/flags/flags/shiny/48/Mozambique.png differ diff --git a/flags/flags/shiny/48/Myanmar.png b/flags/flags/shiny/48/Myanmar.png new file mode 100644 index 0000000..0c63c6a Binary files /dev/null and b/flags/flags/shiny/48/Myanmar.png differ diff --git a/flags/flags/shiny/48/NATO.png b/flags/flags/shiny/48/NATO.png new file mode 100644 index 0000000..d24fdcc Binary files /dev/null and b/flags/flags/shiny/48/NATO.png differ diff --git a/flags/flags/shiny/48/Nagorno-Karabakh.png b/flags/flags/shiny/48/Nagorno-Karabakh.png new file mode 100644 index 0000000..791cb9b Binary files /dev/null and b/flags/flags/shiny/48/Nagorno-Karabakh.png differ diff --git a/flags/flags/shiny/48/Namibia.png b/flags/flags/shiny/48/Namibia.png new file mode 100644 index 0000000..99972e1 Binary files /dev/null and b/flags/flags/shiny/48/Namibia.png differ diff --git a/flags/flags/shiny/48/Nauru.png b/flags/flags/shiny/48/Nauru.png new file mode 100644 index 0000000..6614c81 Binary files /dev/null and b/flags/flags/shiny/48/Nauru.png differ diff --git a/flags/flags/shiny/48/Nepal.png b/flags/flags/shiny/48/Nepal.png new file mode 100644 index 0000000..5130807 Binary files /dev/null and b/flags/flags/shiny/48/Nepal.png differ diff --git a/flags/flags/shiny/48/Netherlands-Antilles.png b/flags/flags/shiny/48/Netherlands-Antilles.png new file mode 100644 index 0000000..b6afdee Binary files /dev/null and b/flags/flags/shiny/48/Netherlands-Antilles.png differ diff --git a/flags/flags/shiny/48/Netherlands.png b/flags/flags/shiny/48/Netherlands.png new file mode 100644 index 0000000..f16a129 Binary files /dev/null and b/flags/flags/shiny/48/Netherlands.png differ diff --git a/flags/flags/shiny/48/New-Caledonia.png b/flags/flags/shiny/48/New-Caledonia.png new file mode 100644 index 0000000..11ad1f5 Binary files /dev/null and b/flags/flags/shiny/48/New-Caledonia.png differ diff --git a/flags/flags/shiny/48/New-Zealand.png b/flags/flags/shiny/48/New-Zealand.png new file mode 100644 index 0000000..a75297e Binary files /dev/null and b/flags/flags/shiny/48/New-Zealand.png differ diff --git a/flags/flags/shiny/48/Nicaragua.png b/flags/flags/shiny/48/Nicaragua.png new file mode 100644 index 0000000..92c65a2 Binary files /dev/null and b/flags/flags/shiny/48/Nicaragua.png differ diff --git a/flags/flags/shiny/48/Niger.png b/flags/flags/shiny/48/Niger.png new file mode 100644 index 0000000..865cd36 Binary files /dev/null and b/flags/flags/shiny/48/Niger.png differ diff --git a/flags/flags/shiny/48/Nigeria.png b/flags/flags/shiny/48/Nigeria.png new file mode 100644 index 0000000..2402795 Binary files /dev/null and b/flags/flags/shiny/48/Nigeria.png differ diff --git a/flags/flags/shiny/48/Niue.png b/flags/flags/shiny/48/Niue.png new file mode 100644 index 0000000..961bdfd Binary files /dev/null and b/flags/flags/shiny/48/Niue.png differ diff --git a/flags/flags/shiny/48/Norfolk-Island.png b/flags/flags/shiny/48/Norfolk-Island.png new file mode 100644 index 0000000..8601f82 Binary files /dev/null and b/flags/flags/shiny/48/Norfolk-Island.png differ diff --git a/flags/flags/shiny/48/North-Korea.png b/flags/flags/shiny/48/North-Korea.png new file mode 100644 index 0000000..c4be6dc Binary files /dev/null and b/flags/flags/shiny/48/North-Korea.png differ diff --git a/flags/flags/shiny/48/Northern-Cyprus.png b/flags/flags/shiny/48/Northern-Cyprus.png new file mode 100644 index 0000000..d9c4848 Binary files /dev/null and b/flags/flags/shiny/48/Northern-Cyprus.png differ diff --git a/flags/flags/shiny/48/Northern-Mariana-Islands.png b/flags/flags/shiny/48/Northern-Mariana-Islands.png new file mode 100644 index 0000000..be0c31a Binary files /dev/null and b/flags/flags/shiny/48/Northern-Mariana-Islands.png differ diff --git a/flags/flags/shiny/48/Norway.png b/flags/flags/shiny/48/Norway.png new file mode 100644 index 0000000..ac2a305 Binary files /dev/null and b/flags/flags/shiny/48/Norway.png differ diff --git a/flags/flags/shiny/48/Olympics.png b/flags/flags/shiny/48/Olympics.png new file mode 100644 index 0000000..31e1f87 Binary files /dev/null and b/flags/flags/shiny/48/Olympics.png differ diff --git a/flags/flags/shiny/48/Oman.png b/flags/flags/shiny/48/Oman.png new file mode 100644 index 0000000..58ded8f Binary files /dev/null and b/flags/flags/shiny/48/Oman.png differ diff --git a/flags/flags/shiny/48/Pakistan.png b/flags/flags/shiny/48/Pakistan.png new file mode 100644 index 0000000..e6ad89c Binary files /dev/null and b/flags/flags/shiny/48/Pakistan.png differ diff --git a/flags/flags/shiny/48/Palau.png b/flags/flags/shiny/48/Palau.png new file mode 100644 index 0000000..f738c1f Binary files /dev/null and b/flags/flags/shiny/48/Palau.png differ diff --git a/flags/flags/shiny/48/Palestine.png b/flags/flags/shiny/48/Palestine.png new file mode 100644 index 0000000..2e6dde8 Binary files /dev/null and b/flags/flags/shiny/48/Palestine.png differ diff --git a/flags/flags/shiny/48/Panama.png b/flags/flags/shiny/48/Panama.png new file mode 100644 index 0000000..9c03d02 Binary files /dev/null and b/flags/flags/shiny/48/Panama.png differ diff --git a/flags/flags/shiny/48/Papua-New-Guinea.png b/flags/flags/shiny/48/Papua-New-Guinea.png new file mode 100644 index 0000000..118ee64 Binary files /dev/null and b/flags/flags/shiny/48/Papua-New-Guinea.png differ diff --git a/flags/flags/shiny/48/Paraguay.png b/flags/flags/shiny/48/Paraguay.png new file mode 100644 index 0000000..ffeca8a Binary files /dev/null and b/flags/flags/shiny/48/Paraguay.png differ diff --git a/flags/flags/shiny/48/Peru.png b/flags/flags/shiny/48/Peru.png new file mode 100644 index 0000000..d6e6653 Binary files /dev/null and b/flags/flags/shiny/48/Peru.png differ diff --git a/flags/flags/shiny/48/Philippines.png b/flags/flags/shiny/48/Philippines.png new file mode 100644 index 0000000..aa487a2 Binary files /dev/null and b/flags/flags/shiny/48/Philippines.png differ diff --git a/flags/flags/shiny/48/Pitcairn-Islands.png b/flags/flags/shiny/48/Pitcairn-Islands.png new file mode 100644 index 0000000..01612b1 Binary files /dev/null and b/flags/flags/shiny/48/Pitcairn-Islands.png differ diff --git a/flags/flags/shiny/48/Poland.png b/flags/flags/shiny/48/Poland.png new file mode 100644 index 0000000..b4e207c Binary files /dev/null and b/flags/flags/shiny/48/Poland.png differ diff --git a/flags/flags/shiny/48/Portugal.png b/flags/flags/shiny/48/Portugal.png new file mode 100644 index 0000000..d0b2bba Binary files /dev/null and b/flags/flags/shiny/48/Portugal.png differ diff --git a/flags/flags/shiny/48/Puerto-Rico.png b/flags/flags/shiny/48/Puerto-Rico.png new file mode 100644 index 0000000..6ba9c02 Binary files /dev/null and b/flags/flags/shiny/48/Puerto-Rico.png differ diff --git a/flags/flags/shiny/48/Qatar.png b/flags/flags/shiny/48/Qatar.png new file mode 100644 index 0000000..a8dbc3f Binary files /dev/null and b/flags/flags/shiny/48/Qatar.png differ diff --git a/flags/flags/shiny/48/Red-Cross.png b/flags/flags/shiny/48/Red-Cross.png new file mode 100644 index 0000000..031aaf1 Binary files /dev/null and b/flags/flags/shiny/48/Red-Cross.png differ diff --git a/flags/flags/shiny/48/Republic-of-the-Congo.png b/flags/flags/shiny/48/Republic-of-the-Congo.png new file mode 100644 index 0000000..b9637a0 Binary files /dev/null and b/flags/flags/shiny/48/Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/48/Romania.png b/flags/flags/shiny/48/Romania.png new file mode 100644 index 0000000..7a9d278 Binary files /dev/null and b/flags/flags/shiny/48/Romania.png differ diff --git a/flags/flags/shiny/48/Russia.png b/flags/flags/shiny/48/Russia.png new file mode 100644 index 0000000..f7be413 Binary files /dev/null and b/flags/flags/shiny/48/Russia.png differ diff --git a/flags/flags/shiny/48/Rwanda.png b/flags/flags/shiny/48/Rwanda.png new file mode 100644 index 0000000..8b19824 Binary files /dev/null and b/flags/flags/shiny/48/Rwanda.png differ diff --git a/flags/flags/shiny/48/Saint-Barthelemy.png b/flags/flags/shiny/48/Saint-Barthelemy.png new file mode 100644 index 0000000..e64f96b Binary files /dev/null and b/flags/flags/shiny/48/Saint-Barthelemy.png differ diff --git a/flags/flags/shiny/48/Saint-Helena.png b/flags/flags/shiny/48/Saint-Helena.png new file mode 100644 index 0000000..931e9a0 Binary files /dev/null and b/flags/flags/shiny/48/Saint-Helena.png differ diff --git a/flags/flags/shiny/48/Saint-Kitts-and-Nevis.png b/flags/flags/shiny/48/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..98bccc5 Binary files /dev/null and b/flags/flags/shiny/48/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/shiny/48/Saint-Lucia.png b/flags/flags/shiny/48/Saint-Lucia.png new file mode 100644 index 0000000..00bcb17 Binary files /dev/null and b/flags/flags/shiny/48/Saint-Lucia.png differ diff --git a/flags/flags/shiny/48/Saint-Vincent-and-the-Grenadines.png b/flags/flags/shiny/48/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..03fd69f Binary files /dev/null and b/flags/flags/shiny/48/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/shiny/48/Samoa.png b/flags/flags/shiny/48/Samoa.png new file mode 100644 index 0000000..bd75592 Binary files /dev/null and b/flags/flags/shiny/48/Samoa.png differ diff --git a/flags/flags/shiny/48/San-Marino.png b/flags/flags/shiny/48/San-Marino.png new file mode 100644 index 0000000..93a47e6 Binary files /dev/null and b/flags/flags/shiny/48/San-Marino.png differ diff --git a/flags/flags/shiny/48/Sao-Tome-and-Principe.png b/flags/flags/shiny/48/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..9168c88 Binary files /dev/null and b/flags/flags/shiny/48/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/shiny/48/Saudi-Arabia.png b/flags/flags/shiny/48/Saudi-Arabia.png new file mode 100644 index 0000000..7573e20 Binary files /dev/null and b/flags/flags/shiny/48/Saudi-Arabia.png differ diff --git a/flags/flags/shiny/48/Scotland.png b/flags/flags/shiny/48/Scotland.png new file mode 100644 index 0000000..b9d867e Binary files /dev/null and b/flags/flags/shiny/48/Scotland.png differ diff --git a/flags/flags/shiny/48/Senegal.png b/flags/flags/shiny/48/Senegal.png new file mode 100644 index 0000000..14f3981 Binary files /dev/null and b/flags/flags/shiny/48/Senegal.png differ diff --git a/flags/flags/shiny/48/Serbia.png b/flags/flags/shiny/48/Serbia.png new file mode 100644 index 0000000..6883df9 Binary files /dev/null and b/flags/flags/shiny/48/Serbia.png differ diff --git a/flags/flags/shiny/48/Seychelles.png b/flags/flags/shiny/48/Seychelles.png new file mode 100644 index 0000000..3265ba2 Binary files /dev/null and b/flags/flags/shiny/48/Seychelles.png differ diff --git a/flags/flags/shiny/48/Sierra-Leone.png b/flags/flags/shiny/48/Sierra-Leone.png new file mode 100644 index 0000000..14db5ba Binary files /dev/null and b/flags/flags/shiny/48/Sierra-Leone.png differ diff --git a/flags/flags/shiny/48/Singapore.png b/flags/flags/shiny/48/Singapore.png new file mode 100644 index 0000000..cb5fa3e Binary files /dev/null and b/flags/flags/shiny/48/Singapore.png differ diff --git a/flags/flags/shiny/48/Slovakia.png b/flags/flags/shiny/48/Slovakia.png new file mode 100644 index 0000000..7647af3 Binary files /dev/null and b/flags/flags/shiny/48/Slovakia.png differ diff --git a/flags/flags/shiny/48/Slovenia.png b/flags/flags/shiny/48/Slovenia.png new file mode 100644 index 0000000..7c112bb Binary files /dev/null and b/flags/flags/shiny/48/Slovenia.png differ diff --git a/flags/flags/shiny/48/Solomon-Islands.png b/flags/flags/shiny/48/Solomon-Islands.png new file mode 100644 index 0000000..792113a Binary files /dev/null and b/flags/flags/shiny/48/Solomon-Islands.png differ diff --git a/flags/flags/shiny/48/Somalia.png b/flags/flags/shiny/48/Somalia.png new file mode 100644 index 0000000..e8b37f5 Binary files /dev/null and b/flags/flags/shiny/48/Somalia.png differ diff --git a/flags/flags/shiny/48/Somaliland.png b/flags/flags/shiny/48/Somaliland.png new file mode 100644 index 0000000..1968add Binary files /dev/null and b/flags/flags/shiny/48/Somaliland.png differ diff --git a/flags/flags/shiny/48/South-Africa.png b/flags/flags/shiny/48/South-Africa.png new file mode 100644 index 0000000..1faf24a Binary files /dev/null and b/flags/flags/shiny/48/South-Africa.png differ diff --git a/flags/flags/shiny/48/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/shiny/48/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..a05a5b0 Binary files /dev/null and b/flags/flags/shiny/48/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/shiny/48/South-Korea.png b/flags/flags/shiny/48/South-Korea.png new file mode 100644 index 0000000..4bbec80 Binary files /dev/null and b/flags/flags/shiny/48/South-Korea.png differ diff --git a/flags/flags/shiny/48/South-Ossetia.png b/flags/flags/shiny/48/South-Ossetia.png new file mode 100644 index 0000000..8e4ee0a Binary files /dev/null and b/flags/flags/shiny/48/South-Ossetia.png differ diff --git a/flags/flags/shiny/48/South-Sudan.png b/flags/flags/shiny/48/South-Sudan.png new file mode 100644 index 0000000..40f977f Binary files /dev/null and b/flags/flags/shiny/48/South-Sudan.png differ diff --git a/flags/flags/shiny/48/Spain.png b/flags/flags/shiny/48/Spain.png new file mode 100644 index 0000000..6572af3 Binary files /dev/null and b/flags/flags/shiny/48/Spain.png differ diff --git a/flags/flags/shiny/48/Sri-Lanka.png b/flags/flags/shiny/48/Sri-Lanka.png new file mode 100644 index 0000000..2e872e8 Binary files /dev/null and b/flags/flags/shiny/48/Sri-Lanka.png differ diff --git a/flags/flags/shiny/48/Sudan.png b/flags/flags/shiny/48/Sudan.png new file mode 100644 index 0000000..4f60ce6 Binary files /dev/null and b/flags/flags/shiny/48/Sudan.png differ diff --git a/flags/flags/shiny/48/Suriname.png b/flags/flags/shiny/48/Suriname.png new file mode 100644 index 0000000..904f6a4 Binary files /dev/null and b/flags/flags/shiny/48/Suriname.png differ diff --git a/flags/flags/shiny/48/Swaziland.png b/flags/flags/shiny/48/Swaziland.png new file mode 100644 index 0000000..7e84259 Binary files /dev/null and b/flags/flags/shiny/48/Swaziland.png differ diff --git a/flags/flags/shiny/48/Sweden.png b/flags/flags/shiny/48/Sweden.png new file mode 100644 index 0000000..d6cf067 Binary files /dev/null and b/flags/flags/shiny/48/Sweden.png differ diff --git a/flags/flags/shiny/48/Switzerland.png b/flags/flags/shiny/48/Switzerland.png new file mode 100644 index 0000000..e6ff9a0 Binary files /dev/null and b/flags/flags/shiny/48/Switzerland.png differ diff --git a/flags/flags/shiny/48/Syria.png b/flags/flags/shiny/48/Syria.png new file mode 100644 index 0000000..83a8ed8 Binary files /dev/null and b/flags/flags/shiny/48/Syria.png differ diff --git a/flags/flags/shiny/48/Taiwan.png b/flags/flags/shiny/48/Taiwan.png new file mode 100644 index 0000000..b3cfa6e Binary files /dev/null and b/flags/flags/shiny/48/Taiwan.png differ diff --git a/flags/flags/shiny/48/Tajikistan.png b/flags/flags/shiny/48/Tajikistan.png new file mode 100644 index 0000000..f2e7dbd Binary files /dev/null and b/flags/flags/shiny/48/Tajikistan.png differ diff --git a/flags/flags/shiny/48/Tanzania.png b/flags/flags/shiny/48/Tanzania.png new file mode 100644 index 0000000..43dc56b Binary files /dev/null and b/flags/flags/shiny/48/Tanzania.png differ diff --git a/flags/flags/shiny/48/Thailand.png b/flags/flags/shiny/48/Thailand.png new file mode 100644 index 0000000..36d6499 Binary files /dev/null and b/flags/flags/shiny/48/Thailand.png differ diff --git a/flags/flags/shiny/48/Togo.png b/flags/flags/shiny/48/Togo.png new file mode 100644 index 0000000..0da702d Binary files /dev/null and b/flags/flags/shiny/48/Togo.png differ diff --git a/flags/flags/shiny/48/Tokelau.png b/flags/flags/shiny/48/Tokelau.png new file mode 100644 index 0000000..5084cc0 Binary files /dev/null and b/flags/flags/shiny/48/Tokelau.png differ diff --git a/flags/flags/shiny/48/Tonga.png b/flags/flags/shiny/48/Tonga.png new file mode 100644 index 0000000..7bc6f61 Binary files /dev/null and b/flags/flags/shiny/48/Tonga.png differ diff --git a/flags/flags/shiny/48/Trinidad-and-Tobago.png b/flags/flags/shiny/48/Trinidad-and-Tobago.png new file mode 100644 index 0000000..d661d82 Binary files /dev/null and b/flags/flags/shiny/48/Trinidad-and-Tobago.png differ diff --git a/flags/flags/shiny/48/Tunisia.png b/flags/flags/shiny/48/Tunisia.png new file mode 100644 index 0000000..6ef0d79 Binary files /dev/null and b/flags/flags/shiny/48/Tunisia.png differ diff --git a/flags/flags/shiny/48/Turkey.png b/flags/flags/shiny/48/Turkey.png new file mode 100644 index 0000000..8e291ad Binary files /dev/null and b/flags/flags/shiny/48/Turkey.png differ diff --git a/flags/flags/shiny/48/Turkmenistan.png b/flags/flags/shiny/48/Turkmenistan.png new file mode 100644 index 0000000..75d52f5 Binary files /dev/null and b/flags/flags/shiny/48/Turkmenistan.png differ diff --git a/flags/flags/shiny/48/Turks-and-Caicos-Islands.png b/flags/flags/shiny/48/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..8b43792 Binary files /dev/null and b/flags/flags/shiny/48/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/shiny/48/Tuvalu.png b/flags/flags/shiny/48/Tuvalu.png new file mode 100644 index 0000000..a1382dd Binary files /dev/null and b/flags/flags/shiny/48/Tuvalu.png differ diff --git a/flags/flags/shiny/48/US-Virgin-Islands.png b/flags/flags/shiny/48/US-Virgin-Islands.png new file mode 100644 index 0000000..6e5d2ee Binary files /dev/null and b/flags/flags/shiny/48/US-Virgin-Islands.png differ diff --git a/flags/flags/shiny/48/Uganda.png b/flags/flags/shiny/48/Uganda.png new file mode 100644 index 0000000..cf23f26 Binary files /dev/null and b/flags/flags/shiny/48/Uganda.png differ diff --git a/flags/flags/shiny/48/Ukraine.png b/flags/flags/shiny/48/Ukraine.png new file mode 100644 index 0000000..9466e81 Binary files /dev/null and b/flags/flags/shiny/48/Ukraine.png differ diff --git a/flags/flags/shiny/48/United-Arab-Emirates.png b/flags/flags/shiny/48/United-Arab-Emirates.png new file mode 100644 index 0000000..c3be97b Binary files /dev/null and b/flags/flags/shiny/48/United-Arab-Emirates.png differ diff --git a/flags/flags/shiny/48/United-Kingdom.png b/flags/flags/shiny/48/United-Kingdom.png new file mode 100644 index 0000000..89d962f Binary files /dev/null and b/flags/flags/shiny/48/United-Kingdom.png differ diff --git a/flags/flags/shiny/48/United-Nations.png b/flags/flags/shiny/48/United-Nations.png new file mode 100644 index 0000000..fe6d472 Binary files /dev/null and b/flags/flags/shiny/48/United-Nations.png differ diff --git a/flags/flags/shiny/48/United-States.png b/flags/flags/shiny/48/United-States.png new file mode 100644 index 0000000..154ce18 Binary files /dev/null and b/flags/flags/shiny/48/United-States.png differ diff --git a/flags/flags/shiny/48/Uruguay.png b/flags/flags/shiny/48/Uruguay.png new file mode 100644 index 0000000..6f864f4 Binary files /dev/null and b/flags/flags/shiny/48/Uruguay.png differ diff --git a/flags/flags/shiny/48/Uzbekistan.png b/flags/flags/shiny/48/Uzbekistan.png new file mode 100644 index 0000000..9411956 Binary files /dev/null and b/flags/flags/shiny/48/Uzbekistan.png differ diff --git a/flags/flags/shiny/48/Vanuatu.png b/flags/flags/shiny/48/Vanuatu.png new file mode 100644 index 0000000..c436652 Binary files /dev/null and b/flags/flags/shiny/48/Vanuatu.png differ diff --git a/flags/flags/shiny/48/Vatican-City.png b/flags/flags/shiny/48/Vatican-City.png new file mode 100644 index 0000000..0aed467 Binary files /dev/null and b/flags/flags/shiny/48/Vatican-City.png differ diff --git a/flags/flags/shiny/48/Venezuela.png b/flags/flags/shiny/48/Venezuela.png new file mode 100644 index 0000000..d6627db Binary files /dev/null and b/flags/flags/shiny/48/Venezuela.png differ diff --git a/flags/flags/shiny/48/Vietnam.png b/flags/flags/shiny/48/Vietnam.png new file mode 100644 index 0000000..8386793 Binary files /dev/null and b/flags/flags/shiny/48/Vietnam.png differ diff --git a/flags/flags/shiny/48/Wales.png b/flags/flags/shiny/48/Wales.png new file mode 100644 index 0000000..1db325f Binary files /dev/null and b/flags/flags/shiny/48/Wales.png differ diff --git a/flags/flags/shiny/48/Wallis-And-Futuna.png b/flags/flags/shiny/48/Wallis-And-Futuna.png new file mode 100644 index 0000000..1e8e5f7 Binary files /dev/null and b/flags/flags/shiny/48/Wallis-And-Futuna.png differ diff --git a/flags/flags/shiny/48/Western-Sahara.png b/flags/flags/shiny/48/Western-Sahara.png new file mode 100644 index 0000000..fa570cd Binary files /dev/null and b/flags/flags/shiny/48/Western-Sahara.png differ diff --git a/flags/flags/shiny/48/Yemen.png b/flags/flags/shiny/48/Yemen.png new file mode 100644 index 0000000..c305294 Binary files /dev/null and b/flags/flags/shiny/48/Yemen.png differ diff --git a/flags/flags/shiny/48/Zambia.png b/flags/flags/shiny/48/Zambia.png new file mode 100644 index 0000000..110e222 Binary files /dev/null and b/flags/flags/shiny/48/Zambia.png differ diff --git a/flags/flags/shiny/48/Zimbabwe.png b/flags/flags/shiny/48/Zimbabwe.png new file mode 100644 index 0000000..e115935 Binary files /dev/null and b/flags/flags/shiny/48/Zimbabwe.png differ diff --git a/flags/flags/shiny/64/Abkhazia.png b/flags/flags/shiny/64/Abkhazia.png new file mode 100644 index 0000000..fea70f5 Binary files /dev/null and b/flags/flags/shiny/64/Abkhazia.png differ diff --git a/flags/flags/shiny/64/Afghanistan.png b/flags/flags/shiny/64/Afghanistan.png new file mode 100644 index 0000000..c454d02 Binary files /dev/null and b/flags/flags/shiny/64/Afghanistan.png differ diff --git a/flags/flags/shiny/64/Aland.png b/flags/flags/shiny/64/Aland.png new file mode 100644 index 0000000..2824c2e Binary files /dev/null and b/flags/flags/shiny/64/Aland.png differ diff --git a/flags/flags/shiny/64/Albania.png b/flags/flags/shiny/64/Albania.png new file mode 100644 index 0000000..c9718da Binary files /dev/null and b/flags/flags/shiny/64/Albania.png differ diff --git a/flags/flags/shiny/64/Algeria.png b/flags/flags/shiny/64/Algeria.png new file mode 100644 index 0000000..241584f Binary files /dev/null and b/flags/flags/shiny/64/Algeria.png differ diff --git a/flags/flags/shiny/64/American-Samoa.png b/flags/flags/shiny/64/American-Samoa.png new file mode 100644 index 0000000..9fa4ce8 Binary files /dev/null and b/flags/flags/shiny/64/American-Samoa.png differ diff --git a/flags/flags/shiny/64/Andorra.png b/flags/flags/shiny/64/Andorra.png new file mode 100644 index 0000000..f7f544d Binary files /dev/null and b/flags/flags/shiny/64/Andorra.png differ diff --git a/flags/flags/shiny/64/Angola.png b/flags/flags/shiny/64/Angola.png new file mode 100644 index 0000000..ecd1112 Binary files /dev/null and b/flags/flags/shiny/64/Angola.png differ diff --git a/flags/flags/shiny/64/Anguilla.png b/flags/flags/shiny/64/Anguilla.png new file mode 100644 index 0000000..1b8306f Binary files /dev/null and b/flags/flags/shiny/64/Anguilla.png differ diff --git a/flags/flags/shiny/64/Antarctica.png b/flags/flags/shiny/64/Antarctica.png new file mode 100644 index 0000000..7bb02f8 Binary files /dev/null and b/flags/flags/shiny/64/Antarctica.png differ diff --git a/flags/flags/shiny/64/Antigua-and-Barbuda.png b/flags/flags/shiny/64/Antigua-and-Barbuda.png new file mode 100644 index 0000000..7204156 Binary files /dev/null and b/flags/flags/shiny/64/Antigua-and-Barbuda.png differ diff --git a/flags/flags/shiny/64/Argentina.png b/flags/flags/shiny/64/Argentina.png new file mode 100644 index 0000000..d6b5189 Binary files /dev/null and b/flags/flags/shiny/64/Argentina.png differ diff --git a/flags/flags/shiny/64/Armenia.png b/flags/flags/shiny/64/Armenia.png new file mode 100644 index 0000000..c4474a4 Binary files /dev/null and b/flags/flags/shiny/64/Armenia.png differ diff --git a/flags/flags/shiny/64/Aruba.png b/flags/flags/shiny/64/Aruba.png new file mode 100644 index 0000000..7289894 Binary files /dev/null and b/flags/flags/shiny/64/Aruba.png differ diff --git a/flags/flags/shiny/64/Australia.png b/flags/flags/shiny/64/Australia.png new file mode 100644 index 0000000..50fb678 Binary files /dev/null and b/flags/flags/shiny/64/Australia.png differ diff --git a/flags/flags/shiny/64/Austria.png b/flags/flags/shiny/64/Austria.png new file mode 100644 index 0000000..ddabd31 Binary files /dev/null and b/flags/flags/shiny/64/Austria.png differ diff --git a/flags/flags/shiny/64/Azerbaijan.png b/flags/flags/shiny/64/Azerbaijan.png new file mode 100644 index 0000000..cf4fd8e Binary files /dev/null and b/flags/flags/shiny/64/Azerbaijan.png differ diff --git a/flags/flags/shiny/64/Bahamas.png b/flags/flags/shiny/64/Bahamas.png new file mode 100644 index 0000000..c7eebff Binary files /dev/null and b/flags/flags/shiny/64/Bahamas.png differ diff --git a/flags/flags/shiny/64/Bahrain.png b/flags/flags/shiny/64/Bahrain.png new file mode 100644 index 0000000..7e3d75d Binary files /dev/null and b/flags/flags/shiny/64/Bahrain.png differ diff --git a/flags/flags/shiny/64/Bangladesh.png b/flags/flags/shiny/64/Bangladesh.png new file mode 100644 index 0000000..d9b4611 Binary files /dev/null and b/flags/flags/shiny/64/Bangladesh.png differ diff --git a/flags/flags/shiny/64/Barbados.png b/flags/flags/shiny/64/Barbados.png new file mode 100644 index 0000000..fac3025 Binary files /dev/null and b/flags/flags/shiny/64/Barbados.png differ diff --git a/flags/flags/shiny/64/Belarus.png b/flags/flags/shiny/64/Belarus.png new file mode 100644 index 0000000..f5e8da7 Binary files /dev/null and b/flags/flags/shiny/64/Belarus.png differ diff --git a/flags/flags/shiny/64/Belgium.png b/flags/flags/shiny/64/Belgium.png new file mode 100644 index 0000000..e36ff7f Binary files /dev/null and b/flags/flags/shiny/64/Belgium.png differ diff --git a/flags/flags/shiny/64/Belize.png b/flags/flags/shiny/64/Belize.png new file mode 100644 index 0000000..c99c488 Binary files /dev/null and b/flags/flags/shiny/64/Belize.png differ diff --git a/flags/flags/shiny/64/Benin.png b/flags/flags/shiny/64/Benin.png new file mode 100644 index 0000000..18a0475 Binary files /dev/null and b/flags/flags/shiny/64/Benin.png differ diff --git a/flags/flags/shiny/64/Bermuda.png b/flags/flags/shiny/64/Bermuda.png new file mode 100644 index 0000000..e2fa88f Binary files /dev/null and b/flags/flags/shiny/64/Bermuda.png differ diff --git a/flags/flags/shiny/64/Bhutan.png b/flags/flags/shiny/64/Bhutan.png new file mode 100644 index 0000000..da74719 Binary files /dev/null and b/flags/flags/shiny/64/Bhutan.png differ diff --git a/flags/flags/shiny/64/Bolivia.png b/flags/flags/shiny/64/Bolivia.png new file mode 100644 index 0000000..83a9efb Binary files /dev/null and b/flags/flags/shiny/64/Bolivia.png differ diff --git a/flags/flags/shiny/64/Bosnia-and-Herzegovina.png b/flags/flags/shiny/64/Bosnia-and-Herzegovina.png new file mode 100644 index 0000000..104d45a Binary files /dev/null and b/flags/flags/shiny/64/Bosnia-and-Herzegovina.png differ diff --git a/flags/flags/shiny/64/Botswana.png b/flags/flags/shiny/64/Botswana.png new file mode 100644 index 0000000..7789fa6 Binary files /dev/null and b/flags/flags/shiny/64/Botswana.png differ diff --git a/flags/flags/shiny/64/Brazil.png b/flags/flags/shiny/64/Brazil.png new file mode 100644 index 0000000..0b1da29 Binary files /dev/null and b/flags/flags/shiny/64/Brazil.png differ diff --git a/flags/flags/shiny/64/British-Antarctic-Territory.png b/flags/flags/shiny/64/British-Antarctic-Territory.png new file mode 100644 index 0000000..50fa45d Binary files /dev/null and b/flags/flags/shiny/64/British-Antarctic-Territory.png differ diff --git a/flags/flags/shiny/64/British-Virgin-Islands.png b/flags/flags/shiny/64/British-Virgin-Islands.png new file mode 100644 index 0000000..fa997e0 Binary files /dev/null and b/flags/flags/shiny/64/British-Virgin-Islands.png differ diff --git a/flags/flags/shiny/64/Brunei.png b/flags/flags/shiny/64/Brunei.png new file mode 100644 index 0000000..04e7fd7 Binary files /dev/null and b/flags/flags/shiny/64/Brunei.png differ diff --git a/flags/flags/shiny/64/Bulgaria.png b/flags/flags/shiny/64/Bulgaria.png new file mode 100644 index 0000000..9d05465 Binary files /dev/null and b/flags/flags/shiny/64/Bulgaria.png differ diff --git a/flags/flags/shiny/64/Burkina-Faso.png b/flags/flags/shiny/64/Burkina-Faso.png new file mode 100644 index 0000000..ed53cbe Binary files /dev/null and b/flags/flags/shiny/64/Burkina-Faso.png differ diff --git a/flags/flags/shiny/64/Burundi.png b/flags/flags/shiny/64/Burundi.png new file mode 100644 index 0000000..1dd48d9 Binary files /dev/null and b/flags/flags/shiny/64/Burundi.png differ diff --git a/flags/flags/shiny/64/Cambodia.png b/flags/flags/shiny/64/Cambodia.png new file mode 100644 index 0000000..7cb4b23 Binary files /dev/null and b/flags/flags/shiny/64/Cambodia.png differ diff --git a/flags/flags/shiny/64/Cameroon.png b/flags/flags/shiny/64/Cameroon.png new file mode 100644 index 0000000..b2355fb Binary files /dev/null and b/flags/flags/shiny/64/Cameroon.png differ diff --git a/flags/flags/shiny/64/Canada.png b/flags/flags/shiny/64/Canada.png new file mode 100644 index 0000000..4c68c8c Binary files /dev/null and b/flags/flags/shiny/64/Canada.png differ diff --git a/flags/flags/shiny/64/Cape-Verde.png b/flags/flags/shiny/64/Cape-Verde.png new file mode 100644 index 0000000..39f0e63 Binary files /dev/null and b/flags/flags/shiny/64/Cape-Verde.png differ diff --git a/flags/flags/shiny/64/Cayman-Islands.png b/flags/flags/shiny/64/Cayman-Islands.png new file mode 100644 index 0000000..83f2870 Binary files /dev/null and b/flags/flags/shiny/64/Cayman-Islands.png differ diff --git a/flags/flags/shiny/64/Central-African-Republic.png b/flags/flags/shiny/64/Central-African-Republic.png new file mode 100644 index 0000000..78cc880 Binary files /dev/null and b/flags/flags/shiny/64/Central-African-Republic.png differ diff --git a/flags/flags/shiny/64/Chad.png b/flags/flags/shiny/64/Chad.png new file mode 100644 index 0000000..9f9581d Binary files /dev/null and b/flags/flags/shiny/64/Chad.png differ diff --git a/flags/flags/shiny/64/Chile.png b/flags/flags/shiny/64/Chile.png new file mode 100644 index 0000000..2a9b342 Binary files /dev/null and b/flags/flags/shiny/64/Chile.png differ diff --git a/flags/flags/shiny/64/China.png b/flags/flags/shiny/64/China.png new file mode 100644 index 0000000..30496b0 Binary files /dev/null and b/flags/flags/shiny/64/China.png differ diff --git a/flags/flags/shiny/64/Christmas-Island.png b/flags/flags/shiny/64/Christmas-Island.png new file mode 100644 index 0000000..3fb679b Binary files /dev/null and b/flags/flags/shiny/64/Christmas-Island.png differ diff --git a/flags/flags/shiny/64/Cocos-Keeling-Islands.png b/flags/flags/shiny/64/Cocos-Keeling-Islands.png new file mode 100644 index 0000000..26b7bd2 Binary files /dev/null and b/flags/flags/shiny/64/Cocos-Keeling-Islands.png differ diff --git a/flags/flags/shiny/64/Colombia.png b/flags/flags/shiny/64/Colombia.png new file mode 100644 index 0000000..896af29 Binary files /dev/null and b/flags/flags/shiny/64/Colombia.png differ diff --git a/flags/flags/shiny/64/Commonwealth.png b/flags/flags/shiny/64/Commonwealth.png new file mode 100644 index 0000000..6aba76c Binary files /dev/null and b/flags/flags/shiny/64/Commonwealth.png differ diff --git a/flags/flags/shiny/64/Comoros.png b/flags/flags/shiny/64/Comoros.png new file mode 100644 index 0000000..7b0cb90 Binary files /dev/null and b/flags/flags/shiny/64/Comoros.png differ diff --git a/flags/flags/shiny/64/Cook-Islands.png b/flags/flags/shiny/64/Cook-Islands.png new file mode 100644 index 0000000..96dc4d8 Binary files /dev/null and b/flags/flags/shiny/64/Cook-Islands.png differ diff --git a/flags/flags/shiny/64/Costa-Rica.png b/flags/flags/shiny/64/Costa-Rica.png new file mode 100644 index 0000000..95206cf Binary files /dev/null and b/flags/flags/shiny/64/Costa-Rica.png differ diff --git a/flags/flags/shiny/64/Cote-dIvoire.png b/flags/flags/shiny/64/Cote-dIvoire.png new file mode 100644 index 0000000..e94f791 Binary files /dev/null and b/flags/flags/shiny/64/Cote-dIvoire.png differ diff --git a/flags/flags/shiny/64/Croatia.png b/flags/flags/shiny/64/Croatia.png new file mode 100644 index 0000000..d2dd0e3 Binary files /dev/null and b/flags/flags/shiny/64/Croatia.png differ diff --git a/flags/flags/shiny/64/Cuba.png b/flags/flags/shiny/64/Cuba.png new file mode 100644 index 0000000..e51a780 Binary files /dev/null and b/flags/flags/shiny/64/Cuba.png differ diff --git a/flags/flags/shiny/64/Cyprus.png b/flags/flags/shiny/64/Cyprus.png new file mode 100644 index 0000000..dc5a119 Binary files /dev/null and b/flags/flags/shiny/64/Cyprus.png differ diff --git a/flags/flags/shiny/64/Czech-Republic.png b/flags/flags/shiny/64/Czech-Republic.png new file mode 100644 index 0000000..2616355 Binary files /dev/null and b/flags/flags/shiny/64/Czech-Republic.png differ diff --git a/flags/flags/shiny/64/Democratic-Republic-of-the-Congo.png b/flags/flags/shiny/64/Democratic-Republic-of-the-Congo.png new file mode 100644 index 0000000..dbd5795 Binary files /dev/null and b/flags/flags/shiny/64/Democratic-Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/64/Denmark.png b/flags/flags/shiny/64/Denmark.png new file mode 100644 index 0000000..ae650dd Binary files /dev/null and b/flags/flags/shiny/64/Denmark.png differ diff --git a/flags/flags/shiny/64/Djibouti.png b/flags/flags/shiny/64/Djibouti.png new file mode 100644 index 0000000..336cccd Binary files /dev/null and b/flags/flags/shiny/64/Djibouti.png differ diff --git a/flags/flags/shiny/64/Dominica.png b/flags/flags/shiny/64/Dominica.png new file mode 100644 index 0000000..55800b7 Binary files /dev/null and b/flags/flags/shiny/64/Dominica.png differ diff --git a/flags/flags/shiny/64/Dominican-Republic.png b/flags/flags/shiny/64/Dominican-Republic.png new file mode 100644 index 0000000..ebb32b6 Binary files /dev/null and b/flags/flags/shiny/64/Dominican-Republic.png differ diff --git a/flags/flags/shiny/64/East-Timor.png b/flags/flags/shiny/64/East-Timor.png new file mode 100644 index 0000000..7bd71ce Binary files /dev/null and b/flags/flags/shiny/64/East-Timor.png differ diff --git a/flags/flags/shiny/64/Ecuador.png b/flags/flags/shiny/64/Ecuador.png new file mode 100644 index 0000000..c69d1a0 Binary files /dev/null and b/flags/flags/shiny/64/Ecuador.png differ diff --git a/flags/flags/shiny/64/Egypt.png b/flags/flags/shiny/64/Egypt.png new file mode 100644 index 0000000..bd282eb Binary files /dev/null and b/flags/flags/shiny/64/Egypt.png differ diff --git a/flags/flags/shiny/64/El-Salvador.png b/flags/flags/shiny/64/El-Salvador.png new file mode 100644 index 0000000..7b4598c Binary files /dev/null and b/flags/flags/shiny/64/El-Salvador.png differ diff --git a/flags/flags/shiny/64/England.png b/flags/flags/shiny/64/England.png new file mode 100644 index 0000000..a21e16c Binary files /dev/null and b/flags/flags/shiny/64/England.png differ diff --git a/flags/flags/shiny/64/Equatorial-Guinea.png b/flags/flags/shiny/64/Equatorial-Guinea.png new file mode 100644 index 0000000..8429dc9 Binary files /dev/null and b/flags/flags/shiny/64/Equatorial-Guinea.png differ diff --git a/flags/flags/shiny/64/Eritrea.png b/flags/flags/shiny/64/Eritrea.png new file mode 100644 index 0000000..8bfc48c Binary files /dev/null and b/flags/flags/shiny/64/Eritrea.png differ diff --git a/flags/flags/shiny/64/Estonia.png b/flags/flags/shiny/64/Estonia.png new file mode 100644 index 0000000..120ee25 Binary files /dev/null and b/flags/flags/shiny/64/Estonia.png differ diff --git a/flags/flags/shiny/64/Ethiopia.png b/flags/flags/shiny/64/Ethiopia.png new file mode 100644 index 0000000..ec683e1 Binary files /dev/null and b/flags/flags/shiny/64/Ethiopia.png differ diff --git a/flags/flags/shiny/64/European-Union.png b/flags/flags/shiny/64/European-Union.png new file mode 100644 index 0000000..fe942d4 Binary files /dev/null and b/flags/flags/shiny/64/European-Union.png differ diff --git a/flags/flags/shiny/64/Falkland-Islands.png b/flags/flags/shiny/64/Falkland-Islands.png new file mode 100644 index 0000000..a0f1f06 Binary files /dev/null and b/flags/flags/shiny/64/Falkland-Islands.png differ diff --git a/flags/flags/shiny/64/Faroes.png b/flags/flags/shiny/64/Faroes.png new file mode 100644 index 0000000..73a76d5 Binary files /dev/null and b/flags/flags/shiny/64/Faroes.png differ diff --git a/flags/flags/shiny/64/Fiji.png b/flags/flags/shiny/64/Fiji.png new file mode 100644 index 0000000..ff4ce5c Binary files /dev/null and b/flags/flags/shiny/64/Fiji.png differ diff --git a/flags/flags/shiny/64/Finland.png b/flags/flags/shiny/64/Finland.png new file mode 100644 index 0000000..3100021 Binary files /dev/null and b/flags/flags/shiny/64/Finland.png differ diff --git a/flags/flags/shiny/64/France.png b/flags/flags/shiny/64/France.png new file mode 100644 index 0000000..a2b2de6 Binary files /dev/null and b/flags/flags/shiny/64/France.png differ diff --git a/flags/flags/shiny/64/French-Polynesia.png b/flags/flags/shiny/64/French-Polynesia.png new file mode 100644 index 0000000..df5883e Binary files /dev/null and b/flags/flags/shiny/64/French-Polynesia.png differ diff --git a/flags/flags/shiny/64/French-Southern-Territories.png b/flags/flags/shiny/64/French-Southern-Territories.png new file mode 100644 index 0000000..5990d4a Binary files /dev/null and b/flags/flags/shiny/64/French-Southern-Territories.png differ diff --git a/flags/flags/shiny/64/Gabon.png b/flags/flags/shiny/64/Gabon.png new file mode 100644 index 0000000..0525472 Binary files /dev/null and b/flags/flags/shiny/64/Gabon.png differ diff --git a/flags/flags/shiny/64/Gambia.png b/flags/flags/shiny/64/Gambia.png new file mode 100644 index 0000000..3b1027c Binary files /dev/null and b/flags/flags/shiny/64/Gambia.png differ diff --git a/flags/flags/shiny/64/Georgia.png b/flags/flags/shiny/64/Georgia.png new file mode 100644 index 0000000..b3a56a2 Binary files /dev/null and b/flags/flags/shiny/64/Georgia.png differ diff --git a/flags/flags/shiny/64/Germany.png b/flags/flags/shiny/64/Germany.png new file mode 100644 index 0000000..b28cfd9 Binary files /dev/null and b/flags/flags/shiny/64/Germany.png differ diff --git a/flags/flags/shiny/64/Ghana.png b/flags/flags/shiny/64/Ghana.png new file mode 100644 index 0000000..9653c86 Binary files /dev/null and b/flags/flags/shiny/64/Ghana.png differ diff --git a/flags/flags/shiny/64/Gibraltar.png b/flags/flags/shiny/64/Gibraltar.png new file mode 100644 index 0000000..93eb1af Binary files /dev/null and b/flags/flags/shiny/64/Gibraltar.png differ diff --git a/flags/flags/shiny/64/GoSquared.png b/flags/flags/shiny/64/GoSquared.png new file mode 100644 index 0000000..17895f1 Binary files /dev/null and b/flags/flags/shiny/64/GoSquared.png differ diff --git a/flags/flags/shiny/64/Greece.png b/flags/flags/shiny/64/Greece.png new file mode 100644 index 0000000..f64bd39 Binary files /dev/null and b/flags/flags/shiny/64/Greece.png differ diff --git a/flags/flags/shiny/64/Greenland.png b/flags/flags/shiny/64/Greenland.png new file mode 100644 index 0000000..6f18ea0 Binary files /dev/null and b/flags/flags/shiny/64/Greenland.png differ diff --git a/flags/flags/shiny/64/Grenada.png b/flags/flags/shiny/64/Grenada.png new file mode 100644 index 0000000..5d4df8f Binary files /dev/null and b/flags/flags/shiny/64/Grenada.png differ diff --git a/flags/flags/shiny/64/Guam.png b/flags/flags/shiny/64/Guam.png new file mode 100644 index 0000000..18e7086 Binary files /dev/null and b/flags/flags/shiny/64/Guam.png differ diff --git a/flags/flags/shiny/64/Guatemala.png b/flags/flags/shiny/64/Guatemala.png new file mode 100644 index 0000000..79848de Binary files /dev/null and b/flags/flags/shiny/64/Guatemala.png differ diff --git a/flags/flags/shiny/64/Guernsey.png b/flags/flags/shiny/64/Guernsey.png new file mode 100644 index 0000000..f0e14b9 Binary files /dev/null and b/flags/flags/shiny/64/Guernsey.png differ diff --git a/flags/flags/shiny/64/Guinea-Bissau.png b/flags/flags/shiny/64/Guinea-Bissau.png new file mode 100644 index 0000000..d378f47 Binary files /dev/null and b/flags/flags/shiny/64/Guinea-Bissau.png differ diff --git a/flags/flags/shiny/64/Guinea.png b/flags/flags/shiny/64/Guinea.png new file mode 100644 index 0000000..65e0dfb Binary files /dev/null and b/flags/flags/shiny/64/Guinea.png differ diff --git a/flags/flags/shiny/64/Guyana.png b/flags/flags/shiny/64/Guyana.png new file mode 100644 index 0000000..f78e34c Binary files /dev/null and b/flags/flags/shiny/64/Guyana.png differ diff --git a/flags/flags/shiny/64/Haiti.png b/flags/flags/shiny/64/Haiti.png new file mode 100644 index 0000000..3e0db8d Binary files /dev/null and b/flags/flags/shiny/64/Haiti.png differ diff --git a/flags/flags/shiny/64/Honduras.png b/flags/flags/shiny/64/Honduras.png new file mode 100644 index 0000000..669cd4d Binary files /dev/null and b/flags/flags/shiny/64/Honduras.png differ diff --git a/flags/flags/shiny/64/Hong-Kong.png b/flags/flags/shiny/64/Hong-Kong.png new file mode 100644 index 0000000..9e86dee Binary files /dev/null and b/flags/flags/shiny/64/Hong-Kong.png differ diff --git a/flags/flags/shiny/64/Hungary.png b/flags/flags/shiny/64/Hungary.png new file mode 100644 index 0000000..d115bc3 Binary files /dev/null and b/flags/flags/shiny/64/Hungary.png differ diff --git a/flags/flags/shiny/64/Iceland.png b/flags/flags/shiny/64/Iceland.png new file mode 100644 index 0000000..3875477 Binary files /dev/null and b/flags/flags/shiny/64/Iceland.png differ diff --git a/flags/flags/shiny/64/India.png b/flags/flags/shiny/64/India.png new file mode 100644 index 0000000..ee348e8 Binary files /dev/null and b/flags/flags/shiny/64/India.png differ diff --git a/flags/flags/shiny/64/Indonesia.png b/flags/flags/shiny/64/Indonesia.png new file mode 100644 index 0000000..f44ee9e Binary files /dev/null and b/flags/flags/shiny/64/Indonesia.png differ diff --git a/flags/flags/shiny/64/Iran.png b/flags/flags/shiny/64/Iran.png new file mode 100644 index 0000000..09daca1 Binary files /dev/null and b/flags/flags/shiny/64/Iran.png differ diff --git a/flags/flags/shiny/64/Iraq.png b/flags/flags/shiny/64/Iraq.png new file mode 100644 index 0000000..1c7191b Binary files /dev/null and b/flags/flags/shiny/64/Iraq.png differ diff --git a/flags/flags/shiny/64/Ireland.png b/flags/flags/shiny/64/Ireland.png new file mode 100644 index 0000000..f26d2a4 Binary files /dev/null and b/flags/flags/shiny/64/Ireland.png differ diff --git a/flags/flags/shiny/64/Isle-of-Man.png b/flags/flags/shiny/64/Isle-of-Man.png new file mode 100644 index 0000000..7b3508f Binary files /dev/null and b/flags/flags/shiny/64/Isle-of-Man.png differ diff --git a/flags/flags/shiny/64/Israel.png b/flags/flags/shiny/64/Israel.png new file mode 100644 index 0000000..2e0443f Binary files /dev/null and b/flags/flags/shiny/64/Israel.png differ diff --git a/flags/flags/shiny/64/Italy.png b/flags/flags/shiny/64/Italy.png new file mode 100644 index 0000000..70d488f Binary files /dev/null and b/flags/flags/shiny/64/Italy.png differ diff --git a/flags/flags/shiny/64/Jamaica.png b/flags/flags/shiny/64/Jamaica.png new file mode 100644 index 0000000..490d3f6 Binary files /dev/null and b/flags/flags/shiny/64/Jamaica.png differ diff --git a/flags/flags/shiny/64/Japan.png b/flags/flags/shiny/64/Japan.png new file mode 100644 index 0000000..9907ce0 Binary files /dev/null and b/flags/flags/shiny/64/Japan.png differ diff --git a/flags/flags/shiny/64/Jersey.png b/flags/flags/shiny/64/Jersey.png new file mode 100644 index 0000000..e9bb2f8 Binary files /dev/null and b/flags/flags/shiny/64/Jersey.png differ diff --git a/flags/flags/shiny/64/Jordan.png b/flags/flags/shiny/64/Jordan.png new file mode 100644 index 0000000..94f959d Binary files /dev/null and b/flags/flags/shiny/64/Jordan.png differ diff --git a/flags/flags/shiny/64/Kazakhstan.png b/flags/flags/shiny/64/Kazakhstan.png new file mode 100644 index 0000000..37bda09 Binary files /dev/null and b/flags/flags/shiny/64/Kazakhstan.png differ diff --git a/flags/flags/shiny/64/Kenya.png b/flags/flags/shiny/64/Kenya.png new file mode 100644 index 0000000..966feb9 Binary files /dev/null and b/flags/flags/shiny/64/Kenya.png differ diff --git a/flags/flags/shiny/64/Kiribati.png b/flags/flags/shiny/64/Kiribati.png new file mode 100644 index 0000000..8e10c78 Binary files /dev/null and b/flags/flags/shiny/64/Kiribati.png differ diff --git a/flags/flags/shiny/64/Kosovo.png b/flags/flags/shiny/64/Kosovo.png new file mode 100644 index 0000000..43660fd Binary files /dev/null and b/flags/flags/shiny/64/Kosovo.png differ diff --git a/flags/flags/shiny/64/Kuwait.png b/flags/flags/shiny/64/Kuwait.png new file mode 100644 index 0000000..93ff3d9 Binary files /dev/null and b/flags/flags/shiny/64/Kuwait.png differ diff --git a/flags/flags/shiny/64/Kyrgyzstan.png b/flags/flags/shiny/64/Kyrgyzstan.png new file mode 100644 index 0000000..7d7f930 Binary files /dev/null and b/flags/flags/shiny/64/Kyrgyzstan.png differ diff --git a/flags/flags/shiny/64/Laos.png b/flags/flags/shiny/64/Laos.png new file mode 100644 index 0000000..bce6687 Binary files /dev/null and b/flags/flags/shiny/64/Laos.png differ diff --git a/flags/flags/shiny/64/Latvia.png b/flags/flags/shiny/64/Latvia.png new file mode 100644 index 0000000..8117906 Binary files /dev/null and b/flags/flags/shiny/64/Latvia.png differ diff --git a/flags/flags/shiny/64/Lebanon.png b/flags/flags/shiny/64/Lebanon.png new file mode 100644 index 0000000..5a18341 Binary files /dev/null and b/flags/flags/shiny/64/Lebanon.png differ diff --git a/flags/flags/shiny/64/Lesotho.png b/flags/flags/shiny/64/Lesotho.png new file mode 100644 index 0000000..39edfaa Binary files /dev/null and b/flags/flags/shiny/64/Lesotho.png differ diff --git a/flags/flags/shiny/64/Liberia.png b/flags/flags/shiny/64/Liberia.png new file mode 100644 index 0000000..d264167 Binary files /dev/null and b/flags/flags/shiny/64/Liberia.png differ diff --git a/flags/flags/shiny/64/Libya.png b/flags/flags/shiny/64/Libya.png new file mode 100644 index 0000000..d3b605e Binary files /dev/null and b/flags/flags/shiny/64/Libya.png differ diff --git a/flags/flags/shiny/64/Liechtenstein.png b/flags/flags/shiny/64/Liechtenstein.png new file mode 100644 index 0000000..a866dd0 Binary files /dev/null and b/flags/flags/shiny/64/Liechtenstein.png differ diff --git a/flags/flags/shiny/64/Lithuania.png b/flags/flags/shiny/64/Lithuania.png new file mode 100644 index 0000000..db17b65 Binary files /dev/null and b/flags/flags/shiny/64/Lithuania.png differ diff --git a/flags/flags/shiny/64/Luxembourg.png b/flags/flags/shiny/64/Luxembourg.png new file mode 100644 index 0000000..e87ddc7 Binary files /dev/null and b/flags/flags/shiny/64/Luxembourg.png differ diff --git a/flags/flags/shiny/64/Macau.png b/flags/flags/shiny/64/Macau.png new file mode 100644 index 0000000..9379034 Binary files /dev/null and b/flags/flags/shiny/64/Macau.png differ diff --git a/flags/flags/shiny/64/Macedonia.png b/flags/flags/shiny/64/Macedonia.png new file mode 100644 index 0000000..eb30d9b Binary files /dev/null and b/flags/flags/shiny/64/Macedonia.png differ diff --git a/flags/flags/shiny/64/Madagascar.png b/flags/flags/shiny/64/Madagascar.png new file mode 100644 index 0000000..3418851 Binary files /dev/null and b/flags/flags/shiny/64/Madagascar.png differ diff --git a/flags/flags/shiny/64/Malawi.png b/flags/flags/shiny/64/Malawi.png new file mode 100644 index 0000000..574baac Binary files /dev/null and b/flags/flags/shiny/64/Malawi.png differ diff --git a/flags/flags/shiny/64/Malaysia.png b/flags/flags/shiny/64/Malaysia.png new file mode 100644 index 0000000..9280e98 Binary files /dev/null and b/flags/flags/shiny/64/Malaysia.png differ diff --git a/flags/flags/shiny/64/Maldives.png b/flags/flags/shiny/64/Maldives.png new file mode 100644 index 0000000..19581fc Binary files /dev/null and b/flags/flags/shiny/64/Maldives.png differ diff --git a/flags/flags/shiny/64/Mali.png b/flags/flags/shiny/64/Mali.png new file mode 100644 index 0000000..1457695 Binary files /dev/null and b/flags/flags/shiny/64/Mali.png differ diff --git a/flags/flags/shiny/64/Malta.png b/flags/flags/shiny/64/Malta.png new file mode 100644 index 0000000..1b2b4f5 Binary files /dev/null and b/flags/flags/shiny/64/Malta.png differ diff --git a/flags/flags/shiny/64/Mars.png b/flags/flags/shiny/64/Mars.png new file mode 100644 index 0000000..3d6587c Binary files /dev/null and b/flags/flags/shiny/64/Mars.png differ diff --git a/flags/flags/shiny/64/Marshall-Islands.png b/flags/flags/shiny/64/Marshall-Islands.png new file mode 100644 index 0000000..6687fc0 Binary files /dev/null and b/flags/flags/shiny/64/Marshall-Islands.png differ diff --git a/flags/flags/shiny/64/Mauritania.png b/flags/flags/shiny/64/Mauritania.png new file mode 100644 index 0000000..4e32555 Binary files /dev/null and b/flags/flags/shiny/64/Mauritania.png differ diff --git a/flags/flags/shiny/64/Mauritius.png b/flags/flags/shiny/64/Mauritius.png new file mode 100644 index 0000000..9b2508b Binary files /dev/null and b/flags/flags/shiny/64/Mauritius.png differ diff --git a/flags/flags/shiny/64/Mayotte.png b/flags/flags/shiny/64/Mayotte.png new file mode 100644 index 0000000..af947fd Binary files /dev/null and b/flags/flags/shiny/64/Mayotte.png differ diff --git a/flags/flags/shiny/64/Mexico.png b/flags/flags/shiny/64/Mexico.png new file mode 100644 index 0000000..2b73aed Binary files /dev/null and b/flags/flags/shiny/64/Mexico.png differ diff --git a/flags/flags/shiny/64/Micronesia.png b/flags/flags/shiny/64/Micronesia.png new file mode 100644 index 0000000..50f5504 Binary files /dev/null and b/flags/flags/shiny/64/Micronesia.png differ diff --git a/flags/flags/shiny/64/Moldova.png b/flags/flags/shiny/64/Moldova.png new file mode 100644 index 0000000..0a4af81 Binary files /dev/null and b/flags/flags/shiny/64/Moldova.png differ diff --git a/flags/flags/shiny/64/Monaco.png b/flags/flags/shiny/64/Monaco.png new file mode 100644 index 0000000..f44ee9e Binary files /dev/null and b/flags/flags/shiny/64/Monaco.png differ diff --git a/flags/flags/shiny/64/Mongolia.png b/flags/flags/shiny/64/Mongolia.png new file mode 100644 index 0000000..d406fbb Binary files /dev/null and b/flags/flags/shiny/64/Mongolia.png differ diff --git a/flags/flags/shiny/64/Montenegro.png b/flags/flags/shiny/64/Montenegro.png new file mode 100644 index 0000000..f0c2644 Binary files /dev/null and b/flags/flags/shiny/64/Montenegro.png differ diff --git a/flags/flags/shiny/64/Montserrat.png b/flags/flags/shiny/64/Montserrat.png new file mode 100644 index 0000000..addb87f Binary files /dev/null and b/flags/flags/shiny/64/Montserrat.png differ diff --git a/flags/flags/shiny/64/Morocco.png b/flags/flags/shiny/64/Morocco.png new file mode 100644 index 0000000..6ef3c74 Binary files /dev/null and b/flags/flags/shiny/64/Morocco.png differ diff --git a/flags/flags/shiny/64/Mozambique.png b/flags/flags/shiny/64/Mozambique.png new file mode 100644 index 0000000..ef9646a Binary files /dev/null and b/flags/flags/shiny/64/Mozambique.png differ diff --git a/flags/flags/shiny/64/Myanmar.png b/flags/flags/shiny/64/Myanmar.png new file mode 100644 index 0000000..a96807b Binary files /dev/null and b/flags/flags/shiny/64/Myanmar.png differ diff --git a/flags/flags/shiny/64/NATO.png b/flags/flags/shiny/64/NATO.png new file mode 100644 index 0000000..81b720b Binary files /dev/null and b/flags/flags/shiny/64/NATO.png differ diff --git a/flags/flags/shiny/64/Nagorno-Karabakh.png b/flags/flags/shiny/64/Nagorno-Karabakh.png new file mode 100644 index 0000000..a2f67d4 Binary files /dev/null and b/flags/flags/shiny/64/Nagorno-Karabakh.png differ diff --git a/flags/flags/shiny/64/Namibia.png b/flags/flags/shiny/64/Namibia.png new file mode 100644 index 0000000..edcd8c5 Binary files /dev/null and b/flags/flags/shiny/64/Namibia.png differ diff --git a/flags/flags/shiny/64/Nauru.png b/flags/flags/shiny/64/Nauru.png new file mode 100644 index 0000000..1bb178e Binary files /dev/null and b/flags/flags/shiny/64/Nauru.png differ diff --git a/flags/flags/shiny/64/Nepal.png b/flags/flags/shiny/64/Nepal.png new file mode 100644 index 0000000..763c216 Binary files /dev/null and b/flags/flags/shiny/64/Nepal.png differ diff --git a/flags/flags/shiny/64/Netherlands-Antilles.png b/flags/flags/shiny/64/Netherlands-Antilles.png new file mode 100644 index 0000000..8ca75ce Binary files /dev/null and b/flags/flags/shiny/64/Netherlands-Antilles.png differ diff --git a/flags/flags/shiny/64/Netherlands.png b/flags/flags/shiny/64/Netherlands.png new file mode 100644 index 0000000..dbb2c2c Binary files /dev/null and b/flags/flags/shiny/64/Netherlands.png differ diff --git a/flags/flags/shiny/64/New-Caledonia.png b/flags/flags/shiny/64/New-Caledonia.png new file mode 100644 index 0000000..db6b1ef Binary files /dev/null and b/flags/flags/shiny/64/New-Caledonia.png differ diff --git a/flags/flags/shiny/64/New-Zealand.png b/flags/flags/shiny/64/New-Zealand.png new file mode 100644 index 0000000..0bdf72f Binary files /dev/null and b/flags/flags/shiny/64/New-Zealand.png differ diff --git a/flags/flags/shiny/64/Nicaragua.png b/flags/flags/shiny/64/Nicaragua.png new file mode 100644 index 0000000..1fd2b4b Binary files /dev/null and b/flags/flags/shiny/64/Nicaragua.png differ diff --git a/flags/flags/shiny/64/Niger.png b/flags/flags/shiny/64/Niger.png new file mode 100644 index 0000000..6d192b4 Binary files /dev/null and b/flags/flags/shiny/64/Niger.png differ diff --git a/flags/flags/shiny/64/Nigeria.png b/flags/flags/shiny/64/Nigeria.png new file mode 100644 index 0000000..600a978 Binary files /dev/null and b/flags/flags/shiny/64/Nigeria.png differ diff --git a/flags/flags/shiny/64/Niue.png b/flags/flags/shiny/64/Niue.png new file mode 100644 index 0000000..c92483f Binary files /dev/null and b/flags/flags/shiny/64/Niue.png differ diff --git a/flags/flags/shiny/64/Norfolk-Island.png b/flags/flags/shiny/64/Norfolk-Island.png new file mode 100644 index 0000000..1a356e4 Binary files /dev/null and b/flags/flags/shiny/64/Norfolk-Island.png differ diff --git a/flags/flags/shiny/64/North-Korea.png b/flags/flags/shiny/64/North-Korea.png new file mode 100644 index 0000000..58874f6 Binary files /dev/null and b/flags/flags/shiny/64/North-Korea.png differ diff --git a/flags/flags/shiny/64/Northern-Cyprus.png b/flags/flags/shiny/64/Northern-Cyprus.png new file mode 100644 index 0000000..589b62a Binary files /dev/null and b/flags/flags/shiny/64/Northern-Cyprus.png differ diff --git a/flags/flags/shiny/64/Northern-Mariana-Islands.png b/flags/flags/shiny/64/Northern-Mariana-Islands.png new file mode 100644 index 0000000..e8cbb1c Binary files /dev/null and b/flags/flags/shiny/64/Northern-Mariana-Islands.png differ diff --git a/flags/flags/shiny/64/Norway.png b/flags/flags/shiny/64/Norway.png new file mode 100644 index 0000000..89b8c21 Binary files /dev/null and b/flags/flags/shiny/64/Norway.png differ diff --git a/flags/flags/shiny/64/Olympics.png b/flags/flags/shiny/64/Olympics.png new file mode 100644 index 0000000..25c9fc0 Binary files /dev/null and b/flags/flags/shiny/64/Olympics.png differ diff --git a/flags/flags/shiny/64/Oman.png b/flags/flags/shiny/64/Oman.png new file mode 100644 index 0000000..8f9a173 Binary files /dev/null and b/flags/flags/shiny/64/Oman.png differ diff --git a/flags/flags/shiny/64/Pakistan.png b/flags/flags/shiny/64/Pakistan.png new file mode 100644 index 0000000..ad9e59d Binary files /dev/null and b/flags/flags/shiny/64/Pakistan.png differ diff --git a/flags/flags/shiny/64/Palau.png b/flags/flags/shiny/64/Palau.png new file mode 100644 index 0000000..56c11cd Binary files /dev/null and b/flags/flags/shiny/64/Palau.png differ diff --git a/flags/flags/shiny/64/Palestine.png b/flags/flags/shiny/64/Palestine.png new file mode 100644 index 0000000..8098092 Binary files /dev/null and b/flags/flags/shiny/64/Palestine.png differ diff --git a/flags/flags/shiny/64/Panama.png b/flags/flags/shiny/64/Panama.png new file mode 100644 index 0000000..830eaa0 Binary files /dev/null and b/flags/flags/shiny/64/Panama.png differ diff --git a/flags/flags/shiny/64/Papua-New-Guinea.png b/flags/flags/shiny/64/Papua-New-Guinea.png new file mode 100644 index 0000000..c9e18c3 Binary files /dev/null and b/flags/flags/shiny/64/Papua-New-Guinea.png differ diff --git a/flags/flags/shiny/64/Paraguay.png b/flags/flags/shiny/64/Paraguay.png new file mode 100644 index 0000000..097f9e2 Binary files /dev/null and b/flags/flags/shiny/64/Paraguay.png differ diff --git a/flags/flags/shiny/64/Peru.png b/flags/flags/shiny/64/Peru.png new file mode 100644 index 0000000..b8df431 Binary files /dev/null and b/flags/flags/shiny/64/Peru.png differ diff --git a/flags/flags/shiny/64/Philippines.png b/flags/flags/shiny/64/Philippines.png new file mode 100644 index 0000000..d4212b9 Binary files /dev/null and b/flags/flags/shiny/64/Philippines.png differ diff --git a/flags/flags/shiny/64/Pitcairn-Islands.png b/flags/flags/shiny/64/Pitcairn-Islands.png new file mode 100644 index 0000000..fe73283 Binary files /dev/null and b/flags/flags/shiny/64/Pitcairn-Islands.png differ diff --git a/flags/flags/shiny/64/Poland.png b/flags/flags/shiny/64/Poland.png new file mode 100644 index 0000000..99a2c7b Binary files /dev/null and b/flags/flags/shiny/64/Poland.png differ diff --git a/flags/flags/shiny/64/Portugal.png b/flags/flags/shiny/64/Portugal.png new file mode 100644 index 0000000..ff40fe1 Binary files /dev/null and b/flags/flags/shiny/64/Portugal.png differ diff --git a/flags/flags/shiny/64/Puerto-Rico.png b/flags/flags/shiny/64/Puerto-Rico.png new file mode 100644 index 0000000..e2c9342 Binary files /dev/null and b/flags/flags/shiny/64/Puerto-Rico.png differ diff --git a/flags/flags/shiny/64/Qatar.png b/flags/flags/shiny/64/Qatar.png new file mode 100644 index 0000000..2bef4ad Binary files /dev/null and b/flags/flags/shiny/64/Qatar.png differ diff --git a/flags/flags/shiny/64/Red-Cross.png b/flags/flags/shiny/64/Red-Cross.png new file mode 100644 index 0000000..f824705 Binary files /dev/null and b/flags/flags/shiny/64/Red-Cross.png differ diff --git a/flags/flags/shiny/64/Republic-of-the-Congo.png b/flags/flags/shiny/64/Republic-of-the-Congo.png new file mode 100644 index 0000000..6abb441 Binary files /dev/null and b/flags/flags/shiny/64/Republic-of-the-Congo.png differ diff --git a/flags/flags/shiny/64/Romania.png b/flags/flags/shiny/64/Romania.png new file mode 100644 index 0000000..5665f06 Binary files /dev/null and b/flags/flags/shiny/64/Romania.png differ diff --git a/flags/flags/shiny/64/Russia.png b/flags/flags/shiny/64/Russia.png new file mode 100644 index 0000000..69f32bb Binary files /dev/null and b/flags/flags/shiny/64/Russia.png differ diff --git a/flags/flags/shiny/64/Rwanda.png b/flags/flags/shiny/64/Rwanda.png new file mode 100644 index 0000000..e5e181c Binary files /dev/null and b/flags/flags/shiny/64/Rwanda.png differ diff --git a/flags/flags/shiny/64/Saint-Barthelemy.png b/flags/flags/shiny/64/Saint-Barthelemy.png new file mode 100644 index 0000000..dbe3337 Binary files /dev/null and b/flags/flags/shiny/64/Saint-Barthelemy.png differ diff --git a/flags/flags/shiny/64/Saint-Helena.png b/flags/flags/shiny/64/Saint-Helena.png new file mode 100644 index 0000000..4d5b2b5 Binary files /dev/null and b/flags/flags/shiny/64/Saint-Helena.png differ diff --git a/flags/flags/shiny/64/Saint-Kitts-and-Nevis.png b/flags/flags/shiny/64/Saint-Kitts-and-Nevis.png new file mode 100644 index 0000000..7f558d7 Binary files /dev/null and b/flags/flags/shiny/64/Saint-Kitts-and-Nevis.png differ diff --git a/flags/flags/shiny/64/Saint-Lucia.png b/flags/flags/shiny/64/Saint-Lucia.png new file mode 100644 index 0000000..e521ac8 Binary files /dev/null and b/flags/flags/shiny/64/Saint-Lucia.png differ diff --git a/flags/flags/shiny/64/Saint-Vincent-and-the-Grenadines.png b/flags/flags/shiny/64/Saint-Vincent-and-the-Grenadines.png new file mode 100644 index 0000000..73de64f Binary files /dev/null and b/flags/flags/shiny/64/Saint-Vincent-and-the-Grenadines.png differ diff --git a/flags/flags/shiny/64/Samoa.png b/flags/flags/shiny/64/Samoa.png new file mode 100644 index 0000000..3d7900b Binary files /dev/null and b/flags/flags/shiny/64/Samoa.png differ diff --git a/flags/flags/shiny/64/San-Marino.png b/flags/flags/shiny/64/San-Marino.png new file mode 100644 index 0000000..a34392d Binary files /dev/null and b/flags/flags/shiny/64/San-Marino.png differ diff --git a/flags/flags/shiny/64/Sao-Tome-and-Principe.png b/flags/flags/shiny/64/Sao-Tome-and-Principe.png new file mode 100644 index 0000000..307dae7 Binary files /dev/null and b/flags/flags/shiny/64/Sao-Tome-and-Principe.png differ diff --git a/flags/flags/shiny/64/Saudi-Arabia.png b/flags/flags/shiny/64/Saudi-Arabia.png new file mode 100644 index 0000000..8ea7226 Binary files /dev/null and b/flags/flags/shiny/64/Saudi-Arabia.png differ diff --git a/flags/flags/shiny/64/Scotland.png b/flags/flags/shiny/64/Scotland.png new file mode 100644 index 0000000..925ddca Binary files /dev/null and b/flags/flags/shiny/64/Scotland.png differ diff --git a/flags/flags/shiny/64/Senegal.png b/flags/flags/shiny/64/Senegal.png new file mode 100644 index 0000000..616967c Binary files /dev/null and b/flags/flags/shiny/64/Senegal.png differ diff --git a/flags/flags/shiny/64/Serbia.png b/flags/flags/shiny/64/Serbia.png new file mode 100644 index 0000000..0b08c77 Binary files /dev/null and b/flags/flags/shiny/64/Serbia.png differ diff --git a/flags/flags/shiny/64/Seychelles.png b/flags/flags/shiny/64/Seychelles.png new file mode 100644 index 0000000..b07a589 Binary files /dev/null and b/flags/flags/shiny/64/Seychelles.png differ diff --git a/flags/flags/shiny/64/Sierra-Leone.png b/flags/flags/shiny/64/Sierra-Leone.png new file mode 100644 index 0000000..684be94 Binary files /dev/null and b/flags/flags/shiny/64/Sierra-Leone.png differ diff --git a/flags/flags/shiny/64/Singapore.png b/flags/flags/shiny/64/Singapore.png new file mode 100644 index 0000000..37e9609 Binary files /dev/null and b/flags/flags/shiny/64/Singapore.png differ diff --git a/flags/flags/shiny/64/Slovakia.png b/flags/flags/shiny/64/Slovakia.png new file mode 100644 index 0000000..6264388 Binary files /dev/null and b/flags/flags/shiny/64/Slovakia.png differ diff --git a/flags/flags/shiny/64/Slovenia.png b/flags/flags/shiny/64/Slovenia.png new file mode 100644 index 0000000..9d1330c Binary files /dev/null and b/flags/flags/shiny/64/Slovenia.png differ diff --git a/flags/flags/shiny/64/Solomon-Islands.png b/flags/flags/shiny/64/Solomon-Islands.png new file mode 100644 index 0000000..97a55d8 Binary files /dev/null and b/flags/flags/shiny/64/Solomon-Islands.png differ diff --git a/flags/flags/shiny/64/Somalia.png b/flags/flags/shiny/64/Somalia.png new file mode 100644 index 0000000..462b1d8 Binary files /dev/null and b/flags/flags/shiny/64/Somalia.png differ diff --git a/flags/flags/shiny/64/Somaliland.png b/flags/flags/shiny/64/Somaliland.png new file mode 100644 index 0000000..299383d Binary files /dev/null and b/flags/flags/shiny/64/Somaliland.png differ diff --git a/flags/flags/shiny/64/South-Africa.png b/flags/flags/shiny/64/South-Africa.png new file mode 100644 index 0000000..6fffc66 Binary files /dev/null and b/flags/flags/shiny/64/South-Africa.png differ diff --git a/flags/flags/shiny/64/South-Georgia-and-the-South-Sandwich-Islands.png b/flags/flags/shiny/64/South-Georgia-and-the-South-Sandwich-Islands.png new file mode 100644 index 0000000..f877766 Binary files /dev/null and b/flags/flags/shiny/64/South-Georgia-and-the-South-Sandwich-Islands.png differ diff --git a/flags/flags/shiny/64/South-Korea.png b/flags/flags/shiny/64/South-Korea.png new file mode 100644 index 0000000..f3c12d8 Binary files /dev/null and b/flags/flags/shiny/64/South-Korea.png differ diff --git a/flags/flags/shiny/64/South-Ossetia.png b/flags/flags/shiny/64/South-Ossetia.png new file mode 100644 index 0000000..eb301e2 Binary files /dev/null and b/flags/flags/shiny/64/South-Ossetia.png differ diff --git a/flags/flags/shiny/64/South-Sudan.png b/flags/flags/shiny/64/South-Sudan.png new file mode 100644 index 0000000..cef26fe Binary files /dev/null and b/flags/flags/shiny/64/South-Sudan.png differ diff --git a/flags/flags/shiny/64/Spain.png b/flags/flags/shiny/64/Spain.png new file mode 100644 index 0000000..bef0a45 Binary files /dev/null and b/flags/flags/shiny/64/Spain.png differ diff --git a/flags/flags/shiny/64/Sri-Lanka.png b/flags/flags/shiny/64/Sri-Lanka.png new file mode 100644 index 0000000..a9fc5aa Binary files /dev/null and b/flags/flags/shiny/64/Sri-Lanka.png differ diff --git a/flags/flags/shiny/64/Sudan.png b/flags/flags/shiny/64/Sudan.png new file mode 100644 index 0000000..2a0a134 Binary files /dev/null and b/flags/flags/shiny/64/Sudan.png differ diff --git a/flags/flags/shiny/64/Suriname.png b/flags/flags/shiny/64/Suriname.png new file mode 100644 index 0000000..68953b8 Binary files /dev/null and b/flags/flags/shiny/64/Suriname.png differ diff --git a/flags/flags/shiny/64/Swaziland.png b/flags/flags/shiny/64/Swaziland.png new file mode 100644 index 0000000..ac61b26 Binary files /dev/null and b/flags/flags/shiny/64/Swaziland.png differ diff --git a/flags/flags/shiny/64/Sweden.png b/flags/flags/shiny/64/Sweden.png new file mode 100644 index 0000000..c943557 Binary files /dev/null and b/flags/flags/shiny/64/Sweden.png differ diff --git a/flags/flags/shiny/64/Switzerland.png b/flags/flags/shiny/64/Switzerland.png new file mode 100644 index 0000000..cb91083 Binary files /dev/null and b/flags/flags/shiny/64/Switzerland.png differ diff --git a/flags/flags/shiny/64/Syria.png b/flags/flags/shiny/64/Syria.png new file mode 100644 index 0000000..2ff9f7b Binary files /dev/null and b/flags/flags/shiny/64/Syria.png differ diff --git a/flags/flags/shiny/64/Taiwan.png b/flags/flags/shiny/64/Taiwan.png new file mode 100644 index 0000000..98bb9fb Binary files /dev/null and b/flags/flags/shiny/64/Taiwan.png differ diff --git a/flags/flags/shiny/64/Tajikistan.png b/flags/flags/shiny/64/Tajikistan.png new file mode 100644 index 0000000..b64cb3c Binary files /dev/null and b/flags/flags/shiny/64/Tajikistan.png differ diff --git a/flags/flags/shiny/64/Tanzania.png b/flags/flags/shiny/64/Tanzania.png new file mode 100644 index 0000000..2766dd5 Binary files /dev/null and b/flags/flags/shiny/64/Tanzania.png differ diff --git a/flags/flags/shiny/64/Thailand.png b/flags/flags/shiny/64/Thailand.png new file mode 100644 index 0000000..cb98c4f Binary files /dev/null and b/flags/flags/shiny/64/Thailand.png differ diff --git a/flags/flags/shiny/64/Togo.png b/flags/flags/shiny/64/Togo.png new file mode 100644 index 0000000..cd1b4b4 Binary files /dev/null and b/flags/flags/shiny/64/Togo.png differ diff --git a/flags/flags/shiny/64/Tokelau.png b/flags/flags/shiny/64/Tokelau.png new file mode 100644 index 0000000..8622cbb Binary files /dev/null and b/flags/flags/shiny/64/Tokelau.png differ diff --git a/flags/flags/shiny/64/Tonga.png b/flags/flags/shiny/64/Tonga.png new file mode 100644 index 0000000..4529f17 Binary files /dev/null and b/flags/flags/shiny/64/Tonga.png differ diff --git a/flags/flags/shiny/64/Trinidad-and-Tobago.png b/flags/flags/shiny/64/Trinidad-and-Tobago.png new file mode 100644 index 0000000..08ca8a0 Binary files /dev/null and b/flags/flags/shiny/64/Trinidad-and-Tobago.png differ diff --git a/flags/flags/shiny/64/Tunisia.png b/flags/flags/shiny/64/Tunisia.png new file mode 100644 index 0000000..a9d4d16 Binary files /dev/null and b/flags/flags/shiny/64/Tunisia.png differ diff --git a/flags/flags/shiny/64/Turkey.png b/flags/flags/shiny/64/Turkey.png new file mode 100644 index 0000000..640e7e8 Binary files /dev/null and b/flags/flags/shiny/64/Turkey.png differ diff --git a/flags/flags/shiny/64/Turkmenistan.png b/flags/flags/shiny/64/Turkmenistan.png new file mode 100644 index 0000000..ff0a6fb Binary files /dev/null and b/flags/flags/shiny/64/Turkmenistan.png differ diff --git a/flags/flags/shiny/64/Turks-and-Caicos-Islands.png b/flags/flags/shiny/64/Turks-and-Caicos-Islands.png new file mode 100644 index 0000000..f668ad2 Binary files /dev/null and b/flags/flags/shiny/64/Turks-and-Caicos-Islands.png differ diff --git a/flags/flags/shiny/64/Tuvalu.png b/flags/flags/shiny/64/Tuvalu.png new file mode 100644 index 0000000..8937d42 Binary files /dev/null and b/flags/flags/shiny/64/Tuvalu.png differ diff --git a/flags/flags/shiny/64/US-Virgin-Islands.png b/flags/flags/shiny/64/US-Virgin-Islands.png new file mode 100644 index 0000000..558b1ad Binary files /dev/null and b/flags/flags/shiny/64/US-Virgin-Islands.png differ diff --git a/flags/flags/shiny/64/Uganda.png b/flags/flags/shiny/64/Uganda.png new file mode 100644 index 0000000..cffccb6 Binary files /dev/null and b/flags/flags/shiny/64/Uganda.png differ diff --git a/flags/flags/shiny/64/Ukraine.png b/flags/flags/shiny/64/Ukraine.png new file mode 100644 index 0000000..143d7db Binary files /dev/null and b/flags/flags/shiny/64/Ukraine.png differ diff --git a/flags/flags/shiny/64/United-Arab-Emirates.png b/flags/flags/shiny/64/United-Arab-Emirates.png new file mode 100644 index 0000000..1a7bc79 Binary files /dev/null and b/flags/flags/shiny/64/United-Arab-Emirates.png differ diff --git a/flags/flags/shiny/64/United-Kingdom.png b/flags/flags/shiny/64/United-Kingdom.png new file mode 100644 index 0000000..c029aa7 Binary files /dev/null and b/flags/flags/shiny/64/United-Kingdom.png differ diff --git a/flags/flags/shiny/64/United-Nations.png b/flags/flags/shiny/64/United-Nations.png new file mode 100644 index 0000000..4fe1bfe Binary files /dev/null and b/flags/flags/shiny/64/United-Nations.png differ diff --git a/flags/flags/shiny/64/United-States.png b/flags/flags/shiny/64/United-States.png new file mode 100644 index 0000000..c75043c Binary files /dev/null and b/flags/flags/shiny/64/United-States.png differ diff --git a/flags/flags/shiny/64/Uruguay.png b/flags/flags/shiny/64/Uruguay.png new file mode 100644 index 0000000..01b67b0 Binary files /dev/null and b/flags/flags/shiny/64/Uruguay.png differ diff --git a/flags/flags/shiny/64/Uzbekistan.png b/flags/flags/shiny/64/Uzbekistan.png new file mode 100644 index 0000000..3d7cfee Binary files /dev/null and b/flags/flags/shiny/64/Uzbekistan.png differ diff --git a/flags/flags/shiny/64/Vanuatu.png b/flags/flags/shiny/64/Vanuatu.png new file mode 100644 index 0000000..49889e2 Binary files /dev/null and b/flags/flags/shiny/64/Vanuatu.png differ diff --git a/flags/flags/shiny/64/Vatican-City.png b/flags/flags/shiny/64/Vatican-City.png new file mode 100644 index 0000000..f8f7bf7 Binary files /dev/null and b/flags/flags/shiny/64/Vatican-City.png differ diff --git a/flags/flags/shiny/64/Venezuela.png b/flags/flags/shiny/64/Venezuela.png new file mode 100644 index 0000000..da42902 Binary files /dev/null and b/flags/flags/shiny/64/Venezuela.png differ diff --git a/flags/flags/shiny/64/Vietnam.png b/flags/flags/shiny/64/Vietnam.png new file mode 100644 index 0000000..454cf42 Binary files /dev/null and b/flags/flags/shiny/64/Vietnam.png differ diff --git a/flags/flags/shiny/64/Wales.png b/flags/flags/shiny/64/Wales.png new file mode 100644 index 0000000..ba86125 Binary files /dev/null and b/flags/flags/shiny/64/Wales.png differ diff --git a/flags/flags/shiny/64/Wallis-And-Futuna.png b/flags/flags/shiny/64/Wallis-And-Futuna.png new file mode 100644 index 0000000..e5806b9 Binary files /dev/null and b/flags/flags/shiny/64/Wallis-And-Futuna.png differ diff --git a/flags/flags/shiny/64/Western-Sahara.png b/flags/flags/shiny/64/Western-Sahara.png new file mode 100644 index 0000000..6461b34 Binary files /dev/null and b/flags/flags/shiny/64/Western-Sahara.png differ diff --git a/flags/flags/shiny/64/Yemen.png b/flags/flags/shiny/64/Yemen.png new file mode 100644 index 0000000..73dd33d Binary files /dev/null and b/flags/flags/shiny/64/Yemen.png differ diff --git a/flags/flags/shiny/64/Zambia.png b/flags/flags/shiny/64/Zambia.png new file mode 100644 index 0000000..6208724 Binary files /dev/null and b/flags/flags/shiny/64/Zambia.png differ diff --git a/flags/flags/shiny/64/Zimbabwe.png b/flags/flags/shiny/64/Zimbabwe.png new file mode 100644 index 0000000..baa8851 Binary files /dev/null and b/flags/flags/shiny/64/Zimbabwe.png differ diff --git a/flags/flags/shiny/icns/Abkhazia.icns b/flags/flags/shiny/icns/Abkhazia.icns new file mode 100644 index 0000000..c190acb Binary files /dev/null and b/flags/flags/shiny/icns/Abkhazia.icns differ diff --git a/flags/flags/shiny/icns/Afghanistan.icns b/flags/flags/shiny/icns/Afghanistan.icns new file mode 100644 index 0000000..5681b16 Binary files /dev/null and b/flags/flags/shiny/icns/Afghanistan.icns differ diff --git a/flags/flags/shiny/icns/Aland.icns b/flags/flags/shiny/icns/Aland.icns new file mode 100644 index 0000000..e9521e0 Binary files /dev/null and b/flags/flags/shiny/icns/Aland.icns differ diff --git a/flags/flags/shiny/icns/Albania.icns b/flags/flags/shiny/icns/Albania.icns new file mode 100644 index 0000000..f46e018 Binary files /dev/null and b/flags/flags/shiny/icns/Albania.icns differ diff --git a/flags/flags/shiny/icns/Algeria.icns b/flags/flags/shiny/icns/Algeria.icns new file mode 100644 index 0000000..c3ac1d9 Binary files /dev/null and b/flags/flags/shiny/icns/Algeria.icns differ diff --git a/flags/flags/shiny/icns/American-Samoa.icns b/flags/flags/shiny/icns/American-Samoa.icns new file mode 100644 index 0000000..808a71e Binary files /dev/null and b/flags/flags/shiny/icns/American-Samoa.icns differ diff --git a/flags/flags/shiny/icns/Andorra.icns b/flags/flags/shiny/icns/Andorra.icns new file mode 100644 index 0000000..e872060 Binary files /dev/null and b/flags/flags/shiny/icns/Andorra.icns differ diff --git a/flags/flags/shiny/icns/Angola.icns b/flags/flags/shiny/icns/Angola.icns new file mode 100644 index 0000000..335768d Binary files /dev/null and b/flags/flags/shiny/icns/Angola.icns differ diff --git a/flags/flags/shiny/icns/Anguilla.icns b/flags/flags/shiny/icns/Anguilla.icns new file mode 100644 index 0000000..b749858 Binary files /dev/null and b/flags/flags/shiny/icns/Anguilla.icns differ diff --git a/flags/flags/shiny/icns/Antarctica.icns b/flags/flags/shiny/icns/Antarctica.icns new file mode 100644 index 0000000..55e6f52 Binary files /dev/null and b/flags/flags/shiny/icns/Antarctica.icns differ diff --git a/flags/flags/shiny/icns/Antigua-and-Barbuda.icns b/flags/flags/shiny/icns/Antigua-and-Barbuda.icns new file mode 100644 index 0000000..8ea6a42 Binary files /dev/null and b/flags/flags/shiny/icns/Antigua-and-Barbuda.icns differ diff --git a/flags/flags/shiny/icns/Argentina.icns b/flags/flags/shiny/icns/Argentina.icns new file mode 100644 index 0000000..1ecf6bc Binary files /dev/null and b/flags/flags/shiny/icns/Argentina.icns differ diff --git a/flags/flags/shiny/icns/Armenia.icns b/flags/flags/shiny/icns/Armenia.icns new file mode 100644 index 0000000..960632f Binary files /dev/null and b/flags/flags/shiny/icns/Armenia.icns differ diff --git a/flags/flags/shiny/icns/Aruba.icns b/flags/flags/shiny/icns/Aruba.icns new file mode 100644 index 0000000..cf34643 Binary files /dev/null and b/flags/flags/shiny/icns/Aruba.icns differ diff --git a/flags/flags/shiny/icns/Australia.icns b/flags/flags/shiny/icns/Australia.icns new file mode 100644 index 0000000..2ebd4d0 Binary files /dev/null and b/flags/flags/shiny/icns/Australia.icns differ diff --git a/flags/flags/shiny/icns/Austria.icns b/flags/flags/shiny/icns/Austria.icns new file mode 100644 index 0000000..4873c90 Binary files /dev/null and b/flags/flags/shiny/icns/Austria.icns differ diff --git a/flags/flags/shiny/icns/Azerbaijan.icns b/flags/flags/shiny/icns/Azerbaijan.icns new file mode 100644 index 0000000..96468e0 Binary files /dev/null and b/flags/flags/shiny/icns/Azerbaijan.icns differ diff --git a/flags/flags/shiny/icns/Bahamas.icns b/flags/flags/shiny/icns/Bahamas.icns new file mode 100644 index 0000000..d499ed5 Binary files /dev/null and b/flags/flags/shiny/icns/Bahamas.icns differ diff --git a/flags/flags/shiny/icns/Bahrain.icns b/flags/flags/shiny/icns/Bahrain.icns new file mode 100644 index 0000000..6340873 Binary files /dev/null and b/flags/flags/shiny/icns/Bahrain.icns differ diff --git a/flags/flags/shiny/icns/Bangladesh.icns b/flags/flags/shiny/icns/Bangladesh.icns new file mode 100644 index 0000000..ebb6fe6 Binary files /dev/null and b/flags/flags/shiny/icns/Bangladesh.icns differ diff --git a/flags/flags/shiny/icns/Barbados.icns b/flags/flags/shiny/icns/Barbados.icns new file mode 100644 index 0000000..f137a75 Binary files /dev/null and b/flags/flags/shiny/icns/Barbados.icns differ diff --git a/flags/flags/shiny/icns/Belarus.icns b/flags/flags/shiny/icns/Belarus.icns new file mode 100644 index 0000000..dc650ff Binary files /dev/null and b/flags/flags/shiny/icns/Belarus.icns differ diff --git a/flags/flags/shiny/icns/Belgium.icns b/flags/flags/shiny/icns/Belgium.icns new file mode 100644 index 0000000..4ae81c4 Binary files /dev/null and b/flags/flags/shiny/icns/Belgium.icns differ diff --git a/flags/flags/shiny/icns/Belize.icns b/flags/flags/shiny/icns/Belize.icns new file mode 100644 index 0000000..403ab0c Binary files /dev/null and b/flags/flags/shiny/icns/Belize.icns differ diff --git a/flags/flags/shiny/icns/Benin.icns b/flags/flags/shiny/icns/Benin.icns new file mode 100644 index 0000000..e260f0b Binary files /dev/null and b/flags/flags/shiny/icns/Benin.icns differ diff --git a/flags/flags/shiny/icns/Bermuda.icns b/flags/flags/shiny/icns/Bermuda.icns new file mode 100644 index 0000000..c21c322 Binary files /dev/null and b/flags/flags/shiny/icns/Bermuda.icns differ diff --git a/flags/flags/shiny/icns/Bhutan.icns b/flags/flags/shiny/icns/Bhutan.icns new file mode 100644 index 0000000..b19d5ee Binary files /dev/null and b/flags/flags/shiny/icns/Bhutan.icns differ diff --git a/flags/flags/shiny/icns/Bolivia.icns b/flags/flags/shiny/icns/Bolivia.icns new file mode 100644 index 0000000..9877af0 Binary files /dev/null and b/flags/flags/shiny/icns/Bolivia.icns differ diff --git a/flags/flags/shiny/icns/Bosnia-and-Herzegovina.icns b/flags/flags/shiny/icns/Bosnia-and-Herzegovina.icns new file mode 100644 index 0000000..5b91cb6 Binary files /dev/null and b/flags/flags/shiny/icns/Bosnia-and-Herzegovina.icns differ diff --git a/flags/flags/shiny/icns/Botswana.icns b/flags/flags/shiny/icns/Botswana.icns new file mode 100644 index 0000000..c22ce7a Binary files /dev/null and b/flags/flags/shiny/icns/Botswana.icns differ diff --git a/flags/flags/shiny/icns/Brazil.icns b/flags/flags/shiny/icns/Brazil.icns new file mode 100644 index 0000000..3c97992 Binary files /dev/null and b/flags/flags/shiny/icns/Brazil.icns differ diff --git a/flags/flags/shiny/icns/British-Antarctic-Territory.icns b/flags/flags/shiny/icns/British-Antarctic-Territory.icns new file mode 100644 index 0000000..30e9b2f Binary files /dev/null and b/flags/flags/shiny/icns/British-Antarctic-Territory.icns differ diff --git a/flags/flags/shiny/icns/British-Virgin-Islands.icns b/flags/flags/shiny/icns/British-Virgin-Islands.icns new file mode 100644 index 0000000..096e9d0 Binary files /dev/null and b/flags/flags/shiny/icns/British-Virgin-Islands.icns differ diff --git a/flags/flags/shiny/icns/Brunei.icns b/flags/flags/shiny/icns/Brunei.icns new file mode 100644 index 0000000..bd3cdc0 Binary files /dev/null and b/flags/flags/shiny/icns/Brunei.icns differ diff --git a/flags/flags/shiny/icns/Bulgaria.icns b/flags/flags/shiny/icns/Bulgaria.icns new file mode 100644 index 0000000..0647bd0 Binary files /dev/null and b/flags/flags/shiny/icns/Bulgaria.icns differ diff --git a/flags/flags/shiny/icns/Burkina-Faso.icns b/flags/flags/shiny/icns/Burkina-Faso.icns new file mode 100644 index 0000000..45b9ba3 Binary files /dev/null and b/flags/flags/shiny/icns/Burkina-Faso.icns differ diff --git a/flags/flags/shiny/icns/Burundi.icns b/flags/flags/shiny/icns/Burundi.icns new file mode 100644 index 0000000..8e1c902 Binary files /dev/null and b/flags/flags/shiny/icns/Burundi.icns differ diff --git a/flags/flags/shiny/icns/Cambodia.icns b/flags/flags/shiny/icns/Cambodia.icns new file mode 100644 index 0000000..f57e558 Binary files /dev/null and b/flags/flags/shiny/icns/Cambodia.icns differ diff --git a/flags/flags/shiny/icns/Cameroon.icns b/flags/flags/shiny/icns/Cameroon.icns new file mode 100644 index 0000000..4af902a Binary files /dev/null and b/flags/flags/shiny/icns/Cameroon.icns differ diff --git a/flags/flags/shiny/icns/Canada.icns b/flags/flags/shiny/icns/Canada.icns new file mode 100644 index 0000000..73bcf29 Binary files /dev/null and b/flags/flags/shiny/icns/Canada.icns differ diff --git a/flags/flags/shiny/icns/Cape-Verde.icns b/flags/flags/shiny/icns/Cape-Verde.icns new file mode 100644 index 0000000..10dc17a Binary files /dev/null and b/flags/flags/shiny/icns/Cape-Verde.icns differ diff --git a/flags/flags/shiny/icns/Cayman-Islands.icns b/flags/flags/shiny/icns/Cayman-Islands.icns new file mode 100644 index 0000000..92c60e9 Binary files /dev/null and b/flags/flags/shiny/icns/Cayman-Islands.icns differ diff --git a/flags/flags/shiny/icns/Central-African-Republic.icns b/flags/flags/shiny/icns/Central-African-Republic.icns new file mode 100644 index 0000000..6c75b22 Binary files /dev/null and b/flags/flags/shiny/icns/Central-African-Republic.icns differ diff --git a/flags/flags/shiny/icns/Chad.icns b/flags/flags/shiny/icns/Chad.icns new file mode 100644 index 0000000..ba60528 Binary files /dev/null and b/flags/flags/shiny/icns/Chad.icns differ diff --git a/flags/flags/shiny/icns/Chile.icns b/flags/flags/shiny/icns/Chile.icns new file mode 100644 index 0000000..9d12f7e Binary files /dev/null and b/flags/flags/shiny/icns/Chile.icns differ diff --git a/flags/flags/shiny/icns/China.icns b/flags/flags/shiny/icns/China.icns new file mode 100644 index 0000000..02c661a Binary files /dev/null and b/flags/flags/shiny/icns/China.icns differ diff --git a/flags/flags/shiny/icns/Christmas-Island.icns b/flags/flags/shiny/icns/Christmas-Island.icns new file mode 100644 index 0000000..5dac757 Binary files /dev/null and b/flags/flags/shiny/icns/Christmas-Island.icns differ diff --git a/flags/flags/shiny/icns/Cocos-Keeling-Islands.icns b/flags/flags/shiny/icns/Cocos-Keeling-Islands.icns new file mode 100644 index 0000000..46e21a6 Binary files /dev/null and b/flags/flags/shiny/icns/Cocos-Keeling-Islands.icns differ diff --git a/flags/flags/shiny/icns/Colombia.icns b/flags/flags/shiny/icns/Colombia.icns new file mode 100644 index 0000000..e77ec9d Binary files /dev/null and b/flags/flags/shiny/icns/Colombia.icns differ diff --git a/flags/flags/shiny/icns/Commonwealth.icns b/flags/flags/shiny/icns/Commonwealth.icns new file mode 100644 index 0000000..2228d8d Binary files /dev/null and b/flags/flags/shiny/icns/Commonwealth.icns differ diff --git a/flags/flags/shiny/icns/Comoros.icns b/flags/flags/shiny/icns/Comoros.icns new file mode 100644 index 0000000..ef79d25 Binary files /dev/null and b/flags/flags/shiny/icns/Comoros.icns differ diff --git a/flags/flags/shiny/icns/Cook-Islands.icns b/flags/flags/shiny/icns/Cook-Islands.icns new file mode 100644 index 0000000..4a3bb6c Binary files /dev/null and b/flags/flags/shiny/icns/Cook-Islands.icns differ diff --git a/flags/flags/shiny/icns/Costa-Rica.icns b/flags/flags/shiny/icns/Costa-Rica.icns new file mode 100644 index 0000000..2839d4e Binary files /dev/null and b/flags/flags/shiny/icns/Costa-Rica.icns differ diff --git a/flags/flags/shiny/icns/Cote-dIvoire.icns b/flags/flags/shiny/icns/Cote-dIvoire.icns new file mode 100644 index 0000000..b4c5c32 Binary files /dev/null and b/flags/flags/shiny/icns/Cote-dIvoire.icns differ diff --git a/flags/flags/shiny/icns/Croatia.icns b/flags/flags/shiny/icns/Croatia.icns new file mode 100644 index 0000000..c6dccc9 Binary files /dev/null and b/flags/flags/shiny/icns/Croatia.icns differ diff --git a/flags/flags/shiny/icns/Cuba.icns b/flags/flags/shiny/icns/Cuba.icns new file mode 100644 index 0000000..bdb4368 Binary files /dev/null and b/flags/flags/shiny/icns/Cuba.icns differ diff --git a/flags/flags/shiny/icns/Cyprus.icns b/flags/flags/shiny/icns/Cyprus.icns new file mode 100644 index 0000000..f0e400e Binary files /dev/null and b/flags/flags/shiny/icns/Cyprus.icns differ diff --git a/flags/flags/shiny/icns/Czech-Republic.icns b/flags/flags/shiny/icns/Czech-Republic.icns new file mode 100644 index 0000000..92808d8 Binary files /dev/null and b/flags/flags/shiny/icns/Czech-Republic.icns differ diff --git a/flags/flags/shiny/icns/Democratic-Republic-of-the-Congo.icns b/flags/flags/shiny/icns/Democratic-Republic-of-the-Congo.icns new file mode 100644 index 0000000..84e1863 Binary files /dev/null and b/flags/flags/shiny/icns/Democratic-Republic-of-the-Congo.icns differ diff --git a/flags/flags/shiny/icns/Denmark.icns b/flags/flags/shiny/icns/Denmark.icns new file mode 100644 index 0000000..792266c Binary files /dev/null and b/flags/flags/shiny/icns/Denmark.icns differ diff --git a/flags/flags/shiny/icns/Djibouti.icns b/flags/flags/shiny/icns/Djibouti.icns new file mode 100644 index 0000000..6d139c0 Binary files /dev/null and b/flags/flags/shiny/icns/Djibouti.icns differ diff --git a/flags/flags/shiny/icns/Dominica.icns b/flags/flags/shiny/icns/Dominica.icns new file mode 100644 index 0000000..e813ca1 Binary files /dev/null and b/flags/flags/shiny/icns/Dominica.icns differ diff --git a/flags/flags/shiny/icns/Dominican-Republic.icns b/flags/flags/shiny/icns/Dominican-Republic.icns new file mode 100644 index 0000000..ea7a1e5 Binary files /dev/null and b/flags/flags/shiny/icns/Dominican-Republic.icns differ diff --git a/flags/flags/shiny/icns/East-Timor.icns b/flags/flags/shiny/icns/East-Timor.icns new file mode 100644 index 0000000..abc1a4a Binary files /dev/null and b/flags/flags/shiny/icns/East-Timor.icns differ diff --git a/flags/flags/shiny/icns/Ecuador.icns b/flags/flags/shiny/icns/Ecuador.icns new file mode 100644 index 0000000..2ad82b2 Binary files /dev/null and b/flags/flags/shiny/icns/Ecuador.icns differ diff --git a/flags/flags/shiny/icns/Egypt.icns b/flags/flags/shiny/icns/Egypt.icns new file mode 100644 index 0000000..389f4d9 Binary files /dev/null and b/flags/flags/shiny/icns/Egypt.icns differ diff --git a/flags/flags/shiny/icns/El-Salvador.icns b/flags/flags/shiny/icns/El-Salvador.icns new file mode 100644 index 0000000..feba3c8 Binary files /dev/null and b/flags/flags/shiny/icns/El-Salvador.icns differ diff --git a/flags/flags/shiny/icns/England.icns b/flags/flags/shiny/icns/England.icns new file mode 100644 index 0000000..209688b Binary files /dev/null and b/flags/flags/shiny/icns/England.icns differ diff --git a/flags/flags/shiny/icns/Equatorial-Guinea.icns b/flags/flags/shiny/icns/Equatorial-Guinea.icns new file mode 100644 index 0000000..ab903a3 Binary files /dev/null and b/flags/flags/shiny/icns/Equatorial-Guinea.icns differ diff --git a/flags/flags/shiny/icns/Eritrea.icns b/flags/flags/shiny/icns/Eritrea.icns new file mode 100644 index 0000000..1b4a968 Binary files /dev/null and b/flags/flags/shiny/icns/Eritrea.icns differ diff --git a/flags/flags/shiny/icns/Estonia.icns b/flags/flags/shiny/icns/Estonia.icns new file mode 100644 index 0000000..2d8458f Binary files /dev/null and b/flags/flags/shiny/icns/Estonia.icns differ diff --git a/flags/flags/shiny/icns/Ethiopia.icns b/flags/flags/shiny/icns/Ethiopia.icns new file mode 100644 index 0000000..213b740 Binary files /dev/null and b/flags/flags/shiny/icns/Ethiopia.icns differ diff --git a/flags/flags/shiny/icns/European-Union.icns b/flags/flags/shiny/icns/European-Union.icns new file mode 100644 index 0000000..ba193fa Binary files /dev/null and b/flags/flags/shiny/icns/European-Union.icns differ diff --git a/flags/flags/shiny/icns/Falkland-Islands.icns b/flags/flags/shiny/icns/Falkland-Islands.icns new file mode 100644 index 0000000..ff1ea16 Binary files /dev/null and b/flags/flags/shiny/icns/Falkland-Islands.icns differ diff --git a/flags/flags/shiny/icns/Faroes.icns b/flags/flags/shiny/icns/Faroes.icns new file mode 100644 index 0000000..942c727 Binary files /dev/null and b/flags/flags/shiny/icns/Faroes.icns differ diff --git a/flags/flags/shiny/icns/Fiji.icns b/flags/flags/shiny/icns/Fiji.icns new file mode 100644 index 0000000..ba3a78e Binary files /dev/null and b/flags/flags/shiny/icns/Fiji.icns differ diff --git a/flags/flags/shiny/icns/Finland.icns b/flags/flags/shiny/icns/Finland.icns new file mode 100644 index 0000000..31e6658 Binary files /dev/null and b/flags/flags/shiny/icns/Finland.icns differ diff --git a/flags/flags/shiny/icns/France.icns b/flags/flags/shiny/icns/France.icns new file mode 100644 index 0000000..ce10625 Binary files /dev/null and b/flags/flags/shiny/icns/France.icns differ diff --git a/flags/flags/shiny/icns/French-Polynesia.icns b/flags/flags/shiny/icns/French-Polynesia.icns new file mode 100644 index 0000000..487e0c5 Binary files /dev/null and b/flags/flags/shiny/icns/French-Polynesia.icns differ diff --git a/flags/flags/shiny/icns/French-Southern-Territories.icns b/flags/flags/shiny/icns/French-Southern-Territories.icns new file mode 100644 index 0000000..739a1ad Binary files /dev/null and b/flags/flags/shiny/icns/French-Southern-Territories.icns differ diff --git a/flags/flags/shiny/icns/Gabon.icns b/flags/flags/shiny/icns/Gabon.icns new file mode 100644 index 0000000..a16d073 Binary files /dev/null and b/flags/flags/shiny/icns/Gabon.icns differ diff --git a/flags/flags/shiny/icns/Gambia.icns b/flags/flags/shiny/icns/Gambia.icns new file mode 100644 index 0000000..cc47114 Binary files /dev/null and b/flags/flags/shiny/icns/Gambia.icns differ diff --git a/flags/flags/shiny/icns/Georgia.icns b/flags/flags/shiny/icns/Georgia.icns new file mode 100644 index 0000000..a90715d Binary files /dev/null and b/flags/flags/shiny/icns/Georgia.icns differ diff --git a/flags/flags/shiny/icns/Germany.icns b/flags/flags/shiny/icns/Germany.icns new file mode 100644 index 0000000..6cecc75 Binary files /dev/null and b/flags/flags/shiny/icns/Germany.icns differ diff --git a/flags/flags/shiny/icns/Ghana.icns b/flags/flags/shiny/icns/Ghana.icns new file mode 100644 index 0000000..f09acb1 Binary files /dev/null and b/flags/flags/shiny/icns/Ghana.icns differ diff --git a/flags/flags/shiny/icns/Gibraltar.icns b/flags/flags/shiny/icns/Gibraltar.icns new file mode 100644 index 0000000..8356a48 Binary files /dev/null and b/flags/flags/shiny/icns/Gibraltar.icns differ diff --git a/flags/flags/shiny/icns/GoSquared.icns b/flags/flags/shiny/icns/GoSquared.icns new file mode 100644 index 0000000..449e632 Binary files /dev/null and b/flags/flags/shiny/icns/GoSquared.icns differ diff --git a/flags/flags/shiny/icns/Greece.icns b/flags/flags/shiny/icns/Greece.icns new file mode 100644 index 0000000..69c9a53 Binary files /dev/null and b/flags/flags/shiny/icns/Greece.icns differ diff --git a/flags/flags/shiny/icns/Greenland.icns b/flags/flags/shiny/icns/Greenland.icns new file mode 100644 index 0000000..9480c37 Binary files /dev/null and b/flags/flags/shiny/icns/Greenland.icns differ diff --git a/flags/flags/shiny/icns/Grenada.icns b/flags/flags/shiny/icns/Grenada.icns new file mode 100644 index 0000000..b7ce9e9 Binary files /dev/null and b/flags/flags/shiny/icns/Grenada.icns differ diff --git a/flags/flags/shiny/icns/Guam.icns b/flags/flags/shiny/icns/Guam.icns new file mode 100644 index 0000000..30fedb8 Binary files /dev/null and b/flags/flags/shiny/icns/Guam.icns differ diff --git a/flags/flags/shiny/icns/Guatemala.icns b/flags/flags/shiny/icns/Guatemala.icns new file mode 100644 index 0000000..6caba8f Binary files /dev/null and b/flags/flags/shiny/icns/Guatemala.icns differ diff --git a/flags/flags/shiny/icns/Guernsey.icns b/flags/flags/shiny/icns/Guernsey.icns new file mode 100644 index 0000000..4bbb78e Binary files /dev/null and b/flags/flags/shiny/icns/Guernsey.icns differ diff --git a/flags/flags/shiny/icns/Guinea-Bissau.icns b/flags/flags/shiny/icns/Guinea-Bissau.icns new file mode 100644 index 0000000..747ddc5 Binary files /dev/null and b/flags/flags/shiny/icns/Guinea-Bissau.icns differ diff --git a/flags/flags/shiny/icns/Guinea.icns b/flags/flags/shiny/icns/Guinea.icns new file mode 100644 index 0000000..6c34616 Binary files /dev/null and b/flags/flags/shiny/icns/Guinea.icns differ diff --git a/flags/flags/shiny/icns/Guyana.icns b/flags/flags/shiny/icns/Guyana.icns new file mode 100644 index 0000000..345695a Binary files /dev/null and b/flags/flags/shiny/icns/Guyana.icns differ diff --git a/flags/flags/shiny/icns/Haiti.icns b/flags/flags/shiny/icns/Haiti.icns new file mode 100644 index 0000000..aa67664 Binary files /dev/null and b/flags/flags/shiny/icns/Haiti.icns differ diff --git a/flags/flags/shiny/icns/Honduras.icns b/flags/flags/shiny/icns/Honduras.icns new file mode 100644 index 0000000..08a93e9 Binary files /dev/null and b/flags/flags/shiny/icns/Honduras.icns differ diff --git a/flags/flags/shiny/icns/Hong-Kong.icns b/flags/flags/shiny/icns/Hong-Kong.icns new file mode 100644 index 0000000..2c0d92d Binary files /dev/null and b/flags/flags/shiny/icns/Hong-Kong.icns differ diff --git a/flags/flags/shiny/icns/Hungary.icns b/flags/flags/shiny/icns/Hungary.icns new file mode 100644 index 0000000..59fce06 Binary files /dev/null and b/flags/flags/shiny/icns/Hungary.icns differ diff --git a/flags/flags/shiny/icns/Iceland.icns b/flags/flags/shiny/icns/Iceland.icns new file mode 100644 index 0000000..48f12fc Binary files /dev/null and b/flags/flags/shiny/icns/Iceland.icns differ diff --git a/flags/flags/shiny/icns/India.icns b/flags/flags/shiny/icns/India.icns new file mode 100644 index 0000000..38ccb4f Binary files /dev/null and b/flags/flags/shiny/icns/India.icns differ diff --git a/flags/flags/shiny/icns/Indonesia.icns b/flags/flags/shiny/icns/Indonesia.icns new file mode 100644 index 0000000..800113d Binary files /dev/null and b/flags/flags/shiny/icns/Indonesia.icns differ diff --git a/flags/flags/shiny/icns/Iran.icns b/flags/flags/shiny/icns/Iran.icns new file mode 100644 index 0000000..337df75 Binary files /dev/null and b/flags/flags/shiny/icns/Iran.icns differ diff --git a/flags/flags/shiny/icns/Iraq.icns b/flags/flags/shiny/icns/Iraq.icns new file mode 100644 index 0000000..4ac722c Binary files /dev/null and b/flags/flags/shiny/icns/Iraq.icns differ diff --git a/flags/flags/shiny/icns/Ireland.icns b/flags/flags/shiny/icns/Ireland.icns new file mode 100644 index 0000000..3fc88a3 Binary files /dev/null and b/flags/flags/shiny/icns/Ireland.icns differ diff --git a/flags/flags/shiny/icns/Isle-of-Man.icns b/flags/flags/shiny/icns/Isle-of-Man.icns new file mode 100644 index 0000000..3cc499c Binary files /dev/null and b/flags/flags/shiny/icns/Isle-of-Man.icns differ diff --git a/flags/flags/shiny/icns/Israel.icns b/flags/flags/shiny/icns/Israel.icns new file mode 100644 index 0000000..ddc09b8 Binary files /dev/null and b/flags/flags/shiny/icns/Israel.icns differ diff --git a/flags/flags/shiny/icns/Italy.icns b/flags/flags/shiny/icns/Italy.icns new file mode 100644 index 0000000..8ae1a70 Binary files /dev/null and b/flags/flags/shiny/icns/Italy.icns differ diff --git a/flags/flags/shiny/icns/Jamaica.icns b/flags/flags/shiny/icns/Jamaica.icns new file mode 100644 index 0000000..285ca0f Binary files /dev/null and b/flags/flags/shiny/icns/Jamaica.icns differ diff --git a/flags/flags/shiny/icns/Japan.icns b/flags/flags/shiny/icns/Japan.icns new file mode 100644 index 0000000..be8ba9c Binary files /dev/null and b/flags/flags/shiny/icns/Japan.icns differ diff --git a/flags/flags/shiny/icns/Jersey.icns b/flags/flags/shiny/icns/Jersey.icns new file mode 100644 index 0000000..a77d713 Binary files /dev/null and b/flags/flags/shiny/icns/Jersey.icns differ diff --git a/flags/flags/shiny/icns/Jordan.icns b/flags/flags/shiny/icns/Jordan.icns new file mode 100644 index 0000000..3671da4 Binary files /dev/null and b/flags/flags/shiny/icns/Jordan.icns differ diff --git a/flags/flags/shiny/icns/Kazakhstan.icns b/flags/flags/shiny/icns/Kazakhstan.icns new file mode 100644 index 0000000..1166a89 Binary files /dev/null and b/flags/flags/shiny/icns/Kazakhstan.icns differ diff --git a/flags/flags/shiny/icns/Kenya.icns b/flags/flags/shiny/icns/Kenya.icns new file mode 100644 index 0000000..5b4a9ec Binary files /dev/null and b/flags/flags/shiny/icns/Kenya.icns differ diff --git a/flags/flags/shiny/icns/Kiribati.icns b/flags/flags/shiny/icns/Kiribati.icns new file mode 100644 index 0000000..6a27cda Binary files /dev/null and b/flags/flags/shiny/icns/Kiribati.icns differ diff --git a/flags/flags/shiny/icns/Kosovo.icns b/flags/flags/shiny/icns/Kosovo.icns new file mode 100644 index 0000000..2bccaa9 Binary files /dev/null and b/flags/flags/shiny/icns/Kosovo.icns differ diff --git a/flags/flags/shiny/icns/Kuwait.icns b/flags/flags/shiny/icns/Kuwait.icns new file mode 100644 index 0000000..b836aeb Binary files /dev/null and b/flags/flags/shiny/icns/Kuwait.icns differ diff --git a/flags/flags/shiny/icns/Kyrgyzstan.icns b/flags/flags/shiny/icns/Kyrgyzstan.icns new file mode 100644 index 0000000..0f6819d Binary files /dev/null and b/flags/flags/shiny/icns/Kyrgyzstan.icns differ diff --git a/flags/flags/shiny/icns/Laos.icns b/flags/flags/shiny/icns/Laos.icns new file mode 100644 index 0000000..feef83e Binary files /dev/null and b/flags/flags/shiny/icns/Laos.icns differ diff --git a/flags/flags/shiny/icns/Latvia.icns b/flags/flags/shiny/icns/Latvia.icns new file mode 100644 index 0000000..d83a40d Binary files /dev/null and b/flags/flags/shiny/icns/Latvia.icns differ diff --git a/flags/flags/shiny/icns/Lebanon.icns b/flags/flags/shiny/icns/Lebanon.icns new file mode 100644 index 0000000..52cad55 Binary files /dev/null and b/flags/flags/shiny/icns/Lebanon.icns differ diff --git a/flags/flags/shiny/icns/Lesotho.icns b/flags/flags/shiny/icns/Lesotho.icns new file mode 100644 index 0000000..951a3bf Binary files /dev/null and b/flags/flags/shiny/icns/Lesotho.icns differ diff --git a/flags/flags/shiny/icns/Liberia.icns b/flags/flags/shiny/icns/Liberia.icns new file mode 100644 index 0000000..4e86184 Binary files /dev/null and b/flags/flags/shiny/icns/Liberia.icns differ diff --git a/flags/flags/shiny/icns/Libya.icns b/flags/flags/shiny/icns/Libya.icns new file mode 100644 index 0000000..668e699 Binary files /dev/null and b/flags/flags/shiny/icns/Libya.icns differ diff --git a/flags/flags/shiny/icns/Liechtenstein.icns b/flags/flags/shiny/icns/Liechtenstein.icns new file mode 100644 index 0000000..fa4098d Binary files /dev/null and b/flags/flags/shiny/icns/Liechtenstein.icns differ diff --git a/flags/flags/shiny/icns/Lithuania.icns b/flags/flags/shiny/icns/Lithuania.icns new file mode 100644 index 0000000..54dccf9 Binary files /dev/null and b/flags/flags/shiny/icns/Lithuania.icns differ diff --git a/flags/flags/shiny/icns/Luxembourg.icns b/flags/flags/shiny/icns/Luxembourg.icns new file mode 100644 index 0000000..745aab0 Binary files /dev/null and b/flags/flags/shiny/icns/Luxembourg.icns differ diff --git a/flags/flags/shiny/icns/Macau.icns b/flags/flags/shiny/icns/Macau.icns new file mode 100644 index 0000000..63c85b8 Binary files /dev/null and b/flags/flags/shiny/icns/Macau.icns differ diff --git a/flags/flags/shiny/icns/Macedonia.icns b/flags/flags/shiny/icns/Macedonia.icns new file mode 100644 index 0000000..b9c136e Binary files /dev/null and b/flags/flags/shiny/icns/Macedonia.icns differ diff --git a/flags/flags/shiny/icns/Madagascar.icns b/flags/flags/shiny/icns/Madagascar.icns new file mode 100644 index 0000000..3110015 Binary files /dev/null and b/flags/flags/shiny/icns/Madagascar.icns differ diff --git a/flags/flags/shiny/icns/Malawi.icns b/flags/flags/shiny/icns/Malawi.icns new file mode 100644 index 0000000..7004409 Binary files /dev/null and b/flags/flags/shiny/icns/Malawi.icns differ diff --git a/flags/flags/shiny/icns/Malaysia.icns b/flags/flags/shiny/icns/Malaysia.icns new file mode 100644 index 0000000..6b64945 Binary files /dev/null and b/flags/flags/shiny/icns/Malaysia.icns differ diff --git a/flags/flags/shiny/icns/Maldives.icns b/flags/flags/shiny/icns/Maldives.icns new file mode 100644 index 0000000..03424a6 Binary files /dev/null and b/flags/flags/shiny/icns/Maldives.icns differ diff --git a/flags/flags/shiny/icns/Mali.icns b/flags/flags/shiny/icns/Mali.icns new file mode 100644 index 0000000..cde7db4 Binary files /dev/null and b/flags/flags/shiny/icns/Mali.icns differ diff --git a/flags/flags/shiny/icns/Malta.icns b/flags/flags/shiny/icns/Malta.icns new file mode 100644 index 0000000..7f74d79 Binary files /dev/null and b/flags/flags/shiny/icns/Malta.icns differ diff --git a/flags/flags/shiny/icns/Mars.icns b/flags/flags/shiny/icns/Mars.icns new file mode 100644 index 0000000..a0a8d6d Binary files /dev/null and b/flags/flags/shiny/icns/Mars.icns differ diff --git a/flags/flags/shiny/icns/Marshall-Islands.icns b/flags/flags/shiny/icns/Marshall-Islands.icns new file mode 100644 index 0000000..31904fd Binary files /dev/null and b/flags/flags/shiny/icns/Marshall-Islands.icns differ diff --git a/flags/flags/shiny/icns/Mauritania.icns b/flags/flags/shiny/icns/Mauritania.icns new file mode 100644 index 0000000..f51c616 Binary files /dev/null and b/flags/flags/shiny/icns/Mauritania.icns differ diff --git a/flags/flags/shiny/icns/Mauritius.icns b/flags/flags/shiny/icns/Mauritius.icns new file mode 100644 index 0000000..d4b11ff Binary files /dev/null and b/flags/flags/shiny/icns/Mauritius.icns differ diff --git a/flags/flags/shiny/icns/Mayotte.icns b/flags/flags/shiny/icns/Mayotte.icns new file mode 100644 index 0000000..58ea917 Binary files /dev/null and b/flags/flags/shiny/icns/Mayotte.icns differ diff --git a/flags/flags/shiny/icns/Mexico.icns b/flags/flags/shiny/icns/Mexico.icns new file mode 100644 index 0000000..3cfb6fe Binary files /dev/null and b/flags/flags/shiny/icns/Mexico.icns differ diff --git a/flags/flags/shiny/icns/Micronesia.icns b/flags/flags/shiny/icns/Micronesia.icns new file mode 100644 index 0000000..71f0ac6 Binary files /dev/null and b/flags/flags/shiny/icns/Micronesia.icns differ diff --git a/flags/flags/shiny/icns/Moldova.icns b/flags/flags/shiny/icns/Moldova.icns new file mode 100644 index 0000000..5faf0bd Binary files /dev/null and b/flags/flags/shiny/icns/Moldova.icns differ diff --git a/flags/flags/shiny/icns/Monaco.icns b/flags/flags/shiny/icns/Monaco.icns new file mode 100644 index 0000000..800113d Binary files /dev/null and b/flags/flags/shiny/icns/Monaco.icns differ diff --git a/flags/flags/shiny/icns/Mongolia.icns b/flags/flags/shiny/icns/Mongolia.icns new file mode 100644 index 0000000..96f9d54 Binary files /dev/null and b/flags/flags/shiny/icns/Mongolia.icns differ diff --git a/flags/flags/shiny/icns/Montenegro.icns b/flags/flags/shiny/icns/Montenegro.icns new file mode 100644 index 0000000..ac9df89 Binary files /dev/null and b/flags/flags/shiny/icns/Montenegro.icns differ diff --git a/flags/flags/shiny/icns/Montserrat.icns b/flags/flags/shiny/icns/Montserrat.icns new file mode 100644 index 0000000..64ac50f Binary files /dev/null and b/flags/flags/shiny/icns/Montserrat.icns differ diff --git a/flags/flags/shiny/icns/Morocco.icns b/flags/flags/shiny/icns/Morocco.icns new file mode 100644 index 0000000..e09ce32 Binary files /dev/null and b/flags/flags/shiny/icns/Morocco.icns differ diff --git a/flags/flags/shiny/icns/Mozambique.icns b/flags/flags/shiny/icns/Mozambique.icns new file mode 100644 index 0000000..3232e43 Binary files /dev/null and b/flags/flags/shiny/icns/Mozambique.icns differ diff --git a/flags/flags/shiny/icns/Myanmar.icns b/flags/flags/shiny/icns/Myanmar.icns new file mode 100644 index 0000000..55927de Binary files /dev/null and b/flags/flags/shiny/icns/Myanmar.icns differ diff --git a/flags/flags/shiny/icns/NATO.icns b/flags/flags/shiny/icns/NATO.icns new file mode 100644 index 0000000..43f966f Binary files /dev/null and b/flags/flags/shiny/icns/NATO.icns differ diff --git a/flags/flags/shiny/icns/Nagorno-Karabakh.icns b/flags/flags/shiny/icns/Nagorno-Karabakh.icns new file mode 100644 index 0000000..4ce8f4e Binary files /dev/null and b/flags/flags/shiny/icns/Nagorno-Karabakh.icns differ diff --git a/flags/flags/shiny/icns/Namibia.icns b/flags/flags/shiny/icns/Namibia.icns new file mode 100644 index 0000000..afa823d Binary files /dev/null and b/flags/flags/shiny/icns/Namibia.icns differ diff --git a/flags/flags/shiny/icns/Nauru.icns b/flags/flags/shiny/icns/Nauru.icns new file mode 100644 index 0000000..16a65ba Binary files /dev/null and b/flags/flags/shiny/icns/Nauru.icns differ diff --git a/flags/flags/shiny/icns/Nepal.icns b/flags/flags/shiny/icns/Nepal.icns new file mode 100644 index 0000000..318563d Binary files /dev/null and b/flags/flags/shiny/icns/Nepal.icns differ diff --git a/flags/flags/shiny/icns/Netherlands-Antilles.icns b/flags/flags/shiny/icns/Netherlands-Antilles.icns new file mode 100644 index 0000000..6965e12 Binary files /dev/null and b/flags/flags/shiny/icns/Netherlands-Antilles.icns differ diff --git a/flags/flags/shiny/icns/Netherlands.icns b/flags/flags/shiny/icns/Netherlands.icns new file mode 100644 index 0000000..f8eac3e Binary files /dev/null and b/flags/flags/shiny/icns/Netherlands.icns differ diff --git a/flags/flags/shiny/icns/New-Caledonia.icns b/flags/flags/shiny/icns/New-Caledonia.icns new file mode 100644 index 0000000..4889234 Binary files /dev/null and b/flags/flags/shiny/icns/New-Caledonia.icns differ diff --git a/flags/flags/shiny/icns/New-Zealand.icns b/flags/flags/shiny/icns/New-Zealand.icns new file mode 100644 index 0000000..c53490a Binary files /dev/null and b/flags/flags/shiny/icns/New-Zealand.icns differ diff --git a/flags/flags/shiny/icns/Nicaragua.icns b/flags/flags/shiny/icns/Nicaragua.icns new file mode 100644 index 0000000..9d3b5e9 Binary files /dev/null and b/flags/flags/shiny/icns/Nicaragua.icns differ diff --git a/flags/flags/shiny/icns/Niger.icns b/flags/flags/shiny/icns/Niger.icns new file mode 100644 index 0000000..16822f3 Binary files /dev/null and b/flags/flags/shiny/icns/Niger.icns differ diff --git a/flags/flags/shiny/icns/Nigeria.icns b/flags/flags/shiny/icns/Nigeria.icns new file mode 100644 index 0000000..281e502 Binary files /dev/null and b/flags/flags/shiny/icns/Nigeria.icns differ diff --git a/flags/flags/shiny/icns/Niue.icns b/flags/flags/shiny/icns/Niue.icns new file mode 100644 index 0000000..b468e09 Binary files /dev/null and b/flags/flags/shiny/icns/Niue.icns differ diff --git a/flags/flags/shiny/icns/Norfolk-Island.icns b/flags/flags/shiny/icns/Norfolk-Island.icns new file mode 100644 index 0000000..d67493b Binary files /dev/null and b/flags/flags/shiny/icns/Norfolk-Island.icns differ diff --git a/flags/flags/shiny/icns/North-Korea.icns b/flags/flags/shiny/icns/North-Korea.icns new file mode 100644 index 0000000..b058f10 Binary files /dev/null and b/flags/flags/shiny/icns/North-Korea.icns differ diff --git a/flags/flags/shiny/icns/Northern-Cyprus.icns b/flags/flags/shiny/icns/Northern-Cyprus.icns new file mode 100644 index 0000000..3900fc9 Binary files /dev/null and b/flags/flags/shiny/icns/Northern-Cyprus.icns differ diff --git a/flags/flags/shiny/icns/Northern-Mariana-Islands.icns b/flags/flags/shiny/icns/Northern-Mariana-Islands.icns new file mode 100644 index 0000000..6db325b Binary files /dev/null and b/flags/flags/shiny/icns/Northern-Mariana-Islands.icns differ diff --git a/flags/flags/shiny/icns/Norway.icns b/flags/flags/shiny/icns/Norway.icns new file mode 100644 index 0000000..21c5740 Binary files /dev/null and b/flags/flags/shiny/icns/Norway.icns differ diff --git a/flags/flags/shiny/icns/Olympics.icns b/flags/flags/shiny/icns/Olympics.icns new file mode 100644 index 0000000..8dd2a43 Binary files /dev/null and b/flags/flags/shiny/icns/Olympics.icns differ diff --git a/flags/flags/shiny/icns/Oman.icns b/flags/flags/shiny/icns/Oman.icns new file mode 100644 index 0000000..abe7ff1 Binary files /dev/null and b/flags/flags/shiny/icns/Oman.icns differ diff --git a/flags/flags/shiny/icns/Pakistan.icns b/flags/flags/shiny/icns/Pakistan.icns new file mode 100644 index 0000000..ff6efcd Binary files /dev/null and b/flags/flags/shiny/icns/Pakistan.icns differ diff --git a/flags/flags/shiny/icns/Palau.icns b/flags/flags/shiny/icns/Palau.icns new file mode 100644 index 0000000..a15d64d Binary files /dev/null and b/flags/flags/shiny/icns/Palau.icns differ diff --git a/flags/flags/shiny/icns/Palestine.icns b/flags/flags/shiny/icns/Palestine.icns new file mode 100644 index 0000000..ab85a04 Binary files /dev/null and b/flags/flags/shiny/icns/Palestine.icns differ diff --git a/flags/flags/shiny/icns/Panama.icns b/flags/flags/shiny/icns/Panama.icns new file mode 100644 index 0000000..6e7e0b6 Binary files /dev/null and b/flags/flags/shiny/icns/Panama.icns differ diff --git a/flags/flags/shiny/icns/Papua-New-Guinea.icns b/flags/flags/shiny/icns/Papua-New-Guinea.icns new file mode 100644 index 0000000..c518533 Binary files /dev/null and b/flags/flags/shiny/icns/Papua-New-Guinea.icns differ diff --git a/flags/flags/shiny/icns/Paraguay.icns b/flags/flags/shiny/icns/Paraguay.icns new file mode 100644 index 0000000..d6e75b7 Binary files /dev/null and b/flags/flags/shiny/icns/Paraguay.icns differ diff --git a/flags/flags/shiny/icns/Peru.icns b/flags/flags/shiny/icns/Peru.icns new file mode 100644 index 0000000..e496a67 Binary files /dev/null and b/flags/flags/shiny/icns/Peru.icns differ diff --git a/flags/flags/shiny/icns/Philippines.icns b/flags/flags/shiny/icns/Philippines.icns new file mode 100644 index 0000000..69d44e7 Binary files /dev/null and b/flags/flags/shiny/icns/Philippines.icns differ diff --git a/flags/flags/shiny/icns/Pitcairn-Islands.icns b/flags/flags/shiny/icns/Pitcairn-Islands.icns new file mode 100644 index 0000000..f9108d9 Binary files /dev/null and b/flags/flags/shiny/icns/Pitcairn-Islands.icns differ diff --git a/flags/flags/shiny/icns/Poland.icns b/flags/flags/shiny/icns/Poland.icns new file mode 100644 index 0000000..13f49ca Binary files /dev/null and b/flags/flags/shiny/icns/Poland.icns differ diff --git a/flags/flags/shiny/icns/Portugal.icns b/flags/flags/shiny/icns/Portugal.icns new file mode 100644 index 0000000..507a0bf Binary files /dev/null and b/flags/flags/shiny/icns/Portugal.icns differ diff --git a/flags/flags/shiny/icns/Puerto-Rico.icns b/flags/flags/shiny/icns/Puerto-Rico.icns new file mode 100644 index 0000000..6a74f48 Binary files /dev/null and b/flags/flags/shiny/icns/Puerto-Rico.icns differ diff --git a/flags/flags/shiny/icns/Qatar.icns b/flags/flags/shiny/icns/Qatar.icns new file mode 100644 index 0000000..49eb775 Binary files /dev/null and b/flags/flags/shiny/icns/Qatar.icns differ diff --git a/flags/flags/shiny/icns/Red-Cross.icns b/flags/flags/shiny/icns/Red-Cross.icns new file mode 100644 index 0000000..eb2688c Binary files /dev/null and b/flags/flags/shiny/icns/Red-Cross.icns differ diff --git a/flags/flags/shiny/icns/Republic-of-the-Congo.icns b/flags/flags/shiny/icns/Republic-of-the-Congo.icns new file mode 100644 index 0000000..b69c19a Binary files /dev/null and b/flags/flags/shiny/icns/Republic-of-the-Congo.icns differ diff --git a/flags/flags/shiny/icns/Romania.icns b/flags/flags/shiny/icns/Romania.icns new file mode 100644 index 0000000..2cc4bca Binary files /dev/null and b/flags/flags/shiny/icns/Romania.icns differ diff --git a/flags/flags/shiny/icns/Russia.icns b/flags/flags/shiny/icns/Russia.icns new file mode 100644 index 0000000..e858b95 Binary files /dev/null and b/flags/flags/shiny/icns/Russia.icns differ diff --git a/flags/flags/shiny/icns/Rwanda.icns b/flags/flags/shiny/icns/Rwanda.icns new file mode 100644 index 0000000..516a30e Binary files /dev/null and b/flags/flags/shiny/icns/Rwanda.icns differ diff --git a/flags/flags/shiny/icns/Saint-Barthelemy.icns b/flags/flags/shiny/icns/Saint-Barthelemy.icns new file mode 100644 index 0000000..73780f9 Binary files /dev/null and b/flags/flags/shiny/icns/Saint-Barthelemy.icns differ diff --git a/flags/flags/shiny/icns/Saint-Helena.icns b/flags/flags/shiny/icns/Saint-Helena.icns new file mode 100644 index 0000000..2033ce3 Binary files /dev/null and b/flags/flags/shiny/icns/Saint-Helena.icns differ diff --git a/flags/flags/shiny/icns/Saint-Kitts-and-Nevis.icns b/flags/flags/shiny/icns/Saint-Kitts-and-Nevis.icns new file mode 100644 index 0000000..e1315b4 Binary files /dev/null and b/flags/flags/shiny/icns/Saint-Kitts-and-Nevis.icns differ diff --git a/flags/flags/shiny/icns/Saint-Lucia.icns b/flags/flags/shiny/icns/Saint-Lucia.icns new file mode 100644 index 0000000..bd6c56d Binary files /dev/null and b/flags/flags/shiny/icns/Saint-Lucia.icns differ diff --git a/flags/flags/shiny/icns/Saint-Vincent-and-the-Grenadines.icns b/flags/flags/shiny/icns/Saint-Vincent-and-the-Grenadines.icns new file mode 100644 index 0000000..a29db21 Binary files /dev/null and b/flags/flags/shiny/icns/Saint-Vincent-and-the-Grenadines.icns differ diff --git a/flags/flags/shiny/icns/Samoa.icns b/flags/flags/shiny/icns/Samoa.icns new file mode 100644 index 0000000..ed0e5f9 Binary files /dev/null and b/flags/flags/shiny/icns/Samoa.icns differ diff --git a/flags/flags/shiny/icns/San-Marino.icns b/flags/flags/shiny/icns/San-Marino.icns new file mode 100644 index 0000000..1c88251 Binary files /dev/null and b/flags/flags/shiny/icns/San-Marino.icns differ diff --git a/flags/flags/shiny/icns/Sao-Tome-and-Principe.icns b/flags/flags/shiny/icns/Sao-Tome-and-Principe.icns new file mode 100644 index 0000000..1c665ec Binary files /dev/null and b/flags/flags/shiny/icns/Sao-Tome-and-Principe.icns differ diff --git a/flags/flags/shiny/icns/Saudi-Arabia.icns b/flags/flags/shiny/icns/Saudi-Arabia.icns new file mode 100644 index 0000000..e34b5d2 Binary files /dev/null and b/flags/flags/shiny/icns/Saudi-Arabia.icns differ diff --git a/flags/flags/shiny/icns/Scotland.icns b/flags/flags/shiny/icns/Scotland.icns new file mode 100644 index 0000000..fa5940c Binary files /dev/null and b/flags/flags/shiny/icns/Scotland.icns differ diff --git a/flags/flags/shiny/icns/Senegal.icns b/flags/flags/shiny/icns/Senegal.icns new file mode 100644 index 0000000..6b07fea Binary files /dev/null and b/flags/flags/shiny/icns/Senegal.icns differ diff --git a/flags/flags/shiny/icns/Serbia.icns b/flags/flags/shiny/icns/Serbia.icns new file mode 100644 index 0000000..0948942 Binary files /dev/null and b/flags/flags/shiny/icns/Serbia.icns differ diff --git a/flags/flags/shiny/icns/Seychelles.icns b/flags/flags/shiny/icns/Seychelles.icns new file mode 100644 index 0000000..5fb2a8d Binary files /dev/null and b/flags/flags/shiny/icns/Seychelles.icns differ diff --git a/flags/flags/shiny/icns/Sierra-Leone.icns b/flags/flags/shiny/icns/Sierra-Leone.icns new file mode 100644 index 0000000..c62104d Binary files /dev/null and b/flags/flags/shiny/icns/Sierra-Leone.icns differ diff --git a/flags/flags/shiny/icns/Singapore.icns b/flags/flags/shiny/icns/Singapore.icns new file mode 100644 index 0000000..2da77ff Binary files /dev/null and b/flags/flags/shiny/icns/Singapore.icns differ diff --git a/flags/flags/shiny/icns/Slovakia.icns b/flags/flags/shiny/icns/Slovakia.icns new file mode 100644 index 0000000..73059b3 Binary files /dev/null and b/flags/flags/shiny/icns/Slovakia.icns differ diff --git a/flags/flags/shiny/icns/Slovenia.icns b/flags/flags/shiny/icns/Slovenia.icns new file mode 100644 index 0000000..f44e121 Binary files /dev/null and b/flags/flags/shiny/icns/Slovenia.icns differ diff --git a/flags/flags/shiny/icns/Solomon-Islands.icns b/flags/flags/shiny/icns/Solomon-Islands.icns new file mode 100644 index 0000000..263a39c Binary files /dev/null and b/flags/flags/shiny/icns/Solomon-Islands.icns differ diff --git a/flags/flags/shiny/icns/Somalia.icns b/flags/flags/shiny/icns/Somalia.icns new file mode 100644 index 0000000..0559a51 Binary files /dev/null and b/flags/flags/shiny/icns/Somalia.icns differ diff --git a/flags/flags/shiny/icns/Somaliland.icns b/flags/flags/shiny/icns/Somaliland.icns new file mode 100644 index 0000000..253a1fe Binary files /dev/null and b/flags/flags/shiny/icns/Somaliland.icns differ diff --git a/flags/flags/shiny/icns/South-Africa.icns b/flags/flags/shiny/icns/South-Africa.icns new file mode 100644 index 0000000..66404cf Binary files /dev/null and b/flags/flags/shiny/icns/South-Africa.icns differ diff --git a/flags/flags/shiny/icns/South-Georgia-and-the-South-Sandwich-Islands.icns b/flags/flags/shiny/icns/South-Georgia-and-the-South-Sandwich-Islands.icns new file mode 100644 index 0000000..60a4d58 Binary files /dev/null and b/flags/flags/shiny/icns/South-Georgia-and-the-South-Sandwich-Islands.icns differ diff --git a/flags/flags/shiny/icns/South-Korea.icns b/flags/flags/shiny/icns/South-Korea.icns new file mode 100644 index 0000000..90d83da Binary files /dev/null and b/flags/flags/shiny/icns/South-Korea.icns differ diff --git a/flags/flags/shiny/icns/South-Ossetia.icns b/flags/flags/shiny/icns/South-Ossetia.icns new file mode 100644 index 0000000..968475e Binary files /dev/null and b/flags/flags/shiny/icns/South-Ossetia.icns differ diff --git a/flags/flags/shiny/icns/South-Sudan.icns b/flags/flags/shiny/icns/South-Sudan.icns new file mode 100644 index 0000000..f0f4fda Binary files /dev/null and b/flags/flags/shiny/icns/South-Sudan.icns differ diff --git a/flags/flags/shiny/icns/Spain.icns b/flags/flags/shiny/icns/Spain.icns new file mode 100644 index 0000000..07f15b8 Binary files /dev/null and b/flags/flags/shiny/icns/Spain.icns differ diff --git a/flags/flags/shiny/icns/Sri-Lanka.icns b/flags/flags/shiny/icns/Sri-Lanka.icns new file mode 100644 index 0000000..a528f7e Binary files /dev/null and b/flags/flags/shiny/icns/Sri-Lanka.icns differ diff --git a/flags/flags/shiny/icns/Sudan.icns b/flags/flags/shiny/icns/Sudan.icns new file mode 100644 index 0000000..e636519 Binary files /dev/null and b/flags/flags/shiny/icns/Sudan.icns differ diff --git a/flags/flags/shiny/icns/Suriname.icns b/flags/flags/shiny/icns/Suriname.icns new file mode 100644 index 0000000..3175d23 Binary files /dev/null and b/flags/flags/shiny/icns/Suriname.icns differ diff --git a/flags/flags/shiny/icns/Swaziland.icns b/flags/flags/shiny/icns/Swaziland.icns new file mode 100644 index 0000000..f50d34d Binary files /dev/null and b/flags/flags/shiny/icns/Swaziland.icns differ diff --git a/flags/flags/shiny/icns/Sweden.icns b/flags/flags/shiny/icns/Sweden.icns new file mode 100644 index 0000000..aa112b9 Binary files /dev/null and b/flags/flags/shiny/icns/Sweden.icns differ diff --git a/flags/flags/shiny/icns/Switzerland.icns b/flags/flags/shiny/icns/Switzerland.icns new file mode 100644 index 0000000..d05a9dd Binary files /dev/null and b/flags/flags/shiny/icns/Switzerland.icns differ diff --git a/flags/flags/shiny/icns/Syria.icns b/flags/flags/shiny/icns/Syria.icns new file mode 100644 index 0000000..fb78de2 Binary files /dev/null and b/flags/flags/shiny/icns/Syria.icns differ diff --git a/flags/flags/shiny/icns/Taiwan.icns b/flags/flags/shiny/icns/Taiwan.icns new file mode 100644 index 0000000..76a0959 Binary files /dev/null and b/flags/flags/shiny/icns/Taiwan.icns differ diff --git a/flags/flags/shiny/icns/Tajikistan.icns b/flags/flags/shiny/icns/Tajikistan.icns new file mode 100644 index 0000000..81bc46b Binary files /dev/null and b/flags/flags/shiny/icns/Tajikistan.icns differ diff --git a/flags/flags/shiny/icns/Tanzania.icns b/flags/flags/shiny/icns/Tanzania.icns new file mode 100644 index 0000000..b6adfe0 Binary files /dev/null and b/flags/flags/shiny/icns/Tanzania.icns differ diff --git a/flags/flags/shiny/icns/Thailand.icns b/flags/flags/shiny/icns/Thailand.icns new file mode 100644 index 0000000..8e4f1ff Binary files /dev/null and b/flags/flags/shiny/icns/Thailand.icns differ diff --git a/flags/flags/shiny/icns/Togo.icns b/flags/flags/shiny/icns/Togo.icns new file mode 100644 index 0000000..b6e38af Binary files /dev/null and b/flags/flags/shiny/icns/Togo.icns differ diff --git a/flags/flags/shiny/icns/Tokelau.icns b/flags/flags/shiny/icns/Tokelau.icns new file mode 100644 index 0000000..af2598d Binary files /dev/null and b/flags/flags/shiny/icns/Tokelau.icns differ diff --git a/flags/flags/shiny/icns/Tonga.icns b/flags/flags/shiny/icns/Tonga.icns new file mode 100644 index 0000000..a71414c Binary files /dev/null and b/flags/flags/shiny/icns/Tonga.icns differ diff --git a/flags/flags/shiny/icns/Trinidad-and-Tobago.icns b/flags/flags/shiny/icns/Trinidad-and-Tobago.icns new file mode 100644 index 0000000..57a8425 Binary files /dev/null and b/flags/flags/shiny/icns/Trinidad-and-Tobago.icns differ diff --git a/flags/flags/shiny/icns/Tunisia.icns b/flags/flags/shiny/icns/Tunisia.icns new file mode 100644 index 0000000..80dd226 Binary files /dev/null and b/flags/flags/shiny/icns/Tunisia.icns differ diff --git a/flags/flags/shiny/icns/Turkey.icns b/flags/flags/shiny/icns/Turkey.icns new file mode 100644 index 0000000..1d0c254 Binary files /dev/null and b/flags/flags/shiny/icns/Turkey.icns differ diff --git a/flags/flags/shiny/icns/Turkmenistan.icns b/flags/flags/shiny/icns/Turkmenistan.icns new file mode 100644 index 0000000..d0e495c Binary files /dev/null and b/flags/flags/shiny/icns/Turkmenistan.icns differ diff --git a/flags/flags/shiny/icns/Turks-and-Caicos-Islands.icns b/flags/flags/shiny/icns/Turks-and-Caicos-Islands.icns new file mode 100644 index 0000000..6fe7895 Binary files /dev/null and b/flags/flags/shiny/icns/Turks-and-Caicos-Islands.icns differ diff --git a/flags/flags/shiny/icns/Tuvalu.icns b/flags/flags/shiny/icns/Tuvalu.icns new file mode 100644 index 0000000..30c016e Binary files /dev/null and b/flags/flags/shiny/icns/Tuvalu.icns differ diff --git a/flags/flags/shiny/icns/US-Virgin-Islands.icns b/flags/flags/shiny/icns/US-Virgin-Islands.icns new file mode 100644 index 0000000..d0ddd36 Binary files /dev/null and b/flags/flags/shiny/icns/US-Virgin-Islands.icns differ diff --git a/flags/flags/shiny/icns/Uganda.icns b/flags/flags/shiny/icns/Uganda.icns new file mode 100644 index 0000000..7a9d8d8 Binary files /dev/null and b/flags/flags/shiny/icns/Uganda.icns differ diff --git a/flags/flags/shiny/icns/Ukraine.icns b/flags/flags/shiny/icns/Ukraine.icns new file mode 100644 index 0000000..ec51fcf Binary files /dev/null and b/flags/flags/shiny/icns/Ukraine.icns differ diff --git a/flags/flags/shiny/icns/United-Arab-Emirates.icns b/flags/flags/shiny/icns/United-Arab-Emirates.icns new file mode 100644 index 0000000..2f07f3f Binary files /dev/null and b/flags/flags/shiny/icns/United-Arab-Emirates.icns differ diff --git a/flags/flags/shiny/icns/United-Kingdom.icns b/flags/flags/shiny/icns/United-Kingdom.icns new file mode 100644 index 0000000..1b993e3 Binary files /dev/null and b/flags/flags/shiny/icns/United-Kingdom.icns differ diff --git a/flags/flags/shiny/icns/United-Nations.icns b/flags/flags/shiny/icns/United-Nations.icns new file mode 100644 index 0000000..4da1fb1 Binary files /dev/null and b/flags/flags/shiny/icns/United-Nations.icns differ diff --git a/flags/flags/shiny/icns/United-States.icns b/flags/flags/shiny/icns/United-States.icns new file mode 100644 index 0000000..d03062b Binary files /dev/null and b/flags/flags/shiny/icns/United-States.icns differ diff --git a/flags/flags/shiny/icns/Uruguay.icns b/flags/flags/shiny/icns/Uruguay.icns new file mode 100644 index 0000000..ba8f9c3 Binary files /dev/null and b/flags/flags/shiny/icns/Uruguay.icns differ diff --git a/flags/flags/shiny/icns/Uzbekistan.icns b/flags/flags/shiny/icns/Uzbekistan.icns new file mode 100644 index 0000000..f4291ae Binary files /dev/null and b/flags/flags/shiny/icns/Uzbekistan.icns differ diff --git a/flags/flags/shiny/icns/Vanuatu.icns b/flags/flags/shiny/icns/Vanuatu.icns new file mode 100644 index 0000000..9579e1b Binary files /dev/null and b/flags/flags/shiny/icns/Vanuatu.icns differ diff --git a/flags/flags/shiny/icns/Vatican-City.icns b/flags/flags/shiny/icns/Vatican-City.icns new file mode 100644 index 0000000..d08f433 Binary files /dev/null and b/flags/flags/shiny/icns/Vatican-City.icns differ diff --git a/flags/flags/shiny/icns/Venezuela.icns b/flags/flags/shiny/icns/Venezuela.icns new file mode 100644 index 0000000..aa38b42 Binary files /dev/null and b/flags/flags/shiny/icns/Venezuela.icns differ diff --git a/flags/flags/shiny/icns/Vietnam.icns b/flags/flags/shiny/icns/Vietnam.icns new file mode 100644 index 0000000..1b1be19 Binary files /dev/null and b/flags/flags/shiny/icns/Vietnam.icns differ diff --git a/flags/flags/shiny/icns/Wales.icns b/flags/flags/shiny/icns/Wales.icns new file mode 100644 index 0000000..07ff9cc Binary files /dev/null and b/flags/flags/shiny/icns/Wales.icns differ diff --git a/flags/flags/shiny/icns/Wallis-And-Futuna.icns b/flags/flags/shiny/icns/Wallis-And-Futuna.icns new file mode 100644 index 0000000..5a129f7 Binary files /dev/null and b/flags/flags/shiny/icns/Wallis-And-Futuna.icns differ diff --git a/flags/flags/shiny/icns/Western-Sahara.icns b/flags/flags/shiny/icns/Western-Sahara.icns new file mode 100644 index 0000000..044d756 Binary files /dev/null and b/flags/flags/shiny/icns/Western-Sahara.icns differ diff --git a/flags/flags/shiny/icns/Yemen.icns b/flags/flags/shiny/icns/Yemen.icns new file mode 100644 index 0000000..05b9e48 Binary files /dev/null and b/flags/flags/shiny/icns/Yemen.icns differ diff --git a/flags/flags/shiny/icns/Zambia.icns b/flags/flags/shiny/icns/Zambia.icns new file mode 100644 index 0000000..51c6556 Binary files /dev/null and b/flags/flags/shiny/icns/Zambia.icns differ diff --git a/flags/flags/shiny/icns/Zimbabwe.icns b/flags/flags/shiny/icns/Zimbabwe.icns new file mode 100644 index 0000000..3b06d2e Binary files /dev/null and b/flags/flags/shiny/icns/Zimbabwe.icns differ diff --git a/flags/flags/shiny/ico/Abkhazia.ico b/flags/flags/shiny/ico/Abkhazia.ico new file mode 100644 index 0000000..f43ded7 Binary files /dev/null and b/flags/flags/shiny/ico/Abkhazia.ico differ diff --git a/flags/flags/shiny/ico/Afghanistan.ico b/flags/flags/shiny/ico/Afghanistan.ico new file mode 100644 index 0000000..67d2b1c Binary files /dev/null and b/flags/flags/shiny/ico/Afghanistan.ico differ diff --git a/flags/flags/shiny/ico/Aland.ico b/flags/flags/shiny/ico/Aland.ico new file mode 100644 index 0000000..40af4f5 Binary files /dev/null and b/flags/flags/shiny/ico/Aland.ico differ diff --git a/flags/flags/shiny/ico/Albania.ico b/flags/flags/shiny/ico/Albania.ico new file mode 100644 index 0000000..a144a58 Binary files /dev/null and b/flags/flags/shiny/ico/Albania.ico differ diff --git a/flags/flags/shiny/ico/Algeria.ico b/flags/flags/shiny/ico/Algeria.ico new file mode 100644 index 0000000..940a9fd Binary files /dev/null and b/flags/flags/shiny/ico/Algeria.ico differ diff --git a/flags/flags/shiny/ico/American-Samoa.ico b/flags/flags/shiny/ico/American-Samoa.ico new file mode 100644 index 0000000..c1bd547 Binary files /dev/null and b/flags/flags/shiny/ico/American-Samoa.ico differ diff --git a/flags/flags/shiny/ico/Andorra.ico b/flags/flags/shiny/ico/Andorra.ico new file mode 100644 index 0000000..e2d1210 Binary files /dev/null and b/flags/flags/shiny/ico/Andorra.ico differ diff --git a/flags/flags/shiny/ico/Angola.ico b/flags/flags/shiny/ico/Angola.ico new file mode 100644 index 0000000..cc97fe6 Binary files /dev/null and b/flags/flags/shiny/ico/Angola.ico differ diff --git a/flags/flags/shiny/ico/Anguilla.ico b/flags/flags/shiny/ico/Anguilla.ico new file mode 100644 index 0000000..e90c069 Binary files /dev/null and b/flags/flags/shiny/ico/Anguilla.ico differ diff --git a/flags/flags/shiny/ico/Antarctica.ico b/flags/flags/shiny/ico/Antarctica.ico new file mode 100644 index 0000000..ac60431 Binary files /dev/null and b/flags/flags/shiny/ico/Antarctica.ico differ diff --git a/flags/flags/shiny/ico/Antigua-and-Barbuda.ico b/flags/flags/shiny/ico/Antigua-and-Barbuda.ico new file mode 100644 index 0000000..22a1ae8 Binary files /dev/null and b/flags/flags/shiny/ico/Antigua-and-Barbuda.ico differ diff --git a/flags/flags/shiny/ico/Argentina.ico b/flags/flags/shiny/ico/Argentina.ico new file mode 100644 index 0000000..d11a521 Binary files /dev/null and b/flags/flags/shiny/ico/Argentina.ico differ diff --git a/flags/flags/shiny/ico/Armenia.ico b/flags/flags/shiny/ico/Armenia.ico new file mode 100644 index 0000000..8bf4612 Binary files /dev/null and b/flags/flags/shiny/ico/Armenia.ico differ diff --git a/flags/flags/shiny/ico/Aruba.ico b/flags/flags/shiny/ico/Aruba.ico new file mode 100644 index 0000000..831067e Binary files /dev/null and b/flags/flags/shiny/ico/Aruba.ico differ diff --git a/flags/flags/shiny/ico/Australia.ico b/flags/flags/shiny/ico/Australia.ico new file mode 100644 index 0000000..d68fdc6 Binary files /dev/null and b/flags/flags/shiny/ico/Australia.ico differ diff --git a/flags/flags/shiny/ico/Austria.ico b/flags/flags/shiny/ico/Austria.ico new file mode 100644 index 0000000..43d5eac Binary files /dev/null and b/flags/flags/shiny/ico/Austria.ico differ diff --git a/flags/flags/shiny/ico/Azerbaijan.ico b/flags/flags/shiny/ico/Azerbaijan.ico new file mode 100644 index 0000000..93a8a38 Binary files /dev/null and b/flags/flags/shiny/ico/Azerbaijan.ico differ diff --git a/flags/flags/shiny/ico/Bahamas.ico b/flags/flags/shiny/ico/Bahamas.ico new file mode 100644 index 0000000..779ca15 Binary files /dev/null and b/flags/flags/shiny/ico/Bahamas.ico differ diff --git a/flags/flags/shiny/ico/Bahrain.ico b/flags/flags/shiny/ico/Bahrain.ico new file mode 100644 index 0000000..4f815a2 Binary files /dev/null and b/flags/flags/shiny/ico/Bahrain.ico differ diff --git a/flags/flags/shiny/ico/Bangladesh.ico b/flags/flags/shiny/ico/Bangladesh.ico new file mode 100644 index 0000000..ba03dae Binary files /dev/null and b/flags/flags/shiny/ico/Bangladesh.ico differ diff --git a/flags/flags/shiny/ico/Barbados.ico b/flags/flags/shiny/ico/Barbados.ico new file mode 100644 index 0000000..7ec0f0e Binary files /dev/null and b/flags/flags/shiny/ico/Barbados.ico differ diff --git a/flags/flags/shiny/ico/Belarus.ico b/flags/flags/shiny/ico/Belarus.ico new file mode 100644 index 0000000..66f609b Binary files /dev/null and b/flags/flags/shiny/ico/Belarus.ico differ diff --git a/flags/flags/shiny/ico/Belgium.ico b/flags/flags/shiny/ico/Belgium.ico new file mode 100644 index 0000000..f0ebb9b Binary files /dev/null and b/flags/flags/shiny/ico/Belgium.ico differ diff --git a/flags/flags/shiny/ico/Belize.ico b/flags/flags/shiny/ico/Belize.ico new file mode 100644 index 0000000..1cb116f Binary files /dev/null and b/flags/flags/shiny/ico/Belize.ico differ diff --git a/flags/flags/shiny/ico/Benin.ico b/flags/flags/shiny/ico/Benin.ico new file mode 100644 index 0000000..eca1edd Binary files /dev/null and b/flags/flags/shiny/ico/Benin.ico differ diff --git a/flags/flags/shiny/ico/Bermuda.ico b/flags/flags/shiny/ico/Bermuda.ico new file mode 100644 index 0000000..c75936e Binary files /dev/null and b/flags/flags/shiny/ico/Bermuda.ico differ diff --git a/flags/flags/shiny/ico/Bhutan.ico b/flags/flags/shiny/ico/Bhutan.ico new file mode 100644 index 0000000..5bd528b Binary files /dev/null and b/flags/flags/shiny/ico/Bhutan.ico differ diff --git a/flags/flags/shiny/ico/Bolivia.ico b/flags/flags/shiny/ico/Bolivia.ico new file mode 100644 index 0000000..1b705c6 Binary files /dev/null and b/flags/flags/shiny/ico/Bolivia.ico differ diff --git a/flags/flags/shiny/ico/Bosnia-and-Herzegovina.ico b/flags/flags/shiny/ico/Bosnia-and-Herzegovina.ico new file mode 100644 index 0000000..a13f539 Binary files /dev/null and b/flags/flags/shiny/ico/Bosnia-and-Herzegovina.ico differ diff --git a/flags/flags/shiny/ico/Botswana.ico b/flags/flags/shiny/ico/Botswana.ico new file mode 100644 index 0000000..28ea5f1 Binary files /dev/null and b/flags/flags/shiny/ico/Botswana.ico differ diff --git a/flags/flags/shiny/ico/Brazil.ico b/flags/flags/shiny/ico/Brazil.ico new file mode 100644 index 0000000..9995e04 Binary files /dev/null and b/flags/flags/shiny/ico/Brazil.ico differ diff --git a/flags/flags/shiny/ico/British-Antarctic-Territory.ico b/flags/flags/shiny/ico/British-Antarctic-Territory.ico new file mode 100644 index 0000000..cacb7f5 Binary files /dev/null and b/flags/flags/shiny/ico/British-Antarctic-Territory.ico differ diff --git a/flags/flags/shiny/ico/British-Virgin-Islands.ico b/flags/flags/shiny/ico/British-Virgin-Islands.ico new file mode 100644 index 0000000..330f1b2 Binary files /dev/null and b/flags/flags/shiny/ico/British-Virgin-Islands.ico differ diff --git a/flags/flags/shiny/ico/Brunei.ico b/flags/flags/shiny/ico/Brunei.ico new file mode 100644 index 0000000..b532324 Binary files /dev/null and b/flags/flags/shiny/ico/Brunei.ico differ diff --git a/flags/flags/shiny/ico/Bulgaria.ico b/flags/flags/shiny/ico/Bulgaria.ico new file mode 100644 index 0000000..19d08fd Binary files /dev/null and b/flags/flags/shiny/ico/Bulgaria.ico differ diff --git a/flags/flags/shiny/ico/Burkina-Faso.ico b/flags/flags/shiny/ico/Burkina-Faso.ico new file mode 100644 index 0000000..7bb582c Binary files /dev/null and b/flags/flags/shiny/ico/Burkina-Faso.ico differ diff --git a/flags/flags/shiny/ico/Burundi.ico b/flags/flags/shiny/ico/Burundi.ico new file mode 100644 index 0000000..b13e519 Binary files /dev/null and b/flags/flags/shiny/ico/Burundi.ico differ diff --git a/flags/flags/shiny/ico/Cambodia.ico b/flags/flags/shiny/ico/Cambodia.ico new file mode 100644 index 0000000..261d171 Binary files /dev/null and b/flags/flags/shiny/ico/Cambodia.ico differ diff --git a/flags/flags/shiny/ico/Cameroon.ico b/flags/flags/shiny/ico/Cameroon.ico new file mode 100644 index 0000000..b8c0853 Binary files /dev/null and b/flags/flags/shiny/ico/Cameroon.ico differ diff --git a/flags/flags/shiny/ico/Canada.ico b/flags/flags/shiny/ico/Canada.ico new file mode 100644 index 0000000..695e670 Binary files /dev/null and b/flags/flags/shiny/ico/Canada.ico differ diff --git a/flags/flags/shiny/ico/Cape-Verde.ico b/flags/flags/shiny/ico/Cape-Verde.ico new file mode 100644 index 0000000..d36f52d Binary files /dev/null and b/flags/flags/shiny/ico/Cape-Verde.ico differ diff --git a/flags/flags/shiny/ico/Cayman-Islands.ico b/flags/flags/shiny/ico/Cayman-Islands.ico new file mode 100644 index 0000000..4eab664 Binary files /dev/null and b/flags/flags/shiny/ico/Cayman-Islands.ico differ diff --git a/flags/flags/shiny/ico/Central-African-Republic.ico b/flags/flags/shiny/ico/Central-African-Republic.ico new file mode 100644 index 0000000..c4e508c Binary files /dev/null and b/flags/flags/shiny/ico/Central-African-Republic.ico differ diff --git a/flags/flags/shiny/ico/Chad.ico b/flags/flags/shiny/ico/Chad.ico new file mode 100644 index 0000000..a037ae6 Binary files /dev/null and b/flags/flags/shiny/ico/Chad.ico differ diff --git a/flags/flags/shiny/ico/Chile.ico b/flags/flags/shiny/ico/Chile.ico new file mode 100644 index 0000000..51277fd Binary files /dev/null and b/flags/flags/shiny/ico/Chile.ico differ diff --git a/flags/flags/shiny/ico/China.ico b/flags/flags/shiny/ico/China.ico new file mode 100644 index 0000000..cbab579 Binary files /dev/null and b/flags/flags/shiny/ico/China.ico differ diff --git a/flags/flags/shiny/ico/Christmas-Island.ico b/flags/flags/shiny/ico/Christmas-Island.ico new file mode 100644 index 0000000..99b2668 Binary files /dev/null and b/flags/flags/shiny/ico/Christmas-Island.ico differ diff --git a/flags/flags/shiny/ico/Cocos-Keeling-Islands.ico b/flags/flags/shiny/ico/Cocos-Keeling-Islands.ico new file mode 100644 index 0000000..c79d420 Binary files /dev/null and b/flags/flags/shiny/ico/Cocos-Keeling-Islands.ico differ diff --git a/flags/flags/shiny/ico/Colombia.ico b/flags/flags/shiny/ico/Colombia.ico new file mode 100644 index 0000000..5b7af03 Binary files /dev/null and b/flags/flags/shiny/ico/Colombia.ico differ diff --git a/flags/flags/shiny/ico/Commonwealth.ico b/flags/flags/shiny/ico/Commonwealth.ico new file mode 100644 index 0000000..e846bfb Binary files /dev/null and b/flags/flags/shiny/ico/Commonwealth.ico differ diff --git a/flags/flags/shiny/ico/Comoros.ico b/flags/flags/shiny/ico/Comoros.ico new file mode 100644 index 0000000..9b51512 Binary files /dev/null and b/flags/flags/shiny/ico/Comoros.ico differ diff --git a/flags/flags/shiny/ico/Cook-Islands.ico b/flags/flags/shiny/ico/Cook-Islands.ico new file mode 100644 index 0000000..c4c45f8 Binary files /dev/null and b/flags/flags/shiny/ico/Cook-Islands.ico differ diff --git a/flags/flags/shiny/ico/Costa-Rica.ico b/flags/flags/shiny/ico/Costa-Rica.ico new file mode 100644 index 0000000..1942fd6 Binary files /dev/null and b/flags/flags/shiny/ico/Costa-Rica.ico differ diff --git a/flags/flags/shiny/ico/Cote-dIvoire.ico b/flags/flags/shiny/ico/Cote-dIvoire.ico new file mode 100644 index 0000000..eb62ff9 Binary files /dev/null and b/flags/flags/shiny/ico/Cote-dIvoire.ico differ diff --git a/flags/flags/shiny/ico/Croatia.ico b/flags/flags/shiny/ico/Croatia.ico new file mode 100644 index 0000000..125fc53 Binary files /dev/null and b/flags/flags/shiny/ico/Croatia.ico differ diff --git a/flags/flags/shiny/ico/Cuba.ico b/flags/flags/shiny/ico/Cuba.ico new file mode 100644 index 0000000..92d418e Binary files /dev/null and b/flags/flags/shiny/ico/Cuba.ico differ diff --git a/flags/flags/shiny/ico/Cyprus.ico b/flags/flags/shiny/ico/Cyprus.ico new file mode 100644 index 0000000..03c87ba Binary files /dev/null and b/flags/flags/shiny/ico/Cyprus.ico differ diff --git a/flags/flags/shiny/ico/Czech-Republic.ico b/flags/flags/shiny/ico/Czech-Republic.ico new file mode 100644 index 0000000..4be270f Binary files /dev/null and b/flags/flags/shiny/ico/Czech-Republic.ico differ diff --git a/flags/flags/shiny/ico/Democratic-Republic-of-the-Congo.ico b/flags/flags/shiny/ico/Democratic-Republic-of-the-Congo.ico new file mode 100644 index 0000000..ee7512a Binary files /dev/null and b/flags/flags/shiny/ico/Democratic-Republic-of-the-Congo.ico differ diff --git a/flags/flags/shiny/ico/Denmark.ico b/flags/flags/shiny/ico/Denmark.ico new file mode 100644 index 0000000..c84aa62 Binary files /dev/null and b/flags/flags/shiny/ico/Denmark.ico differ diff --git a/flags/flags/shiny/ico/Djibouti.ico b/flags/flags/shiny/ico/Djibouti.ico new file mode 100644 index 0000000..ee0bbd6 Binary files /dev/null and b/flags/flags/shiny/ico/Djibouti.ico differ diff --git a/flags/flags/shiny/ico/Dominica.ico b/flags/flags/shiny/ico/Dominica.ico new file mode 100644 index 0000000..2a2d45a Binary files /dev/null and b/flags/flags/shiny/ico/Dominica.ico differ diff --git a/flags/flags/shiny/ico/Dominican-Republic.ico b/flags/flags/shiny/ico/Dominican-Republic.ico new file mode 100644 index 0000000..6d7a5ad Binary files /dev/null and b/flags/flags/shiny/ico/Dominican-Republic.ico differ diff --git a/flags/flags/shiny/ico/East-Timor.ico b/flags/flags/shiny/ico/East-Timor.ico new file mode 100644 index 0000000..81a297b Binary files /dev/null and b/flags/flags/shiny/ico/East-Timor.ico differ diff --git a/flags/flags/shiny/ico/Ecuador.ico b/flags/flags/shiny/ico/Ecuador.ico new file mode 100644 index 0000000..d2505b6 Binary files /dev/null and b/flags/flags/shiny/ico/Ecuador.ico differ diff --git a/flags/flags/shiny/ico/Egypt.ico b/flags/flags/shiny/ico/Egypt.ico new file mode 100644 index 0000000..b008560 Binary files /dev/null and b/flags/flags/shiny/ico/Egypt.ico differ diff --git a/flags/flags/shiny/ico/El-Salvador.ico b/flags/flags/shiny/ico/El-Salvador.ico new file mode 100644 index 0000000..de64212 Binary files /dev/null and b/flags/flags/shiny/ico/El-Salvador.ico differ diff --git a/flags/flags/shiny/ico/England.ico b/flags/flags/shiny/ico/England.ico new file mode 100644 index 0000000..ad7268f Binary files /dev/null and b/flags/flags/shiny/ico/England.ico differ diff --git a/flags/flags/shiny/ico/Equatorial-Guinea.ico b/flags/flags/shiny/ico/Equatorial-Guinea.ico new file mode 100644 index 0000000..06391a4 Binary files /dev/null and b/flags/flags/shiny/ico/Equatorial-Guinea.ico differ diff --git a/flags/flags/shiny/ico/Eritrea.ico b/flags/flags/shiny/ico/Eritrea.ico new file mode 100644 index 0000000..59a627b Binary files /dev/null and b/flags/flags/shiny/ico/Eritrea.ico differ diff --git a/flags/flags/shiny/ico/Estonia.ico b/flags/flags/shiny/ico/Estonia.ico new file mode 100644 index 0000000..df44adc Binary files /dev/null and b/flags/flags/shiny/ico/Estonia.ico differ diff --git a/flags/flags/shiny/ico/Ethiopia.ico b/flags/flags/shiny/ico/Ethiopia.ico new file mode 100644 index 0000000..7985273 Binary files /dev/null and b/flags/flags/shiny/ico/Ethiopia.ico differ diff --git a/flags/flags/shiny/ico/European-Union.ico b/flags/flags/shiny/ico/European-Union.ico new file mode 100644 index 0000000..ec778ae Binary files /dev/null and b/flags/flags/shiny/ico/European-Union.ico differ diff --git a/flags/flags/shiny/ico/Falkland-Islands.ico b/flags/flags/shiny/ico/Falkland-Islands.ico new file mode 100644 index 0000000..b879f48 Binary files /dev/null and b/flags/flags/shiny/ico/Falkland-Islands.ico differ diff --git a/flags/flags/shiny/ico/Faroes.ico b/flags/flags/shiny/ico/Faroes.ico new file mode 100644 index 0000000..5b13e78 Binary files /dev/null and b/flags/flags/shiny/ico/Faroes.ico differ diff --git a/flags/flags/shiny/ico/Fiji.ico b/flags/flags/shiny/ico/Fiji.ico new file mode 100644 index 0000000..d621ce9 Binary files /dev/null and b/flags/flags/shiny/ico/Fiji.ico differ diff --git a/flags/flags/shiny/ico/Finland.ico b/flags/flags/shiny/ico/Finland.ico new file mode 100644 index 0000000..50a3c63 Binary files /dev/null and b/flags/flags/shiny/ico/Finland.ico differ diff --git a/flags/flags/shiny/ico/France.ico b/flags/flags/shiny/ico/France.ico new file mode 100644 index 0000000..1ac89c1 Binary files /dev/null and b/flags/flags/shiny/ico/France.ico differ diff --git a/flags/flags/shiny/ico/French-Polynesia.ico b/flags/flags/shiny/ico/French-Polynesia.ico new file mode 100644 index 0000000..3daff6c Binary files /dev/null and b/flags/flags/shiny/ico/French-Polynesia.ico differ diff --git a/flags/flags/shiny/ico/French-Southern-Territories.ico b/flags/flags/shiny/ico/French-Southern-Territories.ico new file mode 100644 index 0000000..23da461 Binary files /dev/null and b/flags/flags/shiny/ico/French-Southern-Territories.ico differ diff --git a/flags/flags/shiny/ico/Gabon.ico b/flags/flags/shiny/ico/Gabon.ico new file mode 100644 index 0000000..104a872 Binary files /dev/null and b/flags/flags/shiny/ico/Gabon.ico differ diff --git a/flags/flags/shiny/ico/Gambia.ico b/flags/flags/shiny/ico/Gambia.ico new file mode 100644 index 0000000..bc65983 Binary files /dev/null and b/flags/flags/shiny/ico/Gambia.ico differ diff --git a/flags/flags/shiny/ico/Georgia.ico b/flags/flags/shiny/ico/Georgia.ico new file mode 100644 index 0000000..57af451 Binary files /dev/null and b/flags/flags/shiny/ico/Georgia.ico differ diff --git a/flags/flags/shiny/ico/Germany.ico b/flags/flags/shiny/ico/Germany.ico new file mode 100644 index 0000000..3930f69 Binary files /dev/null and b/flags/flags/shiny/ico/Germany.ico differ diff --git a/flags/flags/shiny/ico/Ghana.ico b/flags/flags/shiny/ico/Ghana.ico new file mode 100644 index 0000000..cf98742 Binary files /dev/null and b/flags/flags/shiny/ico/Ghana.ico differ diff --git a/flags/flags/shiny/ico/Gibraltar.ico b/flags/flags/shiny/ico/Gibraltar.ico new file mode 100644 index 0000000..170c3f4 Binary files /dev/null and b/flags/flags/shiny/ico/Gibraltar.ico differ diff --git a/flags/flags/shiny/ico/GoSquared.ico b/flags/flags/shiny/ico/GoSquared.ico new file mode 100644 index 0000000..2e765b0 Binary files /dev/null and b/flags/flags/shiny/ico/GoSquared.ico differ diff --git a/flags/flags/shiny/ico/Greece.ico b/flags/flags/shiny/ico/Greece.ico new file mode 100644 index 0000000..732a9b5 Binary files /dev/null and b/flags/flags/shiny/ico/Greece.ico differ diff --git a/flags/flags/shiny/ico/Greenland.ico b/flags/flags/shiny/ico/Greenland.ico new file mode 100644 index 0000000..d9da5a8 Binary files /dev/null and b/flags/flags/shiny/ico/Greenland.ico differ diff --git a/flags/flags/shiny/ico/Grenada.ico b/flags/flags/shiny/ico/Grenada.ico new file mode 100644 index 0000000..ae0102f Binary files /dev/null and b/flags/flags/shiny/ico/Grenada.ico differ diff --git a/flags/flags/shiny/ico/Guam.ico b/flags/flags/shiny/ico/Guam.ico new file mode 100644 index 0000000..73d9751 Binary files /dev/null and b/flags/flags/shiny/ico/Guam.ico differ diff --git a/flags/flags/shiny/ico/Guatemala.ico b/flags/flags/shiny/ico/Guatemala.ico new file mode 100644 index 0000000..10263bd Binary files /dev/null and b/flags/flags/shiny/ico/Guatemala.ico differ diff --git a/flags/flags/shiny/ico/Guernsey.ico b/flags/flags/shiny/ico/Guernsey.ico new file mode 100644 index 0000000..18a2963 Binary files /dev/null and b/flags/flags/shiny/ico/Guernsey.ico differ diff --git a/flags/flags/shiny/ico/Guinea-Bissau.ico b/flags/flags/shiny/ico/Guinea-Bissau.ico new file mode 100644 index 0000000..601a1f0 Binary files /dev/null and b/flags/flags/shiny/ico/Guinea-Bissau.ico differ diff --git a/flags/flags/shiny/ico/Guinea.ico b/flags/flags/shiny/ico/Guinea.ico new file mode 100644 index 0000000..7232543 Binary files /dev/null and b/flags/flags/shiny/ico/Guinea.ico differ diff --git a/flags/flags/shiny/ico/Guyana.ico b/flags/flags/shiny/ico/Guyana.ico new file mode 100644 index 0000000..384627d Binary files /dev/null and b/flags/flags/shiny/ico/Guyana.ico differ diff --git a/flags/flags/shiny/ico/Haiti.ico b/flags/flags/shiny/ico/Haiti.ico new file mode 100644 index 0000000..d34f8b9 Binary files /dev/null and b/flags/flags/shiny/ico/Haiti.ico differ diff --git a/flags/flags/shiny/ico/Honduras.ico b/flags/flags/shiny/ico/Honduras.ico new file mode 100644 index 0000000..37c15b7 Binary files /dev/null and b/flags/flags/shiny/ico/Honduras.ico differ diff --git a/flags/flags/shiny/ico/Hong-Kong.ico b/flags/flags/shiny/ico/Hong-Kong.ico new file mode 100644 index 0000000..3cd6331 Binary files /dev/null and b/flags/flags/shiny/ico/Hong-Kong.ico differ diff --git a/flags/flags/shiny/ico/Hungary.ico b/flags/flags/shiny/ico/Hungary.ico new file mode 100644 index 0000000..330d93b Binary files /dev/null and b/flags/flags/shiny/ico/Hungary.ico differ diff --git a/flags/flags/shiny/ico/Iceland.ico b/flags/flags/shiny/ico/Iceland.ico new file mode 100644 index 0000000..ae32c6e Binary files /dev/null and b/flags/flags/shiny/ico/Iceland.ico differ diff --git a/flags/flags/shiny/ico/India.ico b/flags/flags/shiny/ico/India.ico new file mode 100644 index 0000000..763293c Binary files /dev/null and b/flags/flags/shiny/ico/India.ico differ diff --git a/flags/flags/shiny/ico/Indonesia.ico b/flags/flags/shiny/ico/Indonesia.ico new file mode 100644 index 0000000..f911641 Binary files /dev/null and b/flags/flags/shiny/ico/Indonesia.ico differ diff --git a/flags/flags/shiny/ico/Iran.ico b/flags/flags/shiny/ico/Iran.ico new file mode 100644 index 0000000..ce68814 Binary files /dev/null and b/flags/flags/shiny/ico/Iran.ico differ diff --git a/flags/flags/shiny/ico/Iraq.ico b/flags/flags/shiny/ico/Iraq.ico new file mode 100644 index 0000000..2741707 Binary files /dev/null and b/flags/flags/shiny/ico/Iraq.ico differ diff --git a/flags/flags/shiny/ico/Ireland.ico b/flags/flags/shiny/ico/Ireland.ico new file mode 100644 index 0000000..851aa9e Binary files /dev/null and b/flags/flags/shiny/ico/Ireland.ico differ diff --git a/flags/flags/shiny/ico/Isle-of-Man.ico b/flags/flags/shiny/ico/Isle-of-Man.ico new file mode 100644 index 0000000..596a63f Binary files /dev/null and b/flags/flags/shiny/ico/Isle-of-Man.ico differ diff --git a/flags/flags/shiny/ico/Israel.ico b/flags/flags/shiny/ico/Israel.ico new file mode 100644 index 0000000..94ee730 Binary files /dev/null and b/flags/flags/shiny/ico/Israel.ico differ diff --git a/flags/flags/shiny/ico/Italy.ico b/flags/flags/shiny/ico/Italy.ico new file mode 100644 index 0000000..c5db2e4 Binary files /dev/null and b/flags/flags/shiny/ico/Italy.ico differ diff --git a/flags/flags/shiny/ico/Jamaica.ico b/flags/flags/shiny/ico/Jamaica.ico new file mode 100644 index 0000000..72baaee Binary files /dev/null and b/flags/flags/shiny/ico/Jamaica.ico differ diff --git a/flags/flags/shiny/ico/Japan.ico b/flags/flags/shiny/ico/Japan.ico new file mode 100644 index 0000000..3aa2317 Binary files /dev/null and b/flags/flags/shiny/ico/Japan.ico differ diff --git a/flags/flags/shiny/ico/Jersey.ico b/flags/flags/shiny/ico/Jersey.ico new file mode 100644 index 0000000..b8bfe67 Binary files /dev/null and b/flags/flags/shiny/ico/Jersey.ico differ diff --git a/flags/flags/shiny/ico/Jordan.ico b/flags/flags/shiny/ico/Jordan.ico new file mode 100644 index 0000000..0ea9e8f Binary files /dev/null and b/flags/flags/shiny/ico/Jordan.ico differ diff --git a/flags/flags/shiny/ico/Kazakhstan.ico b/flags/flags/shiny/ico/Kazakhstan.ico new file mode 100644 index 0000000..c60dd3a Binary files /dev/null and b/flags/flags/shiny/ico/Kazakhstan.ico differ diff --git a/flags/flags/shiny/ico/Kenya.ico b/flags/flags/shiny/ico/Kenya.ico new file mode 100644 index 0000000..339dffc Binary files /dev/null and b/flags/flags/shiny/ico/Kenya.ico differ diff --git a/flags/flags/shiny/ico/Kiribati.ico b/flags/flags/shiny/ico/Kiribati.ico new file mode 100644 index 0000000..7b2c0bd Binary files /dev/null and b/flags/flags/shiny/ico/Kiribati.ico differ diff --git a/flags/flags/shiny/ico/Kosovo.ico b/flags/flags/shiny/ico/Kosovo.ico new file mode 100644 index 0000000..e2ac7fa Binary files /dev/null and b/flags/flags/shiny/ico/Kosovo.ico differ diff --git a/flags/flags/shiny/ico/Kuwait.ico b/flags/flags/shiny/ico/Kuwait.ico new file mode 100644 index 0000000..83379a6 Binary files /dev/null and b/flags/flags/shiny/ico/Kuwait.ico differ diff --git a/flags/flags/shiny/ico/Kyrgyzstan.ico b/flags/flags/shiny/ico/Kyrgyzstan.ico new file mode 100644 index 0000000..466414b Binary files /dev/null and b/flags/flags/shiny/ico/Kyrgyzstan.ico differ diff --git a/flags/flags/shiny/ico/Laos.ico b/flags/flags/shiny/ico/Laos.ico new file mode 100644 index 0000000..2047dde Binary files /dev/null and b/flags/flags/shiny/ico/Laos.ico differ diff --git a/flags/flags/shiny/ico/Latvia.ico b/flags/flags/shiny/ico/Latvia.ico new file mode 100644 index 0000000..21e946c Binary files /dev/null and b/flags/flags/shiny/ico/Latvia.ico differ diff --git a/flags/flags/shiny/ico/Lebanon.ico b/flags/flags/shiny/ico/Lebanon.ico new file mode 100644 index 0000000..c9e3f07 Binary files /dev/null and b/flags/flags/shiny/ico/Lebanon.ico differ diff --git a/flags/flags/shiny/ico/Lesotho.ico b/flags/flags/shiny/ico/Lesotho.ico new file mode 100644 index 0000000..51dcef1 Binary files /dev/null and b/flags/flags/shiny/ico/Lesotho.ico differ diff --git a/flags/flags/shiny/ico/Liberia.ico b/flags/flags/shiny/ico/Liberia.ico new file mode 100644 index 0000000..a8e3821 Binary files /dev/null and b/flags/flags/shiny/ico/Liberia.ico differ diff --git a/flags/flags/shiny/ico/Libya.ico b/flags/flags/shiny/ico/Libya.ico new file mode 100644 index 0000000..b154de9 Binary files /dev/null and b/flags/flags/shiny/ico/Libya.ico differ diff --git a/flags/flags/shiny/ico/Liechtenstein.ico b/flags/flags/shiny/ico/Liechtenstein.ico new file mode 100644 index 0000000..deb8a0a Binary files /dev/null and b/flags/flags/shiny/ico/Liechtenstein.ico differ diff --git a/flags/flags/shiny/ico/Lithuania.ico b/flags/flags/shiny/ico/Lithuania.ico new file mode 100644 index 0000000..3cd3b62 Binary files /dev/null and b/flags/flags/shiny/ico/Lithuania.ico differ diff --git a/flags/flags/shiny/ico/Luxembourg.ico b/flags/flags/shiny/ico/Luxembourg.ico new file mode 100644 index 0000000..4cd73ec Binary files /dev/null and b/flags/flags/shiny/ico/Luxembourg.ico differ diff --git a/flags/flags/shiny/ico/Macau.ico b/flags/flags/shiny/ico/Macau.ico new file mode 100644 index 0000000..3d477a4 Binary files /dev/null and b/flags/flags/shiny/ico/Macau.ico differ diff --git a/flags/flags/shiny/ico/Macedonia.ico b/flags/flags/shiny/ico/Macedonia.ico new file mode 100644 index 0000000..4b15103 Binary files /dev/null and b/flags/flags/shiny/ico/Macedonia.ico differ diff --git a/flags/flags/shiny/ico/Madagascar.ico b/flags/flags/shiny/ico/Madagascar.ico new file mode 100644 index 0000000..c07781d Binary files /dev/null and b/flags/flags/shiny/ico/Madagascar.ico differ diff --git a/flags/flags/shiny/ico/Malawi.ico b/flags/flags/shiny/ico/Malawi.ico new file mode 100644 index 0000000..ae696ff Binary files /dev/null and b/flags/flags/shiny/ico/Malawi.ico differ diff --git a/flags/flags/shiny/ico/Malaysia.ico b/flags/flags/shiny/ico/Malaysia.ico new file mode 100644 index 0000000..8dc5799 Binary files /dev/null and b/flags/flags/shiny/ico/Malaysia.ico differ diff --git a/flags/flags/shiny/ico/Maldives.ico b/flags/flags/shiny/ico/Maldives.ico new file mode 100644 index 0000000..4241b32 Binary files /dev/null and b/flags/flags/shiny/ico/Maldives.ico differ diff --git a/flags/flags/shiny/ico/Mali.ico b/flags/flags/shiny/ico/Mali.ico new file mode 100644 index 0000000..4f5444d Binary files /dev/null and b/flags/flags/shiny/ico/Mali.ico differ diff --git a/flags/flags/shiny/ico/Malta.ico b/flags/flags/shiny/ico/Malta.ico new file mode 100644 index 0000000..45e98d5 Binary files /dev/null and b/flags/flags/shiny/ico/Malta.ico differ diff --git a/flags/flags/shiny/ico/Mars.ico b/flags/flags/shiny/ico/Mars.ico new file mode 100644 index 0000000..968f3f1 Binary files /dev/null and b/flags/flags/shiny/ico/Mars.ico differ diff --git a/flags/flags/shiny/ico/Marshall-Islands.ico b/flags/flags/shiny/ico/Marshall-Islands.ico new file mode 100644 index 0000000..eb542a0 Binary files /dev/null and b/flags/flags/shiny/ico/Marshall-Islands.ico differ diff --git a/flags/flags/shiny/ico/Mauritania.ico b/flags/flags/shiny/ico/Mauritania.ico new file mode 100644 index 0000000..675cb43 Binary files /dev/null and b/flags/flags/shiny/ico/Mauritania.ico differ diff --git a/flags/flags/shiny/ico/Mauritius.ico b/flags/flags/shiny/ico/Mauritius.ico new file mode 100644 index 0000000..3fbbb46 Binary files /dev/null and b/flags/flags/shiny/ico/Mauritius.ico differ diff --git a/flags/flags/shiny/ico/Mayotte.ico b/flags/flags/shiny/ico/Mayotte.ico new file mode 100644 index 0000000..b8aad04 Binary files /dev/null and b/flags/flags/shiny/ico/Mayotte.ico differ diff --git a/flags/flags/shiny/ico/Mexico.ico b/flags/flags/shiny/ico/Mexico.ico new file mode 100644 index 0000000..556b360 Binary files /dev/null and b/flags/flags/shiny/ico/Mexico.ico differ diff --git a/flags/flags/shiny/ico/Micronesia.ico b/flags/flags/shiny/ico/Micronesia.ico new file mode 100644 index 0000000..909c46a Binary files /dev/null and b/flags/flags/shiny/ico/Micronesia.ico differ diff --git a/flags/flags/shiny/ico/Moldova.ico b/flags/flags/shiny/ico/Moldova.ico new file mode 100644 index 0000000..934dcbf Binary files /dev/null and b/flags/flags/shiny/ico/Moldova.ico differ diff --git a/flags/flags/shiny/ico/Monaco.ico b/flags/flags/shiny/ico/Monaco.ico new file mode 100644 index 0000000..f911641 Binary files /dev/null and b/flags/flags/shiny/ico/Monaco.ico differ diff --git a/flags/flags/shiny/ico/Mongolia.ico b/flags/flags/shiny/ico/Mongolia.ico new file mode 100644 index 0000000..12666fc Binary files /dev/null and b/flags/flags/shiny/ico/Mongolia.ico differ diff --git a/flags/flags/shiny/ico/Montenegro.ico b/flags/flags/shiny/ico/Montenegro.ico new file mode 100644 index 0000000..981accf Binary files /dev/null and b/flags/flags/shiny/ico/Montenegro.ico differ diff --git a/flags/flags/shiny/ico/Montserrat.ico b/flags/flags/shiny/ico/Montserrat.ico new file mode 100644 index 0000000..f751c9c Binary files /dev/null and b/flags/flags/shiny/ico/Montserrat.ico differ diff --git a/flags/flags/shiny/ico/Morocco.ico b/flags/flags/shiny/ico/Morocco.ico new file mode 100644 index 0000000..ad17b19 Binary files /dev/null and b/flags/flags/shiny/ico/Morocco.ico differ diff --git a/flags/flags/shiny/ico/Mozambique.ico b/flags/flags/shiny/ico/Mozambique.ico new file mode 100644 index 0000000..f26f8d8 Binary files /dev/null and b/flags/flags/shiny/ico/Mozambique.ico differ diff --git a/flags/flags/shiny/ico/Myanmar.ico b/flags/flags/shiny/ico/Myanmar.ico new file mode 100644 index 0000000..e6c3033 Binary files /dev/null and b/flags/flags/shiny/ico/Myanmar.ico differ diff --git a/flags/flags/shiny/ico/NATO.ico b/flags/flags/shiny/ico/NATO.ico new file mode 100644 index 0000000..9238ea6 Binary files /dev/null and b/flags/flags/shiny/ico/NATO.ico differ diff --git a/flags/flags/shiny/ico/Nagorno-Karabakh.ico b/flags/flags/shiny/ico/Nagorno-Karabakh.ico new file mode 100644 index 0000000..0b8455d Binary files /dev/null and b/flags/flags/shiny/ico/Nagorno-Karabakh.ico differ diff --git a/flags/flags/shiny/ico/Namibia.ico b/flags/flags/shiny/ico/Namibia.ico new file mode 100644 index 0000000..38ddb33 Binary files /dev/null and b/flags/flags/shiny/ico/Namibia.ico differ diff --git a/flags/flags/shiny/ico/Nauru.ico b/flags/flags/shiny/ico/Nauru.ico new file mode 100644 index 0000000..891c9ab Binary files /dev/null and b/flags/flags/shiny/ico/Nauru.ico differ diff --git a/flags/flags/shiny/ico/Nepal.ico b/flags/flags/shiny/ico/Nepal.ico new file mode 100644 index 0000000..bb5a0fe Binary files /dev/null and b/flags/flags/shiny/ico/Nepal.ico differ diff --git a/flags/flags/shiny/ico/Netherlands-Antilles.ico b/flags/flags/shiny/ico/Netherlands-Antilles.ico new file mode 100644 index 0000000..1f1b797 Binary files /dev/null and b/flags/flags/shiny/ico/Netherlands-Antilles.ico differ diff --git a/flags/flags/shiny/ico/Netherlands.ico b/flags/flags/shiny/ico/Netherlands.ico new file mode 100644 index 0000000..f4bd8aa Binary files /dev/null and b/flags/flags/shiny/ico/Netherlands.ico differ diff --git a/flags/flags/shiny/ico/New-Caledonia.ico b/flags/flags/shiny/ico/New-Caledonia.ico new file mode 100644 index 0000000..61469ad Binary files /dev/null and b/flags/flags/shiny/ico/New-Caledonia.ico differ diff --git a/flags/flags/shiny/ico/New-Zealand.ico b/flags/flags/shiny/ico/New-Zealand.ico new file mode 100644 index 0000000..53c8077 Binary files /dev/null and b/flags/flags/shiny/ico/New-Zealand.ico differ diff --git a/flags/flags/shiny/ico/Nicaragua.ico b/flags/flags/shiny/ico/Nicaragua.ico new file mode 100644 index 0000000..ca2a35c Binary files /dev/null and b/flags/flags/shiny/ico/Nicaragua.ico differ diff --git a/flags/flags/shiny/ico/Niger.ico b/flags/flags/shiny/ico/Niger.ico new file mode 100644 index 0000000..fc29e7e Binary files /dev/null and b/flags/flags/shiny/ico/Niger.ico differ diff --git a/flags/flags/shiny/ico/Nigeria.ico b/flags/flags/shiny/ico/Nigeria.ico new file mode 100644 index 0000000..86c7e75 Binary files /dev/null and b/flags/flags/shiny/ico/Nigeria.ico differ diff --git a/flags/flags/shiny/ico/Niue.ico b/flags/flags/shiny/ico/Niue.ico new file mode 100644 index 0000000..56b0b05 Binary files /dev/null and b/flags/flags/shiny/ico/Niue.ico differ diff --git a/flags/flags/shiny/ico/Norfolk-Island.ico b/flags/flags/shiny/ico/Norfolk-Island.ico new file mode 100644 index 0000000..3f208b0 Binary files /dev/null and b/flags/flags/shiny/ico/Norfolk-Island.ico differ diff --git a/flags/flags/shiny/ico/North-Korea.ico b/flags/flags/shiny/ico/North-Korea.ico new file mode 100644 index 0000000..50e0be1 Binary files /dev/null and b/flags/flags/shiny/ico/North-Korea.ico differ diff --git a/flags/flags/shiny/ico/Northern-Cyprus.ico b/flags/flags/shiny/ico/Northern-Cyprus.ico new file mode 100644 index 0000000..c21aa42 Binary files /dev/null and b/flags/flags/shiny/ico/Northern-Cyprus.ico differ diff --git a/flags/flags/shiny/ico/Northern-Mariana-Islands.ico b/flags/flags/shiny/ico/Northern-Mariana-Islands.ico new file mode 100644 index 0000000..91ba059 Binary files /dev/null and b/flags/flags/shiny/ico/Northern-Mariana-Islands.ico differ diff --git a/flags/flags/shiny/ico/Norway.ico b/flags/flags/shiny/ico/Norway.ico new file mode 100644 index 0000000..82c636a Binary files /dev/null and b/flags/flags/shiny/ico/Norway.ico differ diff --git a/flags/flags/shiny/ico/Olympics.ico b/flags/flags/shiny/ico/Olympics.ico new file mode 100644 index 0000000..4b414cd Binary files /dev/null and b/flags/flags/shiny/ico/Olympics.ico differ diff --git a/flags/flags/shiny/ico/Oman.ico b/flags/flags/shiny/ico/Oman.ico new file mode 100644 index 0000000..a0e074b Binary files /dev/null and b/flags/flags/shiny/ico/Oman.ico differ diff --git a/flags/flags/shiny/ico/Pakistan.ico b/flags/flags/shiny/ico/Pakistan.ico new file mode 100644 index 0000000..c3aaff8 Binary files /dev/null and b/flags/flags/shiny/ico/Pakistan.ico differ diff --git a/flags/flags/shiny/ico/Palau.ico b/flags/flags/shiny/ico/Palau.ico new file mode 100644 index 0000000..5793713 Binary files /dev/null and b/flags/flags/shiny/ico/Palau.ico differ diff --git a/flags/flags/shiny/ico/Palestine.ico b/flags/flags/shiny/ico/Palestine.ico new file mode 100644 index 0000000..0ef30cc Binary files /dev/null and b/flags/flags/shiny/ico/Palestine.ico differ diff --git a/flags/flags/shiny/ico/Panama.ico b/flags/flags/shiny/ico/Panama.ico new file mode 100644 index 0000000..7a6375b Binary files /dev/null and b/flags/flags/shiny/ico/Panama.ico differ diff --git a/flags/flags/shiny/ico/Papua-New-Guinea.ico b/flags/flags/shiny/ico/Papua-New-Guinea.ico new file mode 100644 index 0000000..0901e76 Binary files /dev/null and b/flags/flags/shiny/ico/Papua-New-Guinea.ico differ diff --git a/flags/flags/shiny/ico/Paraguay.ico b/flags/flags/shiny/ico/Paraguay.ico new file mode 100644 index 0000000..410626c Binary files /dev/null and b/flags/flags/shiny/ico/Paraguay.ico differ diff --git a/flags/flags/shiny/ico/Peru.ico b/flags/flags/shiny/ico/Peru.ico new file mode 100644 index 0000000..d7693f4 Binary files /dev/null and b/flags/flags/shiny/ico/Peru.ico differ diff --git a/flags/flags/shiny/ico/Philippines.ico b/flags/flags/shiny/ico/Philippines.ico new file mode 100644 index 0000000..d66ada2 Binary files /dev/null and b/flags/flags/shiny/ico/Philippines.ico differ diff --git a/flags/flags/shiny/ico/Pitcairn-Islands.ico b/flags/flags/shiny/ico/Pitcairn-Islands.ico new file mode 100644 index 0000000..42b4cee Binary files /dev/null and b/flags/flags/shiny/ico/Pitcairn-Islands.ico differ diff --git a/flags/flags/shiny/ico/Poland.ico b/flags/flags/shiny/ico/Poland.ico new file mode 100644 index 0000000..5adfa08 Binary files /dev/null and b/flags/flags/shiny/ico/Poland.ico differ diff --git a/flags/flags/shiny/ico/Portugal.ico b/flags/flags/shiny/ico/Portugal.ico new file mode 100644 index 0000000..7a449bf Binary files /dev/null and b/flags/flags/shiny/ico/Portugal.ico differ diff --git a/flags/flags/shiny/ico/Puerto-Rico.ico b/flags/flags/shiny/ico/Puerto-Rico.ico new file mode 100644 index 0000000..2f96c61 Binary files /dev/null and b/flags/flags/shiny/ico/Puerto-Rico.ico differ diff --git a/flags/flags/shiny/ico/Qatar.ico b/flags/flags/shiny/ico/Qatar.ico new file mode 100644 index 0000000..2bb0491 Binary files /dev/null and b/flags/flags/shiny/ico/Qatar.ico differ diff --git a/flags/flags/shiny/ico/Red-Cross.ico b/flags/flags/shiny/ico/Red-Cross.ico new file mode 100644 index 0000000..a4308b8 Binary files /dev/null and b/flags/flags/shiny/ico/Red-Cross.ico differ diff --git a/flags/flags/shiny/ico/Republic-of-the-Congo.ico b/flags/flags/shiny/ico/Republic-of-the-Congo.ico new file mode 100644 index 0000000..2234962 Binary files /dev/null and b/flags/flags/shiny/ico/Republic-of-the-Congo.ico differ diff --git a/flags/flags/shiny/ico/Romania.ico b/flags/flags/shiny/ico/Romania.ico new file mode 100644 index 0000000..8e81716 Binary files /dev/null and b/flags/flags/shiny/ico/Romania.ico differ diff --git a/flags/flags/shiny/ico/Russia.ico b/flags/flags/shiny/ico/Russia.ico new file mode 100644 index 0000000..1830457 Binary files /dev/null and b/flags/flags/shiny/ico/Russia.ico differ diff --git a/flags/flags/shiny/ico/Rwanda.ico b/flags/flags/shiny/ico/Rwanda.ico new file mode 100644 index 0000000..c02338a Binary files /dev/null and b/flags/flags/shiny/ico/Rwanda.ico differ diff --git a/flags/flags/shiny/ico/Saint-Barthelemy.ico b/flags/flags/shiny/ico/Saint-Barthelemy.ico new file mode 100644 index 0000000..af749ee Binary files /dev/null and b/flags/flags/shiny/ico/Saint-Barthelemy.ico differ diff --git a/flags/flags/shiny/ico/Saint-Helena.ico b/flags/flags/shiny/ico/Saint-Helena.ico new file mode 100644 index 0000000..41a17bc Binary files /dev/null and b/flags/flags/shiny/ico/Saint-Helena.ico differ diff --git a/flags/flags/shiny/ico/Saint-Kitts-and-Nevis.ico b/flags/flags/shiny/ico/Saint-Kitts-and-Nevis.ico new file mode 100644 index 0000000..f79310d Binary files /dev/null and b/flags/flags/shiny/ico/Saint-Kitts-and-Nevis.ico differ diff --git a/flags/flags/shiny/ico/Saint-Lucia.ico b/flags/flags/shiny/ico/Saint-Lucia.ico new file mode 100644 index 0000000..c2d58d5 Binary files /dev/null and b/flags/flags/shiny/ico/Saint-Lucia.ico differ diff --git a/flags/flags/shiny/ico/Saint-Vincent-and-the-Grenadines.ico b/flags/flags/shiny/ico/Saint-Vincent-and-the-Grenadines.ico new file mode 100644 index 0000000..d11fe0f Binary files /dev/null and b/flags/flags/shiny/ico/Saint-Vincent-and-the-Grenadines.ico differ diff --git a/flags/flags/shiny/ico/Samoa.ico b/flags/flags/shiny/ico/Samoa.ico new file mode 100644 index 0000000..1d47f8d Binary files /dev/null and b/flags/flags/shiny/ico/Samoa.ico differ diff --git a/flags/flags/shiny/ico/San-Marino.ico b/flags/flags/shiny/ico/San-Marino.ico new file mode 100644 index 0000000..aa97ae0 Binary files /dev/null and b/flags/flags/shiny/ico/San-Marino.ico differ diff --git a/flags/flags/shiny/ico/Sao-Tome-and-Principe.ico b/flags/flags/shiny/ico/Sao-Tome-and-Principe.ico new file mode 100644 index 0000000..34eae8b Binary files /dev/null and b/flags/flags/shiny/ico/Sao-Tome-and-Principe.ico differ diff --git a/flags/flags/shiny/ico/Saudi-Arabia.ico b/flags/flags/shiny/ico/Saudi-Arabia.ico new file mode 100644 index 0000000..3c9d864 Binary files /dev/null and b/flags/flags/shiny/ico/Saudi-Arabia.ico differ diff --git a/flags/flags/shiny/ico/Scotland.ico b/flags/flags/shiny/ico/Scotland.ico new file mode 100644 index 0000000..c162cba Binary files /dev/null and b/flags/flags/shiny/ico/Scotland.ico differ diff --git a/flags/flags/shiny/ico/Senegal.ico b/flags/flags/shiny/ico/Senegal.ico new file mode 100644 index 0000000..789fcb0 Binary files /dev/null and b/flags/flags/shiny/ico/Senegal.ico differ diff --git a/flags/flags/shiny/ico/Serbia.ico b/flags/flags/shiny/ico/Serbia.ico new file mode 100644 index 0000000..7547101 Binary files /dev/null and b/flags/flags/shiny/ico/Serbia.ico differ diff --git a/flags/flags/shiny/ico/Seychelles.ico b/flags/flags/shiny/ico/Seychelles.ico new file mode 100644 index 0000000..2af13d6 Binary files /dev/null and b/flags/flags/shiny/ico/Seychelles.ico differ diff --git a/flags/flags/shiny/ico/Sierra-Leone.ico b/flags/flags/shiny/ico/Sierra-Leone.ico new file mode 100644 index 0000000..83d5040 Binary files /dev/null and b/flags/flags/shiny/ico/Sierra-Leone.ico differ diff --git a/flags/flags/shiny/ico/Singapore.ico b/flags/flags/shiny/ico/Singapore.ico new file mode 100644 index 0000000..4b506d5 Binary files /dev/null and b/flags/flags/shiny/ico/Singapore.ico differ diff --git a/flags/flags/shiny/ico/Slovakia.ico b/flags/flags/shiny/ico/Slovakia.ico new file mode 100644 index 0000000..3f5323e Binary files /dev/null and b/flags/flags/shiny/ico/Slovakia.ico differ diff --git a/flags/flags/shiny/ico/Slovenia.ico b/flags/flags/shiny/ico/Slovenia.ico new file mode 100644 index 0000000..06bfb8d Binary files /dev/null and b/flags/flags/shiny/ico/Slovenia.ico differ diff --git a/flags/flags/shiny/ico/Solomon-Islands.ico b/flags/flags/shiny/ico/Solomon-Islands.ico new file mode 100644 index 0000000..24a2af0 Binary files /dev/null and b/flags/flags/shiny/ico/Solomon-Islands.ico differ diff --git a/flags/flags/shiny/ico/Somalia.ico b/flags/flags/shiny/ico/Somalia.ico new file mode 100644 index 0000000..0522188 Binary files /dev/null and b/flags/flags/shiny/ico/Somalia.ico differ diff --git a/flags/flags/shiny/ico/Somaliland.ico b/flags/flags/shiny/ico/Somaliland.ico new file mode 100644 index 0000000..af967d3 Binary files /dev/null and b/flags/flags/shiny/ico/Somaliland.ico differ diff --git a/flags/flags/shiny/ico/South-Africa.ico b/flags/flags/shiny/ico/South-Africa.ico new file mode 100644 index 0000000..8938650 Binary files /dev/null and b/flags/flags/shiny/ico/South-Africa.ico differ diff --git a/flags/flags/shiny/ico/South-Georgia-and-the-South-Sandwich-Islands.ico b/flags/flags/shiny/ico/South-Georgia-and-the-South-Sandwich-Islands.ico new file mode 100644 index 0000000..e849b1d Binary files /dev/null and b/flags/flags/shiny/ico/South-Georgia-and-the-South-Sandwich-Islands.ico differ diff --git a/flags/flags/shiny/ico/South-Korea.ico b/flags/flags/shiny/ico/South-Korea.ico new file mode 100644 index 0000000..7a1fc44 Binary files /dev/null and b/flags/flags/shiny/ico/South-Korea.ico differ diff --git a/flags/flags/shiny/ico/South-Ossetia.ico b/flags/flags/shiny/ico/South-Ossetia.ico new file mode 100644 index 0000000..d885236 Binary files /dev/null and b/flags/flags/shiny/ico/South-Ossetia.ico differ diff --git a/flags/flags/shiny/ico/South-Sudan.ico b/flags/flags/shiny/ico/South-Sudan.ico new file mode 100644 index 0000000..49ca0d2 Binary files /dev/null and b/flags/flags/shiny/ico/South-Sudan.ico differ diff --git a/flags/flags/shiny/ico/Spain.ico b/flags/flags/shiny/ico/Spain.ico new file mode 100644 index 0000000..777bee2 Binary files /dev/null and b/flags/flags/shiny/ico/Spain.ico differ diff --git a/flags/flags/shiny/ico/Sri-Lanka.ico b/flags/flags/shiny/ico/Sri-Lanka.ico new file mode 100644 index 0000000..82c64f6 Binary files /dev/null and b/flags/flags/shiny/ico/Sri-Lanka.ico differ diff --git a/flags/flags/shiny/ico/Sudan.ico b/flags/flags/shiny/ico/Sudan.ico new file mode 100644 index 0000000..49185ad Binary files /dev/null and b/flags/flags/shiny/ico/Sudan.ico differ diff --git a/flags/flags/shiny/ico/Suriname.ico b/flags/flags/shiny/ico/Suriname.ico new file mode 100644 index 0000000..7445340 Binary files /dev/null and b/flags/flags/shiny/ico/Suriname.ico differ diff --git a/flags/flags/shiny/ico/Swaziland.ico b/flags/flags/shiny/ico/Swaziland.ico new file mode 100644 index 0000000..b295162 Binary files /dev/null and b/flags/flags/shiny/ico/Swaziland.ico differ diff --git a/flags/flags/shiny/ico/Sweden.ico b/flags/flags/shiny/ico/Sweden.ico new file mode 100644 index 0000000..30db06d Binary files /dev/null and b/flags/flags/shiny/ico/Sweden.ico differ diff --git a/flags/flags/shiny/ico/Switzerland.ico b/flags/flags/shiny/ico/Switzerland.ico new file mode 100644 index 0000000..0a468db Binary files /dev/null and b/flags/flags/shiny/ico/Switzerland.ico differ diff --git a/flags/flags/shiny/ico/Syria.ico b/flags/flags/shiny/ico/Syria.ico new file mode 100644 index 0000000..d99ca0e Binary files /dev/null and b/flags/flags/shiny/ico/Syria.ico differ diff --git a/flags/flags/shiny/ico/Taiwan.ico b/flags/flags/shiny/ico/Taiwan.ico new file mode 100644 index 0000000..a80ae1e Binary files /dev/null and b/flags/flags/shiny/ico/Taiwan.ico differ diff --git a/flags/flags/shiny/ico/Tajikistan.ico b/flags/flags/shiny/ico/Tajikistan.ico new file mode 100644 index 0000000..053a182 Binary files /dev/null and b/flags/flags/shiny/ico/Tajikistan.ico differ diff --git a/flags/flags/shiny/ico/Tanzania.ico b/flags/flags/shiny/ico/Tanzania.ico new file mode 100644 index 0000000..4629dbd Binary files /dev/null and b/flags/flags/shiny/ico/Tanzania.ico differ diff --git a/flags/flags/shiny/ico/Thailand.ico b/flags/flags/shiny/ico/Thailand.ico new file mode 100644 index 0000000..8dc00ae Binary files /dev/null and b/flags/flags/shiny/ico/Thailand.ico differ diff --git a/flags/flags/shiny/ico/Togo.ico b/flags/flags/shiny/ico/Togo.ico new file mode 100644 index 0000000..9f6abdc Binary files /dev/null and b/flags/flags/shiny/ico/Togo.ico differ diff --git a/flags/flags/shiny/ico/Tokelau.ico b/flags/flags/shiny/ico/Tokelau.ico new file mode 100644 index 0000000..cc3ec05 Binary files /dev/null and b/flags/flags/shiny/ico/Tokelau.ico differ diff --git a/flags/flags/shiny/ico/Tonga.ico b/flags/flags/shiny/ico/Tonga.ico new file mode 100644 index 0000000..35d166b Binary files /dev/null and b/flags/flags/shiny/ico/Tonga.ico differ diff --git a/flags/flags/shiny/ico/Trinidad-and-Tobago.ico b/flags/flags/shiny/ico/Trinidad-and-Tobago.ico new file mode 100644 index 0000000..f81807b Binary files /dev/null and b/flags/flags/shiny/ico/Trinidad-and-Tobago.ico differ diff --git a/flags/flags/shiny/ico/Tunisia.ico b/flags/flags/shiny/ico/Tunisia.ico new file mode 100644 index 0000000..eae8795 Binary files /dev/null and b/flags/flags/shiny/ico/Tunisia.ico differ diff --git a/flags/flags/shiny/ico/Turkey.ico b/flags/flags/shiny/ico/Turkey.ico new file mode 100644 index 0000000..3deac51 Binary files /dev/null and b/flags/flags/shiny/ico/Turkey.ico differ diff --git a/flags/flags/shiny/ico/Turkmenistan.ico b/flags/flags/shiny/ico/Turkmenistan.ico new file mode 100644 index 0000000..1679244 Binary files /dev/null and b/flags/flags/shiny/ico/Turkmenistan.ico differ diff --git a/flags/flags/shiny/ico/Turks-and-Caicos-Islands.ico b/flags/flags/shiny/ico/Turks-and-Caicos-Islands.ico new file mode 100644 index 0000000..e0e59c6 Binary files /dev/null and b/flags/flags/shiny/ico/Turks-and-Caicos-Islands.ico differ diff --git a/flags/flags/shiny/ico/Tuvalu.ico b/flags/flags/shiny/ico/Tuvalu.ico new file mode 100644 index 0000000..616ee79 Binary files /dev/null and b/flags/flags/shiny/ico/Tuvalu.ico differ diff --git a/flags/flags/shiny/ico/US-Virgin-Islands.ico b/flags/flags/shiny/ico/US-Virgin-Islands.ico new file mode 100644 index 0000000..e529618 Binary files /dev/null and b/flags/flags/shiny/ico/US-Virgin-Islands.ico differ diff --git a/flags/flags/shiny/ico/Uganda.ico b/flags/flags/shiny/ico/Uganda.ico new file mode 100644 index 0000000..ac7f3f0 Binary files /dev/null and b/flags/flags/shiny/ico/Uganda.ico differ diff --git a/flags/flags/shiny/ico/Ukraine.ico b/flags/flags/shiny/ico/Ukraine.ico new file mode 100644 index 0000000..53da046 Binary files /dev/null and b/flags/flags/shiny/ico/Ukraine.ico differ diff --git a/flags/flags/shiny/ico/United-Arab-Emirates.ico b/flags/flags/shiny/ico/United-Arab-Emirates.ico new file mode 100644 index 0000000..773c496 Binary files /dev/null and b/flags/flags/shiny/ico/United-Arab-Emirates.ico differ diff --git a/flags/flags/shiny/ico/United-Kingdom.ico b/flags/flags/shiny/ico/United-Kingdom.ico new file mode 100644 index 0000000..cf8c2e7 Binary files /dev/null and b/flags/flags/shiny/ico/United-Kingdom.ico differ diff --git a/flags/flags/shiny/ico/United-Nations.ico b/flags/flags/shiny/ico/United-Nations.ico new file mode 100644 index 0000000..41d5a4c Binary files /dev/null and b/flags/flags/shiny/ico/United-Nations.ico differ diff --git a/flags/flags/shiny/ico/United-States.ico b/flags/flags/shiny/ico/United-States.ico new file mode 100644 index 0000000..a6f9008 Binary files /dev/null and b/flags/flags/shiny/ico/United-States.ico differ diff --git a/flags/flags/shiny/ico/Uruguay.ico b/flags/flags/shiny/ico/Uruguay.ico new file mode 100644 index 0000000..990524f Binary files /dev/null and b/flags/flags/shiny/ico/Uruguay.ico differ diff --git a/flags/flags/shiny/ico/Uzbekistan.ico b/flags/flags/shiny/ico/Uzbekistan.ico new file mode 100644 index 0000000..c7d4563 Binary files /dev/null and b/flags/flags/shiny/ico/Uzbekistan.ico differ diff --git a/flags/flags/shiny/ico/Vanuatu.ico b/flags/flags/shiny/ico/Vanuatu.ico new file mode 100644 index 0000000..d461ba5 Binary files /dev/null and b/flags/flags/shiny/ico/Vanuatu.ico differ diff --git a/flags/flags/shiny/ico/Vatican-City.ico b/flags/flags/shiny/ico/Vatican-City.ico new file mode 100644 index 0000000..c21c23a Binary files /dev/null and b/flags/flags/shiny/ico/Vatican-City.ico differ diff --git a/flags/flags/shiny/ico/Venezuela.ico b/flags/flags/shiny/ico/Venezuela.ico new file mode 100644 index 0000000..a6d5eae Binary files /dev/null and b/flags/flags/shiny/ico/Venezuela.ico differ diff --git a/flags/flags/shiny/ico/Vietnam.ico b/flags/flags/shiny/ico/Vietnam.ico new file mode 100644 index 0000000..fc1e77c Binary files /dev/null and b/flags/flags/shiny/ico/Vietnam.ico differ diff --git a/flags/flags/shiny/ico/Wales.ico b/flags/flags/shiny/ico/Wales.ico new file mode 100644 index 0000000..c50192b Binary files /dev/null and b/flags/flags/shiny/ico/Wales.ico differ diff --git a/flags/flags/shiny/ico/Wallis-And-Futuna.ico b/flags/flags/shiny/ico/Wallis-And-Futuna.ico new file mode 100644 index 0000000..bb63b1f Binary files /dev/null and b/flags/flags/shiny/ico/Wallis-And-Futuna.ico differ diff --git a/flags/flags/shiny/ico/Western-Sahara.ico b/flags/flags/shiny/ico/Western-Sahara.ico new file mode 100644 index 0000000..648563f Binary files /dev/null and b/flags/flags/shiny/ico/Western-Sahara.ico differ diff --git a/flags/flags/shiny/ico/Yemen.ico b/flags/flags/shiny/ico/Yemen.ico new file mode 100644 index 0000000..068f37a Binary files /dev/null and b/flags/flags/shiny/ico/Yemen.ico differ diff --git a/flags/flags/shiny/ico/Zambia.ico b/flags/flags/shiny/ico/Zambia.ico new file mode 100644 index 0000000..721221b Binary files /dev/null and b/flags/flags/shiny/ico/Zambia.ico differ diff --git a/flags/flags/shiny/ico/Zimbabwe.ico b/flags/flags/shiny/ico/Zimbabwe.ico new file mode 100644 index 0000000..bb69496 Binary files /dev/null and b/flags/flags/shiny/ico/Zimbabwe.ico differ diff --git a/src/flags/Abkhazia/16.png b/src/flags/Abkhazia/16.png new file mode 100644 index 0000000..ada1c36 Binary files /dev/null and b/src/flags/Abkhazia/16.png differ diff --git a/src/flags/Abkhazia/24.png b/src/flags/Abkhazia/24.png new file mode 100644 index 0000000..fa5eec8 Binary files /dev/null and b/src/flags/Abkhazia/24.png differ diff --git a/src/flags/Abkhazia/32.png b/src/flags/Abkhazia/32.png new file mode 100644 index 0000000..f7afbf3 Binary files /dev/null and b/src/flags/Abkhazia/32.png differ diff --git a/src/flags/Abkhazia/48.png b/src/flags/Abkhazia/48.png new file mode 100644 index 0000000..f8d9ce7 Binary files /dev/null and b/src/flags/Abkhazia/48.png differ diff --git a/src/flags/Abkhazia/64.png b/src/flags/Abkhazia/64.png new file mode 100644 index 0000000..5510dcb Binary files /dev/null and b/src/flags/Abkhazia/64.png differ diff --git a/src/flags/Abkhazia/code b/src/flags/Abkhazia/code new file mode 100644 index 0000000..19e5412 --- /dev/null +++ b/src/flags/Abkhazia/code @@ -0,0 +1 @@ +_abkhazia \ No newline at end of file diff --git a/src/flags/Afghanistan/16.png b/src/flags/Afghanistan/16.png new file mode 100644 index 0000000..6943645 Binary files /dev/null and b/src/flags/Afghanistan/16.png differ diff --git a/src/flags/Afghanistan/24.png b/src/flags/Afghanistan/24.png new file mode 100644 index 0000000..29cff58 Binary files /dev/null and b/src/flags/Afghanistan/24.png differ diff --git a/src/flags/Afghanistan/32.png b/src/flags/Afghanistan/32.png new file mode 100644 index 0000000..a44d63f Binary files /dev/null and b/src/flags/Afghanistan/32.png differ diff --git a/src/flags/Afghanistan/48.png b/src/flags/Afghanistan/48.png new file mode 100644 index 0000000..a2227d0 Binary files /dev/null and b/src/flags/Afghanistan/48.png differ diff --git a/src/flags/Afghanistan/64.png b/src/flags/Afghanistan/64.png new file mode 100644 index 0000000..1b1ffdf Binary files /dev/null and b/src/flags/Afghanistan/64.png differ diff --git a/src/flags/Afghanistan/code b/src/flags/Afghanistan/code new file mode 100644 index 0000000..f77fc73 --- /dev/null +++ b/src/flags/Afghanistan/code @@ -0,0 +1 @@ +AF \ No newline at end of file diff --git a/src/flags/Aland/16.png b/src/flags/Aland/16.png new file mode 100644 index 0000000..dc7df5a Binary files /dev/null and b/src/flags/Aland/16.png differ diff --git a/src/flags/Aland/24.png b/src/flags/Aland/24.png new file mode 100644 index 0000000..3aa943b Binary files /dev/null and b/src/flags/Aland/24.png differ diff --git a/src/flags/Aland/32.png b/src/flags/Aland/32.png new file mode 100644 index 0000000..927f984 Binary files /dev/null and b/src/flags/Aland/32.png differ diff --git a/src/flags/Aland/48.png b/src/flags/Aland/48.png new file mode 100644 index 0000000..a18b1f6 Binary files /dev/null and b/src/flags/Aland/48.png differ diff --git a/src/flags/Aland/64.png b/src/flags/Aland/64.png new file mode 100644 index 0000000..74efdbe Binary files /dev/null and b/src/flags/Aland/64.png differ diff --git a/src/flags/Aland/code b/src/flags/Aland/code new file mode 100644 index 0000000..3a06d18 --- /dev/null +++ b/src/flags/Aland/code @@ -0,0 +1 @@ +AX \ No newline at end of file diff --git a/src/flags/Albania/16.png b/src/flags/Albania/16.png new file mode 100644 index 0000000..e5d830b Binary files /dev/null and b/src/flags/Albania/16.png differ diff --git a/src/flags/Albania/24.png b/src/flags/Albania/24.png new file mode 100644 index 0000000..7622b69 Binary files /dev/null and b/src/flags/Albania/24.png differ diff --git a/src/flags/Albania/32.png b/src/flags/Albania/32.png new file mode 100644 index 0000000..5b45a26 Binary files /dev/null and b/src/flags/Albania/32.png differ diff --git a/src/flags/Albania/48.png b/src/flags/Albania/48.png new file mode 100644 index 0000000..0b5d7cf Binary files /dev/null and b/src/flags/Albania/48.png differ diff --git a/src/flags/Albania/64.png b/src/flags/Albania/64.png new file mode 100644 index 0000000..d7e5e23 Binary files /dev/null and b/src/flags/Albania/64.png differ diff --git a/src/flags/Albania/code b/src/flags/Albania/code new file mode 100644 index 0000000..62fec3c --- /dev/null +++ b/src/flags/Albania/code @@ -0,0 +1 @@ +AL \ No newline at end of file diff --git a/src/flags/Algeria/16.png b/src/flags/Algeria/16.png new file mode 100644 index 0000000..5d13b35 Binary files /dev/null and b/src/flags/Algeria/16.png differ diff --git a/src/flags/Algeria/24.png b/src/flags/Algeria/24.png new file mode 100644 index 0000000..5b5e364 Binary files /dev/null and b/src/flags/Algeria/24.png differ diff --git a/src/flags/Algeria/32.png b/src/flags/Algeria/32.png new file mode 100644 index 0000000..ba95d2d Binary files /dev/null and b/src/flags/Algeria/32.png differ diff --git a/src/flags/Algeria/48.png b/src/flags/Algeria/48.png new file mode 100644 index 0000000..7bafa4b Binary files /dev/null and b/src/flags/Algeria/48.png differ diff --git a/src/flags/Algeria/64.png b/src/flags/Algeria/64.png new file mode 100644 index 0000000..4c1d5db Binary files /dev/null and b/src/flags/Algeria/64.png differ diff --git a/src/flags/Algeria/code b/src/flags/Algeria/code new file mode 100644 index 0000000..23fde37 --- /dev/null +++ b/src/flags/Algeria/code @@ -0,0 +1 @@ +DZ \ No newline at end of file diff --git a/src/flags/American-Samoa/16.png b/src/flags/American-Samoa/16.png new file mode 100644 index 0000000..d7071d8 Binary files /dev/null and b/src/flags/American-Samoa/16.png differ diff --git a/src/flags/American-Samoa/24.png b/src/flags/American-Samoa/24.png new file mode 100644 index 0000000..e633973 Binary files /dev/null and b/src/flags/American-Samoa/24.png differ diff --git a/src/flags/American-Samoa/32.png b/src/flags/American-Samoa/32.png new file mode 100644 index 0000000..00d57da Binary files /dev/null and b/src/flags/American-Samoa/32.png differ diff --git a/src/flags/American-Samoa/48.png b/src/flags/American-Samoa/48.png new file mode 100644 index 0000000..1fa4eb4 Binary files /dev/null and b/src/flags/American-Samoa/48.png differ diff --git a/src/flags/American-Samoa/64.png b/src/flags/American-Samoa/64.png new file mode 100644 index 0000000..96e3313 Binary files /dev/null and b/src/flags/American-Samoa/64.png differ diff --git a/src/flags/American-Samoa/code b/src/flags/American-Samoa/code new file mode 100644 index 0000000..77fe2e2 --- /dev/null +++ b/src/flags/American-Samoa/code @@ -0,0 +1 @@ +AS \ No newline at end of file diff --git a/src/flags/Andorra/16.png b/src/flags/Andorra/16.png new file mode 100644 index 0000000..bd8e796 Binary files /dev/null and b/src/flags/Andorra/16.png differ diff --git a/src/flags/Andorra/24.png b/src/flags/Andorra/24.png new file mode 100644 index 0000000..0e01e69 Binary files /dev/null and b/src/flags/Andorra/24.png differ diff --git a/src/flags/Andorra/32.png b/src/flags/Andorra/32.png new file mode 100644 index 0000000..ad21171 Binary files /dev/null and b/src/flags/Andorra/32.png differ diff --git a/src/flags/Andorra/48.png b/src/flags/Andorra/48.png new file mode 100644 index 0000000..ae2b115 Binary files /dev/null and b/src/flags/Andorra/48.png differ diff --git a/src/flags/Andorra/64.png b/src/flags/Andorra/64.png new file mode 100644 index 0000000..939e25c Binary files /dev/null and b/src/flags/Andorra/64.png differ diff --git a/src/flags/Andorra/code b/src/flags/Andorra/code new file mode 100644 index 0000000..88426ac --- /dev/null +++ b/src/flags/Andorra/code @@ -0,0 +1 @@ +AD \ No newline at end of file diff --git a/src/flags/Angola/16.png b/src/flags/Angola/16.png new file mode 100644 index 0000000..6c6cca5 Binary files /dev/null and b/src/flags/Angola/16.png differ diff --git a/src/flags/Angola/24.png b/src/flags/Angola/24.png new file mode 100644 index 0000000..8249a58 Binary files /dev/null and b/src/flags/Angola/24.png differ diff --git a/src/flags/Angola/32.png b/src/flags/Angola/32.png new file mode 100644 index 0000000..40a40b2 Binary files /dev/null and b/src/flags/Angola/32.png differ diff --git a/src/flags/Angola/48.png b/src/flags/Angola/48.png new file mode 100644 index 0000000..7733af6 Binary files /dev/null and b/src/flags/Angola/48.png differ diff --git a/src/flags/Angola/64.png b/src/flags/Angola/64.png new file mode 100644 index 0000000..aa3baee Binary files /dev/null and b/src/flags/Angola/64.png differ diff --git a/src/flags/Angola/code b/src/flags/Angola/code new file mode 100644 index 0000000..ff1a7e4 --- /dev/null +++ b/src/flags/Angola/code @@ -0,0 +1 @@ +AO \ No newline at end of file diff --git a/src/flags/Anguilla/16.png b/src/flags/Anguilla/16.png new file mode 100644 index 0000000..2c7fd69 Binary files /dev/null and b/src/flags/Anguilla/16.png differ diff --git a/src/flags/Anguilla/24.png b/src/flags/Anguilla/24.png new file mode 100644 index 0000000..dca1e96 Binary files /dev/null and b/src/flags/Anguilla/24.png differ diff --git a/src/flags/Anguilla/32.png b/src/flags/Anguilla/32.png new file mode 100644 index 0000000..ba3ad7b Binary files /dev/null and b/src/flags/Anguilla/32.png differ diff --git a/src/flags/Anguilla/48.png b/src/flags/Anguilla/48.png new file mode 100644 index 0000000..d3e1f63 Binary files /dev/null and b/src/flags/Anguilla/48.png differ diff --git a/src/flags/Anguilla/64.png b/src/flags/Anguilla/64.png new file mode 100644 index 0000000..8788437 Binary files /dev/null and b/src/flags/Anguilla/64.png differ diff --git a/src/flags/Anguilla/code b/src/flags/Anguilla/code new file mode 100644 index 0000000..59a114e --- /dev/null +++ b/src/flags/Anguilla/code @@ -0,0 +1 @@ +AI \ No newline at end of file diff --git a/src/flags/Antarctica/16.png b/src/flags/Antarctica/16.png new file mode 100644 index 0000000..4544ac8 Binary files /dev/null and b/src/flags/Antarctica/16.png differ diff --git a/src/flags/Antarctica/24.png b/src/flags/Antarctica/24.png new file mode 100644 index 0000000..5b6693b Binary files /dev/null and b/src/flags/Antarctica/24.png differ diff --git a/src/flags/Antarctica/32.png b/src/flags/Antarctica/32.png new file mode 100644 index 0000000..588a229 Binary files /dev/null and b/src/flags/Antarctica/32.png differ diff --git a/src/flags/Antarctica/48.png b/src/flags/Antarctica/48.png new file mode 100644 index 0000000..c2e71be Binary files /dev/null and b/src/flags/Antarctica/48.png differ diff --git a/src/flags/Antarctica/64.png b/src/flags/Antarctica/64.png new file mode 100644 index 0000000..d26c7cf Binary files /dev/null and b/src/flags/Antarctica/64.png differ diff --git a/src/flags/Antarctica/code b/src/flags/Antarctica/code new file mode 100644 index 0000000..02b33c7 --- /dev/null +++ b/src/flags/Antarctica/code @@ -0,0 +1 @@ +AQ \ No newline at end of file diff --git a/src/flags/Antigua-and-Barbuda/16.png b/src/flags/Antigua-and-Barbuda/16.png new file mode 100644 index 0000000..7b95220 Binary files /dev/null and b/src/flags/Antigua-and-Barbuda/16.png differ diff --git a/src/flags/Antigua-and-Barbuda/24.png b/src/flags/Antigua-and-Barbuda/24.png new file mode 100644 index 0000000..1637e02 Binary files /dev/null and b/src/flags/Antigua-and-Barbuda/24.png differ diff --git a/src/flags/Antigua-and-Barbuda/32.png b/src/flags/Antigua-and-Barbuda/32.png new file mode 100644 index 0000000..a0fc530 Binary files /dev/null and b/src/flags/Antigua-and-Barbuda/32.png differ diff --git a/src/flags/Antigua-and-Barbuda/48.png b/src/flags/Antigua-and-Barbuda/48.png new file mode 100644 index 0000000..a8c3676 Binary files /dev/null and b/src/flags/Antigua-and-Barbuda/48.png differ diff --git a/src/flags/Antigua-and-Barbuda/64.png b/src/flags/Antigua-and-Barbuda/64.png new file mode 100644 index 0000000..7c9b1aa Binary files /dev/null and b/src/flags/Antigua-and-Barbuda/64.png differ diff --git a/src/flags/Antigua-and-Barbuda/code b/src/flags/Antigua-and-Barbuda/code new file mode 100644 index 0000000..79e7f1c --- /dev/null +++ b/src/flags/Antigua-and-Barbuda/code @@ -0,0 +1 @@ +AG \ No newline at end of file diff --git a/src/flags/Argentina/16.png b/src/flags/Argentina/16.png new file mode 100644 index 0000000..612fd97 Binary files /dev/null and b/src/flags/Argentina/16.png differ diff --git a/src/flags/Argentina/24.png b/src/flags/Argentina/24.png new file mode 100644 index 0000000..24ae9bd Binary files /dev/null and b/src/flags/Argentina/24.png differ diff --git a/src/flags/Argentina/32.png b/src/flags/Argentina/32.png new file mode 100644 index 0000000..6df8ff3 Binary files /dev/null and b/src/flags/Argentina/32.png differ diff --git a/src/flags/Argentina/48.png b/src/flags/Argentina/48.png new file mode 100644 index 0000000..fbe9173 Binary files /dev/null and b/src/flags/Argentina/48.png differ diff --git a/src/flags/Argentina/64.png b/src/flags/Argentina/64.png new file mode 100644 index 0000000..31a72a3 Binary files /dev/null and b/src/flags/Argentina/64.png differ diff --git a/src/flags/Argentina/code b/src/flags/Argentina/code new file mode 100644 index 0000000..7c6f0b3 --- /dev/null +++ b/src/flags/Argentina/code @@ -0,0 +1 @@ +AR \ No newline at end of file diff --git a/src/flags/Armenia/16.png b/src/flags/Armenia/16.png new file mode 100644 index 0000000..6f1e49a Binary files /dev/null and b/src/flags/Armenia/16.png differ diff --git a/src/flags/Armenia/24.png b/src/flags/Armenia/24.png new file mode 100644 index 0000000..41b7d98 Binary files /dev/null and b/src/flags/Armenia/24.png differ diff --git a/src/flags/Armenia/32.png b/src/flags/Armenia/32.png new file mode 100644 index 0000000..898926a Binary files /dev/null and b/src/flags/Armenia/32.png differ diff --git a/src/flags/Armenia/48.png b/src/flags/Armenia/48.png new file mode 100644 index 0000000..1743937 Binary files /dev/null and b/src/flags/Armenia/48.png differ diff --git a/src/flags/Armenia/64.png b/src/flags/Armenia/64.png new file mode 100644 index 0000000..a327264 Binary files /dev/null and b/src/flags/Armenia/64.png differ diff --git a/src/flags/Armenia/code b/src/flags/Armenia/code new file mode 100644 index 0000000..e54f36f --- /dev/null +++ b/src/flags/Armenia/code @@ -0,0 +1 @@ +AM \ No newline at end of file diff --git a/src/flags/Aruba/16.png b/src/flags/Aruba/16.png new file mode 100644 index 0000000..944aa8f Binary files /dev/null and b/src/flags/Aruba/16.png differ diff --git a/src/flags/Aruba/24.png b/src/flags/Aruba/24.png new file mode 100644 index 0000000..7a2f53c Binary files /dev/null and b/src/flags/Aruba/24.png differ diff --git a/src/flags/Aruba/32.png b/src/flags/Aruba/32.png new file mode 100644 index 0000000..1d14e27 Binary files /dev/null and b/src/flags/Aruba/32.png differ diff --git a/src/flags/Aruba/48.png b/src/flags/Aruba/48.png new file mode 100644 index 0000000..ea043a0 Binary files /dev/null and b/src/flags/Aruba/48.png differ diff --git a/src/flags/Aruba/64.png b/src/flags/Aruba/64.png new file mode 100644 index 0000000..2d7c171 Binary files /dev/null and b/src/flags/Aruba/64.png differ diff --git a/src/flags/Aruba/code b/src/flags/Aruba/code new file mode 100644 index 0000000..392d12f --- /dev/null +++ b/src/flags/Aruba/code @@ -0,0 +1 @@ +AW \ No newline at end of file diff --git a/src/flags/Australia/16.png b/src/flags/Australia/16.png new file mode 100644 index 0000000..8692779 Binary files /dev/null and b/src/flags/Australia/16.png differ diff --git a/src/flags/Australia/24.png b/src/flags/Australia/24.png new file mode 100644 index 0000000..96c8c06 Binary files /dev/null and b/src/flags/Australia/24.png differ diff --git a/src/flags/Australia/32.png b/src/flags/Australia/32.png new file mode 100644 index 0000000..060413d Binary files /dev/null and b/src/flags/Australia/32.png differ diff --git a/src/flags/Australia/48.png b/src/flags/Australia/48.png new file mode 100644 index 0000000..1c9f8fb Binary files /dev/null and b/src/flags/Australia/48.png differ diff --git a/src/flags/Australia/64.png b/src/flags/Australia/64.png new file mode 100644 index 0000000..4a314c8 Binary files /dev/null and b/src/flags/Australia/64.png differ diff --git a/src/flags/Australia/code b/src/flags/Australia/code new file mode 100644 index 0000000..aeebcd6 --- /dev/null +++ b/src/flags/Australia/code @@ -0,0 +1 @@ +AU \ No newline at end of file diff --git a/src/flags/Austria/16.png b/src/flags/Austria/16.png new file mode 100644 index 0000000..aadc242 Binary files /dev/null and b/src/flags/Austria/16.png differ diff --git a/src/flags/Austria/24.png b/src/flags/Austria/24.png new file mode 100644 index 0000000..d19ea48 Binary files /dev/null and b/src/flags/Austria/24.png differ diff --git a/src/flags/Austria/32.png b/src/flags/Austria/32.png new file mode 100644 index 0000000..4e18345 Binary files /dev/null and b/src/flags/Austria/32.png differ diff --git a/src/flags/Austria/48.png b/src/flags/Austria/48.png new file mode 100644 index 0000000..dac2185 Binary files /dev/null and b/src/flags/Austria/48.png differ diff --git a/src/flags/Austria/64.png b/src/flags/Austria/64.png new file mode 100644 index 0000000..b67f231 Binary files /dev/null and b/src/flags/Austria/64.png differ diff --git a/src/flags/Austria/code b/src/flags/Austria/code new file mode 100644 index 0000000..1619e4a --- /dev/null +++ b/src/flags/Austria/code @@ -0,0 +1 @@ +AT \ No newline at end of file diff --git a/src/flags/Azerbaijan/16.png b/src/flags/Azerbaijan/16.png new file mode 100644 index 0000000..254bc05 Binary files /dev/null and b/src/flags/Azerbaijan/16.png differ diff --git a/src/flags/Azerbaijan/24.png b/src/flags/Azerbaijan/24.png new file mode 100644 index 0000000..601a035 Binary files /dev/null and b/src/flags/Azerbaijan/24.png differ diff --git a/src/flags/Azerbaijan/32.png b/src/flags/Azerbaijan/32.png new file mode 100644 index 0000000..dd2ff4c Binary files /dev/null and b/src/flags/Azerbaijan/32.png differ diff --git a/src/flags/Azerbaijan/48.png b/src/flags/Azerbaijan/48.png new file mode 100644 index 0000000..4fc69ef Binary files /dev/null and b/src/flags/Azerbaijan/48.png differ diff --git a/src/flags/Azerbaijan/64.png b/src/flags/Azerbaijan/64.png new file mode 100644 index 0000000..8711af1 Binary files /dev/null and b/src/flags/Azerbaijan/64.png differ diff --git a/src/flags/Azerbaijan/code b/src/flags/Azerbaijan/code new file mode 100644 index 0000000..1c86530 --- /dev/null +++ b/src/flags/Azerbaijan/code @@ -0,0 +1 @@ +AZ \ No newline at end of file diff --git a/src/flags/Bahamas/16.png b/src/flags/Bahamas/16.png new file mode 100644 index 0000000..4d83cc1 Binary files /dev/null and b/src/flags/Bahamas/16.png differ diff --git a/src/flags/Bahamas/24.png b/src/flags/Bahamas/24.png new file mode 100644 index 0000000..8071edd Binary files /dev/null and b/src/flags/Bahamas/24.png differ diff --git a/src/flags/Bahamas/32.png b/src/flags/Bahamas/32.png new file mode 100644 index 0000000..8f5a7d3 Binary files /dev/null and b/src/flags/Bahamas/32.png differ diff --git a/src/flags/Bahamas/48.png b/src/flags/Bahamas/48.png new file mode 100644 index 0000000..7a5c800 Binary files /dev/null and b/src/flags/Bahamas/48.png differ diff --git a/src/flags/Bahamas/64.png b/src/flags/Bahamas/64.png new file mode 100644 index 0000000..791840c Binary files /dev/null and b/src/flags/Bahamas/64.png differ diff --git a/src/flags/Bahamas/code b/src/flags/Bahamas/code new file mode 100644 index 0000000..9862dcb --- /dev/null +++ b/src/flags/Bahamas/code @@ -0,0 +1 @@ +BS \ No newline at end of file diff --git a/src/flags/Bahrain/16.png b/src/flags/Bahrain/16.png new file mode 100644 index 0000000..932701b Binary files /dev/null and b/src/flags/Bahrain/16.png differ diff --git a/src/flags/Bahrain/24.png b/src/flags/Bahrain/24.png new file mode 100644 index 0000000..353bb18 Binary files /dev/null and b/src/flags/Bahrain/24.png differ diff --git a/src/flags/Bahrain/32.png b/src/flags/Bahrain/32.png new file mode 100644 index 0000000..b13fcc0 Binary files /dev/null and b/src/flags/Bahrain/32.png differ diff --git a/src/flags/Bahrain/48.png b/src/flags/Bahrain/48.png new file mode 100644 index 0000000..c1a8a8e Binary files /dev/null and b/src/flags/Bahrain/48.png differ diff --git a/src/flags/Bahrain/64.png b/src/flags/Bahrain/64.png new file mode 100644 index 0000000..84b54b5 Binary files /dev/null and b/src/flags/Bahrain/64.png differ diff --git a/src/flags/Bahrain/code b/src/flags/Bahrain/code new file mode 100644 index 0000000..da985e5 --- /dev/null +++ b/src/flags/Bahrain/code @@ -0,0 +1 @@ +BH \ No newline at end of file diff --git a/src/flags/Bangladesh/16.png b/src/flags/Bangladesh/16.png new file mode 100644 index 0000000..e148309 Binary files /dev/null and b/src/flags/Bangladesh/16.png differ diff --git a/src/flags/Bangladesh/24.png b/src/flags/Bangladesh/24.png new file mode 100644 index 0000000..20afdaa Binary files /dev/null and b/src/flags/Bangladesh/24.png differ diff --git a/src/flags/Bangladesh/32.png b/src/flags/Bangladesh/32.png new file mode 100644 index 0000000..b561b24 Binary files /dev/null and b/src/flags/Bangladesh/32.png differ diff --git a/src/flags/Bangladesh/48.png b/src/flags/Bangladesh/48.png new file mode 100644 index 0000000..911c15b Binary files /dev/null and b/src/flags/Bangladesh/48.png differ diff --git a/src/flags/Bangladesh/64.png b/src/flags/Bangladesh/64.png new file mode 100644 index 0000000..330354e Binary files /dev/null and b/src/flags/Bangladesh/64.png differ diff --git a/src/flags/Bangladesh/code b/src/flags/Bangladesh/code new file mode 100644 index 0000000..ad5c276 --- /dev/null +++ b/src/flags/Bangladesh/code @@ -0,0 +1 @@ +BD \ No newline at end of file diff --git a/src/flags/Barbados/16.png b/src/flags/Barbados/16.png new file mode 100644 index 0000000..589f58f Binary files /dev/null and b/src/flags/Barbados/16.png differ diff --git a/src/flags/Barbados/24.png b/src/flags/Barbados/24.png new file mode 100644 index 0000000..f94ba8d Binary files /dev/null and b/src/flags/Barbados/24.png differ diff --git a/src/flags/Barbados/32.png b/src/flags/Barbados/32.png new file mode 100644 index 0000000..5abf9e3 Binary files /dev/null and b/src/flags/Barbados/32.png differ diff --git a/src/flags/Barbados/48.png b/src/flags/Barbados/48.png new file mode 100644 index 0000000..87b822e Binary files /dev/null and b/src/flags/Barbados/48.png differ diff --git a/src/flags/Barbados/64.png b/src/flags/Barbados/64.png new file mode 100644 index 0000000..4455eff Binary files /dev/null and b/src/flags/Barbados/64.png differ diff --git a/src/flags/Barbados/code b/src/flags/Barbados/code new file mode 100644 index 0000000..080f8fb --- /dev/null +++ b/src/flags/Barbados/code @@ -0,0 +1 @@ +BB \ No newline at end of file diff --git a/src/flags/Belarus/16.png b/src/flags/Belarus/16.png new file mode 100644 index 0000000..4725b9c Binary files /dev/null and b/src/flags/Belarus/16.png differ diff --git a/src/flags/Belarus/24.png b/src/flags/Belarus/24.png new file mode 100644 index 0000000..84769e2 Binary files /dev/null and b/src/flags/Belarus/24.png differ diff --git a/src/flags/Belarus/32.png b/src/flags/Belarus/32.png new file mode 100644 index 0000000..4bce243 Binary files /dev/null and b/src/flags/Belarus/32.png differ diff --git a/src/flags/Belarus/48.png b/src/flags/Belarus/48.png new file mode 100644 index 0000000..1ad27ac Binary files /dev/null and b/src/flags/Belarus/48.png differ diff --git a/src/flags/Belarus/64.png b/src/flags/Belarus/64.png new file mode 100644 index 0000000..5154502 Binary files /dev/null and b/src/flags/Belarus/64.png differ diff --git a/src/flags/Belarus/code b/src/flags/Belarus/code new file mode 100644 index 0000000..6fb3b62 --- /dev/null +++ b/src/flags/Belarus/code @@ -0,0 +1 @@ +BY \ No newline at end of file diff --git a/src/flags/Belgium/16.png b/src/flags/Belgium/16.png new file mode 100644 index 0000000..ee0550f Binary files /dev/null and b/src/flags/Belgium/16.png differ diff --git a/src/flags/Belgium/24.png b/src/flags/Belgium/24.png new file mode 100644 index 0000000..2d1a076 Binary files /dev/null and b/src/flags/Belgium/24.png differ diff --git a/src/flags/Belgium/32.png b/src/flags/Belgium/32.png new file mode 100644 index 0000000..f67c27e Binary files /dev/null and b/src/flags/Belgium/32.png differ diff --git a/src/flags/Belgium/48.png b/src/flags/Belgium/48.png new file mode 100644 index 0000000..8c20631 Binary files /dev/null and b/src/flags/Belgium/48.png differ diff --git a/src/flags/Belgium/64.png b/src/flags/Belgium/64.png new file mode 100644 index 0000000..dd04abd Binary files /dev/null and b/src/flags/Belgium/64.png differ diff --git a/src/flags/Belgium/code b/src/flags/Belgium/code new file mode 100644 index 0000000..adc8338 --- /dev/null +++ b/src/flags/Belgium/code @@ -0,0 +1 @@ +BE \ No newline at end of file diff --git a/src/flags/Belize/16.png b/src/flags/Belize/16.png new file mode 100644 index 0000000..1c47415 Binary files /dev/null and b/src/flags/Belize/16.png differ diff --git a/src/flags/Belize/24.png b/src/flags/Belize/24.png new file mode 100644 index 0000000..5f18bc8 Binary files /dev/null and b/src/flags/Belize/24.png differ diff --git a/src/flags/Belize/32.png b/src/flags/Belize/32.png new file mode 100644 index 0000000..9cc04bc Binary files /dev/null and b/src/flags/Belize/32.png differ diff --git a/src/flags/Belize/48.png b/src/flags/Belize/48.png new file mode 100644 index 0000000..e170517 Binary files /dev/null and b/src/flags/Belize/48.png differ diff --git a/src/flags/Belize/64.png b/src/flags/Belize/64.png new file mode 100644 index 0000000..a0a806a Binary files /dev/null and b/src/flags/Belize/64.png differ diff --git a/src/flags/Belize/code b/src/flags/Belize/code new file mode 100644 index 0000000..1d6eb7a --- /dev/null +++ b/src/flags/Belize/code @@ -0,0 +1 @@ +BZ \ No newline at end of file diff --git a/src/flags/Benin/16.png b/src/flags/Benin/16.png new file mode 100644 index 0000000..31a41f0 Binary files /dev/null and b/src/flags/Benin/16.png differ diff --git a/src/flags/Benin/24.png b/src/flags/Benin/24.png new file mode 100644 index 0000000..620b95d Binary files /dev/null and b/src/flags/Benin/24.png differ diff --git a/src/flags/Benin/32.png b/src/flags/Benin/32.png new file mode 100644 index 0000000..2ea50ab Binary files /dev/null and b/src/flags/Benin/32.png differ diff --git a/src/flags/Benin/48.png b/src/flags/Benin/48.png new file mode 100644 index 0000000..0139620 Binary files /dev/null and b/src/flags/Benin/48.png differ diff --git a/src/flags/Benin/64.png b/src/flags/Benin/64.png new file mode 100644 index 0000000..4c9155b Binary files /dev/null and b/src/flags/Benin/64.png differ diff --git a/src/flags/Benin/code b/src/flags/Benin/code new file mode 100644 index 0000000..e889c72 --- /dev/null +++ b/src/flags/Benin/code @@ -0,0 +1 @@ +BJ \ No newline at end of file diff --git a/src/flags/Bermuda/16.png b/src/flags/Bermuda/16.png new file mode 100644 index 0000000..d2ec7c5 Binary files /dev/null and b/src/flags/Bermuda/16.png differ diff --git a/src/flags/Bermuda/24.png b/src/flags/Bermuda/24.png new file mode 100644 index 0000000..f5b8cd8 Binary files /dev/null and b/src/flags/Bermuda/24.png differ diff --git a/src/flags/Bermuda/32.png b/src/flags/Bermuda/32.png new file mode 100644 index 0000000..3fc4f8b Binary files /dev/null and b/src/flags/Bermuda/32.png differ diff --git a/src/flags/Bermuda/48.png b/src/flags/Bermuda/48.png new file mode 100644 index 0000000..83a2060 Binary files /dev/null and b/src/flags/Bermuda/48.png differ diff --git a/src/flags/Bermuda/64.png b/src/flags/Bermuda/64.png new file mode 100644 index 0000000..5132859 Binary files /dev/null and b/src/flags/Bermuda/64.png differ diff --git a/src/flags/Bermuda/code b/src/flags/Bermuda/code new file mode 100644 index 0000000..1a9cab1 --- /dev/null +++ b/src/flags/Bermuda/code @@ -0,0 +1 @@ +BM \ No newline at end of file diff --git a/src/flags/Bhutan/16.png b/src/flags/Bhutan/16.png new file mode 100644 index 0000000..a6d8a56 Binary files /dev/null and b/src/flags/Bhutan/16.png differ diff --git a/src/flags/Bhutan/24.png b/src/flags/Bhutan/24.png new file mode 100644 index 0000000..36823fd Binary files /dev/null and b/src/flags/Bhutan/24.png differ diff --git a/src/flags/Bhutan/32.png b/src/flags/Bhutan/32.png new file mode 100644 index 0000000..bf4c510 Binary files /dev/null and b/src/flags/Bhutan/32.png differ diff --git a/src/flags/Bhutan/48.png b/src/flags/Bhutan/48.png new file mode 100644 index 0000000..7223037 Binary files /dev/null and b/src/flags/Bhutan/48.png differ diff --git a/src/flags/Bhutan/64.png b/src/flags/Bhutan/64.png new file mode 100644 index 0000000..2ae609a Binary files /dev/null and b/src/flags/Bhutan/64.png differ diff --git a/src/flags/Bhutan/code b/src/flags/Bhutan/code new file mode 100644 index 0000000..6f54426 --- /dev/null +++ b/src/flags/Bhutan/code @@ -0,0 +1 @@ +BT \ No newline at end of file diff --git a/src/flags/Bolivia/16.png b/src/flags/Bolivia/16.png new file mode 100644 index 0000000..2e307c3 Binary files /dev/null and b/src/flags/Bolivia/16.png differ diff --git a/src/flags/Bolivia/24.png b/src/flags/Bolivia/24.png new file mode 100644 index 0000000..aeaab29 Binary files /dev/null and b/src/flags/Bolivia/24.png differ diff --git a/src/flags/Bolivia/32.png b/src/flags/Bolivia/32.png new file mode 100644 index 0000000..852e36e Binary files /dev/null and b/src/flags/Bolivia/32.png differ diff --git a/src/flags/Bolivia/48.png b/src/flags/Bolivia/48.png new file mode 100644 index 0000000..7c679b6 Binary files /dev/null and b/src/flags/Bolivia/48.png differ diff --git a/src/flags/Bolivia/64.png b/src/flags/Bolivia/64.png new file mode 100644 index 0000000..0fafab0 Binary files /dev/null and b/src/flags/Bolivia/64.png differ diff --git a/src/flags/Bolivia/code b/src/flags/Bolivia/code new file mode 100644 index 0000000..acb0c60 --- /dev/null +++ b/src/flags/Bolivia/code @@ -0,0 +1 @@ +BO \ No newline at end of file diff --git a/src/flags/Bosnia-and-Herzegovina/16.png b/src/flags/Bosnia-and-Herzegovina/16.png new file mode 100644 index 0000000..ea7899c Binary files /dev/null and b/src/flags/Bosnia-and-Herzegovina/16.png differ diff --git a/src/flags/Bosnia-and-Herzegovina/24.png b/src/flags/Bosnia-and-Herzegovina/24.png new file mode 100644 index 0000000..5a2708c Binary files /dev/null and b/src/flags/Bosnia-and-Herzegovina/24.png differ diff --git a/src/flags/Bosnia-and-Herzegovina/32.png b/src/flags/Bosnia-and-Herzegovina/32.png new file mode 100644 index 0000000..9b40f8a Binary files /dev/null and b/src/flags/Bosnia-and-Herzegovina/32.png differ diff --git a/src/flags/Bosnia-and-Herzegovina/48.png b/src/flags/Bosnia-and-Herzegovina/48.png new file mode 100644 index 0000000..93a71e4 Binary files /dev/null and b/src/flags/Bosnia-and-Herzegovina/48.png differ diff --git a/src/flags/Bosnia-and-Herzegovina/64.png b/src/flags/Bosnia-and-Herzegovina/64.png new file mode 100644 index 0000000..624fdb2 Binary files /dev/null and b/src/flags/Bosnia-and-Herzegovina/64.png differ diff --git a/src/flags/Bosnia-and-Herzegovina/code b/src/flags/Bosnia-and-Herzegovina/code new file mode 100644 index 0000000..c1c3019 --- /dev/null +++ b/src/flags/Bosnia-and-Herzegovina/code @@ -0,0 +1 @@ +BA \ No newline at end of file diff --git a/src/flags/Botswana/16.png b/src/flags/Botswana/16.png new file mode 100644 index 0000000..025b01a Binary files /dev/null and b/src/flags/Botswana/16.png differ diff --git a/src/flags/Botswana/24.png b/src/flags/Botswana/24.png new file mode 100644 index 0000000..a830a04 Binary files /dev/null and b/src/flags/Botswana/24.png differ diff --git a/src/flags/Botswana/32.png b/src/flags/Botswana/32.png new file mode 100644 index 0000000..4bad9d2 Binary files /dev/null and b/src/flags/Botswana/32.png differ diff --git a/src/flags/Botswana/48.png b/src/flags/Botswana/48.png new file mode 100644 index 0000000..f7700f8 Binary files /dev/null and b/src/flags/Botswana/48.png differ diff --git a/src/flags/Botswana/64.png b/src/flags/Botswana/64.png new file mode 100644 index 0000000..7e1ea85 Binary files /dev/null and b/src/flags/Botswana/64.png differ diff --git a/src/flags/Botswana/code b/src/flags/Botswana/code new file mode 100644 index 0000000..80e125b --- /dev/null +++ b/src/flags/Botswana/code @@ -0,0 +1 @@ +BW \ No newline at end of file diff --git a/src/flags/Brazil/16.png b/src/flags/Brazil/16.png new file mode 100644 index 0000000..5783c79 Binary files /dev/null and b/src/flags/Brazil/16.png differ diff --git a/src/flags/Brazil/24.png b/src/flags/Brazil/24.png new file mode 100644 index 0000000..3d1848b Binary files /dev/null and b/src/flags/Brazil/24.png differ diff --git a/src/flags/Brazil/32.png b/src/flags/Brazil/32.png new file mode 100644 index 0000000..48a4ddd Binary files /dev/null and b/src/flags/Brazil/32.png differ diff --git a/src/flags/Brazil/48.png b/src/flags/Brazil/48.png new file mode 100644 index 0000000..ab98f27 Binary files /dev/null and b/src/flags/Brazil/48.png differ diff --git a/src/flags/Brazil/64.png b/src/flags/Brazil/64.png new file mode 100644 index 0000000..2373075 Binary files /dev/null and b/src/flags/Brazil/64.png differ diff --git a/src/flags/Brazil/code b/src/flags/Brazil/code new file mode 100644 index 0000000..16f348e --- /dev/null +++ b/src/flags/Brazil/code @@ -0,0 +1 @@ +BR \ No newline at end of file diff --git a/src/flags/British-Antarctic-Territory/16.png b/src/flags/British-Antarctic-Territory/16.png new file mode 100644 index 0000000..2077d7c Binary files /dev/null and b/src/flags/British-Antarctic-Territory/16.png differ diff --git a/src/flags/British-Antarctic-Territory/24.png b/src/flags/British-Antarctic-Territory/24.png new file mode 100644 index 0000000..89f15d2 Binary files /dev/null and b/src/flags/British-Antarctic-Territory/24.png differ diff --git a/src/flags/British-Antarctic-Territory/32.png b/src/flags/British-Antarctic-Territory/32.png new file mode 100644 index 0000000..f6a9358 Binary files /dev/null and b/src/flags/British-Antarctic-Territory/32.png differ diff --git a/src/flags/British-Antarctic-Territory/48.png b/src/flags/British-Antarctic-Territory/48.png new file mode 100644 index 0000000..d85a277 Binary files /dev/null and b/src/flags/British-Antarctic-Territory/48.png differ diff --git a/src/flags/British-Antarctic-Territory/64.png b/src/flags/British-Antarctic-Territory/64.png new file mode 100644 index 0000000..a125e69 Binary files /dev/null and b/src/flags/British-Antarctic-Territory/64.png differ diff --git a/src/flags/British-Antarctic-Territory/code b/src/flags/British-Antarctic-Territory/code new file mode 100644 index 0000000..bf1c2d1 --- /dev/null +++ b/src/flags/British-Antarctic-Territory/code @@ -0,0 +1 @@ +_british-antarctic-territory diff --git a/src/flags/British-Virgin-Islands/16.png b/src/flags/British-Virgin-Islands/16.png new file mode 100644 index 0000000..c308ccd Binary files /dev/null and b/src/flags/British-Virgin-Islands/16.png differ diff --git a/src/flags/British-Virgin-Islands/24.png b/src/flags/British-Virgin-Islands/24.png new file mode 100644 index 0000000..f86ca7e Binary files /dev/null and b/src/flags/British-Virgin-Islands/24.png differ diff --git a/src/flags/British-Virgin-Islands/32.png b/src/flags/British-Virgin-Islands/32.png new file mode 100644 index 0000000..c6b3dc3 Binary files /dev/null and b/src/flags/British-Virgin-Islands/32.png differ diff --git a/src/flags/British-Virgin-Islands/48.png b/src/flags/British-Virgin-Islands/48.png new file mode 100644 index 0000000..6d270e2 Binary files /dev/null and b/src/flags/British-Virgin-Islands/48.png differ diff --git a/src/flags/British-Virgin-Islands/64.png b/src/flags/British-Virgin-Islands/64.png new file mode 100644 index 0000000..57da65d Binary files /dev/null and b/src/flags/British-Virgin-Islands/64.png differ diff --git a/src/flags/British-Virgin-Islands/code b/src/flags/British-Virgin-Islands/code new file mode 100644 index 0000000..1cfb990 --- /dev/null +++ b/src/flags/British-Virgin-Islands/code @@ -0,0 +1 @@ +VG \ No newline at end of file diff --git a/src/flags/Brunei/16.png b/src/flags/Brunei/16.png new file mode 100644 index 0000000..7a1b338 Binary files /dev/null and b/src/flags/Brunei/16.png differ diff --git a/src/flags/Brunei/24.png b/src/flags/Brunei/24.png new file mode 100644 index 0000000..9a932ab Binary files /dev/null and b/src/flags/Brunei/24.png differ diff --git a/src/flags/Brunei/32.png b/src/flags/Brunei/32.png new file mode 100644 index 0000000..a2e8f6b Binary files /dev/null and b/src/flags/Brunei/32.png differ diff --git a/src/flags/Brunei/48.png b/src/flags/Brunei/48.png new file mode 100644 index 0000000..915656b Binary files /dev/null and b/src/flags/Brunei/48.png differ diff --git a/src/flags/Brunei/64.png b/src/flags/Brunei/64.png new file mode 100644 index 0000000..b5fca12 Binary files /dev/null and b/src/flags/Brunei/64.png differ diff --git a/src/flags/Brunei/code b/src/flags/Brunei/code new file mode 100644 index 0000000..de20d80 --- /dev/null +++ b/src/flags/Brunei/code @@ -0,0 +1 @@ +BN \ No newline at end of file diff --git a/src/flags/Bulgaria/16.png b/src/flags/Bulgaria/16.png new file mode 100644 index 0000000..ad631d6 Binary files /dev/null and b/src/flags/Bulgaria/16.png differ diff --git a/src/flags/Bulgaria/24.png b/src/flags/Bulgaria/24.png new file mode 100644 index 0000000..35c0687 Binary files /dev/null and b/src/flags/Bulgaria/24.png differ diff --git a/src/flags/Bulgaria/32.png b/src/flags/Bulgaria/32.png new file mode 100644 index 0000000..852b6ff Binary files /dev/null and b/src/flags/Bulgaria/32.png differ diff --git a/src/flags/Bulgaria/48.png b/src/flags/Bulgaria/48.png new file mode 100644 index 0000000..a52755a Binary files /dev/null and b/src/flags/Bulgaria/48.png differ diff --git a/src/flags/Bulgaria/64.png b/src/flags/Bulgaria/64.png new file mode 100644 index 0000000..c182d87 Binary files /dev/null and b/src/flags/Bulgaria/64.png differ diff --git a/src/flags/Bulgaria/code b/src/flags/Bulgaria/code new file mode 100644 index 0000000..de02100 --- /dev/null +++ b/src/flags/Bulgaria/code @@ -0,0 +1 @@ +BG \ No newline at end of file diff --git a/src/flags/Burkina-Faso/16.png b/src/flags/Burkina-Faso/16.png new file mode 100644 index 0000000..53c77aa Binary files /dev/null and b/src/flags/Burkina-Faso/16.png differ diff --git a/src/flags/Burkina-Faso/24.png b/src/flags/Burkina-Faso/24.png new file mode 100644 index 0000000..78b3f8a Binary files /dev/null and b/src/flags/Burkina-Faso/24.png differ diff --git a/src/flags/Burkina-Faso/32.png b/src/flags/Burkina-Faso/32.png new file mode 100644 index 0000000..7142de5 Binary files /dev/null and b/src/flags/Burkina-Faso/32.png differ diff --git a/src/flags/Burkina-Faso/48.png b/src/flags/Burkina-Faso/48.png new file mode 100644 index 0000000..4c9add6 Binary files /dev/null and b/src/flags/Burkina-Faso/48.png differ diff --git a/src/flags/Burkina-Faso/64.png b/src/flags/Burkina-Faso/64.png new file mode 100644 index 0000000..edba213 Binary files /dev/null and b/src/flags/Burkina-Faso/64.png differ diff --git a/src/flags/Burkina-Faso/code b/src/flags/Burkina-Faso/code new file mode 100644 index 0000000..d7dbdda --- /dev/null +++ b/src/flags/Burkina-Faso/code @@ -0,0 +1 @@ +BF \ No newline at end of file diff --git a/src/flags/Burundi/16.png b/src/flags/Burundi/16.png new file mode 100644 index 0000000..6492a8d Binary files /dev/null and b/src/flags/Burundi/16.png differ diff --git a/src/flags/Burundi/24.png b/src/flags/Burundi/24.png new file mode 100644 index 0000000..97bc57b Binary files /dev/null and b/src/flags/Burundi/24.png differ diff --git a/src/flags/Burundi/32.png b/src/flags/Burundi/32.png new file mode 100644 index 0000000..f65688c Binary files /dev/null and b/src/flags/Burundi/32.png differ diff --git a/src/flags/Burundi/48.png b/src/flags/Burundi/48.png new file mode 100644 index 0000000..f840288 Binary files /dev/null and b/src/flags/Burundi/48.png differ diff --git a/src/flags/Burundi/64.png b/src/flags/Burundi/64.png new file mode 100644 index 0000000..d9f88ac Binary files /dev/null and b/src/flags/Burundi/64.png differ diff --git a/src/flags/Burundi/code b/src/flags/Burundi/code new file mode 100644 index 0000000..b8fa0d7 --- /dev/null +++ b/src/flags/Burundi/code @@ -0,0 +1 @@ +BI \ No newline at end of file diff --git a/src/flags/Cambodia/16.png b/src/flags/Cambodia/16.png new file mode 100644 index 0000000..384e4c6 Binary files /dev/null and b/src/flags/Cambodia/16.png differ diff --git a/src/flags/Cambodia/24.png b/src/flags/Cambodia/24.png new file mode 100644 index 0000000..81d8651 Binary files /dev/null and b/src/flags/Cambodia/24.png differ diff --git a/src/flags/Cambodia/32.png b/src/flags/Cambodia/32.png new file mode 100644 index 0000000..e5c78cc Binary files /dev/null and b/src/flags/Cambodia/32.png differ diff --git a/src/flags/Cambodia/48.png b/src/flags/Cambodia/48.png new file mode 100644 index 0000000..82bf7de Binary files /dev/null and b/src/flags/Cambodia/48.png differ diff --git a/src/flags/Cambodia/64.png b/src/flags/Cambodia/64.png new file mode 100644 index 0000000..0cbaf23 Binary files /dev/null and b/src/flags/Cambodia/64.png differ diff --git a/src/flags/Cambodia/code b/src/flags/Cambodia/code new file mode 100644 index 0000000..5d32bd9 --- /dev/null +++ b/src/flags/Cambodia/code @@ -0,0 +1 @@ +KH \ No newline at end of file diff --git a/src/flags/Cameroon/16.png b/src/flags/Cameroon/16.png new file mode 100644 index 0000000..5f0260a Binary files /dev/null and b/src/flags/Cameroon/16.png differ diff --git a/src/flags/Cameroon/24.png b/src/flags/Cameroon/24.png new file mode 100644 index 0000000..c31fbcb Binary files /dev/null and b/src/flags/Cameroon/24.png differ diff --git a/src/flags/Cameroon/32.png b/src/flags/Cameroon/32.png new file mode 100644 index 0000000..f1447dd Binary files /dev/null and b/src/flags/Cameroon/32.png differ diff --git a/src/flags/Cameroon/48.png b/src/flags/Cameroon/48.png new file mode 100644 index 0000000..d1ce694 Binary files /dev/null and b/src/flags/Cameroon/48.png differ diff --git a/src/flags/Cameroon/64.png b/src/flags/Cameroon/64.png new file mode 100644 index 0000000..922c66e Binary files /dev/null and b/src/flags/Cameroon/64.png differ diff --git a/src/flags/Cameroon/code b/src/flags/Cameroon/code new file mode 100644 index 0000000..be80172 --- /dev/null +++ b/src/flags/Cameroon/code @@ -0,0 +1 @@ +CM \ No newline at end of file diff --git a/src/flags/Canada/16.png b/src/flags/Canada/16.png new file mode 100644 index 0000000..8895a0e Binary files /dev/null and b/src/flags/Canada/16.png differ diff --git a/src/flags/Canada/24.png b/src/flags/Canada/24.png new file mode 100644 index 0000000..a063993 Binary files /dev/null and b/src/flags/Canada/24.png differ diff --git a/src/flags/Canada/32.png b/src/flags/Canada/32.png new file mode 100644 index 0000000..e474374 Binary files /dev/null and b/src/flags/Canada/32.png differ diff --git a/src/flags/Canada/48.png b/src/flags/Canada/48.png new file mode 100644 index 0000000..ba61f71 Binary files /dev/null and b/src/flags/Canada/48.png differ diff --git a/src/flags/Canada/64.png b/src/flags/Canada/64.png new file mode 100644 index 0000000..4714488 Binary files /dev/null and b/src/flags/Canada/64.png differ diff --git a/src/flags/Canada/code b/src/flags/Canada/code new file mode 100644 index 0000000..39cc94d --- /dev/null +++ b/src/flags/Canada/code @@ -0,0 +1 @@ +CA \ No newline at end of file diff --git a/src/flags/Cape-Verde/16.png b/src/flags/Cape-Verde/16.png new file mode 100644 index 0000000..12b7abb Binary files /dev/null and b/src/flags/Cape-Verde/16.png differ diff --git a/src/flags/Cape-Verde/24.png b/src/flags/Cape-Verde/24.png new file mode 100644 index 0000000..287e213 Binary files /dev/null and b/src/flags/Cape-Verde/24.png differ diff --git a/src/flags/Cape-Verde/32.png b/src/flags/Cape-Verde/32.png new file mode 100644 index 0000000..a5dc6a6 Binary files /dev/null and b/src/flags/Cape-Verde/32.png differ diff --git a/src/flags/Cape-Verde/48.png b/src/flags/Cape-Verde/48.png new file mode 100644 index 0000000..24cdf35 Binary files /dev/null and b/src/flags/Cape-Verde/48.png differ diff --git a/src/flags/Cape-Verde/64.png b/src/flags/Cape-Verde/64.png new file mode 100644 index 0000000..7cca018 Binary files /dev/null and b/src/flags/Cape-Verde/64.png differ diff --git a/src/flags/Cape-Verde/code b/src/flags/Cape-Verde/code new file mode 100644 index 0000000..b34b4dc --- /dev/null +++ b/src/flags/Cape-Verde/code @@ -0,0 +1 @@ +CV \ No newline at end of file diff --git a/src/flags/Cayman-Islands/16.png b/src/flags/Cayman-Islands/16.png new file mode 100644 index 0000000..823ae23 Binary files /dev/null and b/src/flags/Cayman-Islands/16.png differ diff --git a/src/flags/Cayman-Islands/24.png b/src/flags/Cayman-Islands/24.png new file mode 100644 index 0000000..cc9197b Binary files /dev/null and b/src/flags/Cayman-Islands/24.png differ diff --git a/src/flags/Cayman-Islands/32.png b/src/flags/Cayman-Islands/32.png new file mode 100644 index 0000000..431b5bd Binary files /dev/null and b/src/flags/Cayman-Islands/32.png differ diff --git a/src/flags/Cayman-Islands/48.png b/src/flags/Cayman-Islands/48.png new file mode 100644 index 0000000..ceb2b8f Binary files /dev/null and b/src/flags/Cayman-Islands/48.png differ diff --git a/src/flags/Cayman-Islands/64.png b/src/flags/Cayman-Islands/64.png new file mode 100644 index 0000000..4dfaf92 Binary files /dev/null and b/src/flags/Cayman-Islands/64.png differ diff --git a/src/flags/Cayman-Islands/code b/src/flags/Cayman-Islands/code new file mode 100644 index 0000000..3d0e4e9 --- /dev/null +++ b/src/flags/Cayman-Islands/code @@ -0,0 +1 @@ +KY \ No newline at end of file diff --git a/src/flags/Central-African-Republic/16.png b/src/flags/Central-African-Republic/16.png new file mode 100644 index 0000000..e1b1fd1 Binary files /dev/null and b/src/flags/Central-African-Republic/16.png differ diff --git a/src/flags/Central-African-Republic/24.png b/src/flags/Central-African-Republic/24.png new file mode 100644 index 0000000..898b88f Binary files /dev/null and b/src/flags/Central-African-Republic/24.png differ diff --git a/src/flags/Central-African-Republic/32.png b/src/flags/Central-African-Republic/32.png new file mode 100644 index 0000000..a756a22 Binary files /dev/null and b/src/flags/Central-African-Republic/32.png differ diff --git a/src/flags/Central-African-Republic/48.png b/src/flags/Central-African-Republic/48.png new file mode 100644 index 0000000..2666bfc Binary files /dev/null and b/src/flags/Central-African-Republic/48.png differ diff --git a/src/flags/Central-African-Republic/64.png b/src/flags/Central-African-Republic/64.png new file mode 100644 index 0000000..de1a262 Binary files /dev/null and b/src/flags/Central-African-Republic/64.png differ diff --git a/src/flags/Central-African-Republic/code b/src/flags/Central-African-Republic/code new file mode 100644 index 0000000..fb67bf2 --- /dev/null +++ b/src/flags/Central-African-Republic/code @@ -0,0 +1 @@ +CF \ No newline at end of file diff --git a/src/flags/Chad/16.png b/src/flags/Chad/16.png new file mode 100644 index 0000000..d03094b Binary files /dev/null and b/src/flags/Chad/16.png differ diff --git a/src/flags/Chad/24.png b/src/flags/Chad/24.png new file mode 100644 index 0000000..20dc503 Binary files /dev/null and b/src/flags/Chad/24.png differ diff --git a/src/flags/Chad/32.png b/src/flags/Chad/32.png new file mode 100644 index 0000000..a3fca75 Binary files /dev/null and b/src/flags/Chad/32.png differ diff --git a/src/flags/Chad/48.png b/src/flags/Chad/48.png new file mode 100644 index 0000000..bff52e6 Binary files /dev/null and b/src/flags/Chad/48.png differ diff --git a/src/flags/Chad/64.png b/src/flags/Chad/64.png new file mode 100644 index 0000000..052fa35 Binary files /dev/null and b/src/flags/Chad/64.png differ diff --git a/src/flags/Chad/code b/src/flags/Chad/code new file mode 100644 index 0000000..a0872a3 --- /dev/null +++ b/src/flags/Chad/code @@ -0,0 +1 @@ +TD \ No newline at end of file diff --git a/src/flags/Chile/16.png b/src/flags/Chile/16.png new file mode 100644 index 0000000..d16a551 Binary files /dev/null and b/src/flags/Chile/16.png differ diff --git a/src/flags/Chile/24.png b/src/flags/Chile/24.png new file mode 100644 index 0000000..b3837c9 Binary files /dev/null and b/src/flags/Chile/24.png differ diff --git a/src/flags/Chile/32.png b/src/flags/Chile/32.png new file mode 100644 index 0000000..62a0009 Binary files /dev/null and b/src/flags/Chile/32.png differ diff --git a/src/flags/Chile/48.png b/src/flags/Chile/48.png new file mode 100644 index 0000000..0033f9d Binary files /dev/null and b/src/flags/Chile/48.png differ diff --git a/src/flags/Chile/64.png b/src/flags/Chile/64.png new file mode 100644 index 0000000..363ec5a Binary files /dev/null and b/src/flags/Chile/64.png differ diff --git a/src/flags/Chile/code b/src/flags/Chile/code new file mode 100644 index 0000000..a6bace2 --- /dev/null +++ b/src/flags/Chile/code @@ -0,0 +1 @@ +CL \ No newline at end of file diff --git a/src/flags/China/16.png b/src/flags/China/16.png new file mode 100644 index 0000000..005d219 Binary files /dev/null and b/src/flags/China/16.png differ diff --git a/src/flags/China/24.png b/src/flags/China/24.png new file mode 100644 index 0000000..7d01ca2 Binary files /dev/null and b/src/flags/China/24.png differ diff --git a/src/flags/China/32.png b/src/flags/China/32.png new file mode 100644 index 0000000..56b1789 Binary files /dev/null and b/src/flags/China/32.png differ diff --git a/src/flags/China/48.png b/src/flags/China/48.png new file mode 100644 index 0000000..28a2e76 Binary files /dev/null and b/src/flags/China/48.png differ diff --git a/src/flags/China/64.png b/src/flags/China/64.png new file mode 100644 index 0000000..56327dc Binary files /dev/null and b/src/flags/China/64.png differ diff --git a/src/flags/China/code b/src/flags/China/code new file mode 100644 index 0000000..4569ac0 --- /dev/null +++ b/src/flags/China/code @@ -0,0 +1 @@ +CN \ No newline at end of file diff --git a/src/flags/Christmas-Island/16.png b/src/flags/Christmas-Island/16.png new file mode 100644 index 0000000..f7afa89 Binary files /dev/null and b/src/flags/Christmas-Island/16.png differ diff --git a/src/flags/Christmas-Island/24.png b/src/flags/Christmas-Island/24.png new file mode 100644 index 0000000..59c9736 Binary files /dev/null and b/src/flags/Christmas-Island/24.png differ diff --git a/src/flags/Christmas-Island/32.png b/src/flags/Christmas-Island/32.png new file mode 100644 index 0000000..8a1dd6a Binary files /dev/null and b/src/flags/Christmas-Island/32.png differ diff --git a/src/flags/Christmas-Island/48.png b/src/flags/Christmas-Island/48.png new file mode 100644 index 0000000..a79ef22 Binary files /dev/null and b/src/flags/Christmas-Island/48.png differ diff --git a/src/flags/Christmas-Island/64.png b/src/flags/Christmas-Island/64.png new file mode 100644 index 0000000..7632184 Binary files /dev/null and b/src/flags/Christmas-Island/64.png differ diff --git a/src/flags/Christmas-Island/code b/src/flags/Christmas-Island/code new file mode 100644 index 0000000..fb65046 --- /dev/null +++ b/src/flags/Christmas-Island/code @@ -0,0 +1 @@ +CX \ No newline at end of file diff --git a/src/flags/Cocos-Keeling-Islands/16.png b/src/flags/Cocos-Keeling-Islands/16.png new file mode 100644 index 0000000..49e5fbb Binary files /dev/null and b/src/flags/Cocos-Keeling-Islands/16.png differ diff --git a/src/flags/Cocos-Keeling-Islands/24.png b/src/flags/Cocos-Keeling-Islands/24.png new file mode 100644 index 0000000..ed70731 Binary files /dev/null and b/src/flags/Cocos-Keeling-Islands/24.png differ diff --git a/src/flags/Cocos-Keeling-Islands/32.png b/src/flags/Cocos-Keeling-Islands/32.png new file mode 100644 index 0000000..5e6c382 Binary files /dev/null and b/src/flags/Cocos-Keeling-Islands/32.png differ diff --git a/src/flags/Cocos-Keeling-Islands/48.png b/src/flags/Cocos-Keeling-Islands/48.png new file mode 100644 index 0000000..8f0f6d8 Binary files /dev/null and b/src/flags/Cocos-Keeling-Islands/48.png differ diff --git a/src/flags/Cocos-Keeling-Islands/64.png b/src/flags/Cocos-Keeling-Islands/64.png new file mode 100644 index 0000000..fd30173 Binary files /dev/null and b/src/flags/Cocos-Keeling-Islands/64.png differ diff --git a/src/flags/Cocos-Keeling-Islands/code b/src/flags/Cocos-Keeling-Islands/code new file mode 100644 index 0000000..4609fdf --- /dev/null +++ b/src/flags/Cocos-Keeling-Islands/code @@ -0,0 +1 @@ +CC \ No newline at end of file diff --git a/src/flags/Colombia/16.png b/src/flags/Colombia/16.png new file mode 100644 index 0000000..575677b Binary files /dev/null and b/src/flags/Colombia/16.png differ diff --git a/src/flags/Colombia/24.png b/src/flags/Colombia/24.png new file mode 100644 index 0000000..175cbca Binary files /dev/null and b/src/flags/Colombia/24.png differ diff --git a/src/flags/Colombia/32.png b/src/flags/Colombia/32.png new file mode 100644 index 0000000..76d2f3a Binary files /dev/null and b/src/flags/Colombia/32.png differ diff --git a/src/flags/Colombia/48.png b/src/flags/Colombia/48.png new file mode 100644 index 0000000..f68523d Binary files /dev/null and b/src/flags/Colombia/48.png differ diff --git a/src/flags/Colombia/64.png b/src/flags/Colombia/64.png new file mode 100644 index 0000000..a8f233d Binary files /dev/null and b/src/flags/Colombia/64.png differ diff --git a/src/flags/Colombia/code b/src/flags/Colombia/code new file mode 100644 index 0000000..20fecc7 --- /dev/null +++ b/src/flags/Colombia/code @@ -0,0 +1 @@ +CO \ No newline at end of file diff --git a/src/flags/Commonwealth/16.png b/src/flags/Commonwealth/16.png new file mode 100644 index 0000000..d634a37 Binary files /dev/null and b/src/flags/Commonwealth/16.png differ diff --git a/src/flags/Commonwealth/24.png b/src/flags/Commonwealth/24.png new file mode 100644 index 0000000..88e62b6 Binary files /dev/null and b/src/flags/Commonwealth/24.png differ diff --git a/src/flags/Commonwealth/32.png b/src/flags/Commonwealth/32.png new file mode 100644 index 0000000..6bd9c95 Binary files /dev/null and b/src/flags/Commonwealth/32.png differ diff --git a/src/flags/Commonwealth/48.png b/src/flags/Commonwealth/48.png new file mode 100644 index 0000000..a04d1ab Binary files /dev/null and b/src/flags/Commonwealth/48.png differ diff --git a/src/flags/Commonwealth/64.png b/src/flags/Commonwealth/64.png new file mode 100644 index 0000000..519583e Binary files /dev/null and b/src/flags/Commonwealth/64.png differ diff --git a/src/flags/Commonwealth/code b/src/flags/Commonwealth/code new file mode 100644 index 0000000..c9159cb --- /dev/null +++ b/src/flags/Commonwealth/code @@ -0,0 +1 @@ +_commonwealth \ No newline at end of file diff --git a/src/flags/Comoros/16.png b/src/flags/Comoros/16.png new file mode 100644 index 0000000..1a93a84 Binary files /dev/null and b/src/flags/Comoros/16.png differ diff --git a/src/flags/Comoros/24.png b/src/flags/Comoros/24.png new file mode 100644 index 0000000..cda8758 Binary files /dev/null and b/src/flags/Comoros/24.png differ diff --git a/src/flags/Comoros/32.png b/src/flags/Comoros/32.png new file mode 100644 index 0000000..ba5504f Binary files /dev/null and b/src/flags/Comoros/32.png differ diff --git a/src/flags/Comoros/48.png b/src/flags/Comoros/48.png new file mode 100644 index 0000000..ac6813c Binary files /dev/null and b/src/flags/Comoros/48.png differ diff --git a/src/flags/Comoros/64.png b/src/flags/Comoros/64.png new file mode 100644 index 0000000..4d6bca6 Binary files /dev/null and b/src/flags/Comoros/64.png differ diff --git a/src/flags/Comoros/code b/src/flags/Comoros/code new file mode 100644 index 0000000..220f44b --- /dev/null +++ b/src/flags/Comoros/code @@ -0,0 +1 @@ +KM \ No newline at end of file diff --git a/src/flags/Cook-Islands/16.png b/src/flags/Cook-Islands/16.png new file mode 100644 index 0000000..15fb5cc Binary files /dev/null and b/src/flags/Cook-Islands/16.png differ diff --git a/src/flags/Cook-Islands/24.png b/src/flags/Cook-Islands/24.png new file mode 100644 index 0000000..5a8fe8d Binary files /dev/null and b/src/flags/Cook-Islands/24.png differ diff --git a/src/flags/Cook-Islands/32.png b/src/flags/Cook-Islands/32.png new file mode 100644 index 0000000..69be8bf Binary files /dev/null and b/src/flags/Cook-Islands/32.png differ diff --git a/src/flags/Cook-Islands/48.png b/src/flags/Cook-Islands/48.png new file mode 100644 index 0000000..12d6b73 Binary files /dev/null and b/src/flags/Cook-Islands/48.png differ diff --git a/src/flags/Cook-Islands/64.png b/src/flags/Cook-Islands/64.png new file mode 100644 index 0000000..b73412b Binary files /dev/null and b/src/flags/Cook-Islands/64.png differ diff --git a/src/flags/Cook-Islands/code b/src/flags/Cook-Islands/code new file mode 100644 index 0000000..a03d4ce --- /dev/null +++ b/src/flags/Cook-Islands/code @@ -0,0 +1 @@ +CK \ No newline at end of file diff --git a/src/flags/Costa-Rica/16.png b/src/flags/Costa-Rica/16.png new file mode 100644 index 0000000..c5dd44b Binary files /dev/null and b/src/flags/Costa-Rica/16.png differ diff --git a/src/flags/Costa-Rica/24.png b/src/flags/Costa-Rica/24.png new file mode 100644 index 0000000..52cb2d2 Binary files /dev/null and b/src/flags/Costa-Rica/24.png differ diff --git a/src/flags/Costa-Rica/32.png b/src/flags/Costa-Rica/32.png new file mode 100644 index 0000000..9e37e04 Binary files /dev/null and b/src/flags/Costa-Rica/32.png differ diff --git a/src/flags/Costa-Rica/48.png b/src/flags/Costa-Rica/48.png new file mode 100644 index 0000000..3a9b919 Binary files /dev/null and b/src/flags/Costa-Rica/48.png differ diff --git a/src/flags/Costa-Rica/64.png b/src/flags/Costa-Rica/64.png new file mode 100644 index 0000000..aedb927 Binary files /dev/null and b/src/flags/Costa-Rica/64.png differ diff --git a/src/flags/Costa-Rica/code b/src/flags/Costa-Rica/code new file mode 100644 index 0000000..c159e66 --- /dev/null +++ b/src/flags/Costa-Rica/code @@ -0,0 +1 @@ +CR \ No newline at end of file diff --git a/src/flags/Cote-dIvoire/16.png b/src/flags/Cote-dIvoire/16.png new file mode 100644 index 0000000..fdddc3c Binary files /dev/null and b/src/flags/Cote-dIvoire/16.png differ diff --git a/src/flags/Cote-dIvoire/24.png b/src/flags/Cote-dIvoire/24.png new file mode 100644 index 0000000..1906a37 Binary files /dev/null and b/src/flags/Cote-dIvoire/24.png differ diff --git a/src/flags/Cote-dIvoire/32.png b/src/flags/Cote-dIvoire/32.png new file mode 100644 index 0000000..1ffdd00 Binary files /dev/null and b/src/flags/Cote-dIvoire/32.png differ diff --git a/src/flags/Cote-dIvoire/48.png b/src/flags/Cote-dIvoire/48.png new file mode 100644 index 0000000..5e33823 Binary files /dev/null and b/src/flags/Cote-dIvoire/48.png differ diff --git a/src/flags/Cote-dIvoire/64.png b/src/flags/Cote-dIvoire/64.png new file mode 100644 index 0000000..5294b5b Binary files /dev/null and b/src/flags/Cote-dIvoire/64.png differ diff --git a/src/flags/Cote-dIvoire/code b/src/flags/Cote-dIvoire/code new file mode 100644 index 0000000..310fb99 --- /dev/null +++ b/src/flags/Cote-dIvoire/code @@ -0,0 +1 @@ +CI \ No newline at end of file diff --git a/src/flags/Croatia/16.png b/src/flags/Croatia/16.png new file mode 100644 index 0000000..131fe1d Binary files /dev/null and b/src/flags/Croatia/16.png differ diff --git a/src/flags/Croatia/24.png b/src/flags/Croatia/24.png new file mode 100644 index 0000000..7902f2b Binary files /dev/null and b/src/flags/Croatia/24.png differ diff --git a/src/flags/Croatia/32.png b/src/flags/Croatia/32.png new file mode 100644 index 0000000..5662b62 Binary files /dev/null and b/src/flags/Croatia/32.png differ diff --git a/src/flags/Croatia/48.png b/src/flags/Croatia/48.png new file mode 100644 index 0000000..f806ba7 Binary files /dev/null and b/src/flags/Croatia/48.png differ diff --git a/src/flags/Croatia/64.png b/src/flags/Croatia/64.png new file mode 100644 index 0000000..454e2da Binary files /dev/null and b/src/flags/Croatia/64.png differ diff --git a/src/flags/Croatia/code b/src/flags/Croatia/code new file mode 100644 index 0000000..18b9ff9 --- /dev/null +++ b/src/flags/Croatia/code @@ -0,0 +1 @@ +HR \ No newline at end of file diff --git a/src/flags/Cuba/16.png b/src/flags/Cuba/16.png new file mode 100644 index 0000000..5ce6508 Binary files /dev/null and b/src/flags/Cuba/16.png differ diff --git a/src/flags/Cuba/24.png b/src/flags/Cuba/24.png new file mode 100644 index 0000000..9ff0f77 Binary files /dev/null and b/src/flags/Cuba/24.png differ diff --git a/src/flags/Cuba/32.png b/src/flags/Cuba/32.png new file mode 100644 index 0000000..ce403a6 Binary files /dev/null and b/src/flags/Cuba/32.png differ diff --git a/src/flags/Cuba/48.png b/src/flags/Cuba/48.png new file mode 100644 index 0000000..dd5cf9a Binary files /dev/null and b/src/flags/Cuba/48.png differ diff --git a/src/flags/Cuba/64.png b/src/flags/Cuba/64.png new file mode 100644 index 0000000..1a43993 Binary files /dev/null and b/src/flags/Cuba/64.png differ diff --git a/src/flags/Cuba/code b/src/flags/Cuba/code new file mode 100644 index 0000000..7a05e6a --- /dev/null +++ b/src/flags/Cuba/code @@ -0,0 +1 @@ +CU \ No newline at end of file diff --git a/src/flags/Cyprus/16.png b/src/flags/Cyprus/16.png new file mode 100644 index 0000000..406d004 Binary files /dev/null and b/src/flags/Cyprus/16.png differ diff --git a/src/flags/Cyprus/24.png b/src/flags/Cyprus/24.png new file mode 100644 index 0000000..1b9c50c Binary files /dev/null and b/src/flags/Cyprus/24.png differ diff --git a/src/flags/Cyprus/32.png b/src/flags/Cyprus/32.png new file mode 100644 index 0000000..adf73ef Binary files /dev/null and b/src/flags/Cyprus/32.png differ diff --git a/src/flags/Cyprus/48.png b/src/flags/Cyprus/48.png new file mode 100644 index 0000000..bcdcf49 Binary files /dev/null and b/src/flags/Cyprus/48.png differ diff --git a/src/flags/Cyprus/64.png b/src/flags/Cyprus/64.png new file mode 100644 index 0000000..c799d56 Binary files /dev/null and b/src/flags/Cyprus/64.png differ diff --git a/src/flags/Cyprus/code b/src/flags/Cyprus/code new file mode 100644 index 0000000..5a40c38 --- /dev/null +++ b/src/flags/Cyprus/code @@ -0,0 +1 @@ +CY \ No newline at end of file diff --git a/src/flags/Czech-Republic/16.png b/src/flags/Czech-Republic/16.png new file mode 100644 index 0000000..7001e4e Binary files /dev/null and b/src/flags/Czech-Republic/16.png differ diff --git a/src/flags/Czech-Republic/24.png b/src/flags/Czech-Republic/24.png new file mode 100644 index 0000000..96862c8 Binary files /dev/null and b/src/flags/Czech-Republic/24.png differ diff --git a/src/flags/Czech-Republic/32.png b/src/flags/Czech-Republic/32.png new file mode 100644 index 0000000..10afe5c Binary files /dev/null and b/src/flags/Czech-Republic/32.png differ diff --git a/src/flags/Czech-Republic/48.png b/src/flags/Czech-Republic/48.png new file mode 100644 index 0000000..521856e Binary files /dev/null and b/src/flags/Czech-Republic/48.png differ diff --git a/src/flags/Czech-Republic/64.png b/src/flags/Czech-Republic/64.png new file mode 100644 index 0000000..69cc95d Binary files /dev/null and b/src/flags/Czech-Republic/64.png differ diff --git a/src/flags/Czech-Republic/code b/src/flags/Czech-Republic/code new file mode 100644 index 0000000..801bcf9 --- /dev/null +++ b/src/flags/Czech-Republic/code @@ -0,0 +1 @@ +CZ \ No newline at end of file diff --git a/src/flags/Democratic-Republic-of-the-Congo/16.png b/src/flags/Democratic-Republic-of-the-Congo/16.png new file mode 100644 index 0000000..35a6f2c Binary files /dev/null and b/src/flags/Democratic-Republic-of-the-Congo/16.png differ diff --git a/src/flags/Democratic-Republic-of-the-Congo/24.png b/src/flags/Democratic-Republic-of-the-Congo/24.png new file mode 100644 index 0000000..c3254a0 Binary files /dev/null and b/src/flags/Democratic-Republic-of-the-Congo/24.png differ diff --git a/src/flags/Democratic-Republic-of-the-Congo/32.png b/src/flags/Democratic-Republic-of-the-Congo/32.png new file mode 100644 index 0000000..995b24e Binary files /dev/null and b/src/flags/Democratic-Republic-of-the-Congo/32.png differ diff --git a/src/flags/Democratic-Republic-of-the-Congo/48.png b/src/flags/Democratic-Republic-of-the-Congo/48.png new file mode 100644 index 0000000..f4dfc77 Binary files /dev/null and b/src/flags/Democratic-Republic-of-the-Congo/48.png differ diff --git a/src/flags/Democratic-Republic-of-the-Congo/64.png b/src/flags/Democratic-Republic-of-the-Congo/64.png new file mode 100644 index 0000000..ea08d5d Binary files /dev/null and b/src/flags/Democratic-Republic-of-the-Congo/64.png differ diff --git a/src/flags/Democratic-Republic-of-the-Congo/code b/src/flags/Democratic-Republic-of-the-Congo/code new file mode 100644 index 0000000..c1ddd29 --- /dev/null +++ b/src/flags/Democratic-Republic-of-the-Congo/code @@ -0,0 +1 @@ +CD \ No newline at end of file diff --git a/src/flags/Denmark/16.png b/src/flags/Denmark/16.png new file mode 100644 index 0000000..c8bfcf9 Binary files /dev/null and b/src/flags/Denmark/16.png differ diff --git a/src/flags/Denmark/24.png b/src/flags/Denmark/24.png new file mode 100644 index 0000000..f886888 Binary files /dev/null and b/src/flags/Denmark/24.png differ diff --git a/src/flags/Denmark/32.png b/src/flags/Denmark/32.png new file mode 100644 index 0000000..9ed20f8 Binary files /dev/null and b/src/flags/Denmark/32.png differ diff --git a/src/flags/Denmark/48.png b/src/flags/Denmark/48.png new file mode 100644 index 0000000..0e323f8 Binary files /dev/null and b/src/flags/Denmark/48.png differ diff --git a/src/flags/Denmark/64.png b/src/flags/Denmark/64.png new file mode 100644 index 0000000..79ce7ed Binary files /dev/null and b/src/flags/Denmark/64.png differ diff --git a/src/flags/Denmark/code b/src/flags/Denmark/code new file mode 100644 index 0000000..295879a --- /dev/null +++ b/src/flags/Denmark/code @@ -0,0 +1 @@ +DK \ No newline at end of file diff --git a/src/flags/Djibouti/16.png b/src/flags/Djibouti/16.png new file mode 100644 index 0000000..c2f63c7 Binary files /dev/null and b/src/flags/Djibouti/16.png differ diff --git a/src/flags/Djibouti/24.png b/src/flags/Djibouti/24.png new file mode 100644 index 0000000..514eaeb Binary files /dev/null and b/src/flags/Djibouti/24.png differ diff --git a/src/flags/Djibouti/32.png b/src/flags/Djibouti/32.png new file mode 100644 index 0000000..39e0872 Binary files /dev/null and b/src/flags/Djibouti/32.png differ diff --git a/src/flags/Djibouti/48.png b/src/flags/Djibouti/48.png new file mode 100644 index 0000000..67dad74 Binary files /dev/null and b/src/flags/Djibouti/48.png differ diff --git a/src/flags/Djibouti/64.png b/src/flags/Djibouti/64.png new file mode 100644 index 0000000..c8b35c9 Binary files /dev/null and b/src/flags/Djibouti/64.png differ diff --git a/src/flags/Djibouti/code b/src/flags/Djibouti/code new file mode 100644 index 0000000..ec4be1c --- /dev/null +++ b/src/flags/Djibouti/code @@ -0,0 +1 @@ +DJ \ No newline at end of file diff --git a/src/flags/Dominica/16.png b/src/flags/Dominica/16.png new file mode 100644 index 0000000..d36b1f6 Binary files /dev/null and b/src/flags/Dominica/16.png differ diff --git a/src/flags/Dominica/24.png b/src/flags/Dominica/24.png new file mode 100644 index 0000000..11a8c1a Binary files /dev/null and b/src/flags/Dominica/24.png differ diff --git a/src/flags/Dominica/32.png b/src/flags/Dominica/32.png new file mode 100644 index 0000000..6c648d3 Binary files /dev/null and b/src/flags/Dominica/32.png differ diff --git a/src/flags/Dominica/48.png b/src/flags/Dominica/48.png new file mode 100644 index 0000000..7501e36 Binary files /dev/null and b/src/flags/Dominica/48.png differ diff --git a/src/flags/Dominica/64.png b/src/flags/Dominica/64.png new file mode 100644 index 0000000..d44be51 Binary files /dev/null and b/src/flags/Dominica/64.png differ diff --git a/src/flags/Dominica/code b/src/flags/Dominica/code new file mode 100644 index 0000000..04131cd --- /dev/null +++ b/src/flags/Dominica/code @@ -0,0 +1 @@ +DM \ No newline at end of file diff --git a/src/flags/Dominican-Republic/16.png b/src/flags/Dominican-Republic/16.png new file mode 100644 index 0000000..9c1aab6 Binary files /dev/null and b/src/flags/Dominican-Republic/16.png differ diff --git a/src/flags/Dominican-Republic/24.png b/src/flags/Dominican-Republic/24.png new file mode 100644 index 0000000..a40d31b Binary files /dev/null and b/src/flags/Dominican-Republic/24.png differ diff --git a/src/flags/Dominican-Republic/32.png b/src/flags/Dominican-Republic/32.png new file mode 100644 index 0000000..c8cc0e2 Binary files /dev/null and b/src/flags/Dominican-Republic/32.png differ diff --git a/src/flags/Dominican-Republic/48.png b/src/flags/Dominican-Republic/48.png new file mode 100644 index 0000000..57b5fd3 Binary files /dev/null and b/src/flags/Dominican-Republic/48.png differ diff --git a/src/flags/Dominican-Republic/64.png b/src/flags/Dominican-Republic/64.png new file mode 100644 index 0000000..5ff82f7 Binary files /dev/null and b/src/flags/Dominican-Republic/64.png differ diff --git a/src/flags/Dominican-Republic/code b/src/flags/Dominican-Republic/code new file mode 100644 index 0000000..6598d6f --- /dev/null +++ b/src/flags/Dominican-Republic/code @@ -0,0 +1 @@ +DO \ No newline at end of file diff --git a/src/flags/East-Timor/16.png b/src/flags/East-Timor/16.png new file mode 100644 index 0000000..05199fe Binary files /dev/null and b/src/flags/East-Timor/16.png differ diff --git a/src/flags/East-Timor/24.png b/src/flags/East-Timor/24.png new file mode 100644 index 0000000..d6063ee Binary files /dev/null and b/src/flags/East-Timor/24.png differ diff --git a/src/flags/East-Timor/32.png b/src/flags/East-Timor/32.png new file mode 100644 index 0000000..4d96b0d Binary files /dev/null and b/src/flags/East-Timor/32.png differ diff --git a/src/flags/East-Timor/48.png b/src/flags/East-Timor/48.png new file mode 100644 index 0000000..69fe6a8 Binary files /dev/null and b/src/flags/East-Timor/48.png differ diff --git a/src/flags/East-Timor/64.png b/src/flags/East-Timor/64.png new file mode 100644 index 0000000..2557d9b Binary files /dev/null and b/src/flags/East-Timor/64.png differ diff --git a/src/flags/East-Timor/code b/src/flags/East-Timor/code new file mode 100644 index 0000000..7ae8835 --- /dev/null +++ b/src/flags/East-Timor/code @@ -0,0 +1 @@ +TL \ No newline at end of file diff --git a/src/flags/Ecuador/16.png b/src/flags/Ecuador/16.png new file mode 100644 index 0000000..e76314f Binary files /dev/null and b/src/flags/Ecuador/16.png differ diff --git a/src/flags/Ecuador/24.png b/src/flags/Ecuador/24.png new file mode 100644 index 0000000..6682b6a Binary files /dev/null and b/src/flags/Ecuador/24.png differ diff --git a/src/flags/Ecuador/32.png b/src/flags/Ecuador/32.png new file mode 100644 index 0000000..9804477 Binary files /dev/null and b/src/flags/Ecuador/32.png differ diff --git a/src/flags/Ecuador/48.png b/src/flags/Ecuador/48.png new file mode 100644 index 0000000..cf41337 Binary files /dev/null and b/src/flags/Ecuador/48.png differ diff --git a/src/flags/Ecuador/64.png b/src/flags/Ecuador/64.png new file mode 100644 index 0000000..371ab0b Binary files /dev/null and b/src/flags/Ecuador/64.png differ diff --git a/src/flags/Ecuador/code b/src/flags/Ecuador/code new file mode 100644 index 0000000..e9fb5a3 --- /dev/null +++ b/src/flags/Ecuador/code @@ -0,0 +1 @@ +EC \ No newline at end of file diff --git a/src/flags/Egypt/16.png b/src/flags/Egypt/16.png new file mode 100644 index 0000000..4f3d0df Binary files /dev/null and b/src/flags/Egypt/16.png differ diff --git a/src/flags/Egypt/24.png b/src/flags/Egypt/24.png new file mode 100644 index 0000000..c15c384 Binary files /dev/null and b/src/flags/Egypt/24.png differ diff --git a/src/flags/Egypt/32.png b/src/flags/Egypt/32.png new file mode 100644 index 0000000..5a7a0a7 Binary files /dev/null and b/src/flags/Egypt/32.png differ diff --git a/src/flags/Egypt/48.png b/src/flags/Egypt/48.png new file mode 100644 index 0000000..e087acf Binary files /dev/null and b/src/flags/Egypt/48.png differ diff --git a/src/flags/Egypt/64.png b/src/flags/Egypt/64.png new file mode 100644 index 0000000..83bb766 Binary files /dev/null and b/src/flags/Egypt/64.png differ diff --git a/src/flags/Egypt/code b/src/flags/Egypt/code new file mode 100644 index 0000000..066fe8f --- /dev/null +++ b/src/flags/Egypt/code @@ -0,0 +1 @@ +EG \ No newline at end of file diff --git a/src/flags/El-Salvador/16.png b/src/flags/El-Salvador/16.png new file mode 100644 index 0000000..79b340c Binary files /dev/null and b/src/flags/El-Salvador/16.png differ diff --git a/src/flags/El-Salvador/24.png b/src/flags/El-Salvador/24.png new file mode 100644 index 0000000..4facf73 Binary files /dev/null and b/src/flags/El-Salvador/24.png differ diff --git a/src/flags/El-Salvador/32.png b/src/flags/El-Salvador/32.png new file mode 100644 index 0000000..ddf26f7 Binary files /dev/null and b/src/flags/El-Salvador/32.png differ diff --git a/src/flags/El-Salvador/48.png b/src/flags/El-Salvador/48.png new file mode 100644 index 0000000..b06e393 Binary files /dev/null and b/src/flags/El-Salvador/48.png differ diff --git a/src/flags/El-Salvador/64.png b/src/flags/El-Salvador/64.png new file mode 100644 index 0000000..0779131 Binary files /dev/null and b/src/flags/El-Salvador/64.png differ diff --git a/src/flags/El-Salvador/code b/src/flags/El-Salvador/code new file mode 100644 index 0000000..53cc338 --- /dev/null +++ b/src/flags/El-Salvador/code @@ -0,0 +1 @@ +SV \ No newline at end of file diff --git a/src/flags/England/16.png b/src/flags/England/16.png new file mode 100644 index 0000000..d88d172 Binary files /dev/null and b/src/flags/England/16.png differ diff --git a/src/flags/England/24.png b/src/flags/England/24.png new file mode 100644 index 0000000..8866d5c Binary files /dev/null and b/src/flags/England/24.png differ diff --git a/src/flags/England/32.png b/src/flags/England/32.png new file mode 100644 index 0000000..028fd7b Binary files /dev/null and b/src/flags/England/32.png differ diff --git a/src/flags/England/48.png b/src/flags/England/48.png new file mode 100644 index 0000000..761c3f7 Binary files /dev/null and b/src/flags/England/48.png differ diff --git a/src/flags/England/64.png b/src/flags/England/64.png new file mode 100644 index 0000000..178d334 Binary files /dev/null and b/src/flags/England/64.png differ diff --git a/src/flags/England/code b/src/flags/England/code new file mode 100644 index 0000000..b817f30 --- /dev/null +++ b/src/flags/England/code @@ -0,0 +1 @@ +_england \ No newline at end of file diff --git a/src/flags/Equatorial-Guinea/16.png b/src/flags/Equatorial-Guinea/16.png new file mode 100644 index 0000000..0b1ea32 Binary files /dev/null and b/src/flags/Equatorial-Guinea/16.png differ diff --git a/src/flags/Equatorial-Guinea/24.png b/src/flags/Equatorial-Guinea/24.png new file mode 100644 index 0000000..4dceee4 Binary files /dev/null and b/src/flags/Equatorial-Guinea/24.png differ diff --git a/src/flags/Equatorial-Guinea/32.png b/src/flags/Equatorial-Guinea/32.png new file mode 100644 index 0000000..fc3d972 Binary files /dev/null and b/src/flags/Equatorial-Guinea/32.png differ diff --git a/src/flags/Equatorial-Guinea/48.png b/src/flags/Equatorial-Guinea/48.png new file mode 100644 index 0000000..dfd58e8 Binary files /dev/null and b/src/flags/Equatorial-Guinea/48.png differ diff --git a/src/flags/Equatorial-Guinea/64.png b/src/flags/Equatorial-Guinea/64.png new file mode 100644 index 0000000..9d9f4c5 Binary files /dev/null and b/src/flags/Equatorial-Guinea/64.png differ diff --git a/src/flags/Equatorial-Guinea/code b/src/flags/Equatorial-Guinea/code new file mode 100644 index 0000000..914cabb --- /dev/null +++ b/src/flags/Equatorial-Guinea/code @@ -0,0 +1 @@ +GQ \ No newline at end of file diff --git a/src/flags/Eritrea/16.png b/src/flags/Eritrea/16.png new file mode 100644 index 0000000..be20831 Binary files /dev/null and b/src/flags/Eritrea/16.png differ diff --git a/src/flags/Eritrea/24.png b/src/flags/Eritrea/24.png new file mode 100644 index 0000000..87a1140 Binary files /dev/null and b/src/flags/Eritrea/24.png differ diff --git a/src/flags/Eritrea/32.png b/src/flags/Eritrea/32.png new file mode 100644 index 0000000..12b432d Binary files /dev/null and b/src/flags/Eritrea/32.png differ diff --git a/src/flags/Eritrea/48.png b/src/flags/Eritrea/48.png new file mode 100644 index 0000000..a83885c Binary files /dev/null and b/src/flags/Eritrea/48.png differ diff --git a/src/flags/Eritrea/64.png b/src/flags/Eritrea/64.png new file mode 100644 index 0000000..a00a7ed Binary files /dev/null and b/src/flags/Eritrea/64.png differ diff --git a/src/flags/Eritrea/code b/src/flags/Eritrea/code new file mode 100644 index 0000000..f61b930 --- /dev/null +++ b/src/flags/Eritrea/code @@ -0,0 +1 @@ +ER \ No newline at end of file diff --git a/src/flags/Estonia/16.png b/src/flags/Estonia/16.png new file mode 100644 index 0000000..1374342 Binary files /dev/null and b/src/flags/Estonia/16.png differ diff --git a/src/flags/Estonia/24.png b/src/flags/Estonia/24.png new file mode 100644 index 0000000..c0b8abc Binary files /dev/null and b/src/flags/Estonia/24.png differ diff --git a/src/flags/Estonia/32.png b/src/flags/Estonia/32.png new file mode 100644 index 0000000..0d121fc Binary files /dev/null and b/src/flags/Estonia/32.png differ diff --git a/src/flags/Estonia/48.png b/src/flags/Estonia/48.png new file mode 100644 index 0000000..d0d0948 Binary files /dev/null and b/src/flags/Estonia/48.png differ diff --git a/src/flags/Estonia/64.png b/src/flags/Estonia/64.png new file mode 100644 index 0000000..2a77ba3 Binary files /dev/null and b/src/flags/Estonia/64.png differ diff --git a/src/flags/Estonia/code b/src/flags/Estonia/code new file mode 100644 index 0000000..5ac9344 --- /dev/null +++ b/src/flags/Estonia/code @@ -0,0 +1 @@ +EE \ No newline at end of file diff --git a/src/flags/Ethiopia/16.png b/src/flags/Ethiopia/16.png new file mode 100644 index 0000000..8f64033 Binary files /dev/null and b/src/flags/Ethiopia/16.png differ diff --git a/src/flags/Ethiopia/24.png b/src/flags/Ethiopia/24.png new file mode 100644 index 0000000..d375e85 Binary files /dev/null and b/src/flags/Ethiopia/24.png differ diff --git a/src/flags/Ethiopia/32.png b/src/flags/Ethiopia/32.png new file mode 100644 index 0000000..1e7df2c Binary files /dev/null and b/src/flags/Ethiopia/32.png differ diff --git a/src/flags/Ethiopia/48.png b/src/flags/Ethiopia/48.png new file mode 100644 index 0000000..522810f Binary files /dev/null and b/src/flags/Ethiopia/48.png differ diff --git a/src/flags/Ethiopia/64.png b/src/flags/Ethiopia/64.png new file mode 100644 index 0000000..d61cbde Binary files /dev/null and b/src/flags/Ethiopia/64.png differ diff --git a/src/flags/Ethiopia/code b/src/flags/Ethiopia/code new file mode 100644 index 0000000..5d375b2 --- /dev/null +++ b/src/flags/Ethiopia/code @@ -0,0 +1 @@ +ET \ No newline at end of file diff --git a/src/flags/European-Union/16.png b/src/flags/European-Union/16.png new file mode 100644 index 0000000..4503510 Binary files /dev/null and b/src/flags/European-Union/16.png differ diff --git a/src/flags/European-Union/24.png b/src/flags/European-Union/24.png new file mode 100644 index 0000000..b03f13b Binary files /dev/null and b/src/flags/European-Union/24.png differ diff --git a/src/flags/European-Union/32.png b/src/flags/European-Union/32.png new file mode 100644 index 0000000..75a7cd5 Binary files /dev/null and b/src/flags/European-Union/32.png differ diff --git a/src/flags/European-Union/48.png b/src/flags/European-Union/48.png new file mode 100644 index 0000000..5779e3a Binary files /dev/null and b/src/flags/European-Union/48.png differ diff --git a/src/flags/European-Union/64.png b/src/flags/European-Union/64.png new file mode 100644 index 0000000..b98ecc0 Binary files /dev/null and b/src/flags/European-Union/64.png differ diff --git a/src/flags/European-Union/code b/src/flags/European-Union/code new file mode 100644 index 0000000..961e5f3 --- /dev/null +++ b/src/flags/European-Union/code @@ -0,0 +1 @@ +EU \ No newline at end of file diff --git a/src/flags/Falkland-Islands/16.png b/src/flags/Falkland-Islands/16.png new file mode 100644 index 0000000..21e813a Binary files /dev/null and b/src/flags/Falkland-Islands/16.png differ diff --git a/src/flags/Falkland-Islands/24.png b/src/flags/Falkland-Islands/24.png new file mode 100644 index 0000000..ea8ba51 Binary files /dev/null and b/src/flags/Falkland-Islands/24.png differ diff --git a/src/flags/Falkland-Islands/32.png b/src/flags/Falkland-Islands/32.png new file mode 100644 index 0000000..7f38e3c Binary files /dev/null and b/src/flags/Falkland-Islands/32.png differ diff --git a/src/flags/Falkland-Islands/48.png b/src/flags/Falkland-Islands/48.png new file mode 100644 index 0000000..58b2c9c Binary files /dev/null and b/src/flags/Falkland-Islands/48.png differ diff --git a/src/flags/Falkland-Islands/64.png b/src/flags/Falkland-Islands/64.png new file mode 100644 index 0000000..5b1f7ad Binary files /dev/null and b/src/flags/Falkland-Islands/64.png differ diff --git a/src/flags/Falkland-Islands/code b/src/flags/Falkland-Islands/code new file mode 100644 index 0000000..e0a9519 --- /dev/null +++ b/src/flags/Falkland-Islands/code @@ -0,0 +1 @@ +FK \ No newline at end of file diff --git a/src/flags/Faroes/16.png b/src/flags/Faroes/16.png new file mode 100644 index 0000000..e34ce65 Binary files /dev/null and b/src/flags/Faroes/16.png differ diff --git a/src/flags/Faroes/24.png b/src/flags/Faroes/24.png new file mode 100644 index 0000000..3945ca9 Binary files /dev/null and b/src/flags/Faroes/24.png differ diff --git a/src/flags/Faroes/32.png b/src/flags/Faroes/32.png new file mode 100644 index 0000000..89d8956 Binary files /dev/null and b/src/flags/Faroes/32.png differ diff --git a/src/flags/Faroes/48.png b/src/flags/Faroes/48.png new file mode 100644 index 0000000..f6aa3e2 Binary files /dev/null and b/src/flags/Faroes/48.png differ diff --git a/src/flags/Faroes/64.png b/src/flags/Faroes/64.png new file mode 100644 index 0000000..4e56b8f Binary files /dev/null and b/src/flags/Faroes/64.png differ diff --git a/src/flags/Faroes/code b/src/flags/Faroes/code new file mode 100644 index 0000000..2bafb4b --- /dev/null +++ b/src/flags/Faroes/code @@ -0,0 +1 @@ +FO \ No newline at end of file diff --git a/src/flags/Fiji/16.png b/src/flags/Fiji/16.png new file mode 100644 index 0000000..d4f8c1f Binary files /dev/null and b/src/flags/Fiji/16.png differ diff --git a/src/flags/Fiji/24.png b/src/flags/Fiji/24.png new file mode 100644 index 0000000..a8bcc82 Binary files /dev/null and b/src/flags/Fiji/24.png differ diff --git a/src/flags/Fiji/32.png b/src/flags/Fiji/32.png new file mode 100644 index 0000000..600dd42 Binary files /dev/null and b/src/flags/Fiji/32.png differ diff --git a/src/flags/Fiji/48.png b/src/flags/Fiji/48.png new file mode 100644 index 0000000..4698270 Binary files /dev/null and b/src/flags/Fiji/48.png differ diff --git a/src/flags/Fiji/64.png b/src/flags/Fiji/64.png new file mode 100644 index 0000000..6ba4c60 Binary files /dev/null and b/src/flags/Fiji/64.png differ diff --git a/src/flags/Fiji/code b/src/flags/Fiji/code new file mode 100644 index 0000000..cfc1398 --- /dev/null +++ b/src/flags/Fiji/code @@ -0,0 +1 @@ +FJ \ No newline at end of file diff --git a/src/flags/Finland/16.png b/src/flags/Finland/16.png new file mode 100644 index 0000000..96dd421 Binary files /dev/null and b/src/flags/Finland/16.png differ diff --git a/src/flags/Finland/24.png b/src/flags/Finland/24.png new file mode 100644 index 0000000..d7f2621 Binary files /dev/null and b/src/flags/Finland/24.png differ diff --git a/src/flags/Finland/32.png b/src/flags/Finland/32.png new file mode 100644 index 0000000..146fd39 Binary files /dev/null and b/src/flags/Finland/32.png differ diff --git a/src/flags/Finland/48.png b/src/flags/Finland/48.png new file mode 100644 index 0000000..c5dc9f0 Binary files /dev/null and b/src/flags/Finland/48.png differ diff --git a/src/flags/Finland/64.png b/src/flags/Finland/64.png new file mode 100644 index 0000000..a5e01e2 Binary files /dev/null and b/src/flags/Finland/64.png differ diff --git a/src/flags/Finland/code b/src/flags/Finland/code new file mode 100644 index 0000000..7aaf2e4 --- /dev/null +++ b/src/flags/Finland/code @@ -0,0 +1 @@ +FI \ No newline at end of file diff --git a/src/flags/France/16.png b/src/flags/France/16.png new file mode 100644 index 0000000..0eccede Binary files /dev/null and b/src/flags/France/16.png differ diff --git a/src/flags/France/24.png b/src/flags/France/24.png new file mode 100644 index 0000000..adee4f9 Binary files /dev/null and b/src/flags/France/24.png differ diff --git a/src/flags/France/32.png b/src/flags/France/32.png new file mode 100644 index 0000000..8cb191e Binary files /dev/null and b/src/flags/France/32.png differ diff --git a/src/flags/France/48.png b/src/flags/France/48.png new file mode 100644 index 0000000..480a2cc Binary files /dev/null and b/src/flags/France/48.png differ diff --git a/src/flags/France/64.png b/src/flags/France/64.png new file mode 100644 index 0000000..e8d35e5 Binary files /dev/null and b/src/flags/France/64.png differ diff --git a/src/flags/France/code b/src/flags/France/code new file mode 100644 index 0000000..d1bbbd2 --- /dev/null +++ b/src/flags/France/code @@ -0,0 +1 @@ +FR \ No newline at end of file diff --git a/src/flags/French-Polynesia/16.png b/src/flags/French-Polynesia/16.png new file mode 100644 index 0000000..c6929aa Binary files /dev/null and b/src/flags/French-Polynesia/16.png differ diff --git a/src/flags/French-Polynesia/24.png b/src/flags/French-Polynesia/24.png new file mode 100644 index 0000000..b63a685 Binary files /dev/null and b/src/flags/French-Polynesia/24.png differ diff --git a/src/flags/French-Polynesia/32.png b/src/flags/French-Polynesia/32.png new file mode 100644 index 0000000..01615e2 Binary files /dev/null and b/src/flags/French-Polynesia/32.png differ diff --git a/src/flags/French-Polynesia/48.png b/src/flags/French-Polynesia/48.png new file mode 100644 index 0000000..2f2a128 Binary files /dev/null and b/src/flags/French-Polynesia/48.png differ diff --git a/src/flags/French-Polynesia/64.png b/src/flags/French-Polynesia/64.png new file mode 100644 index 0000000..963d4f9 Binary files /dev/null and b/src/flags/French-Polynesia/64.png differ diff --git a/src/flags/French-Polynesia/code b/src/flags/French-Polynesia/code new file mode 100644 index 0000000..8548c14 --- /dev/null +++ b/src/flags/French-Polynesia/code @@ -0,0 +1 @@ +PF \ No newline at end of file diff --git a/src/flags/French-Southern-Territories/16.png b/src/flags/French-Southern-Territories/16.png new file mode 100644 index 0000000..8adf053 Binary files /dev/null and b/src/flags/French-Southern-Territories/16.png differ diff --git a/src/flags/French-Southern-Territories/24.png b/src/flags/French-Southern-Territories/24.png new file mode 100644 index 0000000..7253ffe Binary files /dev/null and b/src/flags/French-Southern-Territories/24.png differ diff --git a/src/flags/French-Southern-Territories/32.png b/src/flags/French-Southern-Territories/32.png new file mode 100644 index 0000000..726d68b Binary files /dev/null and b/src/flags/French-Southern-Territories/32.png differ diff --git a/src/flags/French-Southern-Territories/48.png b/src/flags/French-Southern-Territories/48.png new file mode 100644 index 0000000..602e803 Binary files /dev/null and b/src/flags/French-Southern-Territories/48.png differ diff --git a/src/flags/French-Southern-Territories/64.png b/src/flags/French-Southern-Territories/64.png new file mode 100644 index 0000000..ed9fbab Binary files /dev/null and b/src/flags/French-Southern-Territories/64.png differ diff --git a/src/flags/French-Southern-Territories/code b/src/flags/French-Southern-Territories/code new file mode 100644 index 0000000..2e47da6 --- /dev/null +++ b/src/flags/French-Southern-Territories/code @@ -0,0 +1 @@ +TF \ No newline at end of file diff --git a/src/flags/Gabon/16.png b/src/flags/Gabon/16.png new file mode 100644 index 0000000..a83906c Binary files /dev/null and b/src/flags/Gabon/16.png differ diff --git a/src/flags/Gabon/24.png b/src/flags/Gabon/24.png new file mode 100644 index 0000000..33c859a Binary files /dev/null and b/src/flags/Gabon/24.png differ diff --git a/src/flags/Gabon/32.png b/src/flags/Gabon/32.png new file mode 100644 index 0000000..896aa85 Binary files /dev/null and b/src/flags/Gabon/32.png differ diff --git a/src/flags/Gabon/48.png b/src/flags/Gabon/48.png new file mode 100644 index 0000000..102e289 Binary files /dev/null and b/src/flags/Gabon/48.png differ diff --git a/src/flags/Gabon/64.png b/src/flags/Gabon/64.png new file mode 100644 index 0000000..473bcb9 Binary files /dev/null and b/src/flags/Gabon/64.png differ diff --git a/src/flags/Gabon/code b/src/flags/Gabon/code new file mode 100644 index 0000000..ac2f72c --- /dev/null +++ b/src/flags/Gabon/code @@ -0,0 +1 @@ +GA \ No newline at end of file diff --git a/src/flags/Gambia/16.png b/src/flags/Gambia/16.png new file mode 100644 index 0000000..9c4343e Binary files /dev/null and b/src/flags/Gambia/16.png differ diff --git a/src/flags/Gambia/24.png b/src/flags/Gambia/24.png new file mode 100644 index 0000000..9cadcdd Binary files /dev/null and b/src/flags/Gambia/24.png differ diff --git a/src/flags/Gambia/32.png b/src/flags/Gambia/32.png new file mode 100644 index 0000000..7025565 Binary files /dev/null and b/src/flags/Gambia/32.png differ diff --git a/src/flags/Gambia/48.png b/src/flags/Gambia/48.png new file mode 100644 index 0000000..f85da1f Binary files /dev/null and b/src/flags/Gambia/48.png differ diff --git a/src/flags/Gambia/64.png b/src/flags/Gambia/64.png new file mode 100644 index 0000000..0fca457 Binary files /dev/null and b/src/flags/Gambia/64.png differ diff --git a/src/flags/Gambia/code b/src/flags/Gambia/code new file mode 100644 index 0000000..f9691ad --- /dev/null +++ b/src/flags/Gambia/code @@ -0,0 +1 @@ +GM \ No newline at end of file diff --git a/src/flags/Georgia/16.png b/src/flags/Georgia/16.png new file mode 100644 index 0000000..9852889 Binary files /dev/null and b/src/flags/Georgia/16.png differ diff --git a/src/flags/Georgia/24.png b/src/flags/Georgia/24.png new file mode 100644 index 0000000..b4ae5ad Binary files /dev/null and b/src/flags/Georgia/24.png differ diff --git a/src/flags/Georgia/32.png b/src/flags/Georgia/32.png new file mode 100644 index 0000000..95ffa80 Binary files /dev/null and b/src/flags/Georgia/32.png differ diff --git a/src/flags/Georgia/48.png b/src/flags/Georgia/48.png new file mode 100644 index 0000000..3a44c36 Binary files /dev/null and b/src/flags/Georgia/48.png differ diff --git a/src/flags/Georgia/64.png b/src/flags/Georgia/64.png new file mode 100644 index 0000000..2e12302 Binary files /dev/null and b/src/flags/Georgia/64.png differ diff --git a/src/flags/Georgia/code b/src/flags/Georgia/code new file mode 100644 index 0000000..20b2ba7 --- /dev/null +++ b/src/flags/Georgia/code @@ -0,0 +1 @@ +GE \ No newline at end of file diff --git a/src/flags/Germany/16.png b/src/flags/Germany/16.png new file mode 100644 index 0000000..60a6449 Binary files /dev/null and b/src/flags/Germany/16.png differ diff --git a/src/flags/Germany/24.png b/src/flags/Germany/24.png new file mode 100644 index 0000000..6d6b706 Binary files /dev/null and b/src/flags/Germany/24.png differ diff --git a/src/flags/Germany/32.png b/src/flags/Germany/32.png new file mode 100644 index 0000000..796ed48 Binary files /dev/null and b/src/flags/Germany/32.png differ diff --git a/src/flags/Germany/48.png b/src/flags/Germany/48.png new file mode 100644 index 0000000..8963c87 Binary files /dev/null and b/src/flags/Germany/48.png differ diff --git a/src/flags/Germany/64.png b/src/flags/Germany/64.png new file mode 100644 index 0000000..2d76e21 Binary files /dev/null and b/src/flags/Germany/64.png differ diff --git a/src/flags/Germany/code b/src/flags/Germany/code new file mode 100644 index 0000000..a851ce5 --- /dev/null +++ b/src/flags/Germany/code @@ -0,0 +1 @@ +DE \ No newline at end of file diff --git a/src/flags/Ghana/16.png b/src/flags/Ghana/16.png new file mode 100644 index 0000000..71de02a Binary files /dev/null and b/src/flags/Ghana/16.png differ diff --git a/src/flags/Ghana/24.png b/src/flags/Ghana/24.png new file mode 100644 index 0000000..c3aa238 Binary files /dev/null and b/src/flags/Ghana/24.png differ diff --git a/src/flags/Ghana/32.png b/src/flags/Ghana/32.png new file mode 100644 index 0000000..119a43b Binary files /dev/null and b/src/flags/Ghana/32.png differ diff --git a/src/flags/Ghana/48.png b/src/flags/Ghana/48.png new file mode 100644 index 0000000..d6a32c6 Binary files /dev/null and b/src/flags/Ghana/48.png differ diff --git a/src/flags/Ghana/64.png b/src/flags/Ghana/64.png new file mode 100644 index 0000000..ab81fb1 Binary files /dev/null and b/src/flags/Ghana/64.png differ diff --git a/src/flags/Ghana/code b/src/flags/Ghana/code new file mode 100644 index 0000000..8aa1b8f --- /dev/null +++ b/src/flags/Ghana/code @@ -0,0 +1 @@ +GH \ No newline at end of file diff --git a/src/flags/Gibraltar/16.png b/src/flags/Gibraltar/16.png new file mode 100644 index 0000000..eb6476d Binary files /dev/null and b/src/flags/Gibraltar/16.png differ diff --git a/src/flags/Gibraltar/24.png b/src/flags/Gibraltar/24.png new file mode 100644 index 0000000..944f7f7 Binary files /dev/null and b/src/flags/Gibraltar/24.png differ diff --git a/src/flags/Gibraltar/32.png b/src/flags/Gibraltar/32.png new file mode 100644 index 0000000..a1a43c2 Binary files /dev/null and b/src/flags/Gibraltar/32.png differ diff --git a/src/flags/Gibraltar/48.png b/src/flags/Gibraltar/48.png new file mode 100644 index 0000000..dd30224 Binary files /dev/null and b/src/flags/Gibraltar/48.png differ diff --git a/src/flags/Gibraltar/64.png b/src/flags/Gibraltar/64.png new file mode 100644 index 0000000..61d9954 Binary files /dev/null and b/src/flags/Gibraltar/64.png differ diff --git a/src/flags/Gibraltar/code b/src/flags/Gibraltar/code new file mode 100644 index 0000000..eda0e49 --- /dev/null +++ b/src/flags/Gibraltar/code @@ -0,0 +1 @@ +GI \ No newline at end of file diff --git a/src/flags/GoSquared/16.png b/src/flags/GoSquared/16.png new file mode 100644 index 0000000..61a5259 Binary files /dev/null and b/src/flags/GoSquared/16.png differ diff --git a/src/flags/GoSquared/24.png b/src/flags/GoSquared/24.png new file mode 100644 index 0000000..4255530 Binary files /dev/null and b/src/flags/GoSquared/24.png differ diff --git a/src/flags/GoSquared/32.png b/src/flags/GoSquared/32.png new file mode 100644 index 0000000..7adab36 Binary files /dev/null and b/src/flags/GoSquared/32.png differ diff --git a/src/flags/GoSquared/48.png b/src/flags/GoSquared/48.png new file mode 100644 index 0000000..01bb0ac Binary files /dev/null and b/src/flags/GoSquared/48.png differ diff --git a/src/flags/GoSquared/64.png b/src/flags/GoSquared/64.png new file mode 100644 index 0000000..ae1da92 Binary files /dev/null and b/src/flags/GoSquared/64.png differ diff --git a/src/flags/GoSquared/code b/src/flags/GoSquared/code new file mode 100644 index 0000000..1031f19 --- /dev/null +++ b/src/flags/GoSquared/code @@ -0,0 +1 @@ +_gosquared \ No newline at end of file diff --git a/src/flags/Greece/16.png b/src/flags/Greece/16.png new file mode 100644 index 0000000..4833444 Binary files /dev/null and b/src/flags/Greece/16.png differ diff --git a/src/flags/Greece/24.png b/src/flags/Greece/24.png new file mode 100644 index 0000000..e615801 Binary files /dev/null and b/src/flags/Greece/24.png differ diff --git a/src/flags/Greece/32.png b/src/flags/Greece/32.png new file mode 100644 index 0000000..f8d07a4 Binary files /dev/null and b/src/flags/Greece/32.png differ diff --git a/src/flags/Greece/48.png b/src/flags/Greece/48.png new file mode 100644 index 0000000..5a6b58d Binary files /dev/null and b/src/flags/Greece/48.png differ diff --git a/src/flags/Greece/64.png b/src/flags/Greece/64.png new file mode 100644 index 0000000..1d4dd79 Binary files /dev/null and b/src/flags/Greece/64.png differ diff --git a/src/flags/Greece/code b/src/flags/Greece/code new file mode 100644 index 0000000..575d453 --- /dev/null +++ b/src/flags/Greece/code @@ -0,0 +1 @@ +GR \ No newline at end of file diff --git a/src/flags/Greenland/16.png b/src/flags/Greenland/16.png new file mode 100644 index 0000000..6a69a15 Binary files /dev/null and b/src/flags/Greenland/16.png differ diff --git a/src/flags/Greenland/24.png b/src/flags/Greenland/24.png new file mode 100644 index 0000000..08e8716 Binary files /dev/null and b/src/flags/Greenland/24.png differ diff --git a/src/flags/Greenland/32.png b/src/flags/Greenland/32.png new file mode 100644 index 0000000..bc81076 Binary files /dev/null and b/src/flags/Greenland/32.png differ diff --git a/src/flags/Greenland/48.png b/src/flags/Greenland/48.png new file mode 100644 index 0000000..afd5548 Binary files /dev/null and b/src/flags/Greenland/48.png differ diff --git a/src/flags/Greenland/64.png b/src/flags/Greenland/64.png new file mode 100644 index 0000000..3f15ca6 Binary files /dev/null and b/src/flags/Greenland/64.png differ diff --git a/src/flags/Greenland/code b/src/flags/Greenland/code new file mode 100644 index 0000000..2c2bed7 --- /dev/null +++ b/src/flags/Greenland/code @@ -0,0 +1 @@ +GL \ No newline at end of file diff --git a/src/flags/Grenada/16.png b/src/flags/Grenada/16.png new file mode 100644 index 0000000..86440f7 Binary files /dev/null and b/src/flags/Grenada/16.png differ diff --git a/src/flags/Grenada/24.png b/src/flags/Grenada/24.png new file mode 100644 index 0000000..806b14c Binary files /dev/null and b/src/flags/Grenada/24.png differ diff --git a/src/flags/Grenada/32.png b/src/flags/Grenada/32.png new file mode 100644 index 0000000..3771d47 Binary files /dev/null and b/src/flags/Grenada/32.png differ diff --git a/src/flags/Grenada/48.png b/src/flags/Grenada/48.png new file mode 100644 index 0000000..78b534f Binary files /dev/null and b/src/flags/Grenada/48.png differ diff --git a/src/flags/Grenada/64.png b/src/flags/Grenada/64.png new file mode 100644 index 0000000..40c437a Binary files /dev/null and b/src/flags/Grenada/64.png differ diff --git a/src/flags/Grenada/code b/src/flags/Grenada/code new file mode 100644 index 0000000..abe5abd --- /dev/null +++ b/src/flags/Grenada/code @@ -0,0 +1 @@ +GD \ No newline at end of file diff --git a/src/flags/Guam/16.png b/src/flags/Guam/16.png new file mode 100644 index 0000000..a82d60d Binary files /dev/null and b/src/flags/Guam/16.png differ diff --git a/src/flags/Guam/24.png b/src/flags/Guam/24.png new file mode 100644 index 0000000..b40b4ac Binary files /dev/null and b/src/flags/Guam/24.png differ diff --git a/src/flags/Guam/32.png b/src/flags/Guam/32.png new file mode 100644 index 0000000..44bd6d9 Binary files /dev/null and b/src/flags/Guam/32.png differ diff --git a/src/flags/Guam/48.png b/src/flags/Guam/48.png new file mode 100644 index 0000000..6407f24 Binary files /dev/null and b/src/flags/Guam/48.png differ diff --git a/src/flags/Guam/64.png b/src/flags/Guam/64.png new file mode 100644 index 0000000..b863a70 Binary files /dev/null and b/src/flags/Guam/64.png differ diff --git a/src/flags/Guam/code b/src/flags/Guam/code new file mode 100644 index 0000000..608552e --- /dev/null +++ b/src/flags/Guam/code @@ -0,0 +1 @@ +GU \ No newline at end of file diff --git a/src/flags/Guatemala/16.png b/src/flags/Guatemala/16.png new file mode 100644 index 0000000..5bfd1ef Binary files /dev/null and b/src/flags/Guatemala/16.png differ diff --git a/src/flags/Guatemala/24.png b/src/flags/Guatemala/24.png new file mode 100644 index 0000000..1e25fe2 Binary files /dev/null and b/src/flags/Guatemala/24.png differ diff --git a/src/flags/Guatemala/32.png b/src/flags/Guatemala/32.png new file mode 100644 index 0000000..ec28a26 Binary files /dev/null and b/src/flags/Guatemala/32.png differ diff --git a/src/flags/Guatemala/48.png b/src/flags/Guatemala/48.png new file mode 100644 index 0000000..8edd2cb Binary files /dev/null and b/src/flags/Guatemala/48.png differ diff --git a/src/flags/Guatemala/64.png b/src/flags/Guatemala/64.png new file mode 100644 index 0000000..cd0ff71 Binary files /dev/null and b/src/flags/Guatemala/64.png differ diff --git a/src/flags/Guatemala/code b/src/flags/Guatemala/code new file mode 100644 index 0000000..ce544a8 --- /dev/null +++ b/src/flags/Guatemala/code @@ -0,0 +1 @@ +GT \ No newline at end of file diff --git a/src/flags/Guernsey/16.png b/src/flags/Guernsey/16.png new file mode 100644 index 0000000..2d4de24 Binary files /dev/null and b/src/flags/Guernsey/16.png differ diff --git a/src/flags/Guernsey/24.png b/src/flags/Guernsey/24.png new file mode 100644 index 0000000..80a8dc5 Binary files /dev/null and b/src/flags/Guernsey/24.png differ diff --git a/src/flags/Guernsey/32.png b/src/flags/Guernsey/32.png new file mode 100644 index 0000000..4a98911 Binary files /dev/null and b/src/flags/Guernsey/32.png differ diff --git a/src/flags/Guernsey/48.png b/src/flags/Guernsey/48.png new file mode 100644 index 0000000..431e11f Binary files /dev/null and b/src/flags/Guernsey/48.png differ diff --git a/src/flags/Guernsey/64.png b/src/flags/Guernsey/64.png new file mode 100644 index 0000000..115a885 Binary files /dev/null and b/src/flags/Guernsey/64.png differ diff --git a/src/flags/Guernsey/code b/src/flags/Guernsey/code new file mode 100644 index 0000000..ef69c2e --- /dev/null +++ b/src/flags/Guernsey/code @@ -0,0 +1 @@ +GG \ No newline at end of file diff --git a/src/flags/Guinea-Bissau/16.png b/src/flags/Guinea-Bissau/16.png new file mode 100644 index 0000000..36c1c56 Binary files /dev/null and b/src/flags/Guinea-Bissau/16.png differ diff --git a/src/flags/Guinea-Bissau/24.png b/src/flags/Guinea-Bissau/24.png new file mode 100644 index 0000000..b09fef3 Binary files /dev/null and b/src/flags/Guinea-Bissau/24.png differ diff --git a/src/flags/Guinea-Bissau/32.png b/src/flags/Guinea-Bissau/32.png new file mode 100644 index 0000000..452f943 Binary files /dev/null and b/src/flags/Guinea-Bissau/32.png differ diff --git a/src/flags/Guinea-Bissau/48.png b/src/flags/Guinea-Bissau/48.png new file mode 100644 index 0000000..9ff8de4 Binary files /dev/null and b/src/flags/Guinea-Bissau/48.png differ diff --git a/src/flags/Guinea-Bissau/64.png b/src/flags/Guinea-Bissau/64.png new file mode 100644 index 0000000..16378af Binary files /dev/null and b/src/flags/Guinea-Bissau/64.png differ diff --git a/src/flags/Guinea-Bissau/code b/src/flags/Guinea-Bissau/code new file mode 100644 index 0000000..6d5e610 --- /dev/null +++ b/src/flags/Guinea-Bissau/code @@ -0,0 +1 @@ +GW \ No newline at end of file diff --git a/src/flags/Guinea/16.png b/src/flags/Guinea/16.png new file mode 100644 index 0000000..920b2b6 Binary files /dev/null and b/src/flags/Guinea/16.png differ diff --git a/src/flags/Guinea/24.png b/src/flags/Guinea/24.png new file mode 100644 index 0000000..86a62d9 Binary files /dev/null and b/src/flags/Guinea/24.png differ diff --git a/src/flags/Guinea/32.png b/src/flags/Guinea/32.png new file mode 100644 index 0000000..53bcff3 Binary files /dev/null and b/src/flags/Guinea/32.png differ diff --git a/src/flags/Guinea/48.png b/src/flags/Guinea/48.png new file mode 100644 index 0000000..f20cfe7 Binary files /dev/null and b/src/flags/Guinea/48.png differ diff --git a/src/flags/Guinea/64.png b/src/flags/Guinea/64.png new file mode 100644 index 0000000..e1d8dac Binary files /dev/null and b/src/flags/Guinea/64.png differ diff --git a/src/flags/Guinea/code b/src/flags/Guinea/code new file mode 100644 index 0000000..8ee8ab8 --- /dev/null +++ b/src/flags/Guinea/code @@ -0,0 +1 @@ +GN \ No newline at end of file diff --git a/src/flags/Guyana/16.png b/src/flags/Guyana/16.png new file mode 100644 index 0000000..ccb3579 Binary files /dev/null and b/src/flags/Guyana/16.png differ diff --git a/src/flags/Guyana/24.png b/src/flags/Guyana/24.png new file mode 100644 index 0000000..bc49aed Binary files /dev/null and b/src/flags/Guyana/24.png differ diff --git a/src/flags/Guyana/32.png b/src/flags/Guyana/32.png new file mode 100644 index 0000000..0570193 Binary files /dev/null and b/src/flags/Guyana/32.png differ diff --git a/src/flags/Guyana/48.png b/src/flags/Guyana/48.png new file mode 100644 index 0000000..f8201dd Binary files /dev/null and b/src/flags/Guyana/48.png differ diff --git a/src/flags/Guyana/64.png b/src/flags/Guyana/64.png new file mode 100644 index 0000000..9630ca9 Binary files /dev/null and b/src/flags/Guyana/64.png differ diff --git a/src/flags/Guyana/code b/src/flags/Guyana/code new file mode 100644 index 0000000..f7580ff --- /dev/null +++ b/src/flags/Guyana/code @@ -0,0 +1 @@ +GY \ No newline at end of file diff --git a/src/flags/Haiti/16.png b/src/flags/Haiti/16.png new file mode 100644 index 0000000..aac9a80 Binary files /dev/null and b/src/flags/Haiti/16.png differ diff --git a/src/flags/Haiti/24.png b/src/flags/Haiti/24.png new file mode 100644 index 0000000..f074a42 Binary files /dev/null and b/src/flags/Haiti/24.png differ diff --git a/src/flags/Haiti/32.png b/src/flags/Haiti/32.png new file mode 100644 index 0000000..b44dfd3 Binary files /dev/null and b/src/flags/Haiti/32.png differ diff --git a/src/flags/Haiti/48.png b/src/flags/Haiti/48.png new file mode 100644 index 0000000..17b2866 Binary files /dev/null and b/src/flags/Haiti/48.png differ diff --git a/src/flags/Haiti/64.png b/src/flags/Haiti/64.png new file mode 100644 index 0000000..f82e9dc Binary files /dev/null and b/src/flags/Haiti/64.png differ diff --git a/src/flags/Haiti/code b/src/flags/Haiti/code new file mode 100644 index 0000000..c8a8392 --- /dev/null +++ b/src/flags/Haiti/code @@ -0,0 +1 @@ +HT \ No newline at end of file diff --git a/src/flags/Honduras/16.png b/src/flags/Honduras/16.png new file mode 100644 index 0000000..0478e6d Binary files /dev/null and b/src/flags/Honduras/16.png differ diff --git a/src/flags/Honduras/24.png b/src/flags/Honduras/24.png new file mode 100644 index 0000000..a576e0a Binary files /dev/null and b/src/flags/Honduras/24.png differ diff --git a/src/flags/Honduras/32.png b/src/flags/Honduras/32.png new file mode 100644 index 0000000..19a9515 Binary files /dev/null and b/src/flags/Honduras/32.png differ diff --git a/src/flags/Honduras/48.png b/src/flags/Honduras/48.png new file mode 100644 index 0000000..0a24a29 Binary files /dev/null and b/src/flags/Honduras/48.png differ diff --git a/src/flags/Honduras/64.png b/src/flags/Honduras/64.png new file mode 100644 index 0000000..13868dd Binary files /dev/null and b/src/flags/Honduras/64.png differ diff --git a/src/flags/Honduras/code b/src/flags/Honduras/code new file mode 100644 index 0000000..236f426 --- /dev/null +++ b/src/flags/Honduras/code @@ -0,0 +1 @@ +HN \ No newline at end of file diff --git a/src/flags/Hong-Kong/16.png b/src/flags/Hong-Kong/16.png new file mode 100644 index 0000000..5800a9a Binary files /dev/null and b/src/flags/Hong-Kong/16.png differ diff --git a/src/flags/Hong-Kong/24.png b/src/flags/Hong-Kong/24.png new file mode 100644 index 0000000..4d8a4c6 Binary files /dev/null and b/src/flags/Hong-Kong/24.png differ diff --git a/src/flags/Hong-Kong/32.png b/src/flags/Hong-Kong/32.png new file mode 100644 index 0000000..f85b58f Binary files /dev/null and b/src/flags/Hong-Kong/32.png differ diff --git a/src/flags/Hong-Kong/48.png b/src/flags/Hong-Kong/48.png new file mode 100644 index 0000000..fe19729 Binary files /dev/null and b/src/flags/Hong-Kong/48.png differ diff --git a/src/flags/Hong-Kong/64.png b/src/flags/Hong-Kong/64.png new file mode 100644 index 0000000..bfaa034 Binary files /dev/null and b/src/flags/Hong-Kong/64.png differ diff --git a/src/flags/Hong-Kong/code b/src/flags/Hong-Kong/code new file mode 100644 index 0000000..4e2b774 --- /dev/null +++ b/src/flags/Hong-Kong/code @@ -0,0 +1 @@ +HK \ No newline at end of file diff --git a/src/flags/Hungary/16.png b/src/flags/Hungary/16.png new file mode 100644 index 0000000..d85e40c Binary files /dev/null and b/src/flags/Hungary/16.png differ diff --git a/src/flags/Hungary/24.png b/src/flags/Hungary/24.png new file mode 100644 index 0000000..c92f249 Binary files /dev/null and b/src/flags/Hungary/24.png differ diff --git a/src/flags/Hungary/32.png b/src/flags/Hungary/32.png new file mode 100644 index 0000000..b33d63b Binary files /dev/null and b/src/flags/Hungary/32.png differ diff --git a/src/flags/Hungary/48.png b/src/flags/Hungary/48.png new file mode 100644 index 0000000..877131e Binary files /dev/null and b/src/flags/Hungary/48.png differ diff --git a/src/flags/Hungary/64.png b/src/flags/Hungary/64.png new file mode 100644 index 0000000..10869e8 Binary files /dev/null and b/src/flags/Hungary/64.png differ diff --git a/src/flags/Hungary/code b/src/flags/Hungary/code new file mode 100644 index 0000000..ec1ca0f --- /dev/null +++ b/src/flags/Hungary/code @@ -0,0 +1 @@ +HU \ No newline at end of file diff --git a/src/flags/Iceland/16.png b/src/flags/Iceland/16.png new file mode 100644 index 0000000..2d82fef Binary files /dev/null and b/src/flags/Iceland/16.png differ diff --git a/src/flags/Iceland/24.png b/src/flags/Iceland/24.png new file mode 100644 index 0000000..1f17d40 Binary files /dev/null and b/src/flags/Iceland/24.png differ diff --git a/src/flags/Iceland/32.png b/src/flags/Iceland/32.png new file mode 100644 index 0000000..9e4bbb2 Binary files /dev/null and b/src/flags/Iceland/32.png differ diff --git a/src/flags/Iceland/48.png b/src/flags/Iceland/48.png new file mode 100644 index 0000000..8872d3c Binary files /dev/null and b/src/flags/Iceland/48.png differ diff --git a/src/flags/Iceland/64.png b/src/flags/Iceland/64.png new file mode 100644 index 0000000..51f5136 Binary files /dev/null and b/src/flags/Iceland/64.png differ diff --git a/src/flags/Iceland/code b/src/flags/Iceland/code new file mode 100644 index 0000000..890ae5b --- /dev/null +++ b/src/flags/Iceland/code @@ -0,0 +1 @@ +IS \ No newline at end of file diff --git a/src/flags/India/16.png b/src/flags/India/16.png new file mode 100644 index 0000000..5babb1c Binary files /dev/null and b/src/flags/India/16.png differ diff --git a/src/flags/India/24.png b/src/flags/India/24.png new file mode 100644 index 0000000..aaddaf0 Binary files /dev/null and b/src/flags/India/24.png differ diff --git a/src/flags/India/32.png b/src/flags/India/32.png new file mode 100644 index 0000000..c05f9ec Binary files /dev/null and b/src/flags/India/32.png differ diff --git a/src/flags/India/48.png b/src/flags/India/48.png new file mode 100644 index 0000000..298e238 Binary files /dev/null and b/src/flags/India/48.png differ diff --git a/src/flags/India/64.png b/src/flags/India/64.png new file mode 100644 index 0000000..b3e6d00 Binary files /dev/null and b/src/flags/India/64.png differ diff --git a/src/flags/India/code b/src/flags/India/code new file mode 100644 index 0000000..586886e --- /dev/null +++ b/src/flags/India/code @@ -0,0 +1 @@ +IN \ No newline at end of file diff --git a/src/flags/Indonesia/16.png b/src/flags/Indonesia/16.png new file mode 100644 index 0000000..c527691 Binary files /dev/null and b/src/flags/Indonesia/16.png differ diff --git a/src/flags/Indonesia/24.png b/src/flags/Indonesia/24.png new file mode 100644 index 0000000..5b005f8 Binary files /dev/null and b/src/flags/Indonesia/24.png differ diff --git a/src/flags/Indonesia/32.png b/src/flags/Indonesia/32.png new file mode 100644 index 0000000..3ef7a7b Binary files /dev/null and b/src/flags/Indonesia/32.png differ diff --git a/src/flags/Indonesia/48.png b/src/flags/Indonesia/48.png new file mode 100644 index 0000000..546f944 Binary files /dev/null and b/src/flags/Indonesia/48.png differ diff --git a/src/flags/Indonesia/64.png b/src/flags/Indonesia/64.png new file mode 100644 index 0000000..122114b Binary files /dev/null and b/src/flags/Indonesia/64.png differ diff --git a/src/flags/Indonesia/code b/src/flags/Indonesia/code new file mode 100644 index 0000000..be816a5 --- /dev/null +++ b/src/flags/Indonesia/code @@ -0,0 +1 @@ +ID \ No newline at end of file diff --git a/src/flags/Iran/16.png b/src/flags/Iran/16.png new file mode 100644 index 0000000..179734f Binary files /dev/null and b/src/flags/Iran/16.png differ diff --git a/src/flags/Iran/24.png b/src/flags/Iran/24.png new file mode 100644 index 0000000..904bd1f Binary files /dev/null and b/src/flags/Iran/24.png differ diff --git a/src/flags/Iran/32.png b/src/flags/Iran/32.png new file mode 100644 index 0000000..6cd7554 Binary files /dev/null and b/src/flags/Iran/32.png differ diff --git a/src/flags/Iran/48.png b/src/flags/Iran/48.png new file mode 100644 index 0000000..15113d0 Binary files /dev/null and b/src/flags/Iran/48.png differ diff --git a/src/flags/Iran/64.png b/src/flags/Iran/64.png new file mode 100644 index 0000000..7334dfb Binary files /dev/null and b/src/flags/Iran/64.png differ diff --git a/src/flags/Iran/code b/src/flags/Iran/code new file mode 100644 index 0000000..e8afe54 --- /dev/null +++ b/src/flags/Iran/code @@ -0,0 +1 @@ +IR \ No newline at end of file diff --git a/src/flags/Iraq/16.png b/src/flags/Iraq/16.png new file mode 100644 index 0000000..0ff41b8 Binary files /dev/null and b/src/flags/Iraq/16.png differ diff --git a/src/flags/Iraq/24.png b/src/flags/Iraq/24.png new file mode 100644 index 0000000..94005fa Binary files /dev/null and b/src/flags/Iraq/24.png differ diff --git a/src/flags/Iraq/32.png b/src/flags/Iraq/32.png new file mode 100644 index 0000000..f8a1157 Binary files /dev/null and b/src/flags/Iraq/32.png differ diff --git a/src/flags/Iraq/48.png b/src/flags/Iraq/48.png new file mode 100644 index 0000000..557c7a5 Binary files /dev/null and b/src/flags/Iraq/48.png differ diff --git a/src/flags/Iraq/64.png b/src/flags/Iraq/64.png new file mode 100644 index 0000000..e46d737 Binary files /dev/null and b/src/flags/Iraq/64.png differ diff --git a/src/flags/Iraq/code b/src/flags/Iraq/code new file mode 100644 index 0000000..0d4dedd --- /dev/null +++ b/src/flags/Iraq/code @@ -0,0 +1 @@ +IQ \ No newline at end of file diff --git a/src/flags/Ireland/16.png b/src/flags/Ireland/16.png new file mode 100644 index 0000000..6d206eb Binary files /dev/null and b/src/flags/Ireland/16.png differ diff --git a/src/flags/Ireland/24.png b/src/flags/Ireland/24.png new file mode 100644 index 0000000..869f497 Binary files /dev/null and b/src/flags/Ireland/24.png differ diff --git a/src/flags/Ireland/32.png b/src/flags/Ireland/32.png new file mode 100644 index 0000000..86e8b23 Binary files /dev/null and b/src/flags/Ireland/32.png differ diff --git a/src/flags/Ireland/48.png b/src/flags/Ireland/48.png new file mode 100644 index 0000000..178cefa Binary files /dev/null and b/src/flags/Ireland/48.png differ diff --git a/src/flags/Ireland/64.png b/src/flags/Ireland/64.png new file mode 100644 index 0000000..a4929a4 Binary files /dev/null and b/src/flags/Ireland/64.png differ diff --git a/src/flags/Ireland/code b/src/flags/Ireland/code new file mode 100644 index 0000000..ae92333 --- /dev/null +++ b/src/flags/Ireland/code @@ -0,0 +1 @@ +IE \ No newline at end of file diff --git a/src/flags/Isle-of-Man/16.png b/src/flags/Isle-of-Man/16.png new file mode 100644 index 0000000..7d7fb2a Binary files /dev/null and b/src/flags/Isle-of-Man/16.png differ diff --git a/src/flags/Isle-of-Man/24.png b/src/flags/Isle-of-Man/24.png new file mode 100644 index 0000000..06a716c Binary files /dev/null and b/src/flags/Isle-of-Man/24.png differ diff --git a/src/flags/Isle-of-Man/32.png b/src/flags/Isle-of-Man/32.png new file mode 100644 index 0000000..0c5874e Binary files /dev/null and b/src/flags/Isle-of-Man/32.png differ diff --git a/src/flags/Isle-of-Man/48.png b/src/flags/Isle-of-Man/48.png new file mode 100644 index 0000000..975346e Binary files /dev/null and b/src/flags/Isle-of-Man/48.png differ diff --git a/src/flags/Isle-of-Man/64.png b/src/flags/Isle-of-Man/64.png new file mode 100644 index 0000000..9d878d5 Binary files /dev/null and b/src/flags/Isle-of-Man/64.png differ diff --git a/src/flags/Isle-of-Man/code b/src/flags/Isle-of-Man/code new file mode 100644 index 0000000..4fecf97 --- /dev/null +++ b/src/flags/Isle-of-Man/code @@ -0,0 +1 @@ +IM \ No newline at end of file diff --git a/src/flags/Israel/16.png b/src/flags/Israel/16.png new file mode 100644 index 0000000..35384e3 Binary files /dev/null and b/src/flags/Israel/16.png differ diff --git a/src/flags/Israel/24.png b/src/flags/Israel/24.png new file mode 100644 index 0000000..e38a1ba Binary files /dev/null and b/src/flags/Israel/24.png differ diff --git a/src/flags/Israel/32.png b/src/flags/Israel/32.png new file mode 100644 index 0000000..b6f0da8 Binary files /dev/null and b/src/flags/Israel/32.png differ diff --git a/src/flags/Israel/48.png b/src/flags/Israel/48.png new file mode 100644 index 0000000..5a3649c Binary files /dev/null and b/src/flags/Israel/48.png differ diff --git a/src/flags/Israel/64.png b/src/flags/Israel/64.png new file mode 100644 index 0000000..5cca794 Binary files /dev/null and b/src/flags/Israel/64.png differ diff --git a/src/flags/Israel/code b/src/flags/Israel/code new file mode 100644 index 0000000..ea8647a --- /dev/null +++ b/src/flags/Israel/code @@ -0,0 +1 @@ +IL \ No newline at end of file diff --git a/src/flags/Italy/16.png b/src/flags/Italy/16.png new file mode 100644 index 0000000..752d831 Binary files /dev/null and b/src/flags/Italy/16.png differ diff --git a/src/flags/Italy/24.png b/src/flags/Italy/24.png new file mode 100644 index 0000000..dc9bf07 Binary files /dev/null and b/src/flags/Italy/24.png differ diff --git a/src/flags/Italy/32.png b/src/flags/Italy/32.png new file mode 100644 index 0000000..017efbc Binary files /dev/null and b/src/flags/Italy/32.png differ diff --git a/src/flags/Italy/48.png b/src/flags/Italy/48.png new file mode 100644 index 0000000..87b2c40 Binary files /dev/null and b/src/flags/Italy/48.png differ diff --git a/src/flags/Italy/64.png b/src/flags/Italy/64.png new file mode 100644 index 0000000..5ea1273 Binary files /dev/null and b/src/flags/Italy/64.png differ diff --git a/src/flags/Italy/code b/src/flags/Italy/code new file mode 100644 index 0000000..ea44fd8 --- /dev/null +++ b/src/flags/Italy/code @@ -0,0 +1 @@ +IT \ No newline at end of file diff --git a/src/flags/Jamaica/16.png b/src/flags/Jamaica/16.png new file mode 100644 index 0000000..ef41ef6 Binary files /dev/null and b/src/flags/Jamaica/16.png differ diff --git a/src/flags/Jamaica/24.png b/src/flags/Jamaica/24.png new file mode 100644 index 0000000..d1f0429 Binary files /dev/null and b/src/flags/Jamaica/24.png differ diff --git a/src/flags/Jamaica/32.png b/src/flags/Jamaica/32.png new file mode 100644 index 0000000..c8a4767 Binary files /dev/null and b/src/flags/Jamaica/32.png differ diff --git a/src/flags/Jamaica/48.png b/src/flags/Jamaica/48.png new file mode 100644 index 0000000..4cd5e04 Binary files /dev/null and b/src/flags/Jamaica/48.png differ diff --git a/src/flags/Jamaica/64.png b/src/flags/Jamaica/64.png new file mode 100644 index 0000000..97a2616 Binary files /dev/null and b/src/flags/Jamaica/64.png differ diff --git a/src/flags/Jamaica/code b/src/flags/Jamaica/code new file mode 100644 index 0000000..4b4b19f --- /dev/null +++ b/src/flags/Jamaica/code @@ -0,0 +1 @@ +JM \ No newline at end of file diff --git a/src/flags/Japan/16.png b/src/flags/Japan/16.png new file mode 100644 index 0000000..4e05699 Binary files /dev/null and b/src/flags/Japan/16.png differ diff --git a/src/flags/Japan/24.png b/src/flags/Japan/24.png new file mode 100644 index 0000000..d658b97 Binary files /dev/null and b/src/flags/Japan/24.png differ diff --git a/src/flags/Japan/32.png b/src/flags/Japan/32.png new file mode 100644 index 0000000..1811e8a Binary files /dev/null and b/src/flags/Japan/32.png differ diff --git a/src/flags/Japan/48.png b/src/flags/Japan/48.png new file mode 100644 index 0000000..421101e Binary files /dev/null and b/src/flags/Japan/48.png differ diff --git a/src/flags/Japan/64.png b/src/flags/Japan/64.png new file mode 100644 index 0000000..88694ae Binary files /dev/null and b/src/flags/Japan/64.png differ diff --git a/src/flags/Japan/code b/src/flags/Japan/code new file mode 100644 index 0000000..0d9f1e4 --- /dev/null +++ b/src/flags/Japan/code @@ -0,0 +1 @@ +JP \ No newline at end of file diff --git a/src/flags/Jersey/16.png b/src/flags/Jersey/16.png new file mode 100644 index 0000000..53aa415 Binary files /dev/null and b/src/flags/Jersey/16.png differ diff --git a/src/flags/Jersey/24.png b/src/flags/Jersey/24.png new file mode 100644 index 0000000..39c8741 Binary files /dev/null and b/src/flags/Jersey/24.png differ diff --git a/src/flags/Jersey/32.png b/src/flags/Jersey/32.png new file mode 100644 index 0000000..d27fd7d Binary files /dev/null and b/src/flags/Jersey/32.png differ diff --git a/src/flags/Jersey/48.png b/src/flags/Jersey/48.png new file mode 100644 index 0000000..0a535fb Binary files /dev/null and b/src/flags/Jersey/48.png differ diff --git a/src/flags/Jersey/64.png b/src/flags/Jersey/64.png new file mode 100644 index 0000000..fd0a772 Binary files /dev/null and b/src/flags/Jersey/64.png differ diff --git a/src/flags/Jersey/code b/src/flags/Jersey/code new file mode 100644 index 0000000..7aa0413 --- /dev/null +++ b/src/flags/Jersey/code @@ -0,0 +1 @@ +JE \ No newline at end of file diff --git a/src/flags/Jordan/16.png b/src/flags/Jordan/16.png new file mode 100644 index 0000000..92cb1f8 Binary files /dev/null and b/src/flags/Jordan/16.png differ diff --git a/src/flags/Jordan/24.png b/src/flags/Jordan/24.png new file mode 100644 index 0000000..6160c9d Binary files /dev/null and b/src/flags/Jordan/24.png differ diff --git a/src/flags/Jordan/32.png b/src/flags/Jordan/32.png new file mode 100644 index 0000000..dc32573 Binary files /dev/null and b/src/flags/Jordan/32.png differ diff --git a/src/flags/Jordan/48.png b/src/flags/Jordan/48.png new file mode 100644 index 0000000..3053037 Binary files /dev/null and b/src/flags/Jordan/48.png differ diff --git a/src/flags/Jordan/64.png b/src/flags/Jordan/64.png new file mode 100644 index 0000000..e319d31 Binary files /dev/null and b/src/flags/Jordan/64.png differ diff --git a/src/flags/Jordan/code b/src/flags/Jordan/code new file mode 100644 index 0000000..444a896 --- /dev/null +++ b/src/flags/Jordan/code @@ -0,0 +1 @@ +JO \ No newline at end of file diff --git a/src/flags/Kazakhstan/16.png b/src/flags/Kazakhstan/16.png new file mode 100644 index 0000000..e429322 Binary files /dev/null and b/src/flags/Kazakhstan/16.png differ diff --git a/src/flags/Kazakhstan/24.png b/src/flags/Kazakhstan/24.png new file mode 100644 index 0000000..101dfee Binary files /dev/null and b/src/flags/Kazakhstan/24.png differ diff --git a/src/flags/Kazakhstan/32.png b/src/flags/Kazakhstan/32.png new file mode 100644 index 0000000..448567d Binary files /dev/null and b/src/flags/Kazakhstan/32.png differ diff --git a/src/flags/Kazakhstan/48.png b/src/flags/Kazakhstan/48.png new file mode 100644 index 0000000..83fc4e7 Binary files /dev/null and b/src/flags/Kazakhstan/48.png differ diff --git a/src/flags/Kazakhstan/64.png b/src/flags/Kazakhstan/64.png new file mode 100644 index 0000000..f924e84 Binary files /dev/null and b/src/flags/Kazakhstan/64.png differ diff --git a/src/flags/Kazakhstan/code b/src/flags/Kazakhstan/code new file mode 100644 index 0000000..fb22dde --- /dev/null +++ b/src/flags/Kazakhstan/code @@ -0,0 +1 @@ +KZ \ No newline at end of file diff --git a/src/flags/Kenya/16.png b/src/flags/Kenya/16.png new file mode 100644 index 0000000..b7412dd Binary files /dev/null and b/src/flags/Kenya/16.png differ diff --git a/src/flags/Kenya/24.png b/src/flags/Kenya/24.png new file mode 100644 index 0000000..5614cbb Binary files /dev/null and b/src/flags/Kenya/24.png differ diff --git a/src/flags/Kenya/32.png b/src/flags/Kenya/32.png new file mode 100644 index 0000000..fb991d2 Binary files /dev/null and b/src/flags/Kenya/32.png differ diff --git a/src/flags/Kenya/48.png b/src/flags/Kenya/48.png new file mode 100644 index 0000000..5b3ff23 Binary files /dev/null and b/src/flags/Kenya/48.png differ diff --git a/src/flags/Kenya/64.png b/src/flags/Kenya/64.png new file mode 100644 index 0000000..f343f32 Binary files /dev/null and b/src/flags/Kenya/64.png differ diff --git a/src/flags/Kenya/code b/src/flags/Kenya/code new file mode 100644 index 0000000..6aad262 --- /dev/null +++ b/src/flags/Kenya/code @@ -0,0 +1 @@ +KE \ No newline at end of file diff --git a/src/flags/Kiribati/16.png b/src/flags/Kiribati/16.png new file mode 100644 index 0000000..3defe2e Binary files /dev/null and b/src/flags/Kiribati/16.png differ diff --git a/src/flags/Kiribati/24.png b/src/flags/Kiribati/24.png new file mode 100644 index 0000000..758d5f3 Binary files /dev/null and b/src/flags/Kiribati/24.png differ diff --git a/src/flags/Kiribati/32.png b/src/flags/Kiribati/32.png new file mode 100644 index 0000000..cd13ac2 Binary files /dev/null and b/src/flags/Kiribati/32.png differ diff --git a/src/flags/Kiribati/48.png b/src/flags/Kiribati/48.png new file mode 100644 index 0000000..d61e955 Binary files /dev/null and b/src/flags/Kiribati/48.png differ diff --git a/src/flags/Kiribati/64.png b/src/flags/Kiribati/64.png new file mode 100644 index 0000000..ce27d80 Binary files /dev/null and b/src/flags/Kiribati/64.png differ diff --git a/src/flags/Kiribati/code b/src/flags/Kiribati/code new file mode 100644 index 0000000..345a591 --- /dev/null +++ b/src/flags/Kiribati/code @@ -0,0 +1 @@ +KI \ No newline at end of file diff --git a/src/flags/Kosovo/16.png b/src/flags/Kosovo/16.png new file mode 100644 index 0000000..67dbac5 Binary files /dev/null and b/src/flags/Kosovo/16.png differ diff --git a/src/flags/Kosovo/24.png b/src/flags/Kosovo/24.png new file mode 100644 index 0000000..aeebefa Binary files /dev/null and b/src/flags/Kosovo/24.png differ diff --git a/src/flags/Kosovo/32.png b/src/flags/Kosovo/32.png new file mode 100644 index 0000000..59c4fdf Binary files /dev/null and b/src/flags/Kosovo/32.png differ diff --git a/src/flags/Kosovo/48.png b/src/flags/Kosovo/48.png new file mode 100644 index 0000000..7498641 Binary files /dev/null and b/src/flags/Kosovo/48.png differ diff --git a/src/flags/Kosovo/64.png b/src/flags/Kosovo/64.png new file mode 100644 index 0000000..7671fe4 Binary files /dev/null and b/src/flags/Kosovo/64.png differ diff --git a/src/flags/Kosovo/code b/src/flags/Kosovo/code new file mode 100644 index 0000000..8717dd5 --- /dev/null +++ b/src/flags/Kosovo/code @@ -0,0 +1 @@ +_kosovo \ No newline at end of file diff --git a/src/flags/Kuwait/16.png b/src/flags/Kuwait/16.png new file mode 100644 index 0000000..a8fc747 Binary files /dev/null and b/src/flags/Kuwait/16.png differ diff --git a/src/flags/Kuwait/24.png b/src/flags/Kuwait/24.png new file mode 100644 index 0000000..33446fb Binary files /dev/null and b/src/flags/Kuwait/24.png differ diff --git a/src/flags/Kuwait/32.png b/src/flags/Kuwait/32.png new file mode 100644 index 0000000..9f9e7e5 Binary files /dev/null and b/src/flags/Kuwait/32.png differ diff --git a/src/flags/Kuwait/48.png b/src/flags/Kuwait/48.png new file mode 100644 index 0000000..eb82702 Binary files /dev/null and b/src/flags/Kuwait/48.png differ diff --git a/src/flags/Kuwait/64.png b/src/flags/Kuwait/64.png new file mode 100644 index 0000000..5014588 Binary files /dev/null and b/src/flags/Kuwait/64.png differ diff --git a/src/flags/Kuwait/code b/src/flags/Kuwait/code new file mode 100644 index 0000000..9325af0 --- /dev/null +++ b/src/flags/Kuwait/code @@ -0,0 +1 @@ +KW \ No newline at end of file diff --git a/src/flags/Kyrgyzstan/16.png b/src/flags/Kyrgyzstan/16.png new file mode 100644 index 0000000..1fac5e0 Binary files /dev/null and b/src/flags/Kyrgyzstan/16.png differ diff --git a/src/flags/Kyrgyzstan/24.png b/src/flags/Kyrgyzstan/24.png new file mode 100644 index 0000000..42f1099 Binary files /dev/null and b/src/flags/Kyrgyzstan/24.png differ diff --git a/src/flags/Kyrgyzstan/32.png b/src/flags/Kyrgyzstan/32.png new file mode 100644 index 0000000..ca56895 Binary files /dev/null and b/src/flags/Kyrgyzstan/32.png differ diff --git a/src/flags/Kyrgyzstan/48.png b/src/flags/Kyrgyzstan/48.png new file mode 100644 index 0000000..e3056ab Binary files /dev/null and b/src/flags/Kyrgyzstan/48.png differ diff --git a/src/flags/Kyrgyzstan/64.png b/src/flags/Kyrgyzstan/64.png new file mode 100644 index 0000000..88f62a7 Binary files /dev/null and b/src/flags/Kyrgyzstan/64.png differ diff --git a/src/flags/Kyrgyzstan/code b/src/flags/Kyrgyzstan/code new file mode 100644 index 0000000..f4f0330 --- /dev/null +++ b/src/flags/Kyrgyzstan/code @@ -0,0 +1 @@ +KG \ No newline at end of file diff --git a/src/flags/Laos/16.png b/src/flags/Laos/16.png new file mode 100644 index 0000000..0c6b7d9 Binary files /dev/null and b/src/flags/Laos/16.png differ diff --git a/src/flags/Laos/24.png b/src/flags/Laos/24.png new file mode 100644 index 0000000..79a9f98 Binary files /dev/null and b/src/flags/Laos/24.png differ diff --git a/src/flags/Laos/32.png b/src/flags/Laos/32.png new file mode 100644 index 0000000..5e9df59 Binary files /dev/null and b/src/flags/Laos/32.png differ diff --git a/src/flags/Laos/48.png b/src/flags/Laos/48.png new file mode 100644 index 0000000..8a08501 Binary files /dev/null and b/src/flags/Laos/48.png differ diff --git a/src/flags/Laos/64.png b/src/flags/Laos/64.png new file mode 100644 index 0000000..6ab9a73 Binary files /dev/null and b/src/flags/Laos/64.png differ diff --git a/src/flags/Laos/code b/src/flags/Laos/code new file mode 100644 index 0000000..9471fdd --- /dev/null +++ b/src/flags/Laos/code @@ -0,0 +1 @@ +LA \ No newline at end of file diff --git a/src/flags/Latvia/16.png b/src/flags/Latvia/16.png new file mode 100644 index 0000000..e1bf752 Binary files /dev/null and b/src/flags/Latvia/16.png differ diff --git a/src/flags/Latvia/24.png b/src/flags/Latvia/24.png new file mode 100644 index 0000000..a103f69 Binary files /dev/null and b/src/flags/Latvia/24.png differ diff --git a/src/flags/Latvia/32.png b/src/flags/Latvia/32.png new file mode 100644 index 0000000..f0b6be6 Binary files /dev/null and b/src/flags/Latvia/32.png differ diff --git a/src/flags/Latvia/48.png b/src/flags/Latvia/48.png new file mode 100644 index 0000000..278b378 Binary files /dev/null and b/src/flags/Latvia/48.png differ diff --git a/src/flags/Latvia/64.png b/src/flags/Latvia/64.png new file mode 100644 index 0000000..f0f51e2 Binary files /dev/null and b/src/flags/Latvia/64.png differ diff --git a/src/flags/Latvia/code b/src/flags/Latvia/code new file mode 100644 index 0000000..31b927c --- /dev/null +++ b/src/flags/Latvia/code @@ -0,0 +1 @@ +LV \ No newline at end of file diff --git a/src/flags/Lebanon/16.png b/src/flags/Lebanon/16.png new file mode 100644 index 0000000..e721cdb Binary files /dev/null and b/src/flags/Lebanon/16.png differ diff --git a/src/flags/Lebanon/24.png b/src/flags/Lebanon/24.png new file mode 100644 index 0000000..8aac5ec Binary files /dev/null and b/src/flags/Lebanon/24.png differ diff --git a/src/flags/Lebanon/32.png b/src/flags/Lebanon/32.png new file mode 100644 index 0000000..91ef3e7 Binary files /dev/null and b/src/flags/Lebanon/32.png differ diff --git a/src/flags/Lebanon/48.png b/src/flags/Lebanon/48.png new file mode 100644 index 0000000..3da43bb Binary files /dev/null and b/src/flags/Lebanon/48.png differ diff --git a/src/flags/Lebanon/64.png b/src/flags/Lebanon/64.png new file mode 100644 index 0000000..3cd98f7 Binary files /dev/null and b/src/flags/Lebanon/64.png differ diff --git a/src/flags/Lebanon/code b/src/flags/Lebanon/code new file mode 100644 index 0000000..142e212 --- /dev/null +++ b/src/flags/Lebanon/code @@ -0,0 +1 @@ +LB \ No newline at end of file diff --git a/src/flags/Lesotho/16.png b/src/flags/Lesotho/16.png new file mode 100644 index 0000000..d449378 Binary files /dev/null and b/src/flags/Lesotho/16.png differ diff --git a/src/flags/Lesotho/24.png b/src/flags/Lesotho/24.png new file mode 100644 index 0000000..362ad6c Binary files /dev/null and b/src/flags/Lesotho/24.png differ diff --git a/src/flags/Lesotho/32.png b/src/flags/Lesotho/32.png new file mode 100644 index 0000000..57989cc Binary files /dev/null and b/src/flags/Lesotho/32.png differ diff --git a/src/flags/Lesotho/48.png b/src/flags/Lesotho/48.png new file mode 100644 index 0000000..e361f79 Binary files /dev/null and b/src/flags/Lesotho/48.png differ diff --git a/src/flags/Lesotho/64.png b/src/flags/Lesotho/64.png new file mode 100644 index 0000000..bce346a Binary files /dev/null and b/src/flags/Lesotho/64.png differ diff --git a/src/flags/Lesotho/code b/src/flags/Lesotho/code new file mode 100644 index 0000000..cbb8828 --- /dev/null +++ b/src/flags/Lesotho/code @@ -0,0 +1 @@ +LS \ No newline at end of file diff --git a/src/flags/Liberia/16.png b/src/flags/Liberia/16.png new file mode 100644 index 0000000..e4206d8 Binary files /dev/null and b/src/flags/Liberia/16.png differ diff --git a/src/flags/Liberia/24.png b/src/flags/Liberia/24.png new file mode 100644 index 0000000..002a70f Binary files /dev/null and b/src/flags/Liberia/24.png differ diff --git a/src/flags/Liberia/32.png b/src/flags/Liberia/32.png new file mode 100644 index 0000000..aa47753 Binary files /dev/null and b/src/flags/Liberia/32.png differ diff --git a/src/flags/Liberia/48.png b/src/flags/Liberia/48.png new file mode 100644 index 0000000..1b2be53 Binary files /dev/null and b/src/flags/Liberia/48.png differ diff --git a/src/flags/Liberia/64.png b/src/flags/Liberia/64.png new file mode 100644 index 0000000..a0dbbf2 Binary files /dev/null and b/src/flags/Liberia/64.png differ diff --git a/src/flags/Liberia/code b/src/flags/Liberia/code new file mode 100644 index 0000000..8f01a6d --- /dev/null +++ b/src/flags/Liberia/code @@ -0,0 +1 @@ +LR \ No newline at end of file diff --git a/src/flags/Libya/16.png b/src/flags/Libya/16.png new file mode 100644 index 0000000..ee3225f Binary files /dev/null and b/src/flags/Libya/16.png differ diff --git a/src/flags/Libya/24.png b/src/flags/Libya/24.png new file mode 100644 index 0000000..348cc63 Binary files /dev/null and b/src/flags/Libya/24.png differ diff --git a/src/flags/Libya/32.png b/src/flags/Libya/32.png new file mode 100644 index 0000000..bc02074 Binary files /dev/null and b/src/flags/Libya/32.png differ diff --git a/src/flags/Libya/48.png b/src/flags/Libya/48.png new file mode 100644 index 0000000..3aa5ced Binary files /dev/null and b/src/flags/Libya/48.png differ diff --git a/src/flags/Libya/64.png b/src/flags/Libya/64.png new file mode 100644 index 0000000..f9997a9 Binary files /dev/null and b/src/flags/Libya/64.png differ diff --git a/src/flags/Libya/code b/src/flags/Libya/code new file mode 100644 index 0000000..767af79 --- /dev/null +++ b/src/flags/Libya/code @@ -0,0 +1 @@ +LY \ No newline at end of file diff --git a/src/flags/Liechtenstein/16.png b/src/flags/Liechtenstein/16.png new file mode 100644 index 0000000..238a84a Binary files /dev/null and b/src/flags/Liechtenstein/16.png differ diff --git a/src/flags/Liechtenstein/24.png b/src/flags/Liechtenstein/24.png new file mode 100644 index 0000000..69297d9 Binary files /dev/null and b/src/flags/Liechtenstein/24.png differ diff --git a/src/flags/Liechtenstein/32.png b/src/flags/Liechtenstein/32.png new file mode 100644 index 0000000..3357412 Binary files /dev/null and b/src/flags/Liechtenstein/32.png differ diff --git a/src/flags/Liechtenstein/48.png b/src/flags/Liechtenstein/48.png new file mode 100644 index 0000000..c5d6a5f Binary files /dev/null and b/src/flags/Liechtenstein/48.png differ diff --git a/src/flags/Liechtenstein/64.png b/src/flags/Liechtenstein/64.png new file mode 100644 index 0000000..496c5a4 Binary files /dev/null and b/src/flags/Liechtenstein/64.png differ diff --git a/src/flags/Liechtenstein/code b/src/flags/Liechtenstein/code new file mode 100644 index 0000000..bb0f170 --- /dev/null +++ b/src/flags/Liechtenstein/code @@ -0,0 +1 @@ +LI \ No newline at end of file diff --git a/src/flags/Lithuania/16.png b/src/flags/Lithuania/16.png new file mode 100644 index 0000000..925b739 Binary files /dev/null and b/src/flags/Lithuania/16.png differ diff --git a/src/flags/Lithuania/24.png b/src/flags/Lithuania/24.png new file mode 100644 index 0000000..4cb7a83 Binary files /dev/null and b/src/flags/Lithuania/24.png differ diff --git a/src/flags/Lithuania/32.png b/src/flags/Lithuania/32.png new file mode 100644 index 0000000..0de1439 Binary files /dev/null and b/src/flags/Lithuania/32.png differ diff --git a/src/flags/Lithuania/48.png b/src/flags/Lithuania/48.png new file mode 100644 index 0000000..1b8ab37 Binary files /dev/null and b/src/flags/Lithuania/48.png differ diff --git a/src/flags/Lithuania/64.png b/src/flags/Lithuania/64.png new file mode 100644 index 0000000..df0bc9a Binary files /dev/null and b/src/flags/Lithuania/64.png differ diff --git a/src/flags/Lithuania/code b/src/flags/Lithuania/code new file mode 100644 index 0000000..cf6ee93 --- /dev/null +++ b/src/flags/Lithuania/code @@ -0,0 +1 @@ +LT \ No newline at end of file diff --git a/src/flags/Luxembourg/16.png b/src/flags/Luxembourg/16.png new file mode 100644 index 0000000..ca8e1a4 Binary files /dev/null and b/src/flags/Luxembourg/16.png differ diff --git a/src/flags/Luxembourg/24.png b/src/flags/Luxembourg/24.png new file mode 100644 index 0000000..15fd24c Binary files /dev/null and b/src/flags/Luxembourg/24.png differ diff --git a/src/flags/Luxembourg/32.png b/src/flags/Luxembourg/32.png new file mode 100644 index 0000000..4f2f917 Binary files /dev/null and b/src/flags/Luxembourg/32.png differ diff --git a/src/flags/Luxembourg/48.png b/src/flags/Luxembourg/48.png new file mode 100644 index 0000000..414edfe Binary files /dev/null and b/src/flags/Luxembourg/48.png differ diff --git a/src/flags/Luxembourg/64.png b/src/flags/Luxembourg/64.png new file mode 100644 index 0000000..4a51870 Binary files /dev/null and b/src/flags/Luxembourg/64.png differ diff --git a/src/flags/Luxembourg/code b/src/flags/Luxembourg/code new file mode 100644 index 0000000..c6395d2 --- /dev/null +++ b/src/flags/Luxembourg/code @@ -0,0 +1 @@ +LU \ No newline at end of file diff --git a/src/flags/Macau/16.png b/src/flags/Macau/16.png new file mode 100644 index 0000000..e6adb08 Binary files /dev/null and b/src/flags/Macau/16.png differ diff --git a/src/flags/Macau/24.png b/src/flags/Macau/24.png new file mode 100644 index 0000000..b858e39 Binary files /dev/null and b/src/flags/Macau/24.png differ diff --git a/src/flags/Macau/32.png b/src/flags/Macau/32.png new file mode 100644 index 0000000..0d38f31 Binary files /dev/null and b/src/flags/Macau/32.png differ diff --git a/src/flags/Macau/48.png b/src/flags/Macau/48.png new file mode 100644 index 0000000..2f5524b Binary files /dev/null and b/src/flags/Macau/48.png differ diff --git a/src/flags/Macau/64.png b/src/flags/Macau/64.png new file mode 100644 index 0000000..649de22 Binary files /dev/null and b/src/flags/Macau/64.png differ diff --git a/src/flags/Macau/code b/src/flags/Macau/code new file mode 100644 index 0000000..ee70c4c --- /dev/null +++ b/src/flags/Macau/code @@ -0,0 +1 @@ +MO \ No newline at end of file diff --git a/src/flags/Macedonia/16.png b/src/flags/Macedonia/16.png new file mode 100644 index 0000000..9191d31 Binary files /dev/null and b/src/flags/Macedonia/16.png differ diff --git a/src/flags/Macedonia/24.png b/src/flags/Macedonia/24.png new file mode 100644 index 0000000..ad2e381 Binary files /dev/null and b/src/flags/Macedonia/24.png differ diff --git a/src/flags/Macedonia/32.png b/src/flags/Macedonia/32.png new file mode 100644 index 0000000..864d7a1 Binary files /dev/null and b/src/flags/Macedonia/32.png differ diff --git a/src/flags/Macedonia/48.png b/src/flags/Macedonia/48.png new file mode 100644 index 0000000..4ff0aa1 Binary files /dev/null and b/src/flags/Macedonia/48.png differ diff --git a/src/flags/Macedonia/64.png b/src/flags/Macedonia/64.png new file mode 100644 index 0000000..e6fa0e1 Binary files /dev/null and b/src/flags/Macedonia/64.png differ diff --git a/src/flags/Macedonia/code b/src/flags/Macedonia/code new file mode 100644 index 0000000..4e0cad9 --- /dev/null +++ b/src/flags/Macedonia/code @@ -0,0 +1 @@ +MK \ No newline at end of file diff --git a/src/flags/Madagascar/16.png b/src/flags/Madagascar/16.png new file mode 100644 index 0000000..886c0b0 Binary files /dev/null and b/src/flags/Madagascar/16.png differ diff --git a/src/flags/Madagascar/24.png b/src/flags/Madagascar/24.png new file mode 100644 index 0000000..a7da211 Binary files /dev/null and b/src/flags/Madagascar/24.png differ diff --git a/src/flags/Madagascar/32.png b/src/flags/Madagascar/32.png new file mode 100644 index 0000000..697d509 Binary files /dev/null and b/src/flags/Madagascar/32.png differ diff --git a/src/flags/Madagascar/48.png b/src/flags/Madagascar/48.png new file mode 100644 index 0000000..3579034 Binary files /dev/null and b/src/flags/Madagascar/48.png differ diff --git a/src/flags/Madagascar/64.png b/src/flags/Madagascar/64.png new file mode 100644 index 0000000..60cdc1a Binary files /dev/null and b/src/flags/Madagascar/64.png differ diff --git a/src/flags/Madagascar/code b/src/flags/Madagascar/code new file mode 100644 index 0000000..66dda71 --- /dev/null +++ b/src/flags/Madagascar/code @@ -0,0 +1 @@ +MG \ No newline at end of file diff --git a/src/flags/Malawi/16.png b/src/flags/Malawi/16.png new file mode 100644 index 0000000..56f1005 Binary files /dev/null and b/src/flags/Malawi/16.png differ diff --git a/src/flags/Malawi/24.png b/src/flags/Malawi/24.png new file mode 100644 index 0000000..7fe6788 Binary files /dev/null and b/src/flags/Malawi/24.png differ diff --git a/src/flags/Malawi/32.png b/src/flags/Malawi/32.png new file mode 100644 index 0000000..90403f8 Binary files /dev/null and b/src/flags/Malawi/32.png differ diff --git a/src/flags/Malawi/48.png b/src/flags/Malawi/48.png new file mode 100644 index 0000000..2abde51 Binary files /dev/null and b/src/flags/Malawi/48.png differ diff --git a/src/flags/Malawi/64.png b/src/flags/Malawi/64.png new file mode 100644 index 0000000..c6f8f4a Binary files /dev/null and b/src/flags/Malawi/64.png differ diff --git a/src/flags/Malawi/code b/src/flags/Malawi/code new file mode 100644 index 0000000..6993692 --- /dev/null +++ b/src/flags/Malawi/code @@ -0,0 +1 @@ +MW \ No newline at end of file diff --git a/src/flags/Malaysia/16.png b/src/flags/Malaysia/16.png new file mode 100644 index 0000000..3cd2de8 Binary files /dev/null and b/src/flags/Malaysia/16.png differ diff --git a/src/flags/Malaysia/24.png b/src/flags/Malaysia/24.png new file mode 100644 index 0000000..59c486f Binary files /dev/null and b/src/flags/Malaysia/24.png differ diff --git a/src/flags/Malaysia/32.png b/src/flags/Malaysia/32.png new file mode 100644 index 0000000..5587ff2 Binary files /dev/null and b/src/flags/Malaysia/32.png differ diff --git a/src/flags/Malaysia/48.png b/src/flags/Malaysia/48.png new file mode 100644 index 0000000..5993ba9 Binary files /dev/null and b/src/flags/Malaysia/48.png differ diff --git a/src/flags/Malaysia/64.png b/src/flags/Malaysia/64.png new file mode 100644 index 0000000..4eba731 Binary files /dev/null and b/src/flags/Malaysia/64.png differ diff --git a/src/flags/Malaysia/code b/src/flags/Malaysia/code new file mode 100644 index 0000000..7282f9c --- /dev/null +++ b/src/flags/Malaysia/code @@ -0,0 +1 @@ +MY \ No newline at end of file diff --git a/src/flags/Maldives/16.png b/src/flags/Maldives/16.png new file mode 100644 index 0000000..8257ee2 Binary files /dev/null and b/src/flags/Maldives/16.png differ diff --git a/src/flags/Maldives/24.png b/src/flags/Maldives/24.png new file mode 100644 index 0000000..2ae7fa7 Binary files /dev/null and b/src/flags/Maldives/24.png differ diff --git a/src/flags/Maldives/32.png b/src/flags/Maldives/32.png new file mode 100644 index 0000000..5437c3b Binary files /dev/null and b/src/flags/Maldives/32.png differ diff --git a/src/flags/Maldives/48.png b/src/flags/Maldives/48.png new file mode 100644 index 0000000..f3bfa18 Binary files /dev/null and b/src/flags/Maldives/48.png differ diff --git a/src/flags/Maldives/64.png b/src/flags/Maldives/64.png new file mode 100644 index 0000000..3b4b9e4 Binary files /dev/null and b/src/flags/Maldives/64.png differ diff --git a/src/flags/Maldives/code b/src/flags/Maldives/code new file mode 100644 index 0000000..b97de31 --- /dev/null +++ b/src/flags/Maldives/code @@ -0,0 +1 @@ +MV \ No newline at end of file diff --git a/src/flags/Mali/16.png b/src/flags/Mali/16.png new file mode 100644 index 0000000..d83dda8 Binary files /dev/null and b/src/flags/Mali/16.png differ diff --git a/src/flags/Mali/24.png b/src/flags/Mali/24.png new file mode 100644 index 0000000..bf43abe Binary files /dev/null and b/src/flags/Mali/24.png differ diff --git a/src/flags/Mali/32.png b/src/flags/Mali/32.png new file mode 100644 index 0000000..d18c987 Binary files /dev/null and b/src/flags/Mali/32.png differ diff --git a/src/flags/Mali/48.png b/src/flags/Mali/48.png new file mode 100644 index 0000000..6e95c4c Binary files /dev/null and b/src/flags/Mali/48.png differ diff --git a/src/flags/Mali/64.png b/src/flags/Mali/64.png new file mode 100644 index 0000000..3e1f600 Binary files /dev/null and b/src/flags/Mali/64.png differ diff --git a/src/flags/Mali/code b/src/flags/Mali/code new file mode 100644 index 0000000..be71437 --- /dev/null +++ b/src/flags/Mali/code @@ -0,0 +1 @@ +ML \ No newline at end of file diff --git a/src/flags/Malta/16.png b/src/flags/Malta/16.png new file mode 100644 index 0000000..f0c340d Binary files /dev/null and b/src/flags/Malta/16.png differ diff --git a/src/flags/Malta/24.png b/src/flags/Malta/24.png new file mode 100644 index 0000000..0dd6971 Binary files /dev/null and b/src/flags/Malta/24.png differ diff --git a/src/flags/Malta/32.png b/src/flags/Malta/32.png new file mode 100644 index 0000000..7004e41 Binary files /dev/null and b/src/flags/Malta/32.png differ diff --git a/src/flags/Malta/48.png b/src/flags/Malta/48.png new file mode 100644 index 0000000..fa293df Binary files /dev/null and b/src/flags/Malta/48.png differ diff --git a/src/flags/Malta/64.png b/src/flags/Malta/64.png new file mode 100644 index 0000000..992f8fe Binary files /dev/null and b/src/flags/Malta/64.png differ diff --git a/src/flags/Malta/code b/src/flags/Malta/code new file mode 100644 index 0000000..d6e6b50 --- /dev/null +++ b/src/flags/Malta/code @@ -0,0 +1 @@ +MT \ No newline at end of file diff --git a/src/flags/Mars/16.png b/src/flags/Mars/16.png new file mode 100644 index 0000000..9238333 Binary files /dev/null and b/src/flags/Mars/16.png differ diff --git a/src/flags/Mars/24.png b/src/flags/Mars/24.png new file mode 100644 index 0000000..598147f Binary files /dev/null and b/src/flags/Mars/24.png differ diff --git a/src/flags/Mars/32.png b/src/flags/Mars/32.png new file mode 100644 index 0000000..c7ff4b9 Binary files /dev/null and b/src/flags/Mars/32.png differ diff --git a/src/flags/Mars/48.png b/src/flags/Mars/48.png new file mode 100644 index 0000000..38ea5b7 Binary files /dev/null and b/src/flags/Mars/48.png differ diff --git a/src/flags/Mars/64.png b/src/flags/Mars/64.png new file mode 100644 index 0000000..f219e72 Binary files /dev/null and b/src/flags/Mars/64.png differ diff --git a/src/flags/Mars/code b/src/flags/Mars/code new file mode 100644 index 0000000..5346129 --- /dev/null +++ b/src/flags/Mars/code @@ -0,0 +1 @@ +_mars \ No newline at end of file diff --git a/src/flags/Marshall-Islands/16.png b/src/flags/Marshall-Islands/16.png new file mode 100644 index 0000000..8742565 Binary files /dev/null and b/src/flags/Marshall-Islands/16.png differ diff --git a/src/flags/Marshall-Islands/24.png b/src/flags/Marshall-Islands/24.png new file mode 100644 index 0000000..0ef4492 Binary files /dev/null and b/src/flags/Marshall-Islands/24.png differ diff --git a/src/flags/Marshall-Islands/32.png b/src/flags/Marshall-Islands/32.png new file mode 100644 index 0000000..2c50fb4 Binary files /dev/null and b/src/flags/Marshall-Islands/32.png differ diff --git a/src/flags/Marshall-Islands/48.png b/src/flags/Marshall-Islands/48.png new file mode 100644 index 0000000..8c9362e Binary files /dev/null and b/src/flags/Marshall-Islands/48.png differ diff --git a/src/flags/Marshall-Islands/64.png b/src/flags/Marshall-Islands/64.png new file mode 100644 index 0000000..83c0e2d Binary files /dev/null and b/src/flags/Marshall-Islands/64.png differ diff --git a/src/flags/Marshall-Islands/code b/src/flags/Marshall-Islands/code new file mode 100644 index 0000000..69202cc --- /dev/null +++ b/src/flags/Marshall-Islands/code @@ -0,0 +1 @@ +MH \ No newline at end of file diff --git a/src/flags/Mauritania/16.png b/src/flags/Mauritania/16.png new file mode 100644 index 0000000..598bfea Binary files /dev/null and b/src/flags/Mauritania/16.png differ diff --git a/src/flags/Mauritania/24.png b/src/flags/Mauritania/24.png new file mode 100644 index 0000000..424e49c Binary files /dev/null and b/src/flags/Mauritania/24.png differ diff --git a/src/flags/Mauritania/32.png b/src/flags/Mauritania/32.png new file mode 100644 index 0000000..5dc2bd6 Binary files /dev/null and b/src/flags/Mauritania/32.png differ diff --git a/src/flags/Mauritania/48.png b/src/flags/Mauritania/48.png new file mode 100644 index 0000000..174a6fa Binary files /dev/null and b/src/flags/Mauritania/48.png differ diff --git a/src/flags/Mauritania/64.png b/src/flags/Mauritania/64.png new file mode 100644 index 0000000..4492c7b Binary files /dev/null and b/src/flags/Mauritania/64.png differ diff --git a/src/flags/Mauritania/code b/src/flags/Mauritania/code new file mode 100644 index 0000000..5748b72 --- /dev/null +++ b/src/flags/Mauritania/code @@ -0,0 +1 @@ +MR \ No newline at end of file diff --git a/src/flags/Mauritius/16.png b/src/flags/Mauritius/16.png new file mode 100644 index 0000000..09a253f Binary files /dev/null and b/src/flags/Mauritius/16.png differ diff --git a/src/flags/Mauritius/24.png b/src/flags/Mauritius/24.png new file mode 100644 index 0000000..d88f933 Binary files /dev/null and b/src/flags/Mauritius/24.png differ diff --git a/src/flags/Mauritius/32.png b/src/flags/Mauritius/32.png new file mode 100644 index 0000000..6f3ecc7 Binary files /dev/null and b/src/flags/Mauritius/32.png differ diff --git a/src/flags/Mauritius/48.png b/src/flags/Mauritius/48.png new file mode 100644 index 0000000..2e4c0d6 Binary files /dev/null and b/src/flags/Mauritius/48.png differ diff --git a/src/flags/Mauritius/64.png b/src/flags/Mauritius/64.png new file mode 100644 index 0000000..928a6a6 Binary files /dev/null and b/src/flags/Mauritius/64.png differ diff --git a/src/flags/Mauritius/code b/src/flags/Mauritius/code new file mode 100644 index 0000000..8a154d8 --- /dev/null +++ b/src/flags/Mauritius/code @@ -0,0 +1 @@ +MU \ No newline at end of file diff --git a/src/flags/Mayotte/16.png b/src/flags/Mayotte/16.png new file mode 100644 index 0000000..c2d94c9 Binary files /dev/null and b/src/flags/Mayotte/16.png differ diff --git a/src/flags/Mayotte/24.png b/src/flags/Mayotte/24.png new file mode 100644 index 0000000..098f41e Binary files /dev/null and b/src/flags/Mayotte/24.png differ diff --git a/src/flags/Mayotte/32.png b/src/flags/Mayotte/32.png new file mode 100644 index 0000000..a5a8232 Binary files /dev/null and b/src/flags/Mayotte/32.png differ diff --git a/src/flags/Mayotte/48.png b/src/flags/Mayotte/48.png new file mode 100644 index 0000000..bcba949 Binary files /dev/null and b/src/flags/Mayotte/48.png differ diff --git a/src/flags/Mayotte/64.png b/src/flags/Mayotte/64.png new file mode 100644 index 0000000..8b3310d Binary files /dev/null and b/src/flags/Mayotte/64.png differ diff --git a/src/flags/Mayotte/code b/src/flags/Mayotte/code new file mode 100644 index 0000000..c102232 --- /dev/null +++ b/src/flags/Mayotte/code @@ -0,0 +1 @@ +YT \ No newline at end of file diff --git a/src/flags/Mexico/16.png b/src/flags/Mexico/16.png new file mode 100644 index 0000000..7bdccc9 Binary files /dev/null and b/src/flags/Mexico/16.png differ diff --git a/src/flags/Mexico/24.png b/src/flags/Mexico/24.png new file mode 100644 index 0000000..49eedf9 Binary files /dev/null and b/src/flags/Mexico/24.png differ diff --git a/src/flags/Mexico/32.png b/src/flags/Mexico/32.png new file mode 100644 index 0000000..ce050e4 Binary files /dev/null and b/src/flags/Mexico/32.png differ diff --git a/src/flags/Mexico/48.png b/src/flags/Mexico/48.png new file mode 100644 index 0000000..affd247 Binary files /dev/null and b/src/flags/Mexico/48.png differ diff --git a/src/flags/Mexico/64.png b/src/flags/Mexico/64.png new file mode 100644 index 0000000..a08bb61 Binary files /dev/null and b/src/flags/Mexico/64.png differ diff --git a/src/flags/Mexico/code b/src/flags/Mexico/code new file mode 100644 index 0000000..6a9541d --- /dev/null +++ b/src/flags/Mexico/code @@ -0,0 +1 @@ +MX \ No newline at end of file diff --git a/src/flags/Micronesia/16.png b/src/flags/Micronesia/16.png new file mode 100644 index 0000000..79ca3f0 Binary files /dev/null and b/src/flags/Micronesia/16.png differ diff --git a/src/flags/Micronesia/24.png b/src/flags/Micronesia/24.png new file mode 100644 index 0000000..2aa36a2 Binary files /dev/null and b/src/flags/Micronesia/24.png differ diff --git a/src/flags/Micronesia/32.png b/src/flags/Micronesia/32.png new file mode 100644 index 0000000..14c4111 Binary files /dev/null and b/src/flags/Micronesia/32.png differ diff --git a/src/flags/Micronesia/48.png b/src/flags/Micronesia/48.png new file mode 100644 index 0000000..d9b2eb6 Binary files /dev/null and b/src/flags/Micronesia/48.png differ diff --git a/src/flags/Micronesia/64.png b/src/flags/Micronesia/64.png new file mode 100644 index 0000000..e415378 Binary files /dev/null and b/src/flags/Micronesia/64.png differ diff --git a/src/flags/Micronesia/code b/src/flags/Micronesia/code new file mode 100644 index 0000000..605a174 --- /dev/null +++ b/src/flags/Micronesia/code @@ -0,0 +1 @@ +FM \ No newline at end of file diff --git a/src/flags/Moldova/16.png b/src/flags/Moldova/16.png new file mode 100644 index 0000000..a0a25f1 Binary files /dev/null and b/src/flags/Moldova/16.png differ diff --git a/src/flags/Moldova/24.png b/src/flags/Moldova/24.png new file mode 100644 index 0000000..c061466 Binary files /dev/null and b/src/flags/Moldova/24.png differ diff --git a/src/flags/Moldova/32.png b/src/flags/Moldova/32.png new file mode 100644 index 0000000..30da885 Binary files /dev/null and b/src/flags/Moldova/32.png differ diff --git a/src/flags/Moldova/48.png b/src/flags/Moldova/48.png new file mode 100644 index 0000000..5a56e97 Binary files /dev/null and b/src/flags/Moldova/48.png differ diff --git a/src/flags/Moldova/64.png b/src/flags/Moldova/64.png new file mode 100644 index 0000000..ddc62bd Binary files /dev/null and b/src/flags/Moldova/64.png differ diff --git a/src/flags/Moldova/code b/src/flags/Moldova/code new file mode 100644 index 0000000..3578ec3 --- /dev/null +++ b/src/flags/Moldova/code @@ -0,0 +1 @@ +MD \ No newline at end of file diff --git a/src/flags/Monaco/16.png b/src/flags/Monaco/16.png new file mode 100644 index 0000000..c6e7be1 Binary files /dev/null and b/src/flags/Monaco/16.png differ diff --git a/src/flags/Monaco/24.png b/src/flags/Monaco/24.png new file mode 100644 index 0000000..636e14f Binary files /dev/null and b/src/flags/Monaco/24.png differ diff --git a/src/flags/Monaco/32.png b/src/flags/Monaco/32.png new file mode 100644 index 0000000..05c167a Binary files /dev/null and b/src/flags/Monaco/32.png differ diff --git a/src/flags/Monaco/48.png b/src/flags/Monaco/48.png new file mode 100644 index 0000000..d63b37f Binary files /dev/null and b/src/flags/Monaco/48.png differ diff --git a/src/flags/Monaco/64.png b/src/flags/Monaco/64.png new file mode 100644 index 0000000..08c26c2 Binary files /dev/null and b/src/flags/Monaco/64.png differ diff --git a/src/flags/Monaco/code b/src/flags/Monaco/code new file mode 100644 index 0000000..cdde086 --- /dev/null +++ b/src/flags/Monaco/code @@ -0,0 +1 @@ +MC \ No newline at end of file diff --git a/src/flags/Mongolia/16.png b/src/flags/Mongolia/16.png new file mode 100644 index 0000000..d4a6e5c Binary files /dev/null and b/src/flags/Mongolia/16.png differ diff --git a/src/flags/Mongolia/24.png b/src/flags/Mongolia/24.png new file mode 100644 index 0000000..476f9f6 Binary files /dev/null and b/src/flags/Mongolia/24.png differ diff --git a/src/flags/Mongolia/32.png b/src/flags/Mongolia/32.png new file mode 100644 index 0000000..d7461f9 Binary files /dev/null and b/src/flags/Mongolia/32.png differ diff --git a/src/flags/Mongolia/48.png b/src/flags/Mongolia/48.png new file mode 100644 index 0000000..7ff1e22 Binary files /dev/null and b/src/flags/Mongolia/48.png differ diff --git a/src/flags/Mongolia/64.png b/src/flags/Mongolia/64.png new file mode 100644 index 0000000..fca9237 Binary files /dev/null and b/src/flags/Mongolia/64.png differ diff --git a/src/flags/Mongolia/code b/src/flags/Mongolia/code new file mode 100644 index 0000000..99d802a --- /dev/null +++ b/src/flags/Mongolia/code @@ -0,0 +1 @@ +MN \ No newline at end of file diff --git a/src/flags/Montenegro/16.png b/src/flags/Montenegro/16.png new file mode 100644 index 0000000..bada8b9 Binary files /dev/null and b/src/flags/Montenegro/16.png differ diff --git a/src/flags/Montenegro/24.png b/src/flags/Montenegro/24.png new file mode 100644 index 0000000..fe0f732 Binary files /dev/null and b/src/flags/Montenegro/24.png differ diff --git a/src/flags/Montenegro/32.png b/src/flags/Montenegro/32.png new file mode 100644 index 0000000..e1eebba Binary files /dev/null and b/src/flags/Montenegro/32.png differ diff --git a/src/flags/Montenegro/48.png b/src/flags/Montenegro/48.png new file mode 100644 index 0000000..f55be70 Binary files /dev/null and b/src/flags/Montenegro/48.png differ diff --git a/src/flags/Montenegro/64.png b/src/flags/Montenegro/64.png new file mode 100644 index 0000000..744d135 Binary files /dev/null and b/src/flags/Montenegro/64.png differ diff --git a/src/flags/Montenegro/code b/src/flags/Montenegro/code new file mode 100644 index 0000000..b607d5c --- /dev/null +++ b/src/flags/Montenegro/code @@ -0,0 +1 @@ +ME \ No newline at end of file diff --git a/src/flags/Montserrat/16.png b/src/flags/Montserrat/16.png new file mode 100644 index 0000000..999d055 Binary files /dev/null and b/src/flags/Montserrat/16.png differ diff --git a/src/flags/Montserrat/24.png b/src/flags/Montserrat/24.png new file mode 100644 index 0000000..c55b4b3 Binary files /dev/null and b/src/flags/Montserrat/24.png differ diff --git a/src/flags/Montserrat/32.png b/src/flags/Montserrat/32.png new file mode 100644 index 0000000..b8b5d71 Binary files /dev/null and b/src/flags/Montserrat/32.png differ diff --git a/src/flags/Montserrat/48.png b/src/flags/Montserrat/48.png new file mode 100644 index 0000000..dcd5c40 Binary files /dev/null and b/src/flags/Montserrat/48.png differ diff --git a/src/flags/Montserrat/64.png b/src/flags/Montserrat/64.png new file mode 100644 index 0000000..0b827d7 Binary files /dev/null and b/src/flags/Montserrat/64.png differ diff --git a/src/flags/Montserrat/code b/src/flags/Montserrat/code new file mode 100644 index 0000000..32dfbc9 --- /dev/null +++ b/src/flags/Montserrat/code @@ -0,0 +1 @@ +MS \ No newline at end of file diff --git a/src/flags/Morocco/16.png b/src/flags/Morocco/16.png new file mode 100644 index 0000000..c8777c8 Binary files /dev/null and b/src/flags/Morocco/16.png differ diff --git a/src/flags/Morocco/24.png b/src/flags/Morocco/24.png new file mode 100644 index 0000000..f48f26c Binary files /dev/null and b/src/flags/Morocco/24.png differ diff --git a/src/flags/Morocco/32.png b/src/flags/Morocco/32.png new file mode 100644 index 0000000..911df88 Binary files /dev/null and b/src/flags/Morocco/32.png differ diff --git a/src/flags/Morocco/48.png b/src/flags/Morocco/48.png new file mode 100644 index 0000000..5306d44 Binary files /dev/null and b/src/flags/Morocco/48.png differ diff --git a/src/flags/Morocco/64.png b/src/flags/Morocco/64.png new file mode 100644 index 0000000..61b49eb Binary files /dev/null and b/src/flags/Morocco/64.png differ diff --git a/src/flags/Morocco/code b/src/flags/Morocco/code new file mode 100644 index 0000000..e57cc48 --- /dev/null +++ b/src/flags/Morocco/code @@ -0,0 +1 @@ +MA \ No newline at end of file diff --git a/src/flags/Mozambique/16.png b/src/flags/Mozambique/16.png new file mode 100644 index 0000000..a1f3978 Binary files /dev/null and b/src/flags/Mozambique/16.png differ diff --git a/src/flags/Mozambique/24.png b/src/flags/Mozambique/24.png new file mode 100644 index 0000000..c366783 Binary files /dev/null and b/src/flags/Mozambique/24.png differ diff --git a/src/flags/Mozambique/32.png b/src/flags/Mozambique/32.png new file mode 100644 index 0000000..3f394fb Binary files /dev/null and b/src/flags/Mozambique/32.png differ diff --git a/src/flags/Mozambique/48.png b/src/flags/Mozambique/48.png new file mode 100644 index 0000000..e2407dd Binary files /dev/null and b/src/flags/Mozambique/48.png differ diff --git a/src/flags/Mozambique/64.png b/src/flags/Mozambique/64.png new file mode 100644 index 0000000..0e8d1fc Binary files /dev/null and b/src/flags/Mozambique/64.png differ diff --git a/src/flags/Mozambique/code b/src/flags/Mozambique/code new file mode 100644 index 0000000..7e6e0f1 --- /dev/null +++ b/src/flags/Mozambique/code @@ -0,0 +1 @@ +MZ \ No newline at end of file diff --git a/src/flags/Myanmar/16.png b/src/flags/Myanmar/16.png new file mode 100644 index 0000000..85d2d6a Binary files /dev/null and b/src/flags/Myanmar/16.png differ diff --git a/src/flags/Myanmar/24.png b/src/flags/Myanmar/24.png new file mode 100644 index 0000000..08b43fa Binary files /dev/null and b/src/flags/Myanmar/24.png differ diff --git a/src/flags/Myanmar/32.png b/src/flags/Myanmar/32.png new file mode 100644 index 0000000..eb71df6 Binary files /dev/null and b/src/flags/Myanmar/32.png differ diff --git a/src/flags/Myanmar/48.png b/src/flags/Myanmar/48.png new file mode 100644 index 0000000..8df0fec Binary files /dev/null and b/src/flags/Myanmar/48.png differ diff --git a/src/flags/Myanmar/64.png b/src/flags/Myanmar/64.png new file mode 100644 index 0000000..a77ae13 Binary files /dev/null and b/src/flags/Myanmar/64.png differ diff --git a/src/flags/Myanmar/code b/src/flags/Myanmar/code new file mode 100644 index 0000000..4b67ce3 --- /dev/null +++ b/src/flags/Myanmar/code @@ -0,0 +1 @@ +MM \ No newline at end of file diff --git a/src/flags/NATO/16.png b/src/flags/NATO/16.png new file mode 100644 index 0000000..6bc68b7 Binary files /dev/null and b/src/flags/NATO/16.png differ diff --git a/src/flags/NATO/24.png b/src/flags/NATO/24.png new file mode 100644 index 0000000..fdf592d Binary files /dev/null and b/src/flags/NATO/24.png differ diff --git a/src/flags/NATO/32.png b/src/flags/NATO/32.png new file mode 100644 index 0000000..3842b7a Binary files /dev/null and b/src/flags/NATO/32.png differ diff --git a/src/flags/NATO/48.png b/src/flags/NATO/48.png new file mode 100644 index 0000000..ae86562 Binary files /dev/null and b/src/flags/NATO/48.png differ diff --git a/src/flags/NATO/64.png b/src/flags/NATO/64.png new file mode 100644 index 0000000..06e4872 Binary files /dev/null and b/src/flags/NATO/64.png differ diff --git a/src/flags/NATO/code b/src/flags/NATO/code new file mode 100644 index 0000000..c5e5e05 --- /dev/null +++ b/src/flags/NATO/code @@ -0,0 +1 @@ +_nato \ No newline at end of file diff --git a/src/flags/Nagorno-Karabakh/16.png b/src/flags/Nagorno-Karabakh/16.png new file mode 100644 index 0000000..0d31cfa Binary files /dev/null and b/src/flags/Nagorno-Karabakh/16.png differ diff --git a/src/flags/Nagorno-Karabakh/24.png b/src/flags/Nagorno-Karabakh/24.png new file mode 100644 index 0000000..dde0cb1 Binary files /dev/null and b/src/flags/Nagorno-Karabakh/24.png differ diff --git a/src/flags/Nagorno-Karabakh/32.png b/src/flags/Nagorno-Karabakh/32.png new file mode 100644 index 0000000..f9e2de8 Binary files /dev/null and b/src/flags/Nagorno-Karabakh/32.png differ diff --git a/src/flags/Nagorno-Karabakh/48.png b/src/flags/Nagorno-Karabakh/48.png new file mode 100644 index 0000000..26f02e8 Binary files /dev/null and b/src/flags/Nagorno-Karabakh/48.png differ diff --git a/src/flags/Nagorno-Karabakh/64.png b/src/flags/Nagorno-Karabakh/64.png new file mode 100644 index 0000000..ef95a50 Binary files /dev/null and b/src/flags/Nagorno-Karabakh/64.png differ diff --git a/src/flags/Nagorno-Karabakh/code b/src/flags/Nagorno-Karabakh/code new file mode 100644 index 0000000..f81d733 --- /dev/null +++ b/src/flags/Nagorno-Karabakh/code @@ -0,0 +1 @@ +_nagorno-karabakh \ No newline at end of file diff --git a/src/flags/Namibia/16.png b/src/flags/Namibia/16.png new file mode 100644 index 0000000..003b2e3 Binary files /dev/null and b/src/flags/Namibia/16.png differ diff --git a/src/flags/Namibia/24.png b/src/flags/Namibia/24.png new file mode 100644 index 0000000..3a4fae1 Binary files /dev/null and b/src/flags/Namibia/24.png differ diff --git a/src/flags/Namibia/32.png b/src/flags/Namibia/32.png new file mode 100644 index 0000000..7f1b2f8 Binary files /dev/null and b/src/flags/Namibia/32.png differ diff --git a/src/flags/Namibia/48.png b/src/flags/Namibia/48.png new file mode 100644 index 0000000..b7e3d86 Binary files /dev/null and b/src/flags/Namibia/48.png differ diff --git a/src/flags/Namibia/64.png b/src/flags/Namibia/64.png new file mode 100644 index 0000000..3788e78 Binary files /dev/null and b/src/flags/Namibia/64.png differ diff --git a/src/flags/Namibia/code b/src/flags/Namibia/code new file mode 100644 index 0000000..280762b --- /dev/null +++ b/src/flags/Namibia/code @@ -0,0 +1 @@ +NA \ No newline at end of file diff --git a/src/flags/Nauru/16.png b/src/flags/Nauru/16.png new file mode 100644 index 0000000..cbcab73 Binary files /dev/null and b/src/flags/Nauru/16.png differ diff --git a/src/flags/Nauru/24.png b/src/flags/Nauru/24.png new file mode 100644 index 0000000..57c3bc8 Binary files /dev/null and b/src/flags/Nauru/24.png differ diff --git a/src/flags/Nauru/32.png b/src/flags/Nauru/32.png new file mode 100644 index 0000000..9e54f43 Binary files /dev/null and b/src/flags/Nauru/32.png differ diff --git a/src/flags/Nauru/48.png b/src/flags/Nauru/48.png new file mode 100644 index 0000000..9405cb0 Binary files /dev/null and b/src/flags/Nauru/48.png differ diff --git a/src/flags/Nauru/64.png b/src/flags/Nauru/64.png new file mode 100644 index 0000000..2cdd79c Binary files /dev/null and b/src/flags/Nauru/64.png differ diff --git a/src/flags/Nauru/code b/src/flags/Nauru/code new file mode 100644 index 0000000..1bc8f7a --- /dev/null +++ b/src/flags/Nauru/code @@ -0,0 +1 @@ +NR \ No newline at end of file diff --git a/src/flags/Nepal/16.png b/src/flags/Nepal/16.png new file mode 100644 index 0000000..5bf5b4a Binary files /dev/null and b/src/flags/Nepal/16.png differ diff --git a/src/flags/Nepal/24.png b/src/flags/Nepal/24.png new file mode 100644 index 0000000..e0cb9b5 Binary files /dev/null and b/src/flags/Nepal/24.png differ diff --git a/src/flags/Nepal/32.png b/src/flags/Nepal/32.png new file mode 100644 index 0000000..ce6dae0 Binary files /dev/null and b/src/flags/Nepal/32.png differ diff --git a/src/flags/Nepal/48.png b/src/flags/Nepal/48.png new file mode 100644 index 0000000..0b2205d Binary files /dev/null and b/src/flags/Nepal/48.png differ diff --git a/src/flags/Nepal/64.png b/src/flags/Nepal/64.png new file mode 100644 index 0000000..12b92d4 Binary files /dev/null and b/src/flags/Nepal/64.png differ diff --git a/src/flags/Nepal/code b/src/flags/Nepal/code new file mode 100644 index 0000000..9cb6b1a --- /dev/null +++ b/src/flags/Nepal/code @@ -0,0 +1 @@ +NP \ No newline at end of file diff --git a/src/flags/Netherlands-Antilles/16.png b/src/flags/Netherlands-Antilles/16.png new file mode 100644 index 0000000..b78fd75 Binary files /dev/null and b/src/flags/Netherlands-Antilles/16.png differ diff --git a/src/flags/Netherlands-Antilles/24.png b/src/flags/Netherlands-Antilles/24.png new file mode 100644 index 0000000..f4f015e Binary files /dev/null and b/src/flags/Netherlands-Antilles/24.png differ diff --git a/src/flags/Netherlands-Antilles/32.png b/src/flags/Netherlands-Antilles/32.png new file mode 100644 index 0000000..e955c05 Binary files /dev/null and b/src/flags/Netherlands-Antilles/32.png differ diff --git a/src/flags/Netherlands-Antilles/48.png b/src/flags/Netherlands-Antilles/48.png new file mode 100644 index 0000000..2ee6046 Binary files /dev/null and b/src/flags/Netherlands-Antilles/48.png differ diff --git a/src/flags/Netherlands-Antilles/64.png b/src/flags/Netherlands-Antilles/64.png new file mode 100644 index 0000000..f768c3f Binary files /dev/null and b/src/flags/Netherlands-Antilles/64.png differ diff --git a/src/flags/Netherlands-Antilles/code b/src/flags/Netherlands-Antilles/code new file mode 100644 index 0000000..27524c7 --- /dev/null +++ b/src/flags/Netherlands-Antilles/code @@ -0,0 +1 @@ +AN \ No newline at end of file diff --git a/src/flags/Netherlands/16.png b/src/flags/Netherlands/16.png new file mode 100644 index 0000000..a32e3e4 Binary files /dev/null and b/src/flags/Netherlands/16.png differ diff --git a/src/flags/Netherlands/24.png b/src/flags/Netherlands/24.png new file mode 100644 index 0000000..81dfa5e Binary files /dev/null and b/src/flags/Netherlands/24.png differ diff --git a/src/flags/Netherlands/32.png b/src/flags/Netherlands/32.png new file mode 100644 index 0000000..ea7971e Binary files /dev/null and b/src/flags/Netherlands/32.png differ diff --git a/src/flags/Netherlands/48.png b/src/flags/Netherlands/48.png new file mode 100644 index 0000000..249ed47 Binary files /dev/null and b/src/flags/Netherlands/48.png differ diff --git a/src/flags/Netherlands/64.png b/src/flags/Netherlands/64.png new file mode 100644 index 0000000..cf7efbe Binary files /dev/null and b/src/flags/Netherlands/64.png differ diff --git a/src/flags/Netherlands/code b/src/flags/Netherlands/code new file mode 100644 index 0000000..c1d8801 --- /dev/null +++ b/src/flags/Netherlands/code @@ -0,0 +1 @@ +NL \ No newline at end of file diff --git a/src/flags/New-Caledonia/16.png b/src/flags/New-Caledonia/16.png new file mode 100644 index 0000000..4f63830 Binary files /dev/null and b/src/flags/New-Caledonia/16.png differ diff --git a/src/flags/New-Caledonia/24.png b/src/flags/New-Caledonia/24.png new file mode 100644 index 0000000..8a2495f Binary files /dev/null and b/src/flags/New-Caledonia/24.png differ diff --git a/src/flags/New-Caledonia/32.png b/src/flags/New-Caledonia/32.png new file mode 100644 index 0000000..0ca1a84 Binary files /dev/null and b/src/flags/New-Caledonia/32.png differ diff --git a/src/flags/New-Caledonia/48.png b/src/flags/New-Caledonia/48.png new file mode 100644 index 0000000..88a0a47 Binary files /dev/null and b/src/flags/New-Caledonia/48.png differ diff --git a/src/flags/New-Caledonia/64.png b/src/flags/New-Caledonia/64.png new file mode 100644 index 0000000..186686f Binary files /dev/null and b/src/flags/New-Caledonia/64.png differ diff --git a/src/flags/New-Caledonia/code b/src/flags/New-Caledonia/code new file mode 100644 index 0000000..adcdcc1 --- /dev/null +++ b/src/flags/New-Caledonia/code @@ -0,0 +1 @@ +NC \ No newline at end of file diff --git a/src/flags/New-Zealand/16.png b/src/flags/New-Zealand/16.png new file mode 100644 index 0000000..5531015 Binary files /dev/null and b/src/flags/New-Zealand/16.png differ diff --git a/src/flags/New-Zealand/24.png b/src/flags/New-Zealand/24.png new file mode 100644 index 0000000..1fd19db Binary files /dev/null and b/src/flags/New-Zealand/24.png differ diff --git a/src/flags/New-Zealand/32.png b/src/flags/New-Zealand/32.png new file mode 100644 index 0000000..bf05a8f Binary files /dev/null and b/src/flags/New-Zealand/32.png differ diff --git a/src/flags/New-Zealand/48.png b/src/flags/New-Zealand/48.png new file mode 100644 index 0000000..ecdfb8f Binary files /dev/null and b/src/flags/New-Zealand/48.png differ diff --git a/src/flags/New-Zealand/64.png b/src/flags/New-Zealand/64.png new file mode 100644 index 0000000..00fdc50 Binary files /dev/null and b/src/flags/New-Zealand/64.png differ diff --git a/src/flags/New-Zealand/code b/src/flags/New-Zealand/code new file mode 100644 index 0000000..b143f92 --- /dev/null +++ b/src/flags/New-Zealand/code @@ -0,0 +1 @@ +NZ \ No newline at end of file diff --git a/src/flags/Nicaragua/16.png b/src/flags/Nicaragua/16.png new file mode 100644 index 0000000..7cfbe0f Binary files /dev/null and b/src/flags/Nicaragua/16.png differ diff --git a/src/flags/Nicaragua/24.png b/src/flags/Nicaragua/24.png new file mode 100644 index 0000000..b934ffb Binary files /dev/null and b/src/flags/Nicaragua/24.png differ diff --git a/src/flags/Nicaragua/32.png b/src/flags/Nicaragua/32.png new file mode 100644 index 0000000..db0ece5 Binary files /dev/null and b/src/flags/Nicaragua/32.png differ diff --git a/src/flags/Nicaragua/48.png b/src/flags/Nicaragua/48.png new file mode 100644 index 0000000..1633806 Binary files /dev/null and b/src/flags/Nicaragua/48.png differ diff --git a/src/flags/Nicaragua/64.png b/src/flags/Nicaragua/64.png new file mode 100644 index 0000000..c2ec82b Binary files /dev/null and b/src/flags/Nicaragua/64.png differ diff --git a/src/flags/Nicaragua/code b/src/flags/Nicaragua/code new file mode 100644 index 0000000..f29570c --- /dev/null +++ b/src/flags/Nicaragua/code @@ -0,0 +1 @@ +NI \ No newline at end of file diff --git a/src/flags/Niger/16.png b/src/flags/Niger/16.png new file mode 100644 index 0000000..f2b38ab Binary files /dev/null and b/src/flags/Niger/16.png differ diff --git a/src/flags/Niger/24.png b/src/flags/Niger/24.png new file mode 100644 index 0000000..8efb007 Binary files /dev/null and b/src/flags/Niger/24.png differ diff --git a/src/flags/Niger/32.png b/src/flags/Niger/32.png new file mode 100644 index 0000000..96ab351 Binary files /dev/null and b/src/flags/Niger/32.png differ diff --git a/src/flags/Niger/48.png b/src/flags/Niger/48.png new file mode 100644 index 0000000..1895c5a Binary files /dev/null and b/src/flags/Niger/48.png differ diff --git a/src/flags/Niger/64.png b/src/flags/Niger/64.png new file mode 100644 index 0000000..4694950 Binary files /dev/null and b/src/flags/Niger/64.png differ diff --git a/src/flags/Niger/code b/src/flags/Niger/code new file mode 100644 index 0000000..3ce670e --- /dev/null +++ b/src/flags/Niger/code @@ -0,0 +1 @@ +NE \ No newline at end of file diff --git a/src/flags/Nigeria/16.png b/src/flags/Nigeria/16.png new file mode 100644 index 0000000..2d8a026 Binary files /dev/null and b/src/flags/Nigeria/16.png differ diff --git a/src/flags/Nigeria/24.png b/src/flags/Nigeria/24.png new file mode 100644 index 0000000..e556ff5 Binary files /dev/null and b/src/flags/Nigeria/24.png differ diff --git a/src/flags/Nigeria/32.png b/src/flags/Nigeria/32.png new file mode 100644 index 0000000..912884b Binary files /dev/null and b/src/flags/Nigeria/32.png differ diff --git a/src/flags/Nigeria/48.png b/src/flags/Nigeria/48.png new file mode 100644 index 0000000..412eb26 Binary files /dev/null and b/src/flags/Nigeria/48.png differ diff --git a/src/flags/Nigeria/64.png b/src/flags/Nigeria/64.png new file mode 100644 index 0000000..6bfbe0c Binary files /dev/null and b/src/flags/Nigeria/64.png differ diff --git a/src/flags/Nigeria/code b/src/flags/Nigeria/code new file mode 100644 index 0000000..85ea0be --- /dev/null +++ b/src/flags/Nigeria/code @@ -0,0 +1 @@ +NG \ No newline at end of file diff --git a/src/flags/Niue/16.png b/src/flags/Niue/16.png new file mode 100644 index 0000000..80a8cff Binary files /dev/null and b/src/flags/Niue/16.png differ diff --git a/src/flags/Niue/24.png b/src/flags/Niue/24.png new file mode 100644 index 0000000..4a7d462 Binary files /dev/null and b/src/flags/Niue/24.png differ diff --git a/src/flags/Niue/32.png b/src/flags/Niue/32.png new file mode 100644 index 0000000..abc40dc Binary files /dev/null and b/src/flags/Niue/32.png differ diff --git a/src/flags/Niue/48.png b/src/flags/Niue/48.png new file mode 100644 index 0000000..4d2422a Binary files /dev/null and b/src/flags/Niue/48.png differ diff --git a/src/flags/Niue/64.png b/src/flags/Niue/64.png new file mode 100644 index 0000000..399741f Binary files /dev/null and b/src/flags/Niue/64.png differ diff --git a/src/flags/Niue/code b/src/flags/Niue/code new file mode 100644 index 0000000..6162452 --- /dev/null +++ b/src/flags/Niue/code @@ -0,0 +1 @@ +NU \ No newline at end of file diff --git a/src/flags/Norfolk-Island/16.png b/src/flags/Norfolk-Island/16.png new file mode 100644 index 0000000..2ba7cdf Binary files /dev/null and b/src/flags/Norfolk-Island/16.png differ diff --git a/src/flags/Norfolk-Island/24.png b/src/flags/Norfolk-Island/24.png new file mode 100644 index 0000000..18ddb88 Binary files /dev/null and b/src/flags/Norfolk-Island/24.png differ diff --git a/src/flags/Norfolk-Island/32.png b/src/flags/Norfolk-Island/32.png new file mode 100644 index 0000000..c29416e Binary files /dev/null and b/src/flags/Norfolk-Island/32.png differ diff --git a/src/flags/Norfolk-Island/48.png b/src/flags/Norfolk-Island/48.png new file mode 100644 index 0000000..d198e09 Binary files /dev/null and b/src/flags/Norfolk-Island/48.png differ diff --git a/src/flags/Norfolk-Island/64.png b/src/flags/Norfolk-Island/64.png new file mode 100644 index 0000000..19609e3 Binary files /dev/null and b/src/flags/Norfolk-Island/64.png differ diff --git a/src/flags/Norfolk-Island/code b/src/flags/Norfolk-Island/code new file mode 100644 index 0000000..583f2e0 --- /dev/null +++ b/src/flags/Norfolk-Island/code @@ -0,0 +1 @@ +NF \ No newline at end of file diff --git a/src/flags/North-Korea/16.png b/src/flags/North-Korea/16.png new file mode 100644 index 0000000..962ed93 Binary files /dev/null and b/src/flags/North-Korea/16.png differ diff --git a/src/flags/North-Korea/24.png b/src/flags/North-Korea/24.png new file mode 100644 index 0000000..941e418 Binary files /dev/null and b/src/flags/North-Korea/24.png differ diff --git a/src/flags/North-Korea/32.png b/src/flags/North-Korea/32.png new file mode 100644 index 0000000..420e92e Binary files /dev/null and b/src/flags/North-Korea/32.png differ diff --git a/src/flags/North-Korea/48.png b/src/flags/North-Korea/48.png new file mode 100644 index 0000000..1674d1d Binary files /dev/null and b/src/flags/North-Korea/48.png differ diff --git a/src/flags/North-Korea/64.png b/src/flags/North-Korea/64.png new file mode 100644 index 0000000..d3ff9be Binary files /dev/null and b/src/flags/North-Korea/64.png differ diff --git a/src/flags/North-Korea/code b/src/flags/North-Korea/code new file mode 100644 index 0000000..f77a008 --- /dev/null +++ b/src/flags/North-Korea/code @@ -0,0 +1 @@ +KP \ No newline at end of file diff --git a/src/flags/Northern-Cyprus/16.png b/src/flags/Northern-Cyprus/16.png new file mode 100644 index 0000000..ac60e3d Binary files /dev/null and b/src/flags/Northern-Cyprus/16.png differ diff --git a/src/flags/Northern-Cyprus/24.png b/src/flags/Northern-Cyprus/24.png new file mode 100644 index 0000000..1f741ea Binary files /dev/null and b/src/flags/Northern-Cyprus/24.png differ diff --git a/src/flags/Northern-Cyprus/32.png b/src/flags/Northern-Cyprus/32.png new file mode 100644 index 0000000..5e38a79 Binary files /dev/null and b/src/flags/Northern-Cyprus/32.png differ diff --git a/src/flags/Northern-Cyprus/48.png b/src/flags/Northern-Cyprus/48.png new file mode 100644 index 0000000..1d7d249 Binary files /dev/null and b/src/flags/Northern-Cyprus/48.png differ diff --git a/src/flags/Northern-Cyprus/64.png b/src/flags/Northern-Cyprus/64.png new file mode 100644 index 0000000..ecc1dae Binary files /dev/null and b/src/flags/Northern-Cyprus/64.png differ diff --git a/src/flags/Northern-Cyprus/code b/src/flags/Northern-Cyprus/code new file mode 100644 index 0000000..0c0625b --- /dev/null +++ b/src/flags/Northern-Cyprus/code @@ -0,0 +1 @@ +_northern-cyprus \ No newline at end of file diff --git a/src/flags/Northern-Mariana-Islands/16.png b/src/flags/Northern-Mariana-Islands/16.png new file mode 100644 index 0000000..742ffdb Binary files /dev/null and b/src/flags/Northern-Mariana-Islands/16.png differ diff --git a/src/flags/Northern-Mariana-Islands/24.png b/src/flags/Northern-Mariana-Islands/24.png new file mode 100644 index 0000000..208b288 Binary files /dev/null and b/src/flags/Northern-Mariana-Islands/24.png differ diff --git a/src/flags/Northern-Mariana-Islands/32.png b/src/flags/Northern-Mariana-Islands/32.png new file mode 100644 index 0000000..279a2c6 Binary files /dev/null and b/src/flags/Northern-Mariana-Islands/32.png differ diff --git a/src/flags/Northern-Mariana-Islands/48.png b/src/flags/Northern-Mariana-Islands/48.png new file mode 100644 index 0000000..8cd3936 Binary files /dev/null and b/src/flags/Northern-Mariana-Islands/48.png differ diff --git a/src/flags/Northern-Mariana-Islands/64.png b/src/flags/Northern-Mariana-Islands/64.png new file mode 100644 index 0000000..2a7a8b3 Binary files /dev/null and b/src/flags/Northern-Mariana-Islands/64.png differ diff --git a/src/flags/Northern-Mariana-Islands/code b/src/flags/Northern-Mariana-Islands/code new file mode 100644 index 0000000..a05adbd --- /dev/null +++ b/src/flags/Northern-Mariana-Islands/code @@ -0,0 +1 @@ +MP \ No newline at end of file diff --git a/src/flags/Norway/16.png b/src/flags/Norway/16.png new file mode 100644 index 0000000..6eec2e0 Binary files /dev/null and b/src/flags/Norway/16.png differ diff --git a/src/flags/Norway/24.png b/src/flags/Norway/24.png new file mode 100644 index 0000000..082fb6f Binary files /dev/null and b/src/flags/Norway/24.png differ diff --git a/src/flags/Norway/32.png b/src/flags/Norway/32.png new file mode 100644 index 0000000..9a791ab Binary files /dev/null and b/src/flags/Norway/32.png differ diff --git a/src/flags/Norway/48.png b/src/flags/Norway/48.png new file mode 100644 index 0000000..489a23d Binary files /dev/null and b/src/flags/Norway/48.png differ diff --git a/src/flags/Norway/64.png b/src/flags/Norway/64.png new file mode 100644 index 0000000..7d06299 Binary files /dev/null and b/src/flags/Norway/64.png differ diff --git a/src/flags/Norway/code b/src/flags/Norway/code new file mode 100644 index 0000000..ba28208 --- /dev/null +++ b/src/flags/Norway/code @@ -0,0 +1 @@ +NO \ No newline at end of file diff --git a/src/flags/Olympics/16.png b/src/flags/Olympics/16.png new file mode 100644 index 0000000..1d009be Binary files /dev/null and b/src/flags/Olympics/16.png differ diff --git a/src/flags/Olympics/24.png b/src/flags/Olympics/24.png new file mode 100644 index 0000000..66b06c5 Binary files /dev/null and b/src/flags/Olympics/24.png differ diff --git a/src/flags/Olympics/32.png b/src/flags/Olympics/32.png new file mode 100644 index 0000000..76c602b Binary files /dev/null and b/src/flags/Olympics/32.png differ diff --git a/src/flags/Olympics/48.png b/src/flags/Olympics/48.png new file mode 100644 index 0000000..3a1af7e Binary files /dev/null and b/src/flags/Olympics/48.png differ diff --git a/src/flags/Olympics/64.png b/src/flags/Olympics/64.png new file mode 100644 index 0000000..16dda6b Binary files /dev/null and b/src/flags/Olympics/64.png differ diff --git a/src/flags/Olympics/code b/src/flags/Olympics/code new file mode 100644 index 0000000..2931b5d --- /dev/null +++ b/src/flags/Olympics/code @@ -0,0 +1 @@ +_olympics \ No newline at end of file diff --git a/src/flags/Oman/16.png b/src/flags/Oman/16.png new file mode 100644 index 0000000..23f182e Binary files /dev/null and b/src/flags/Oman/16.png differ diff --git a/src/flags/Oman/24.png b/src/flags/Oman/24.png new file mode 100644 index 0000000..eb3f7f7 Binary files /dev/null and b/src/flags/Oman/24.png differ diff --git a/src/flags/Oman/32.png b/src/flags/Oman/32.png new file mode 100644 index 0000000..de49956 Binary files /dev/null and b/src/flags/Oman/32.png differ diff --git a/src/flags/Oman/48.png b/src/flags/Oman/48.png new file mode 100644 index 0000000..c76e4ea Binary files /dev/null and b/src/flags/Oman/48.png differ diff --git a/src/flags/Oman/64.png b/src/flags/Oman/64.png new file mode 100644 index 0000000..276b813 Binary files /dev/null and b/src/flags/Oman/64.png differ diff --git a/src/flags/Oman/code b/src/flags/Oman/code new file mode 100644 index 0000000..1091b58 --- /dev/null +++ b/src/flags/Oman/code @@ -0,0 +1 @@ +OM \ No newline at end of file diff --git a/src/flags/Pakistan/16.png b/src/flags/Pakistan/16.png new file mode 100644 index 0000000..1bf8dc8 Binary files /dev/null and b/src/flags/Pakistan/16.png differ diff --git a/src/flags/Pakistan/24.png b/src/flags/Pakistan/24.png new file mode 100644 index 0000000..4e7ff7a Binary files /dev/null and b/src/flags/Pakistan/24.png differ diff --git a/src/flags/Pakistan/32.png b/src/flags/Pakistan/32.png new file mode 100644 index 0000000..ebb53f1 Binary files /dev/null and b/src/flags/Pakistan/32.png differ diff --git a/src/flags/Pakistan/48.png b/src/flags/Pakistan/48.png new file mode 100644 index 0000000..b710228 Binary files /dev/null and b/src/flags/Pakistan/48.png differ diff --git a/src/flags/Pakistan/64.png b/src/flags/Pakistan/64.png new file mode 100644 index 0000000..880ab2a Binary files /dev/null and b/src/flags/Pakistan/64.png differ diff --git a/src/flags/Pakistan/code b/src/flags/Pakistan/code new file mode 100644 index 0000000..2c0057e --- /dev/null +++ b/src/flags/Pakistan/code @@ -0,0 +1 @@ +PK \ No newline at end of file diff --git a/src/flags/Palau/16.png b/src/flags/Palau/16.png new file mode 100644 index 0000000..4ddeac4 Binary files /dev/null and b/src/flags/Palau/16.png differ diff --git a/src/flags/Palau/24.png b/src/flags/Palau/24.png new file mode 100644 index 0000000..3937cfa Binary files /dev/null and b/src/flags/Palau/24.png differ diff --git a/src/flags/Palau/32.png b/src/flags/Palau/32.png new file mode 100644 index 0000000..e00ddfa Binary files /dev/null and b/src/flags/Palau/32.png differ diff --git a/src/flags/Palau/48.png b/src/flags/Palau/48.png new file mode 100644 index 0000000..adf9dc4 Binary files /dev/null and b/src/flags/Palau/48.png differ diff --git a/src/flags/Palau/64.png b/src/flags/Palau/64.png new file mode 100644 index 0000000..5589c7a Binary files /dev/null and b/src/flags/Palau/64.png differ diff --git a/src/flags/Palau/code b/src/flags/Palau/code new file mode 100644 index 0000000..30c7c07 --- /dev/null +++ b/src/flags/Palau/code @@ -0,0 +1 @@ +PW \ No newline at end of file diff --git a/src/flags/Palestine/16.png b/src/flags/Palestine/16.png new file mode 100644 index 0000000..91a2d0e Binary files /dev/null and b/src/flags/Palestine/16.png differ diff --git a/src/flags/Palestine/24.png b/src/flags/Palestine/24.png new file mode 100644 index 0000000..194097e Binary files /dev/null and b/src/flags/Palestine/24.png differ diff --git a/src/flags/Palestine/32.png b/src/flags/Palestine/32.png new file mode 100644 index 0000000..d1841f7 Binary files /dev/null and b/src/flags/Palestine/32.png differ diff --git a/src/flags/Palestine/48.png b/src/flags/Palestine/48.png new file mode 100644 index 0000000..44cad82 Binary files /dev/null and b/src/flags/Palestine/48.png differ diff --git a/src/flags/Palestine/64.png b/src/flags/Palestine/64.png new file mode 100644 index 0000000..96c1fc1 Binary files /dev/null and b/src/flags/Palestine/64.png differ diff --git a/src/flags/Palestine/code b/src/flags/Palestine/code new file mode 100644 index 0000000..a8afa5e --- /dev/null +++ b/src/flags/Palestine/code @@ -0,0 +1 @@ +PS \ No newline at end of file diff --git a/src/flags/Panama/16.png b/src/flags/Panama/16.png new file mode 100644 index 0000000..a5c6873 Binary files /dev/null and b/src/flags/Panama/16.png differ diff --git a/src/flags/Panama/24.png b/src/flags/Panama/24.png new file mode 100644 index 0000000..bf73d70 Binary files /dev/null and b/src/flags/Panama/24.png differ diff --git a/src/flags/Panama/32.png b/src/flags/Panama/32.png new file mode 100644 index 0000000..22f59d5 Binary files /dev/null and b/src/flags/Panama/32.png differ diff --git a/src/flags/Panama/48.png b/src/flags/Panama/48.png new file mode 100644 index 0000000..5ce3d38 Binary files /dev/null and b/src/flags/Panama/48.png differ diff --git a/src/flags/Panama/64.png b/src/flags/Panama/64.png new file mode 100644 index 0000000..e3be203 Binary files /dev/null and b/src/flags/Panama/64.png differ diff --git a/src/flags/Panama/code b/src/flags/Panama/code new file mode 100644 index 0000000..01eabf3 --- /dev/null +++ b/src/flags/Panama/code @@ -0,0 +1 @@ +PA \ No newline at end of file diff --git a/src/flags/Papua-New-Guinea/16.png b/src/flags/Papua-New-Guinea/16.png new file mode 100644 index 0000000..2018015 Binary files /dev/null and b/src/flags/Papua-New-Guinea/16.png differ diff --git a/src/flags/Papua-New-Guinea/24.png b/src/flags/Papua-New-Guinea/24.png new file mode 100644 index 0000000..3a86597 Binary files /dev/null and b/src/flags/Papua-New-Guinea/24.png differ diff --git a/src/flags/Papua-New-Guinea/32.png b/src/flags/Papua-New-Guinea/32.png new file mode 100644 index 0000000..5f2f646 Binary files /dev/null and b/src/flags/Papua-New-Guinea/32.png differ diff --git a/src/flags/Papua-New-Guinea/48.png b/src/flags/Papua-New-Guinea/48.png new file mode 100644 index 0000000..76c22e1 Binary files /dev/null and b/src/flags/Papua-New-Guinea/48.png differ diff --git a/src/flags/Papua-New-Guinea/64.png b/src/flags/Papua-New-Guinea/64.png new file mode 100644 index 0000000..db62e94 Binary files /dev/null and b/src/flags/Papua-New-Guinea/64.png differ diff --git a/src/flags/Papua-New-Guinea/code b/src/flags/Papua-New-Guinea/code new file mode 100644 index 0000000..4449d7e --- /dev/null +++ b/src/flags/Papua-New-Guinea/code @@ -0,0 +1 @@ +PG \ No newline at end of file diff --git a/src/flags/Paraguay/16.png b/src/flags/Paraguay/16.png new file mode 100644 index 0000000..eea5513 Binary files /dev/null and b/src/flags/Paraguay/16.png differ diff --git a/src/flags/Paraguay/24.png b/src/flags/Paraguay/24.png new file mode 100644 index 0000000..0e8d2cd Binary files /dev/null and b/src/flags/Paraguay/24.png differ diff --git a/src/flags/Paraguay/32.png b/src/flags/Paraguay/32.png new file mode 100644 index 0000000..cf2a21b Binary files /dev/null and b/src/flags/Paraguay/32.png differ diff --git a/src/flags/Paraguay/48.png b/src/flags/Paraguay/48.png new file mode 100644 index 0000000..c0e9e12 Binary files /dev/null and b/src/flags/Paraguay/48.png differ diff --git a/src/flags/Paraguay/64.png b/src/flags/Paraguay/64.png new file mode 100644 index 0000000..7c5e683 Binary files /dev/null and b/src/flags/Paraguay/64.png differ diff --git a/src/flags/Paraguay/code b/src/flags/Paraguay/code new file mode 100644 index 0000000..4d81e65 --- /dev/null +++ b/src/flags/Paraguay/code @@ -0,0 +1 @@ +PY \ No newline at end of file diff --git a/src/flags/Peru/16.png b/src/flags/Peru/16.png new file mode 100644 index 0000000..d9f5a40 Binary files /dev/null and b/src/flags/Peru/16.png differ diff --git a/src/flags/Peru/24.png b/src/flags/Peru/24.png new file mode 100644 index 0000000..1e89aec Binary files /dev/null and b/src/flags/Peru/24.png differ diff --git a/src/flags/Peru/32.png b/src/flags/Peru/32.png new file mode 100644 index 0000000..e0215e6 Binary files /dev/null and b/src/flags/Peru/32.png differ diff --git a/src/flags/Peru/48.png b/src/flags/Peru/48.png new file mode 100644 index 0000000..60f137c Binary files /dev/null and b/src/flags/Peru/48.png differ diff --git a/src/flags/Peru/64.png b/src/flags/Peru/64.png new file mode 100644 index 0000000..fb3a473 Binary files /dev/null and b/src/flags/Peru/64.png differ diff --git a/src/flags/Peru/code b/src/flags/Peru/code new file mode 100644 index 0000000..80d0186 --- /dev/null +++ b/src/flags/Peru/code @@ -0,0 +1 @@ +PE \ No newline at end of file diff --git a/src/flags/Philippines/16.png b/src/flags/Philippines/16.png new file mode 100644 index 0000000..1371481 Binary files /dev/null and b/src/flags/Philippines/16.png differ diff --git a/src/flags/Philippines/24.png b/src/flags/Philippines/24.png new file mode 100644 index 0000000..c52716e Binary files /dev/null and b/src/flags/Philippines/24.png differ diff --git a/src/flags/Philippines/32.png b/src/flags/Philippines/32.png new file mode 100644 index 0000000..986450f Binary files /dev/null and b/src/flags/Philippines/32.png differ diff --git a/src/flags/Philippines/48.png b/src/flags/Philippines/48.png new file mode 100644 index 0000000..5414db6 Binary files /dev/null and b/src/flags/Philippines/48.png differ diff --git a/src/flags/Philippines/64.png b/src/flags/Philippines/64.png new file mode 100644 index 0000000..a0ec7d3 Binary files /dev/null and b/src/flags/Philippines/64.png differ diff --git a/src/flags/Philippines/code b/src/flags/Philippines/code new file mode 100644 index 0000000..c0ce02e --- /dev/null +++ b/src/flags/Philippines/code @@ -0,0 +1 @@ +PH \ No newline at end of file diff --git a/src/flags/Pitcairn-Islands/16.png b/src/flags/Pitcairn-Islands/16.png new file mode 100644 index 0000000..1bfd119 Binary files /dev/null and b/src/flags/Pitcairn-Islands/16.png differ diff --git a/src/flags/Pitcairn-Islands/24.png b/src/flags/Pitcairn-Islands/24.png new file mode 100644 index 0000000..4535506 Binary files /dev/null and b/src/flags/Pitcairn-Islands/24.png differ diff --git a/src/flags/Pitcairn-Islands/32.png b/src/flags/Pitcairn-Islands/32.png new file mode 100644 index 0000000..1711c93 Binary files /dev/null and b/src/flags/Pitcairn-Islands/32.png differ diff --git a/src/flags/Pitcairn-Islands/48.png b/src/flags/Pitcairn-Islands/48.png new file mode 100644 index 0000000..a780a50 Binary files /dev/null and b/src/flags/Pitcairn-Islands/48.png differ diff --git a/src/flags/Pitcairn-Islands/64.png b/src/flags/Pitcairn-Islands/64.png new file mode 100644 index 0000000..e6433ec Binary files /dev/null and b/src/flags/Pitcairn-Islands/64.png differ diff --git a/src/flags/Pitcairn-Islands/code b/src/flags/Pitcairn-Islands/code new file mode 100644 index 0000000..caba205 --- /dev/null +++ b/src/flags/Pitcairn-Islands/code @@ -0,0 +1 @@ +PN \ No newline at end of file diff --git a/src/flags/Poland/16.png b/src/flags/Poland/16.png new file mode 100644 index 0000000..e4875df Binary files /dev/null and b/src/flags/Poland/16.png differ diff --git a/src/flags/Poland/24.png b/src/flags/Poland/24.png new file mode 100644 index 0000000..869b07d Binary files /dev/null and b/src/flags/Poland/24.png differ diff --git a/src/flags/Poland/32.png b/src/flags/Poland/32.png new file mode 100644 index 0000000..7ca0623 Binary files /dev/null and b/src/flags/Poland/32.png differ diff --git a/src/flags/Poland/48.png b/src/flags/Poland/48.png new file mode 100644 index 0000000..47e03f8 Binary files /dev/null and b/src/flags/Poland/48.png differ diff --git a/src/flags/Poland/64.png b/src/flags/Poland/64.png new file mode 100644 index 0000000..31e1be5 Binary files /dev/null and b/src/flags/Poland/64.png differ diff --git a/src/flags/Poland/code b/src/flags/Poland/code new file mode 100644 index 0000000..2278509 --- /dev/null +++ b/src/flags/Poland/code @@ -0,0 +1 @@ +PL \ No newline at end of file diff --git a/src/flags/Portugal/16.png b/src/flags/Portugal/16.png new file mode 100644 index 0000000..94977ff Binary files /dev/null and b/src/flags/Portugal/16.png differ diff --git a/src/flags/Portugal/24.png b/src/flags/Portugal/24.png new file mode 100644 index 0000000..6641bd0 Binary files /dev/null and b/src/flags/Portugal/24.png differ diff --git a/src/flags/Portugal/32.png b/src/flags/Portugal/32.png new file mode 100644 index 0000000..20f9f93 Binary files /dev/null and b/src/flags/Portugal/32.png differ diff --git a/src/flags/Portugal/48.png b/src/flags/Portugal/48.png new file mode 100644 index 0000000..3cf30dd Binary files /dev/null and b/src/flags/Portugal/48.png differ diff --git a/src/flags/Portugal/64.png b/src/flags/Portugal/64.png new file mode 100644 index 0000000..01a44ea Binary files /dev/null and b/src/flags/Portugal/64.png differ diff --git a/src/flags/Portugal/code b/src/flags/Portugal/code new file mode 100644 index 0000000..6eedcc9 --- /dev/null +++ b/src/flags/Portugal/code @@ -0,0 +1 @@ +PT \ No newline at end of file diff --git a/src/flags/Puerto-Rico/16.png b/src/flags/Puerto-Rico/16.png new file mode 100644 index 0000000..877de74 Binary files /dev/null and b/src/flags/Puerto-Rico/16.png differ diff --git a/src/flags/Puerto-Rico/24.png b/src/flags/Puerto-Rico/24.png new file mode 100644 index 0000000..cbea196 Binary files /dev/null and b/src/flags/Puerto-Rico/24.png differ diff --git a/src/flags/Puerto-Rico/32.png b/src/flags/Puerto-Rico/32.png new file mode 100644 index 0000000..f01c7f0 Binary files /dev/null and b/src/flags/Puerto-Rico/32.png differ diff --git a/src/flags/Puerto-Rico/48.png b/src/flags/Puerto-Rico/48.png new file mode 100644 index 0000000..fde2080 Binary files /dev/null and b/src/flags/Puerto-Rico/48.png differ diff --git a/src/flags/Puerto-Rico/64.png b/src/flags/Puerto-Rico/64.png new file mode 100644 index 0000000..495cd50 Binary files /dev/null and b/src/flags/Puerto-Rico/64.png differ diff --git a/src/flags/Puerto-Rico/code b/src/flags/Puerto-Rico/code new file mode 100644 index 0000000..adbf92f --- /dev/null +++ b/src/flags/Puerto-Rico/code @@ -0,0 +1 @@ +PR \ No newline at end of file diff --git a/src/flags/Qatar/16.png b/src/flags/Qatar/16.png new file mode 100644 index 0000000..551dbd9 Binary files /dev/null and b/src/flags/Qatar/16.png differ diff --git a/src/flags/Qatar/24.png b/src/flags/Qatar/24.png new file mode 100644 index 0000000..b5ae447 Binary files /dev/null and b/src/flags/Qatar/24.png differ diff --git a/src/flags/Qatar/32.png b/src/flags/Qatar/32.png new file mode 100644 index 0000000..b42acb5 Binary files /dev/null and b/src/flags/Qatar/32.png differ diff --git a/src/flags/Qatar/48.png b/src/flags/Qatar/48.png new file mode 100644 index 0000000..b713246 Binary files /dev/null and b/src/flags/Qatar/48.png differ diff --git a/src/flags/Qatar/64.png b/src/flags/Qatar/64.png new file mode 100644 index 0000000..622f14a Binary files /dev/null and b/src/flags/Qatar/64.png differ diff --git a/src/flags/Qatar/code b/src/flags/Qatar/code new file mode 100644 index 0000000..e92b0f5 --- /dev/null +++ b/src/flags/Qatar/code @@ -0,0 +1 @@ +QA \ No newline at end of file diff --git a/src/flags/Red-Cross/16.png b/src/flags/Red-Cross/16.png new file mode 100644 index 0000000..1b061b3 Binary files /dev/null and b/src/flags/Red-Cross/16.png differ diff --git a/src/flags/Red-Cross/24.png b/src/flags/Red-Cross/24.png new file mode 100644 index 0000000..845d37c Binary files /dev/null and b/src/flags/Red-Cross/24.png differ diff --git a/src/flags/Red-Cross/32.png b/src/flags/Red-Cross/32.png new file mode 100644 index 0000000..5eb5253 Binary files /dev/null and b/src/flags/Red-Cross/32.png differ diff --git a/src/flags/Red-Cross/48.png b/src/flags/Red-Cross/48.png new file mode 100644 index 0000000..6d4c4ec Binary files /dev/null and b/src/flags/Red-Cross/48.png differ diff --git a/src/flags/Red-Cross/64.png b/src/flags/Red-Cross/64.png new file mode 100644 index 0000000..a609144 Binary files /dev/null and b/src/flags/Red-Cross/64.png differ diff --git a/src/flags/Red-Cross/code b/src/flags/Red-Cross/code new file mode 100644 index 0000000..834df6c --- /dev/null +++ b/src/flags/Red-Cross/code @@ -0,0 +1 @@ +_red-cross \ No newline at end of file diff --git a/src/flags/Republic-of-the-Congo/16.png b/src/flags/Republic-of-the-Congo/16.png new file mode 100644 index 0000000..6d058f8 Binary files /dev/null and b/src/flags/Republic-of-the-Congo/16.png differ diff --git a/src/flags/Republic-of-the-Congo/24.png b/src/flags/Republic-of-the-Congo/24.png new file mode 100644 index 0000000..2e6aa46 Binary files /dev/null and b/src/flags/Republic-of-the-Congo/24.png differ diff --git a/src/flags/Republic-of-the-Congo/32.png b/src/flags/Republic-of-the-Congo/32.png new file mode 100644 index 0000000..a2cce2f Binary files /dev/null and b/src/flags/Republic-of-the-Congo/32.png differ diff --git a/src/flags/Republic-of-the-Congo/48.png b/src/flags/Republic-of-the-Congo/48.png new file mode 100644 index 0000000..aeef767 Binary files /dev/null and b/src/flags/Republic-of-the-Congo/48.png differ diff --git a/src/flags/Republic-of-the-Congo/64.png b/src/flags/Republic-of-the-Congo/64.png new file mode 100644 index 0000000..91d7e78 Binary files /dev/null and b/src/flags/Republic-of-the-Congo/64.png differ diff --git a/src/flags/Republic-of-the-Congo/code b/src/flags/Republic-of-the-Congo/code new file mode 100644 index 0000000..b5f9103 --- /dev/null +++ b/src/flags/Republic-of-the-Congo/code @@ -0,0 +1 @@ +CG \ No newline at end of file diff --git a/src/flags/Romania/16.png b/src/flags/Romania/16.png new file mode 100644 index 0000000..f9cf40d Binary files /dev/null and b/src/flags/Romania/16.png differ diff --git a/src/flags/Romania/24.png b/src/flags/Romania/24.png new file mode 100644 index 0000000..b15ae7f Binary files /dev/null and b/src/flags/Romania/24.png differ diff --git a/src/flags/Romania/32.png b/src/flags/Romania/32.png new file mode 100644 index 0000000..494a922 Binary files /dev/null and b/src/flags/Romania/32.png differ diff --git a/src/flags/Romania/48.png b/src/flags/Romania/48.png new file mode 100644 index 0000000..26331a0 Binary files /dev/null and b/src/flags/Romania/48.png differ diff --git a/src/flags/Romania/64.png b/src/flags/Romania/64.png new file mode 100644 index 0000000..43f3eca Binary files /dev/null and b/src/flags/Romania/64.png differ diff --git a/src/flags/Romania/code b/src/flags/Romania/code new file mode 100644 index 0000000..2bc4745 --- /dev/null +++ b/src/flags/Romania/code @@ -0,0 +1 @@ +RO \ No newline at end of file diff --git a/src/flags/Russia/16.png b/src/flags/Russia/16.png new file mode 100644 index 0000000..9c1c030 Binary files /dev/null and b/src/flags/Russia/16.png differ diff --git a/src/flags/Russia/24.png b/src/flags/Russia/24.png new file mode 100644 index 0000000..66fd5c1 Binary files /dev/null and b/src/flags/Russia/24.png differ diff --git a/src/flags/Russia/32.png b/src/flags/Russia/32.png new file mode 100644 index 0000000..6a2c014 Binary files /dev/null and b/src/flags/Russia/32.png differ diff --git a/src/flags/Russia/48.png b/src/flags/Russia/48.png new file mode 100644 index 0000000..b20f90d Binary files /dev/null and b/src/flags/Russia/48.png differ diff --git a/src/flags/Russia/64.png b/src/flags/Russia/64.png new file mode 100644 index 0000000..67a0856 Binary files /dev/null and b/src/flags/Russia/64.png differ diff --git a/src/flags/Russia/code b/src/flags/Russia/code new file mode 100644 index 0000000..02279b7 --- /dev/null +++ b/src/flags/Russia/code @@ -0,0 +1 @@ +RU \ No newline at end of file diff --git a/src/flags/Rwanda/16.png b/src/flags/Rwanda/16.png new file mode 100644 index 0000000..1e6259f Binary files /dev/null and b/src/flags/Rwanda/16.png differ diff --git a/src/flags/Rwanda/24.png b/src/flags/Rwanda/24.png new file mode 100644 index 0000000..17dd17a Binary files /dev/null and b/src/flags/Rwanda/24.png differ diff --git a/src/flags/Rwanda/32.png b/src/flags/Rwanda/32.png new file mode 100644 index 0000000..d94886a Binary files /dev/null and b/src/flags/Rwanda/32.png differ diff --git a/src/flags/Rwanda/48.png b/src/flags/Rwanda/48.png new file mode 100644 index 0000000..dd63790 Binary files /dev/null and b/src/flags/Rwanda/48.png differ diff --git a/src/flags/Rwanda/64.png b/src/flags/Rwanda/64.png new file mode 100644 index 0000000..b03c085 Binary files /dev/null and b/src/flags/Rwanda/64.png differ diff --git a/src/flags/Rwanda/code b/src/flags/Rwanda/code new file mode 100644 index 0000000..5e8aa67 --- /dev/null +++ b/src/flags/Rwanda/code @@ -0,0 +1 @@ +RW \ No newline at end of file diff --git a/src/flags/Saint-Barthelemy/16.png b/src/flags/Saint-Barthelemy/16.png new file mode 100644 index 0000000..0e856fd Binary files /dev/null and b/src/flags/Saint-Barthelemy/16.png differ diff --git a/src/flags/Saint-Barthelemy/24.png b/src/flags/Saint-Barthelemy/24.png new file mode 100644 index 0000000..13a630c Binary files /dev/null and b/src/flags/Saint-Barthelemy/24.png differ diff --git a/src/flags/Saint-Barthelemy/32.png b/src/flags/Saint-Barthelemy/32.png new file mode 100644 index 0000000..c118992 Binary files /dev/null and b/src/flags/Saint-Barthelemy/32.png differ diff --git a/src/flags/Saint-Barthelemy/48.png b/src/flags/Saint-Barthelemy/48.png new file mode 100644 index 0000000..97ec0c7 Binary files /dev/null and b/src/flags/Saint-Barthelemy/48.png differ diff --git a/src/flags/Saint-Barthelemy/64.png b/src/flags/Saint-Barthelemy/64.png new file mode 100644 index 0000000..b8e1801 Binary files /dev/null and b/src/flags/Saint-Barthelemy/64.png differ diff --git a/src/flags/Saint-Barthelemy/code b/src/flags/Saint-Barthelemy/code new file mode 100644 index 0000000..4897d94 --- /dev/null +++ b/src/flags/Saint-Barthelemy/code @@ -0,0 +1 @@ +BL \ No newline at end of file diff --git a/src/flags/Saint-Helena/16.png b/src/flags/Saint-Helena/16.png new file mode 100644 index 0000000..a77249e Binary files /dev/null and b/src/flags/Saint-Helena/16.png differ diff --git a/src/flags/Saint-Helena/24.png b/src/flags/Saint-Helena/24.png new file mode 100644 index 0000000..417a1c1 Binary files /dev/null and b/src/flags/Saint-Helena/24.png differ diff --git a/src/flags/Saint-Helena/32.png b/src/flags/Saint-Helena/32.png new file mode 100644 index 0000000..6156aed Binary files /dev/null and b/src/flags/Saint-Helena/32.png differ diff --git a/src/flags/Saint-Helena/48.png b/src/flags/Saint-Helena/48.png new file mode 100644 index 0000000..b7909d6 Binary files /dev/null and b/src/flags/Saint-Helena/48.png differ diff --git a/src/flags/Saint-Helena/64.png b/src/flags/Saint-Helena/64.png new file mode 100644 index 0000000..97b752a Binary files /dev/null and b/src/flags/Saint-Helena/64.png differ diff --git a/src/flags/Saint-Helena/code b/src/flags/Saint-Helena/code new file mode 100644 index 0000000..5e15878 --- /dev/null +++ b/src/flags/Saint-Helena/code @@ -0,0 +1 @@ +SH \ No newline at end of file diff --git a/src/flags/Saint-Kitts-and-Nevis/16.png b/src/flags/Saint-Kitts-and-Nevis/16.png new file mode 100644 index 0000000..858699f Binary files /dev/null and b/src/flags/Saint-Kitts-and-Nevis/16.png differ diff --git a/src/flags/Saint-Kitts-and-Nevis/24.png b/src/flags/Saint-Kitts-and-Nevis/24.png new file mode 100644 index 0000000..72b71d1 Binary files /dev/null and b/src/flags/Saint-Kitts-and-Nevis/24.png differ diff --git a/src/flags/Saint-Kitts-and-Nevis/32.png b/src/flags/Saint-Kitts-and-Nevis/32.png new file mode 100644 index 0000000..7d9d4c0 Binary files /dev/null and b/src/flags/Saint-Kitts-and-Nevis/32.png differ diff --git a/src/flags/Saint-Kitts-and-Nevis/48.png b/src/flags/Saint-Kitts-and-Nevis/48.png new file mode 100644 index 0000000..4ed8385 Binary files /dev/null and b/src/flags/Saint-Kitts-and-Nevis/48.png differ diff --git a/src/flags/Saint-Kitts-and-Nevis/64.png b/src/flags/Saint-Kitts-and-Nevis/64.png new file mode 100644 index 0000000..da44bb0 Binary files /dev/null and b/src/flags/Saint-Kitts-and-Nevis/64.png differ diff --git a/src/flags/Saint-Kitts-and-Nevis/code b/src/flags/Saint-Kitts-and-Nevis/code new file mode 100644 index 0000000..2d8dc3d --- /dev/null +++ b/src/flags/Saint-Kitts-and-Nevis/code @@ -0,0 +1 @@ +KN \ No newline at end of file diff --git a/src/flags/Saint-Lucia/16.png b/src/flags/Saint-Lucia/16.png new file mode 100644 index 0000000..fdd64f3 Binary files /dev/null and b/src/flags/Saint-Lucia/16.png differ diff --git a/src/flags/Saint-Lucia/24.png b/src/flags/Saint-Lucia/24.png new file mode 100644 index 0000000..fafcad5 Binary files /dev/null and b/src/flags/Saint-Lucia/24.png differ diff --git a/src/flags/Saint-Lucia/32.png b/src/flags/Saint-Lucia/32.png new file mode 100644 index 0000000..c446bb3 Binary files /dev/null and b/src/flags/Saint-Lucia/32.png differ diff --git a/src/flags/Saint-Lucia/48.png b/src/flags/Saint-Lucia/48.png new file mode 100644 index 0000000..b58f85e Binary files /dev/null and b/src/flags/Saint-Lucia/48.png differ diff --git a/src/flags/Saint-Lucia/64.png b/src/flags/Saint-Lucia/64.png new file mode 100644 index 0000000..223096c Binary files /dev/null and b/src/flags/Saint-Lucia/64.png differ diff --git a/src/flags/Saint-Lucia/code b/src/flags/Saint-Lucia/code new file mode 100644 index 0000000..b4de01d --- /dev/null +++ b/src/flags/Saint-Lucia/code @@ -0,0 +1 @@ +LC \ No newline at end of file diff --git a/src/flags/Saint-Vincent-and-the-Grenadines/16.png b/src/flags/Saint-Vincent-and-the-Grenadines/16.png new file mode 100644 index 0000000..bd57cba Binary files /dev/null and b/src/flags/Saint-Vincent-and-the-Grenadines/16.png differ diff --git a/src/flags/Saint-Vincent-and-the-Grenadines/24.png b/src/flags/Saint-Vincent-and-the-Grenadines/24.png new file mode 100644 index 0000000..55ef5e1 Binary files /dev/null and b/src/flags/Saint-Vincent-and-the-Grenadines/24.png differ diff --git a/src/flags/Saint-Vincent-and-the-Grenadines/32.png b/src/flags/Saint-Vincent-and-the-Grenadines/32.png new file mode 100644 index 0000000..87c0c73 Binary files /dev/null and b/src/flags/Saint-Vincent-and-the-Grenadines/32.png differ diff --git a/src/flags/Saint-Vincent-and-the-Grenadines/48.png b/src/flags/Saint-Vincent-and-the-Grenadines/48.png new file mode 100644 index 0000000..34236e0 Binary files /dev/null and b/src/flags/Saint-Vincent-and-the-Grenadines/48.png differ diff --git a/src/flags/Saint-Vincent-and-the-Grenadines/64.png b/src/flags/Saint-Vincent-and-the-Grenadines/64.png new file mode 100644 index 0000000..946b522 Binary files /dev/null and b/src/flags/Saint-Vincent-and-the-Grenadines/64.png differ diff --git a/src/flags/Saint-Vincent-and-the-Grenadines/code b/src/flags/Saint-Vincent-and-the-Grenadines/code new file mode 100644 index 0000000..d74bf30 --- /dev/null +++ b/src/flags/Saint-Vincent-and-the-Grenadines/code @@ -0,0 +1 @@ +VC \ No newline at end of file diff --git a/src/flags/Samoa/16.png b/src/flags/Samoa/16.png new file mode 100644 index 0000000..dc6f502 Binary files /dev/null and b/src/flags/Samoa/16.png differ diff --git a/src/flags/Samoa/24.png b/src/flags/Samoa/24.png new file mode 100644 index 0000000..278dd20 Binary files /dev/null and b/src/flags/Samoa/24.png differ diff --git a/src/flags/Samoa/32.png b/src/flags/Samoa/32.png new file mode 100644 index 0000000..4ca2003 Binary files /dev/null and b/src/flags/Samoa/32.png differ diff --git a/src/flags/Samoa/48.png b/src/flags/Samoa/48.png new file mode 100644 index 0000000..e30a76b Binary files /dev/null and b/src/flags/Samoa/48.png differ diff --git a/src/flags/Samoa/64.png b/src/flags/Samoa/64.png new file mode 100644 index 0000000..375758a Binary files /dev/null and b/src/flags/Samoa/64.png differ diff --git a/src/flags/Samoa/code b/src/flags/Samoa/code new file mode 100644 index 0000000..2dd9aa0 --- /dev/null +++ b/src/flags/Samoa/code @@ -0,0 +1 @@ +WS \ No newline at end of file diff --git a/src/flags/San-Marino/16.png b/src/flags/San-Marino/16.png new file mode 100644 index 0000000..b643671 Binary files /dev/null and b/src/flags/San-Marino/16.png differ diff --git a/src/flags/San-Marino/24.png b/src/flags/San-Marino/24.png new file mode 100644 index 0000000..148096f Binary files /dev/null and b/src/flags/San-Marino/24.png differ diff --git a/src/flags/San-Marino/32.png b/src/flags/San-Marino/32.png new file mode 100644 index 0000000..6a70d53 Binary files /dev/null and b/src/flags/San-Marino/32.png differ diff --git a/src/flags/San-Marino/48.png b/src/flags/San-Marino/48.png new file mode 100644 index 0000000..d0b6d39 Binary files /dev/null and b/src/flags/San-Marino/48.png differ diff --git a/src/flags/San-Marino/64.png b/src/flags/San-Marino/64.png new file mode 100644 index 0000000..62d6c4d Binary files /dev/null and b/src/flags/San-Marino/64.png differ diff --git a/src/flags/San-Marino/code b/src/flags/San-Marino/code new file mode 100644 index 0000000..9e11ee1 --- /dev/null +++ b/src/flags/San-Marino/code @@ -0,0 +1 @@ +SM \ No newline at end of file diff --git a/src/flags/Sao-Tome-and-Principe/16.png b/src/flags/Sao-Tome-and-Principe/16.png new file mode 100644 index 0000000..842f50e Binary files /dev/null and b/src/flags/Sao-Tome-and-Principe/16.png differ diff --git a/src/flags/Sao-Tome-and-Principe/24.png b/src/flags/Sao-Tome-and-Principe/24.png new file mode 100644 index 0000000..b06366c Binary files /dev/null and b/src/flags/Sao-Tome-and-Principe/24.png differ diff --git a/src/flags/Sao-Tome-and-Principe/32.png b/src/flags/Sao-Tome-and-Principe/32.png new file mode 100644 index 0000000..10a36a3 Binary files /dev/null and b/src/flags/Sao-Tome-and-Principe/32.png differ diff --git a/src/flags/Sao-Tome-and-Principe/48.png b/src/flags/Sao-Tome-and-Principe/48.png new file mode 100644 index 0000000..83c01b2 Binary files /dev/null and b/src/flags/Sao-Tome-and-Principe/48.png differ diff --git a/src/flags/Sao-Tome-and-Principe/64.png b/src/flags/Sao-Tome-and-Principe/64.png new file mode 100644 index 0000000..9049a7c Binary files /dev/null and b/src/flags/Sao-Tome-and-Principe/64.png differ diff --git a/src/flags/Sao-Tome-and-Principe/code b/src/flags/Sao-Tome-and-Principe/code new file mode 100644 index 0000000..86aa1fa --- /dev/null +++ b/src/flags/Sao-Tome-and-Principe/code @@ -0,0 +1 @@ +ST \ No newline at end of file diff --git a/src/flags/Saudi-Arabia/16.png b/src/flags/Saudi-Arabia/16.png new file mode 100644 index 0000000..ce805cc Binary files /dev/null and b/src/flags/Saudi-Arabia/16.png differ diff --git a/src/flags/Saudi-Arabia/24.png b/src/flags/Saudi-Arabia/24.png new file mode 100644 index 0000000..2a75cb2 Binary files /dev/null and b/src/flags/Saudi-Arabia/24.png differ diff --git a/src/flags/Saudi-Arabia/32.png b/src/flags/Saudi-Arabia/32.png new file mode 100644 index 0000000..ef5bc37 Binary files /dev/null and b/src/flags/Saudi-Arabia/32.png differ diff --git a/src/flags/Saudi-Arabia/48.png b/src/flags/Saudi-Arabia/48.png new file mode 100644 index 0000000..1aa086f Binary files /dev/null and b/src/flags/Saudi-Arabia/48.png differ diff --git a/src/flags/Saudi-Arabia/64.png b/src/flags/Saudi-Arabia/64.png new file mode 100644 index 0000000..8d433b4 Binary files /dev/null and b/src/flags/Saudi-Arabia/64.png differ diff --git a/src/flags/Saudi-Arabia/code b/src/flags/Saudi-Arabia/code new file mode 100644 index 0000000..953a42e --- /dev/null +++ b/src/flags/Saudi-Arabia/code @@ -0,0 +1 @@ +SA \ No newline at end of file diff --git a/src/flags/Scotland/16.png b/src/flags/Scotland/16.png new file mode 100644 index 0000000..751f111 Binary files /dev/null and b/src/flags/Scotland/16.png differ diff --git a/src/flags/Scotland/24.png b/src/flags/Scotland/24.png new file mode 100644 index 0000000..83aebd5 Binary files /dev/null and b/src/flags/Scotland/24.png differ diff --git a/src/flags/Scotland/32.png b/src/flags/Scotland/32.png new file mode 100644 index 0000000..5438bed Binary files /dev/null and b/src/flags/Scotland/32.png differ diff --git a/src/flags/Scotland/48.png b/src/flags/Scotland/48.png new file mode 100644 index 0000000..a196929 Binary files /dev/null and b/src/flags/Scotland/48.png differ diff --git a/src/flags/Scotland/64.png b/src/flags/Scotland/64.png new file mode 100644 index 0000000..a72cbbf Binary files /dev/null and b/src/flags/Scotland/64.png differ diff --git a/src/flags/Scotland/code b/src/flags/Scotland/code new file mode 100644 index 0000000..0882131 --- /dev/null +++ b/src/flags/Scotland/code @@ -0,0 +1 @@ +_scotland \ No newline at end of file diff --git a/src/flags/Senegal/16.png b/src/flags/Senegal/16.png new file mode 100644 index 0000000..5f95ad8 Binary files /dev/null and b/src/flags/Senegal/16.png differ diff --git a/src/flags/Senegal/24.png b/src/flags/Senegal/24.png new file mode 100644 index 0000000..f393e99 Binary files /dev/null and b/src/flags/Senegal/24.png differ diff --git a/src/flags/Senegal/32.png b/src/flags/Senegal/32.png new file mode 100644 index 0000000..cd44725 Binary files /dev/null and b/src/flags/Senegal/32.png differ diff --git a/src/flags/Senegal/48.png b/src/flags/Senegal/48.png new file mode 100644 index 0000000..a96c58c Binary files /dev/null and b/src/flags/Senegal/48.png differ diff --git a/src/flags/Senegal/64.png b/src/flags/Senegal/64.png new file mode 100644 index 0000000..409b2bc Binary files /dev/null and b/src/flags/Senegal/64.png differ diff --git a/src/flags/Senegal/code b/src/flags/Senegal/code new file mode 100644 index 0000000..48b7404 --- /dev/null +++ b/src/flags/Senegal/code @@ -0,0 +1 @@ +SN \ No newline at end of file diff --git a/src/flags/Serbia/16.png b/src/flags/Serbia/16.png new file mode 100644 index 0000000..ecde6ae Binary files /dev/null and b/src/flags/Serbia/16.png differ diff --git a/src/flags/Serbia/24.png b/src/flags/Serbia/24.png new file mode 100644 index 0000000..f9d7644 Binary files /dev/null and b/src/flags/Serbia/24.png differ diff --git a/src/flags/Serbia/32.png b/src/flags/Serbia/32.png new file mode 100644 index 0000000..74c3cf7 Binary files /dev/null and b/src/flags/Serbia/32.png differ diff --git a/src/flags/Serbia/48.png b/src/flags/Serbia/48.png new file mode 100644 index 0000000..3be1805 Binary files /dev/null and b/src/flags/Serbia/48.png differ diff --git a/src/flags/Serbia/64.png b/src/flags/Serbia/64.png new file mode 100644 index 0000000..928944d Binary files /dev/null and b/src/flags/Serbia/64.png differ diff --git a/src/flags/Serbia/code b/src/flags/Serbia/code new file mode 100644 index 0000000..0ea8a97 --- /dev/null +++ b/src/flags/Serbia/code @@ -0,0 +1 @@ +RS \ No newline at end of file diff --git a/src/flags/Seychelles/16.png b/src/flags/Seychelles/16.png new file mode 100644 index 0000000..f78802e Binary files /dev/null and b/src/flags/Seychelles/16.png differ diff --git a/src/flags/Seychelles/24.png b/src/flags/Seychelles/24.png new file mode 100644 index 0000000..730f4a2 Binary files /dev/null and b/src/flags/Seychelles/24.png differ diff --git a/src/flags/Seychelles/32.png b/src/flags/Seychelles/32.png new file mode 100644 index 0000000..e77f91e Binary files /dev/null and b/src/flags/Seychelles/32.png differ diff --git a/src/flags/Seychelles/48.png b/src/flags/Seychelles/48.png new file mode 100644 index 0000000..6d6d486 Binary files /dev/null and b/src/flags/Seychelles/48.png differ diff --git a/src/flags/Seychelles/64.png b/src/flags/Seychelles/64.png new file mode 100644 index 0000000..e5cd1b2 Binary files /dev/null and b/src/flags/Seychelles/64.png differ diff --git a/src/flags/Seychelles/code b/src/flags/Seychelles/code new file mode 100644 index 0000000..e807b90 --- /dev/null +++ b/src/flags/Seychelles/code @@ -0,0 +1 @@ +SC \ No newline at end of file diff --git a/src/flags/Sierra-Leone/16.png b/src/flags/Sierra-Leone/16.png new file mode 100644 index 0000000..2aaff40 Binary files /dev/null and b/src/flags/Sierra-Leone/16.png differ diff --git a/src/flags/Sierra-Leone/24.png b/src/flags/Sierra-Leone/24.png new file mode 100644 index 0000000..e90114a Binary files /dev/null and b/src/flags/Sierra-Leone/24.png differ diff --git a/src/flags/Sierra-Leone/32.png b/src/flags/Sierra-Leone/32.png new file mode 100644 index 0000000..08ba7c8 Binary files /dev/null and b/src/flags/Sierra-Leone/32.png differ diff --git a/src/flags/Sierra-Leone/48.png b/src/flags/Sierra-Leone/48.png new file mode 100644 index 0000000..1053c5c Binary files /dev/null and b/src/flags/Sierra-Leone/48.png differ diff --git a/src/flags/Sierra-Leone/64.png b/src/flags/Sierra-Leone/64.png new file mode 100644 index 0000000..d08728d Binary files /dev/null and b/src/flags/Sierra-Leone/64.png differ diff --git a/src/flags/Sierra-Leone/code b/src/flags/Sierra-Leone/code new file mode 100644 index 0000000..7c50c9a --- /dev/null +++ b/src/flags/Sierra-Leone/code @@ -0,0 +1 @@ +SL \ No newline at end of file diff --git a/src/flags/Singapore/16.png b/src/flags/Singapore/16.png new file mode 100644 index 0000000..f807794 Binary files /dev/null and b/src/flags/Singapore/16.png differ diff --git a/src/flags/Singapore/24.png b/src/flags/Singapore/24.png new file mode 100644 index 0000000..3ca2e8a Binary files /dev/null and b/src/flags/Singapore/24.png differ diff --git a/src/flags/Singapore/32.png b/src/flags/Singapore/32.png new file mode 100644 index 0000000..e92fe08 Binary files /dev/null and b/src/flags/Singapore/32.png differ diff --git a/src/flags/Singapore/48.png b/src/flags/Singapore/48.png new file mode 100644 index 0000000..f8bacc9 Binary files /dev/null and b/src/flags/Singapore/48.png differ diff --git a/src/flags/Singapore/64.png b/src/flags/Singapore/64.png new file mode 100644 index 0000000..50a0625 Binary files /dev/null and b/src/flags/Singapore/64.png differ diff --git a/src/flags/Singapore/code b/src/flags/Singapore/code new file mode 100644 index 0000000..1a616b4 --- /dev/null +++ b/src/flags/Singapore/code @@ -0,0 +1 @@ +SG \ No newline at end of file diff --git a/src/flags/Slovakia/16.png b/src/flags/Slovakia/16.png new file mode 100644 index 0000000..d507397 Binary files /dev/null and b/src/flags/Slovakia/16.png differ diff --git a/src/flags/Slovakia/24.png b/src/flags/Slovakia/24.png new file mode 100644 index 0000000..97bf458 Binary files /dev/null and b/src/flags/Slovakia/24.png differ diff --git a/src/flags/Slovakia/32.png b/src/flags/Slovakia/32.png new file mode 100644 index 0000000..a46a2a8 Binary files /dev/null and b/src/flags/Slovakia/32.png differ diff --git a/src/flags/Slovakia/48.png b/src/flags/Slovakia/48.png new file mode 100644 index 0000000..cda4780 Binary files /dev/null and b/src/flags/Slovakia/48.png differ diff --git a/src/flags/Slovakia/64.png b/src/flags/Slovakia/64.png new file mode 100644 index 0000000..498d9e9 Binary files /dev/null and b/src/flags/Slovakia/64.png differ diff --git a/src/flags/Slovakia/code b/src/flags/Slovakia/code new file mode 100644 index 0000000..d213e28 --- /dev/null +++ b/src/flags/Slovakia/code @@ -0,0 +1 @@ +SK \ No newline at end of file diff --git a/src/flags/Slovenia/16.png b/src/flags/Slovenia/16.png new file mode 100644 index 0000000..a0315a3 Binary files /dev/null and b/src/flags/Slovenia/16.png differ diff --git a/src/flags/Slovenia/24.png b/src/flags/Slovenia/24.png new file mode 100644 index 0000000..b7994b2 Binary files /dev/null and b/src/flags/Slovenia/24.png differ diff --git a/src/flags/Slovenia/32.png b/src/flags/Slovenia/32.png new file mode 100644 index 0000000..a247756 Binary files /dev/null and b/src/flags/Slovenia/32.png differ diff --git a/src/flags/Slovenia/48.png b/src/flags/Slovenia/48.png new file mode 100644 index 0000000..05086f6 Binary files /dev/null and b/src/flags/Slovenia/48.png differ diff --git a/src/flags/Slovenia/64.png b/src/flags/Slovenia/64.png new file mode 100644 index 0000000..2c65f0e Binary files /dev/null and b/src/flags/Slovenia/64.png differ diff --git a/src/flags/Slovenia/code b/src/flags/Slovenia/code new file mode 100644 index 0000000..67859e8 --- /dev/null +++ b/src/flags/Slovenia/code @@ -0,0 +1 @@ +SI \ No newline at end of file diff --git a/src/flags/Solomon-Islands/16.png b/src/flags/Solomon-Islands/16.png new file mode 100644 index 0000000..1df35bb Binary files /dev/null and b/src/flags/Solomon-Islands/16.png differ diff --git a/src/flags/Solomon-Islands/24.png b/src/flags/Solomon-Islands/24.png new file mode 100644 index 0000000..1d6d5e0 Binary files /dev/null and b/src/flags/Solomon-Islands/24.png differ diff --git a/src/flags/Solomon-Islands/32.png b/src/flags/Solomon-Islands/32.png new file mode 100644 index 0000000..fa06dd3 Binary files /dev/null and b/src/flags/Solomon-Islands/32.png differ diff --git a/src/flags/Solomon-Islands/48.png b/src/flags/Solomon-Islands/48.png new file mode 100644 index 0000000..cb28324 Binary files /dev/null and b/src/flags/Solomon-Islands/48.png differ diff --git a/src/flags/Solomon-Islands/64.png b/src/flags/Solomon-Islands/64.png new file mode 100644 index 0000000..d2e2c1e Binary files /dev/null and b/src/flags/Solomon-Islands/64.png differ diff --git a/src/flags/Solomon-Islands/code b/src/flags/Solomon-Islands/code new file mode 100644 index 0000000..055d251 --- /dev/null +++ b/src/flags/Solomon-Islands/code @@ -0,0 +1 @@ +SB \ No newline at end of file diff --git a/src/flags/Somalia/16.png b/src/flags/Somalia/16.png new file mode 100644 index 0000000..32e0346 Binary files /dev/null and b/src/flags/Somalia/16.png differ diff --git a/src/flags/Somalia/24.png b/src/flags/Somalia/24.png new file mode 100644 index 0000000..df4bcf4 Binary files /dev/null and b/src/flags/Somalia/24.png differ diff --git a/src/flags/Somalia/32.png b/src/flags/Somalia/32.png new file mode 100644 index 0000000..30bc299 Binary files /dev/null and b/src/flags/Somalia/32.png differ diff --git a/src/flags/Somalia/48.png b/src/flags/Somalia/48.png new file mode 100644 index 0000000..c9f4ffc Binary files /dev/null and b/src/flags/Somalia/48.png differ diff --git a/src/flags/Somalia/64.png b/src/flags/Somalia/64.png new file mode 100644 index 0000000..6f5be8e Binary files /dev/null and b/src/flags/Somalia/64.png differ diff --git a/src/flags/Somalia/code b/src/flags/Somalia/code new file mode 100644 index 0000000..a303131 --- /dev/null +++ b/src/flags/Somalia/code @@ -0,0 +1 @@ +SO \ No newline at end of file diff --git a/src/flags/Somaliland/16.png b/src/flags/Somaliland/16.png new file mode 100644 index 0000000..42693a9 Binary files /dev/null and b/src/flags/Somaliland/16.png differ diff --git a/src/flags/Somaliland/24.png b/src/flags/Somaliland/24.png new file mode 100644 index 0000000..442a4a3 Binary files /dev/null and b/src/flags/Somaliland/24.png differ diff --git a/src/flags/Somaliland/32.png b/src/flags/Somaliland/32.png new file mode 100644 index 0000000..4f4f03c Binary files /dev/null and b/src/flags/Somaliland/32.png differ diff --git a/src/flags/Somaliland/48.png b/src/flags/Somaliland/48.png new file mode 100644 index 0000000..c35551a Binary files /dev/null and b/src/flags/Somaliland/48.png differ diff --git a/src/flags/Somaliland/64.png b/src/flags/Somaliland/64.png new file mode 100644 index 0000000..ce569c7 Binary files /dev/null and b/src/flags/Somaliland/64.png differ diff --git a/src/flags/Somaliland/code b/src/flags/Somaliland/code new file mode 100644 index 0000000..1931513 --- /dev/null +++ b/src/flags/Somaliland/code @@ -0,0 +1 @@ +_somaliland \ No newline at end of file diff --git a/src/flags/South-Africa/16.png b/src/flags/South-Africa/16.png new file mode 100644 index 0000000..4969f01 Binary files /dev/null and b/src/flags/South-Africa/16.png differ diff --git a/src/flags/South-Africa/24.png b/src/flags/South-Africa/24.png new file mode 100644 index 0000000..c42d920 Binary files /dev/null and b/src/flags/South-Africa/24.png differ diff --git a/src/flags/South-Africa/32.png b/src/flags/South-Africa/32.png new file mode 100644 index 0000000..f10bfc8 Binary files /dev/null and b/src/flags/South-Africa/32.png differ diff --git a/src/flags/South-Africa/48.png b/src/flags/South-Africa/48.png new file mode 100644 index 0000000..d4cc8cb Binary files /dev/null and b/src/flags/South-Africa/48.png differ diff --git a/src/flags/South-Africa/64.png b/src/flags/South-Africa/64.png new file mode 100644 index 0000000..651aec5 Binary files /dev/null and b/src/flags/South-Africa/64.png differ diff --git a/src/flags/South-Africa/code b/src/flags/South-Africa/code new file mode 100644 index 0000000..f51a49a --- /dev/null +++ b/src/flags/South-Africa/code @@ -0,0 +1 @@ +ZA \ No newline at end of file diff --git a/src/flags/South-Georgia-and-the-South-Sandwich-Islands/16.png b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/16.png new file mode 100644 index 0000000..68d5999 Binary files /dev/null and b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/16.png differ diff --git a/src/flags/South-Georgia-and-the-South-Sandwich-Islands/24.png b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/24.png new file mode 100644 index 0000000..410bdb2 Binary files /dev/null and b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/24.png differ diff --git a/src/flags/South-Georgia-and-the-South-Sandwich-Islands/32.png b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/32.png new file mode 100644 index 0000000..ade5be5 Binary files /dev/null and b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/32.png differ diff --git a/src/flags/South-Georgia-and-the-South-Sandwich-Islands/48.png b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/48.png new file mode 100644 index 0000000..5c96b7d Binary files /dev/null and b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/48.png differ diff --git a/src/flags/South-Georgia-and-the-South-Sandwich-Islands/64.png b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/64.png new file mode 100644 index 0000000..c167b26 Binary files /dev/null and b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/64.png differ diff --git a/src/flags/South-Georgia-and-the-South-Sandwich-Islands/code b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/code new file mode 100644 index 0000000..c5c76dd --- /dev/null +++ b/src/flags/South-Georgia-and-the-South-Sandwich-Islands/code @@ -0,0 +1 @@ +GS \ No newline at end of file diff --git a/src/flags/South-Korea/16.png b/src/flags/South-Korea/16.png new file mode 100644 index 0000000..5bca4b3 Binary files /dev/null and b/src/flags/South-Korea/16.png differ diff --git a/src/flags/South-Korea/24.png b/src/flags/South-Korea/24.png new file mode 100644 index 0000000..ee78a00 Binary files /dev/null and b/src/flags/South-Korea/24.png differ diff --git a/src/flags/South-Korea/32.png b/src/flags/South-Korea/32.png new file mode 100644 index 0000000..3f281b6 Binary files /dev/null and b/src/flags/South-Korea/32.png differ diff --git a/src/flags/South-Korea/48.png b/src/flags/South-Korea/48.png new file mode 100644 index 0000000..2214751 Binary files /dev/null and b/src/flags/South-Korea/48.png differ diff --git a/src/flags/South-Korea/64.png b/src/flags/South-Korea/64.png new file mode 100644 index 0000000..6d874fb Binary files /dev/null and b/src/flags/South-Korea/64.png differ diff --git a/src/flags/South-Korea/code b/src/flags/South-Korea/code new file mode 100644 index 0000000..a90bae9 --- /dev/null +++ b/src/flags/South-Korea/code @@ -0,0 +1 @@ +KR \ No newline at end of file diff --git a/src/flags/South-Ossetia/16.png b/src/flags/South-Ossetia/16.png new file mode 100644 index 0000000..9d7ba21 Binary files /dev/null and b/src/flags/South-Ossetia/16.png differ diff --git a/src/flags/South-Ossetia/24.png b/src/flags/South-Ossetia/24.png new file mode 100644 index 0000000..2d56586 Binary files /dev/null and b/src/flags/South-Ossetia/24.png differ diff --git a/src/flags/South-Ossetia/32.png b/src/flags/South-Ossetia/32.png new file mode 100644 index 0000000..649b689 Binary files /dev/null and b/src/flags/South-Ossetia/32.png differ diff --git a/src/flags/South-Ossetia/48.png b/src/flags/South-Ossetia/48.png new file mode 100644 index 0000000..5fdadb7 Binary files /dev/null and b/src/flags/South-Ossetia/48.png differ diff --git a/src/flags/South-Ossetia/64.png b/src/flags/South-Ossetia/64.png new file mode 100644 index 0000000..5903a91 Binary files /dev/null and b/src/flags/South-Ossetia/64.png differ diff --git a/src/flags/South-Ossetia/code b/src/flags/South-Ossetia/code new file mode 100644 index 0000000..a7b3a77 --- /dev/null +++ b/src/flags/South-Ossetia/code @@ -0,0 +1 @@ +_south-ossetia \ No newline at end of file diff --git a/src/flags/South-Sudan/16.png b/src/flags/South-Sudan/16.png new file mode 100644 index 0000000..311135e Binary files /dev/null and b/src/flags/South-Sudan/16.png differ diff --git a/src/flags/South-Sudan/24.png b/src/flags/South-Sudan/24.png new file mode 100644 index 0000000..3490a44 Binary files /dev/null and b/src/flags/South-Sudan/24.png differ diff --git a/src/flags/South-Sudan/32.png b/src/flags/South-Sudan/32.png new file mode 100644 index 0000000..39b9ecc Binary files /dev/null and b/src/flags/South-Sudan/32.png differ diff --git a/src/flags/South-Sudan/48.png b/src/flags/South-Sudan/48.png new file mode 100644 index 0000000..1d57d64 Binary files /dev/null and b/src/flags/South-Sudan/48.png differ diff --git a/src/flags/South-Sudan/64.png b/src/flags/South-Sudan/64.png new file mode 100644 index 0000000..c8025d1 Binary files /dev/null and b/src/flags/South-Sudan/64.png differ diff --git a/src/flags/South-Sudan/code b/src/flags/South-Sudan/code new file mode 100644 index 0000000..bc40f28 --- /dev/null +++ b/src/flags/South-Sudan/code @@ -0,0 +1 @@ +SS \ No newline at end of file diff --git a/src/flags/Spain/16.png b/src/flags/Spain/16.png new file mode 100644 index 0000000..c0901bc Binary files /dev/null and b/src/flags/Spain/16.png differ diff --git a/src/flags/Spain/24.png b/src/flags/Spain/24.png new file mode 100644 index 0000000..39b8bf4 Binary files /dev/null and b/src/flags/Spain/24.png differ diff --git a/src/flags/Spain/32.png b/src/flags/Spain/32.png new file mode 100644 index 0000000..2f7c16b Binary files /dev/null and b/src/flags/Spain/32.png differ diff --git a/src/flags/Spain/48.png b/src/flags/Spain/48.png new file mode 100644 index 0000000..50e26b4 Binary files /dev/null and b/src/flags/Spain/48.png differ diff --git a/src/flags/Spain/64.png b/src/flags/Spain/64.png new file mode 100644 index 0000000..3a321d5 Binary files /dev/null and b/src/flags/Spain/64.png differ diff --git a/src/flags/Spain/code b/src/flags/Spain/code new file mode 100644 index 0000000..dbe651c --- /dev/null +++ b/src/flags/Spain/code @@ -0,0 +1 @@ +ES \ No newline at end of file diff --git a/src/flags/Sri-Lanka/16.png b/src/flags/Sri-Lanka/16.png new file mode 100644 index 0000000..36295f6 Binary files /dev/null and b/src/flags/Sri-Lanka/16.png differ diff --git a/src/flags/Sri-Lanka/24.png b/src/flags/Sri-Lanka/24.png new file mode 100644 index 0000000..9526490 Binary files /dev/null and b/src/flags/Sri-Lanka/24.png differ diff --git a/src/flags/Sri-Lanka/32.png b/src/flags/Sri-Lanka/32.png new file mode 100644 index 0000000..85b2829 Binary files /dev/null and b/src/flags/Sri-Lanka/32.png differ diff --git a/src/flags/Sri-Lanka/48.png b/src/flags/Sri-Lanka/48.png new file mode 100644 index 0000000..96190d6 Binary files /dev/null and b/src/flags/Sri-Lanka/48.png differ diff --git a/src/flags/Sri-Lanka/64.png b/src/flags/Sri-Lanka/64.png new file mode 100644 index 0000000..50cfa9b Binary files /dev/null and b/src/flags/Sri-Lanka/64.png differ diff --git a/src/flags/Sri-Lanka/code b/src/flags/Sri-Lanka/code new file mode 100644 index 0000000..196be23 --- /dev/null +++ b/src/flags/Sri-Lanka/code @@ -0,0 +1 @@ +LK \ No newline at end of file diff --git a/src/flags/Sudan/16.png b/src/flags/Sudan/16.png new file mode 100644 index 0000000..beaa6b2 Binary files /dev/null and b/src/flags/Sudan/16.png differ diff --git a/src/flags/Sudan/24.png b/src/flags/Sudan/24.png new file mode 100644 index 0000000..b2253e3 Binary files /dev/null and b/src/flags/Sudan/24.png differ diff --git a/src/flags/Sudan/32.png b/src/flags/Sudan/32.png new file mode 100644 index 0000000..68ce53b Binary files /dev/null and b/src/flags/Sudan/32.png differ diff --git a/src/flags/Sudan/48.png b/src/flags/Sudan/48.png new file mode 100644 index 0000000..21bfe85 Binary files /dev/null and b/src/flags/Sudan/48.png differ diff --git a/src/flags/Sudan/64.png b/src/flags/Sudan/64.png new file mode 100644 index 0000000..3bddfca Binary files /dev/null and b/src/flags/Sudan/64.png differ diff --git a/src/flags/Sudan/code b/src/flags/Sudan/code new file mode 100644 index 0000000..0bda7bb --- /dev/null +++ b/src/flags/Sudan/code @@ -0,0 +1 @@ +SD \ No newline at end of file diff --git a/src/flags/Suriname/16.png b/src/flags/Suriname/16.png new file mode 100644 index 0000000..b9b55a0 Binary files /dev/null and b/src/flags/Suriname/16.png differ diff --git a/src/flags/Suriname/24.png b/src/flags/Suriname/24.png new file mode 100644 index 0000000..d13ba56 Binary files /dev/null and b/src/flags/Suriname/24.png differ diff --git a/src/flags/Suriname/32.png b/src/flags/Suriname/32.png new file mode 100644 index 0000000..d932959 Binary files /dev/null and b/src/flags/Suriname/32.png differ diff --git a/src/flags/Suriname/48.png b/src/flags/Suriname/48.png new file mode 100644 index 0000000..2b23868 Binary files /dev/null and b/src/flags/Suriname/48.png differ diff --git a/src/flags/Suriname/64.png b/src/flags/Suriname/64.png new file mode 100644 index 0000000..7991402 Binary files /dev/null and b/src/flags/Suriname/64.png differ diff --git a/src/flags/Suriname/code b/src/flags/Suriname/code new file mode 100644 index 0000000..59b67b6 --- /dev/null +++ b/src/flags/Suriname/code @@ -0,0 +1 @@ +SR \ No newline at end of file diff --git a/src/flags/Swaziland/16.png b/src/flags/Swaziland/16.png new file mode 100644 index 0000000..64a9db9 Binary files /dev/null and b/src/flags/Swaziland/16.png differ diff --git a/src/flags/Swaziland/24.png b/src/flags/Swaziland/24.png new file mode 100644 index 0000000..31d97d5 Binary files /dev/null and b/src/flags/Swaziland/24.png differ diff --git a/src/flags/Swaziland/32.png b/src/flags/Swaziland/32.png new file mode 100644 index 0000000..4349216 Binary files /dev/null and b/src/flags/Swaziland/32.png differ diff --git a/src/flags/Swaziland/48.png b/src/flags/Swaziland/48.png new file mode 100644 index 0000000..f4b5325 Binary files /dev/null and b/src/flags/Swaziland/48.png differ diff --git a/src/flags/Swaziland/64.png b/src/flags/Swaziland/64.png new file mode 100644 index 0000000..1370faf Binary files /dev/null and b/src/flags/Swaziland/64.png differ diff --git a/src/flags/Swaziland/code b/src/flags/Swaziland/code new file mode 100644 index 0000000..ea20261 --- /dev/null +++ b/src/flags/Swaziland/code @@ -0,0 +1 @@ +SZ \ No newline at end of file diff --git a/src/flags/Sweden/16.png b/src/flags/Sweden/16.png new file mode 100644 index 0000000..fd885c2 Binary files /dev/null and b/src/flags/Sweden/16.png differ diff --git a/src/flags/Sweden/24.png b/src/flags/Sweden/24.png new file mode 100644 index 0000000..175e725 Binary files /dev/null and b/src/flags/Sweden/24.png differ diff --git a/src/flags/Sweden/32.png b/src/flags/Sweden/32.png new file mode 100644 index 0000000..8aabdf6 Binary files /dev/null and b/src/flags/Sweden/32.png differ diff --git a/src/flags/Sweden/48.png b/src/flags/Sweden/48.png new file mode 100644 index 0000000..c6355ac Binary files /dev/null and b/src/flags/Sweden/48.png differ diff --git a/src/flags/Sweden/64.png b/src/flags/Sweden/64.png new file mode 100644 index 0000000..d83f3c8 Binary files /dev/null and b/src/flags/Sweden/64.png differ diff --git a/src/flags/Sweden/code b/src/flags/Sweden/code new file mode 100644 index 0000000..f3b8afb --- /dev/null +++ b/src/flags/Sweden/code @@ -0,0 +1 @@ +SE \ No newline at end of file diff --git a/src/flags/Switzerland/16.png b/src/flags/Switzerland/16.png new file mode 100644 index 0000000..217522b Binary files /dev/null and b/src/flags/Switzerland/16.png differ diff --git a/src/flags/Switzerland/24.png b/src/flags/Switzerland/24.png new file mode 100644 index 0000000..caf8167 Binary files /dev/null and b/src/flags/Switzerland/24.png differ diff --git a/src/flags/Switzerland/32.png b/src/flags/Switzerland/32.png new file mode 100644 index 0000000..1b128b9 Binary files /dev/null and b/src/flags/Switzerland/32.png differ diff --git a/src/flags/Switzerland/48.png b/src/flags/Switzerland/48.png new file mode 100644 index 0000000..930b691 Binary files /dev/null and b/src/flags/Switzerland/48.png differ diff --git a/src/flags/Switzerland/64.png b/src/flags/Switzerland/64.png new file mode 100644 index 0000000..a87d97b Binary files /dev/null and b/src/flags/Switzerland/64.png differ diff --git a/src/flags/Switzerland/code b/src/flags/Switzerland/code new file mode 100644 index 0000000..f4053f0 --- /dev/null +++ b/src/flags/Switzerland/code @@ -0,0 +1 @@ +CH \ No newline at end of file diff --git a/src/flags/Syria/16.png b/src/flags/Syria/16.png new file mode 100644 index 0000000..04d4380 Binary files /dev/null and b/src/flags/Syria/16.png differ diff --git a/src/flags/Syria/24.png b/src/flags/Syria/24.png new file mode 100644 index 0000000..7a769d0 Binary files /dev/null and b/src/flags/Syria/24.png differ diff --git a/src/flags/Syria/32.png b/src/flags/Syria/32.png new file mode 100644 index 0000000..eee23f4 Binary files /dev/null and b/src/flags/Syria/32.png differ diff --git a/src/flags/Syria/48.png b/src/flags/Syria/48.png new file mode 100644 index 0000000..30ed681 Binary files /dev/null and b/src/flags/Syria/48.png differ diff --git a/src/flags/Syria/64.png b/src/flags/Syria/64.png new file mode 100644 index 0000000..6a9d6b1 Binary files /dev/null and b/src/flags/Syria/64.png differ diff --git a/src/flags/Syria/code b/src/flags/Syria/code new file mode 100644 index 0000000..333b180 --- /dev/null +++ b/src/flags/Syria/code @@ -0,0 +1 @@ +SY \ No newline at end of file diff --git a/src/flags/Taiwan/16.png b/src/flags/Taiwan/16.png new file mode 100644 index 0000000..a43257d Binary files /dev/null and b/src/flags/Taiwan/16.png differ diff --git a/src/flags/Taiwan/24.png b/src/flags/Taiwan/24.png new file mode 100644 index 0000000..dac346b Binary files /dev/null and b/src/flags/Taiwan/24.png differ diff --git a/src/flags/Taiwan/32.png b/src/flags/Taiwan/32.png new file mode 100644 index 0000000..f0c5e13 Binary files /dev/null and b/src/flags/Taiwan/32.png differ diff --git a/src/flags/Taiwan/48.png b/src/flags/Taiwan/48.png new file mode 100644 index 0000000..7446a3d Binary files /dev/null and b/src/flags/Taiwan/48.png differ diff --git a/src/flags/Taiwan/64.png b/src/flags/Taiwan/64.png new file mode 100644 index 0000000..466d6d7 Binary files /dev/null and b/src/flags/Taiwan/64.png differ diff --git a/src/flags/Taiwan/code b/src/flags/Taiwan/code new file mode 100644 index 0000000..f583cd1 --- /dev/null +++ b/src/flags/Taiwan/code @@ -0,0 +1 @@ +TW \ No newline at end of file diff --git a/src/flags/Tajikistan/16.png b/src/flags/Tajikistan/16.png new file mode 100644 index 0000000..6198065 Binary files /dev/null and b/src/flags/Tajikistan/16.png differ diff --git a/src/flags/Tajikistan/24.png b/src/flags/Tajikistan/24.png new file mode 100644 index 0000000..da62261 Binary files /dev/null and b/src/flags/Tajikistan/24.png differ diff --git a/src/flags/Tajikistan/32.png b/src/flags/Tajikistan/32.png new file mode 100644 index 0000000..338fa1b Binary files /dev/null and b/src/flags/Tajikistan/32.png differ diff --git a/src/flags/Tajikistan/48.png b/src/flags/Tajikistan/48.png new file mode 100644 index 0000000..84b1d0b Binary files /dev/null and b/src/flags/Tajikistan/48.png differ diff --git a/src/flags/Tajikistan/64.png b/src/flags/Tajikistan/64.png new file mode 100644 index 0000000..fcfa7fb Binary files /dev/null and b/src/flags/Tajikistan/64.png differ diff --git a/src/flags/Tajikistan/code b/src/flags/Tajikistan/code new file mode 100644 index 0000000..4e879aa --- /dev/null +++ b/src/flags/Tajikistan/code @@ -0,0 +1 @@ +TJ \ No newline at end of file diff --git a/src/flags/Tanzania/16.png b/src/flags/Tanzania/16.png new file mode 100644 index 0000000..0b61b56 Binary files /dev/null and b/src/flags/Tanzania/16.png differ diff --git a/src/flags/Tanzania/24.png b/src/flags/Tanzania/24.png new file mode 100644 index 0000000..9bad415 Binary files /dev/null and b/src/flags/Tanzania/24.png differ diff --git a/src/flags/Tanzania/32.png b/src/flags/Tanzania/32.png new file mode 100644 index 0000000..378b611 Binary files /dev/null and b/src/flags/Tanzania/32.png differ diff --git a/src/flags/Tanzania/48.png b/src/flags/Tanzania/48.png new file mode 100644 index 0000000..776a1d8 Binary files /dev/null and b/src/flags/Tanzania/48.png differ diff --git a/src/flags/Tanzania/64.png b/src/flags/Tanzania/64.png new file mode 100644 index 0000000..68d3c75 Binary files /dev/null and b/src/flags/Tanzania/64.png differ diff --git a/src/flags/Tanzania/code b/src/flags/Tanzania/code new file mode 100644 index 0000000..94aa671 --- /dev/null +++ b/src/flags/Tanzania/code @@ -0,0 +1 @@ +TZ \ No newline at end of file diff --git a/src/flags/Thailand/16.png b/src/flags/Thailand/16.png new file mode 100644 index 0000000..e0d4c8c Binary files /dev/null and b/src/flags/Thailand/16.png differ diff --git a/src/flags/Thailand/24.png b/src/flags/Thailand/24.png new file mode 100644 index 0000000..b07f2ce Binary files /dev/null and b/src/flags/Thailand/24.png differ diff --git a/src/flags/Thailand/32.png b/src/flags/Thailand/32.png new file mode 100644 index 0000000..4aecd47 Binary files /dev/null and b/src/flags/Thailand/32.png differ diff --git a/src/flags/Thailand/48.png b/src/flags/Thailand/48.png new file mode 100644 index 0000000..01116b1 Binary files /dev/null and b/src/flags/Thailand/48.png differ diff --git a/src/flags/Thailand/64.png b/src/flags/Thailand/64.png new file mode 100644 index 0000000..f241393 Binary files /dev/null and b/src/flags/Thailand/64.png differ diff --git a/src/flags/Thailand/code b/src/flags/Thailand/code new file mode 100644 index 0000000..bf03c32 --- /dev/null +++ b/src/flags/Thailand/code @@ -0,0 +1 @@ +TH \ No newline at end of file diff --git a/src/flags/Togo/16.png b/src/flags/Togo/16.png new file mode 100644 index 0000000..aef03b6 Binary files /dev/null and b/src/flags/Togo/16.png differ diff --git a/src/flags/Togo/24.png b/src/flags/Togo/24.png new file mode 100644 index 0000000..580cd9e Binary files /dev/null and b/src/flags/Togo/24.png differ diff --git a/src/flags/Togo/32.png b/src/flags/Togo/32.png new file mode 100644 index 0000000..0f3edc6 Binary files /dev/null and b/src/flags/Togo/32.png differ diff --git a/src/flags/Togo/48.png b/src/flags/Togo/48.png new file mode 100644 index 0000000..ce9de80 Binary files /dev/null and b/src/flags/Togo/48.png differ diff --git a/src/flags/Togo/64.png b/src/flags/Togo/64.png new file mode 100644 index 0000000..b33c885 Binary files /dev/null and b/src/flags/Togo/64.png differ diff --git a/src/flags/Togo/code b/src/flags/Togo/code new file mode 100644 index 0000000..e18e4c3 --- /dev/null +++ b/src/flags/Togo/code @@ -0,0 +1 @@ +TG \ No newline at end of file diff --git a/src/flags/Tokelau/16.png b/src/flags/Tokelau/16.png new file mode 100644 index 0000000..7d2e805 Binary files /dev/null and b/src/flags/Tokelau/16.png differ diff --git a/src/flags/Tokelau/24.png b/src/flags/Tokelau/24.png new file mode 100644 index 0000000..2d747da Binary files /dev/null and b/src/flags/Tokelau/24.png differ diff --git a/src/flags/Tokelau/32.png b/src/flags/Tokelau/32.png new file mode 100644 index 0000000..a3032f2 Binary files /dev/null and b/src/flags/Tokelau/32.png differ diff --git a/src/flags/Tokelau/48.png b/src/flags/Tokelau/48.png new file mode 100644 index 0000000..f5dbaa6 Binary files /dev/null and b/src/flags/Tokelau/48.png differ diff --git a/src/flags/Tokelau/64.png b/src/flags/Tokelau/64.png new file mode 100644 index 0000000..6a956f2 Binary files /dev/null and b/src/flags/Tokelau/64.png differ diff --git a/src/flags/Tokelau/code b/src/flags/Tokelau/code new file mode 100644 index 0000000..51a3226 --- /dev/null +++ b/src/flags/Tokelau/code @@ -0,0 +1 @@ +TK \ No newline at end of file diff --git a/src/flags/Tonga/16.png b/src/flags/Tonga/16.png new file mode 100644 index 0000000..bb8d519 Binary files /dev/null and b/src/flags/Tonga/16.png differ diff --git a/src/flags/Tonga/24.png b/src/flags/Tonga/24.png new file mode 100644 index 0000000..94cd36b Binary files /dev/null and b/src/flags/Tonga/24.png differ diff --git a/src/flags/Tonga/32.png b/src/flags/Tonga/32.png new file mode 100644 index 0000000..c8050a5 Binary files /dev/null and b/src/flags/Tonga/32.png differ diff --git a/src/flags/Tonga/48.png b/src/flags/Tonga/48.png new file mode 100644 index 0000000..c9930fe Binary files /dev/null and b/src/flags/Tonga/48.png differ diff --git a/src/flags/Tonga/64.png b/src/flags/Tonga/64.png new file mode 100644 index 0000000..ba4242d Binary files /dev/null and b/src/flags/Tonga/64.png differ diff --git a/src/flags/Tonga/code b/src/flags/Tonga/code new file mode 100644 index 0000000..3084130 --- /dev/null +++ b/src/flags/Tonga/code @@ -0,0 +1 @@ +TO \ No newline at end of file diff --git a/src/flags/Trinidad-and-Tobago/16.png b/src/flags/Trinidad-and-Tobago/16.png new file mode 100644 index 0000000..bb705cb Binary files /dev/null and b/src/flags/Trinidad-and-Tobago/16.png differ diff --git a/src/flags/Trinidad-and-Tobago/24.png b/src/flags/Trinidad-and-Tobago/24.png new file mode 100644 index 0000000..7979a0b Binary files /dev/null and b/src/flags/Trinidad-and-Tobago/24.png differ diff --git a/src/flags/Trinidad-and-Tobago/32.png b/src/flags/Trinidad-and-Tobago/32.png new file mode 100644 index 0000000..ae653ce Binary files /dev/null and b/src/flags/Trinidad-and-Tobago/32.png differ diff --git a/src/flags/Trinidad-and-Tobago/48.png b/src/flags/Trinidad-and-Tobago/48.png new file mode 100644 index 0000000..7ea63a8 Binary files /dev/null and b/src/flags/Trinidad-and-Tobago/48.png differ diff --git a/src/flags/Trinidad-and-Tobago/64.png b/src/flags/Trinidad-and-Tobago/64.png new file mode 100644 index 0000000..007877a Binary files /dev/null and b/src/flags/Trinidad-and-Tobago/64.png differ diff --git a/src/flags/Trinidad-and-Tobago/code b/src/flags/Trinidad-and-Tobago/code new file mode 100644 index 0000000..cd2b790 --- /dev/null +++ b/src/flags/Trinidad-and-Tobago/code @@ -0,0 +1 @@ +TT \ No newline at end of file diff --git a/src/flags/Tunisia/16.png b/src/flags/Tunisia/16.png new file mode 100644 index 0000000..9775da9 Binary files /dev/null and b/src/flags/Tunisia/16.png differ diff --git a/src/flags/Tunisia/24.png b/src/flags/Tunisia/24.png new file mode 100644 index 0000000..7eea5fd Binary files /dev/null and b/src/flags/Tunisia/24.png differ diff --git a/src/flags/Tunisia/32.png b/src/flags/Tunisia/32.png new file mode 100644 index 0000000..4ae1113 Binary files /dev/null and b/src/flags/Tunisia/32.png differ diff --git a/src/flags/Tunisia/48.png b/src/flags/Tunisia/48.png new file mode 100644 index 0000000..99e3ab3 Binary files /dev/null and b/src/flags/Tunisia/48.png differ diff --git a/src/flags/Tunisia/64.png b/src/flags/Tunisia/64.png new file mode 100644 index 0000000..57ce1f9 Binary files /dev/null and b/src/flags/Tunisia/64.png differ diff --git a/src/flags/Tunisia/code b/src/flags/Tunisia/code new file mode 100644 index 0000000..0e2fe1c --- /dev/null +++ b/src/flags/Tunisia/code @@ -0,0 +1 @@ +TN \ No newline at end of file diff --git a/src/flags/Turkey/16.png b/src/flags/Turkey/16.png new file mode 100644 index 0000000..09c1ba1 Binary files /dev/null and b/src/flags/Turkey/16.png differ diff --git a/src/flags/Turkey/24.png b/src/flags/Turkey/24.png new file mode 100644 index 0000000..f7a9367 Binary files /dev/null and b/src/flags/Turkey/24.png differ diff --git a/src/flags/Turkey/32.png b/src/flags/Turkey/32.png new file mode 100644 index 0000000..62a3f33 Binary files /dev/null and b/src/flags/Turkey/32.png differ diff --git a/src/flags/Turkey/48.png b/src/flags/Turkey/48.png new file mode 100644 index 0000000..13e81a2 Binary files /dev/null and b/src/flags/Turkey/48.png differ diff --git a/src/flags/Turkey/64.png b/src/flags/Turkey/64.png new file mode 100644 index 0000000..7a55ede Binary files /dev/null and b/src/flags/Turkey/64.png differ diff --git a/src/flags/Turkey/code b/src/flags/Turkey/code new file mode 100644 index 0000000..33b514e --- /dev/null +++ b/src/flags/Turkey/code @@ -0,0 +1 @@ +TR \ No newline at end of file diff --git a/src/flags/Turkmenistan/16.png b/src/flags/Turkmenistan/16.png new file mode 100644 index 0000000..1a8bd5c Binary files /dev/null and b/src/flags/Turkmenistan/16.png differ diff --git a/src/flags/Turkmenistan/24.png b/src/flags/Turkmenistan/24.png new file mode 100644 index 0000000..7bd784f Binary files /dev/null and b/src/flags/Turkmenistan/24.png differ diff --git a/src/flags/Turkmenistan/32.png b/src/flags/Turkmenistan/32.png new file mode 100644 index 0000000..f972a0d Binary files /dev/null and b/src/flags/Turkmenistan/32.png differ diff --git a/src/flags/Turkmenistan/48.png b/src/flags/Turkmenistan/48.png new file mode 100644 index 0000000..34c64c1 Binary files /dev/null and b/src/flags/Turkmenistan/48.png differ diff --git a/src/flags/Turkmenistan/64.png b/src/flags/Turkmenistan/64.png new file mode 100644 index 0000000..2397288 Binary files /dev/null and b/src/flags/Turkmenistan/64.png differ diff --git a/src/flags/Turkmenistan/code b/src/flags/Turkmenistan/code new file mode 100644 index 0000000..9fd0fe4 --- /dev/null +++ b/src/flags/Turkmenistan/code @@ -0,0 +1 @@ +TM \ No newline at end of file diff --git a/src/flags/Turks-and-Caicos-Islands/16.png b/src/flags/Turks-and-Caicos-Islands/16.png new file mode 100644 index 0000000..69a77bc Binary files /dev/null and b/src/flags/Turks-and-Caicos-Islands/16.png differ diff --git a/src/flags/Turks-and-Caicos-Islands/24.png b/src/flags/Turks-and-Caicos-Islands/24.png new file mode 100644 index 0000000..c66e26e Binary files /dev/null and b/src/flags/Turks-and-Caicos-Islands/24.png differ diff --git a/src/flags/Turks-and-Caicos-Islands/32.png b/src/flags/Turks-and-Caicos-Islands/32.png new file mode 100644 index 0000000..81c42a4 Binary files /dev/null and b/src/flags/Turks-and-Caicos-Islands/32.png differ diff --git a/src/flags/Turks-and-Caicos-Islands/48.png b/src/flags/Turks-and-Caicos-Islands/48.png new file mode 100644 index 0000000..e30052d Binary files /dev/null and b/src/flags/Turks-and-Caicos-Islands/48.png differ diff --git a/src/flags/Turks-and-Caicos-Islands/64.png b/src/flags/Turks-and-Caicos-Islands/64.png new file mode 100644 index 0000000..45c5734 Binary files /dev/null and b/src/flags/Turks-and-Caicos-Islands/64.png differ diff --git a/src/flags/Turks-and-Caicos-Islands/code b/src/flags/Turks-and-Caicos-Islands/code new file mode 100644 index 0000000..010c2dc --- /dev/null +++ b/src/flags/Turks-and-Caicos-Islands/code @@ -0,0 +1 @@ +TC \ No newline at end of file diff --git a/src/flags/Tuvalu/16.png b/src/flags/Tuvalu/16.png new file mode 100644 index 0000000..1d8c2df Binary files /dev/null and b/src/flags/Tuvalu/16.png differ diff --git a/src/flags/Tuvalu/24.png b/src/flags/Tuvalu/24.png new file mode 100644 index 0000000..444bd13 Binary files /dev/null and b/src/flags/Tuvalu/24.png differ diff --git a/src/flags/Tuvalu/32.png b/src/flags/Tuvalu/32.png new file mode 100644 index 0000000..21ab2f3 Binary files /dev/null and b/src/flags/Tuvalu/32.png differ diff --git a/src/flags/Tuvalu/48.png b/src/flags/Tuvalu/48.png new file mode 100644 index 0000000..87b64b9 Binary files /dev/null and b/src/flags/Tuvalu/48.png differ diff --git a/src/flags/Tuvalu/64.png b/src/flags/Tuvalu/64.png new file mode 100644 index 0000000..b4a7ac9 Binary files /dev/null and b/src/flags/Tuvalu/64.png differ diff --git a/src/flags/Tuvalu/code b/src/flags/Tuvalu/code new file mode 100644 index 0000000..0329484 --- /dev/null +++ b/src/flags/Tuvalu/code @@ -0,0 +1 @@ +TV \ No newline at end of file diff --git a/src/flags/US-Virgin-Islands/16.png b/src/flags/US-Virgin-Islands/16.png new file mode 100644 index 0000000..c799830 Binary files /dev/null and b/src/flags/US-Virgin-Islands/16.png differ diff --git a/src/flags/US-Virgin-Islands/24.png b/src/flags/US-Virgin-Islands/24.png new file mode 100644 index 0000000..37f42e4 Binary files /dev/null and b/src/flags/US-Virgin-Islands/24.png differ diff --git a/src/flags/US-Virgin-Islands/32.png b/src/flags/US-Virgin-Islands/32.png new file mode 100644 index 0000000..8d92565 Binary files /dev/null and b/src/flags/US-Virgin-Islands/32.png differ diff --git a/src/flags/US-Virgin-Islands/48.png b/src/flags/US-Virgin-Islands/48.png new file mode 100644 index 0000000..2198341 Binary files /dev/null and b/src/flags/US-Virgin-Islands/48.png differ diff --git a/src/flags/US-Virgin-Islands/64.png b/src/flags/US-Virgin-Islands/64.png new file mode 100644 index 0000000..051caf2 Binary files /dev/null and b/src/flags/US-Virgin-Islands/64.png differ diff --git a/src/flags/US-Virgin-Islands/code b/src/flags/US-Virgin-Islands/code new file mode 100644 index 0000000..ff96225 --- /dev/null +++ b/src/flags/US-Virgin-Islands/code @@ -0,0 +1 @@ +VI \ No newline at end of file diff --git a/src/flags/Uganda/16.png b/src/flags/Uganda/16.png new file mode 100644 index 0000000..22b9f60 Binary files /dev/null and b/src/flags/Uganda/16.png differ diff --git a/src/flags/Uganda/24.png b/src/flags/Uganda/24.png new file mode 100644 index 0000000..d646782 Binary files /dev/null and b/src/flags/Uganda/24.png differ diff --git a/src/flags/Uganda/32.png b/src/flags/Uganda/32.png new file mode 100644 index 0000000..10451f4 Binary files /dev/null and b/src/flags/Uganda/32.png differ diff --git a/src/flags/Uganda/48.png b/src/flags/Uganda/48.png new file mode 100644 index 0000000..a6b441e Binary files /dev/null and b/src/flags/Uganda/48.png differ diff --git a/src/flags/Uganda/64.png b/src/flags/Uganda/64.png new file mode 100644 index 0000000..1fda03e Binary files /dev/null and b/src/flags/Uganda/64.png differ diff --git a/src/flags/Uganda/code b/src/flags/Uganda/code new file mode 100644 index 0000000..c0da8bf --- /dev/null +++ b/src/flags/Uganda/code @@ -0,0 +1 @@ +UG \ No newline at end of file diff --git a/src/flags/Ukraine/16.png b/src/flags/Ukraine/16.png new file mode 100644 index 0000000..c0d9c34 Binary files /dev/null and b/src/flags/Ukraine/16.png differ diff --git a/src/flags/Ukraine/24.png b/src/flags/Ukraine/24.png new file mode 100644 index 0000000..5934d1f Binary files /dev/null and b/src/flags/Ukraine/24.png differ diff --git a/src/flags/Ukraine/32.png b/src/flags/Ukraine/32.png new file mode 100644 index 0000000..1999778 Binary files /dev/null and b/src/flags/Ukraine/32.png differ diff --git a/src/flags/Ukraine/48.png b/src/flags/Ukraine/48.png new file mode 100644 index 0000000..d31fbcb Binary files /dev/null and b/src/flags/Ukraine/48.png differ diff --git a/src/flags/Ukraine/64.png b/src/flags/Ukraine/64.png new file mode 100644 index 0000000..3d30858 Binary files /dev/null and b/src/flags/Ukraine/64.png differ diff --git a/src/flags/Ukraine/code b/src/flags/Ukraine/code new file mode 100644 index 0000000..de47348 --- /dev/null +++ b/src/flags/Ukraine/code @@ -0,0 +1 @@ +UA \ No newline at end of file diff --git a/src/flags/United-Arab-Emirates/16.png b/src/flags/United-Arab-Emirates/16.png new file mode 100644 index 0000000..d90609d Binary files /dev/null and b/src/flags/United-Arab-Emirates/16.png differ diff --git a/src/flags/United-Arab-Emirates/24.png b/src/flags/United-Arab-Emirates/24.png new file mode 100644 index 0000000..14a3706 Binary files /dev/null and b/src/flags/United-Arab-Emirates/24.png differ diff --git a/src/flags/United-Arab-Emirates/32.png b/src/flags/United-Arab-Emirates/32.png new file mode 100644 index 0000000..8d05aa3 Binary files /dev/null and b/src/flags/United-Arab-Emirates/32.png differ diff --git a/src/flags/United-Arab-Emirates/48.png b/src/flags/United-Arab-Emirates/48.png new file mode 100644 index 0000000..b735c97 Binary files /dev/null and b/src/flags/United-Arab-Emirates/48.png differ diff --git a/src/flags/United-Arab-Emirates/64.png b/src/flags/United-Arab-Emirates/64.png new file mode 100644 index 0000000..5cee866 Binary files /dev/null and b/src/flags/United-Arab-Emirates/64.png differ diff --git a/src/flags/United-Arab-Emirates/code b/src/flags/United-Arab-Emirates/code new file mode 100644 index 0000000..d5f0d8c --- /dev/null +++ b/src/flags/United-Arab-Emirates/code @@ -0,0 +1 @@ +AE \ No newline at end of file diff --git a/src/flags/United-Kingdom/16.png b/src/flags/United-Kingdom/16.png new file mode 100644 index 0000000..cb799e2 Binary files /dev/null and b/src/flags/United-Kingdom/16.png differ diff --git a/src/flags/United-Kingdom/24.png b/src/flags/United-Kingdom/24.png new file mode 100644 index 0000000..20c06f3 Binary files /dev/null and b/src/flags/United-Kingdom/24.png differ diff --git a/src/flags/United-Kingdom/32.png b/src/flags/United-Kingdom/32.png new file mode 100644 index 0000000..3b93702 Binary files /dev/null and b/src/flags/United-Kingdom/32.png differ diff --git a/src/flags/United-Kingdom/48.png b/src/flags/United-Kingdom/48.png new file mode 100644 index 0000000..5385aff Binary files /dev/null and b/src/flags/United-Kingdom/48.png differ diff --git a/src/flags/United-Kingdom/64.png b/src/flags/United-Kingdom/64.png new file mode 100644 index 0000000..4753544 Binary files /dev/null and b/src/flags/United-Kingdom/64.png differ diff --git a/src/flags/United-Kingdom/code b/src/flags/United-Kingdom/code new file mode 100644 index 0000000..302c059 --- /dev/null +++ b/src/flags/United-Kingdom/code @@ -0,0 +1 @@ +GB \ No newline at end of file diff --git a/src/flags/United-Nations/16.png b/src/flags/United-Nations/16.png new file mode 100644 index 0000000..9ce4432 Binary files /dev/null and b/src/flags/United-Nations/16.png differ diff --git a/src/flags/United-Nations/24.png b/src/flags/United-Nations/24.png new file mode 100644 index 0000000..ceb3a5a Binary files /dev/null and b/src/flags/United-Nations/24.png differ diff --git a/src/flags/United-Nations/32.png b/src/flags/United-Nations/32.png new file mode 100644 index 0000000..0913096 Binary files /dev/null and b/src/flags/United-Nations/32.png differ diff --git a/src/flags/United-Nations/48.png b/src/flags/United-Nations/48.png new file mode 100644 index 0000000..df9bf7e Binary files /dev/null and b/src/flags/United-Nations/48.png differ diff --git a/src/flags/United-Nations/64.png b/src/flags/United-Nations/64.png new file mode 100644 index 0000000..d1e80a6 Binary files /dev/null and b/src/flags/United-Nations/64.png differ diff --git a/src/flags/United-Nations/code b/src/flags/United-Nations/code new file mode 100644 index 0000000..dd3a00a --- /dev/null +++ b/src/flags/United-Nations/code @@ -0,0 +1 @@ +_united-nations \ No newline at end of file diff --git a/src/flags/United-States/16.png b/src/flags/United-States/16.png new file mode 100644 index 0000000..9803f8d Binary files /dev/null and b/src/flags/United-States/16.png differ diff --git a/src/flags/United-States/24.png b/src/flags/United-States/24.png new file mode 100644 index 0000000..b95bb84 Binary files /dev/null and b/src/flags/United-States/24.png differ diff --git a/src/flags/United-States/32.png b/src/flags/United-States/32.png new file mode 100644 index 0000000..9687007 Binary files /dev/null and b/src/flags/United-States/32.png differ diff --git a/src/flags/United-States/48.png b/src/flags/United-States/48.png new file mode 100644 index 0000000..feb61e6 Binary files /dev/null and b/src/flags/United-States/48.png differ diff --git a/src/flags/United-States/64.png b/src/flags/United-States/64.png new file mode 100644 index 0000000..309bf1c Binary files /dev/null and b/src/flags/United-States/64.png differ diff --git a/src/flags/United-States/code b/src/flags/United-States/code new file mode 100644 index 0000000..4547d97 --- /dev/null +++ b/src/flags/United-States/code @@ -0,0 +1 @@ +US \ No newline at end of file diff --git a/src/flags/Uruguay/16.png b/src/flags/Uruguay/16.png new file mode 100644 index 0000000..df202ed Binary files /dev/null and b/src/flags/Uruguay/16.png differ diff --git a/src/flags/Uruguay/24.png b/src/flags/Uruguay/24.png new file mode 100644 index 0000000..35ebf23 Binary files /dev/null and b/src/flags/Uruguay/24.png differ diff --git a/src/flags/Uruguay/32.png b/src/flags/Uruguay/32.png new file mode 100644 index 0000000..9318841 Binary files /dev/null and b/src/flags/Uruguay/32.png differ diff --git a/src/flags/Uruguay/48.png b/src/flags/Uruguay/48.png new file mode 100644 index 0000000..050ceba Binary files /dev/null and b/src/flags/Uruguay/48.png differ diff --git a/src/flags/Uruguay/64.png b/src/flags/Uruguay/64.png new file mode 100644 index 0000000..2867fde Binary files /dev/null and b/src/flags/Uruguay/64.png differ diff --git a/src/flags/Uruguay/code b/src/flags/Uruguay/code new file mode 100644 index 0000000..1fd80bd --- /dev/null +++ b/src/flags/Uruguay/code @@ -0,0 +1 @@ +UY \ No newline at end of file diff --git a/src/flags/Uzbekistan/16.png b/src/flags/Uzbekistan/16.png new file mode 100644 index 0000000..eb8adbe Binary files /dev/null and b/src/flags/Uzbekistan/16.png differ diff --git a/src/flags/Uzbekistan/24.png b/src/flags/Uzbekistan/24.png new file mode 100644 index 0000000..acf76d2 Binary files /dev/null and b/src/flags/Uzbekistan/24.png differ diff --git a/src/flags/Uzbekistan/32.png b/src/flags/Uzbekistan/32.png new file mode 100644 index 0000000..8c53abb Binary files /dev/null and b/src/flags/Uzbekistan/32.png differ diff --git a/src/flags/Uzbekistan/48.png b/src/flags/Uzbekistan/48.png new file mode 100644 index 0000000..88ed1ee Binary files /dev/null and b/src/flags/Uzbekistan/48.png differ diff --git a/src/flags/Uzbekistan/64.png b/src/flags/Uzbekistan/64.png new file mode 100644 index 0000000..3949c6e Binary files /dev/null and b/src/flags/Uzbekistan/64.png differ diff --git a/src/flags/Uzbekistan/code b/src/flags/Uzbekistan/code new file mode 100644 index 0000000..b888a66 --- /dev/null +++ b/src/flags/Uzbekistan/code @@ -0,0 +1 @@ +UZ \ No newline at end of file diff --git a/src/flags/Vanuatu/16.png b/src/flags/Vanuatu/16.png new file mode 100644 index 0000000..855583b Binary files /dev/null and b/src/flags/Vanuatu/16.png differ diff --git a/src/flags/Vanuatu/24.png b/src/flags/Vanuatu/24.png new file mode 100644 index 0000000..46db099 Binary files /dev/null and b/src/flags/Vanuatu/24.png differ diff --git a/src/flags/Vanuatu/32.png b/src/flags/Vanuatu/32.png new file mode 100644 index 0000000..1900a5a Binary files /dev/null and b/src/flags/Vanuatu/32.png differ diff --git a/src/flags/Vanuatu/48.png b/src/flags/Vanuatu/48.png new file mode 100644 index 0000000..bea434e Binary files /dev/null and b/src/flags/Vanuatu/48.png differ diff --git a/src/flags/Vanuatu/64.png b/src/flags/Vanuatu/64.png new file mode 100644 index 0000000..8323db1 Binary files /dev/null and b/src/flags/Vanuatu/64.png differ diff --git a/src/flags/Vanuatu/code b/src/flags/Vanuatu/code new file mode 100644 index 0000000..efc9481 --- /dev/null +++ b/src/flags/Vanuatu/code @@ -0,0 +1 @@ +VU \ No newline at end of file diff --git a/src/flags/Vatican-City/16.png b/src/flags/Vatican-City/16.png new file mode 100644 index 0000000..8a85f75 Binary files /dev/null and b/src/flags/Vatican-City/16.png differ diff --git a/src/flags/Vatican-City/24.png b/src/flags/Vatican-City/24.png new file mode 100644 index 0000000..ac51e56 Binary files /dev/null and b/src/flags/Vatican-City/24.png differ diff --git a/src/flags/Vatican-City/32.png b/src/flags/Vatican-City/32.png new file mode 100644 index 0000000..410342e Binary files /dev/null and b/src/flags/Vatican-City/32.png differ diff --git a/src/flags/Vatican-City/48.png b/src/flags/Vatican-City/48.png new file mode 100644 index 0000000..de4f2a1 Binary files /dev/null and b/src/flags/Vatican-City/48.png differ diff --git a/src/flags/Vatican-City/64.png b/src/flags/Vatican-City/64.png new file mode 100644 index 0000000..486a0c8 Binary files /dev/null and b/src/flags/Vatican-City/64.png differ diff --git a/src/flags/Vatican-City/code b/src/flags/Vatican-City/code new file mode 100644 index 0000000..00f2026 --- /dev/null +++ b/src/flags/Vatican-City/code @@ -0,0 +1 @@ +VA \ No newline at end of file diff --git a/src/flags/Venezuela/16.png b/src/flags/Venezuela/16.png new file mode 100644 index 0000000..26da5d4 Binary files /dev/null and b/src/flags/Venezuela/16.png differ diff --git a/src/flags/Venezuela/24.png b/src/flags/Venezuela/24.png new file mode 100644 index 0000000..88f324d Binary files /dev/null and b/src/flags/Venezuela/24.png differ diff --git a/src/flags/Venezuela/32.png b/src/flags/Venezuela/32.png new file mode 100644 index 0000000..7648705 Binary files /dev/null and b/src/flags/Venezuela/32.png differ diff --git a/src/flags/Venezuela/48.png b/src/flags/Venezuela/48.png new file mode 100644 index 0000000..a8c7af2 Binary files /dev/null and b/src/flags/Venezuela/48.png differ diff --git a/src/flags/Venezuela/64.png b/src/flags/Venezuela/64.png new file mode 100644 index 0000000..ef72de1 Binary files /dev/null and b/src/flags/Venezuela/64.png differ diff --git a/src/flags/Venezuela/code b/src/flags/Venezuela/code new file mode 100644 index 0000000..d32feed --- /dev/null +++ b/src/flags/Venezuela/code @@ -0,0 +1 @@ +VE \ No newline at end of file diff --git a/src/flags/Vietnam/16.png b/src/flags/Vietnam/16.png new file mode 100644 index 0000000..8f1178f Binary files /dev/null and b/src/flags/Vietnam/16.png differ diff --git a/src/flags/Vietnam/24.png b/src/flags/Vietnam/24.png new file mode 100644 index 0000000..c707b9a Binary files /dev/null and b/src/flags/Vietnam/24.png differ diff --git a/src/flags/Vietnam/32.png b/src/flags/Vietnam/32.png new file mode 100644 index 0000000..aaf7536 Binary files /dev/null and b/src/flags/Vietnam/32.png differ diff --git a/src/flags/Vietnam/48.png b/src/flags/Vietnam/48.png new file mode 100644 index 0000000..a604641 Binary files /dev/null and b/src/flags/Vietnam/48.png differ diff --git a/src/flags/Vietnam/64.png b/src/flags/Vietnam/64.png new file mode 100644 index 0000000..f875b0a Binary files /dev/null and b/src/flags/Vietnam/64.png differ diff --git a/src/flags/Vietnam/code b/src/flags/Vietnam/code new file mode 100644 index 0000000..ca20f04 --- /dev/null +++ b/src/flags/Vietnam/code @@ -0,0 +1 @@ +VN \ No newline at end of file diff --git a/src/flags/Wales/16.png b/src/flags/Wales/16.png new file mode 100644 index 0000000..35a9ab5 Binary files /dev/null and b/src/flags/Wales/16.png differ diff --git a/src/flags/Wales/24.png b/src/flags/Wales/24.png new file mode 100644 index 0000000..1892b64 Binary files /dev/null and b/src/flags/Wales/24.png differ diff --git a/src/flags/Wales/32.png b/src/flags/Wales/32.png new file mode 100644 index 0000000..92e4082 Binary files /dev/null and b/src/flags/Wales/32.png differ diff --git a/src/flags/Wales/48.png b/src/flags/Wales/48.png new file mode 100644 index 0000000..6b3f1f1 Binary files /dev/null and b/src/flags/Wales/48.png differ diff --git a/src/flags/Wales/64.png b/src/flags/Wales/64.png new file mode 100644 index 0000000..0973e4e Binary files /dev/null and b/src/flags/Wales/64.png differ diff --git a/src/flags/Wales/code b/src/flags/Wales/code new file mode 100644 index 0000000..506d1c9 --- /dev/null +++ b/src/flags/Wales/code @@ -0,0 +1 @@ +_wales \ No newline at end of file diff --git a/src/flags/Wallis-And-Futuna/16.png b/src/flags/Wallis-And-Futuna/16.png new file mode 100644 index 0000000..5bcbd59 Binary files /dev/null and b/src/flags/Wallis-And-Futuna/16.png differ diff --git a/src/flags/Wallis-And-Futuna/24.png b/src/flags/Wallis-And-Futuna/24.png new file mode 100644 index 0000000..e8809df Binary files /dev/null and b/src/flags/Wallis-And-Futuna/24.png differ diff --git a/src/flags/Wallis-And-Futuna/32.png b/src/flags/Wallis-And-Futuna/32.png new file mode 100644 index 0000000..438fac6 Binary files /dev/null and b/src/flags/Wallis-And-Futuna/32.png differ diff --git a/src/flags/Wallis-And-Futuna/48.png b/src/flags/Wallis-And-Futuna/48.png new file mode 100644 index 0000000..8c68445 Binary files /dev/null and b/src/flags/Wallis-And-Futuna/48.png differ diff --git a/src/flags/Wallis-And-Futuna/64.png b/src/flags/Wallis-And-Futuna/64.png new file mode 100644 index 0000000..3bb90f8 Binary files /dev/null and b/src/flags/Wallis-And-Futuna/64.png differ diff --git a/src/flags/Western-Sahara/16.png b/src/flags/Western-Sahara/16.png new file mode 100644 index 0000000..bdfcb52 Binary files /dev/null and b/src/flags/Western-Sahara/16.png differ diff --git a/src/flags/Western-Sahara/24.png b/src/flags/Western-Sahara/24.png new file mode 100644 index 0000000..23f83d4 Binary files /dev/null and b/src/flags/Western-Sahara/24.png differ diff --git a/src/flags/Western-Sahara/32.png b/src/flags/Western-Sahara/32.png new file mode 100644 index 0000000..3fd4376 Binary files /dev/null and b/src/flags/Western-Sahara/32.png differ diff --git a/src/flags/Western-Sahara/48.png b/src/flags/Western-Sahara/48.png new file mode 100644 index 0000000..a4244b2 Binary files /dev/null and b/src/flags/Western-Sahara/48.png differ diff --git a/src/flags/Western-Sahara/64.png b/src/flags/Western-Sahara/64.png new file mode 100644 index 0000000..511cc20 Binary files /dev/null and b/src/flags/Western-Sahara/64.png differ diff --git a/src/flags/Western-Sahara/code b/src/flags/Western-Sahara/code new file mode 100644 index 0000000..bc0353b --- /dev/null +++ b/src/flags/Western-Sahara/code @@ -0,0 +1 @@ +EH \ No newline at end of file diff --git a/src/flags/Yemen/16.png b/src/flags/Yemen/16.png new file mode 100644 index 0000000..7419e14 Binary files /dev/null and b/src/flags/Yemen/16.png differ diff --git a/src/flags/Yemen/24.png b/src/flags/Yemen/24.png new file mode 100644 index 0000000..4273a99 Binary files /dev/null and b/src/flags/Yemen/24.png differ diff --git a/src/flags/Yemen/32.png b/src/flags/Yemen/32.png new file mode 100644 index 0000000..91f2241 Binary files /dev/null and b/src/flags/Yemen/32.png differ diff --git a/src/flags/Yemen/48.png b/src/flags/Yemen/48.png new file mode 100644 index 0000000..bfeaa47 Binary files /dev/null and b/src/flags/Yemen/48.png differ diff --git a/src/flags/Yemen/64.png b/src/flags/Yemen/64.png new file mode 100644 index 0000000..004c901 Binary files /dev/null and b/src/flags/Yemen/64.png differ diff --git a/src/flags/Yemen/code b/src/flags/Yemen/code new file mode 100644 index 0000000..c04fdee --- /dev/null +++ b/src/flags/Yemen/code @@ -0,0 +1 @@ +YE \ No newline at end of file diff --git a/src/flags/Zambia/16.png b/src/flags/Zambia/16.png new file mode 100644 index 0000000..79058cf Binary files /dev/null and b/src/flags/Zambia/16.png differ diff --git a/src/flags/Zambia/24.png b/src/flags/Zambia/24.png new file mode 100644 index 0000000..958cc5b Binary files /dev/null and b/src/flags/Zambia/24.png differ diff --git a/src/flags/Zambia/32.png b/src/flags/Zambia/32.png new file mode 100644 index 0000000..85e85b5 Binary files /dev/null and b/src/flags/Zambia/32.png differ diff --git a/src/flags/Zambia/48.png b/src/flags/Zambia/48.png new file mode 100644 index 0000000..9120fb7 Binary files /dev/null and b/src/flags/Zambia/48.png differ diff --git a/src/flags/Zambia/64.png b/src/flags/Zambia/64.png new file mode 100644 index 0000000..2bc9c13 Binary files /dev/null and b/src/flags/Zambia/64.png differ diff --git a/src/flags/Zambia/code b/src/flags/Zambia/code new file mode 100644 index 0000000..4d9fbab --- /dev/null +++ b/src/flags/Zambia/code @@ -0,0 +1 @@ +ZM \ No newline at end of file diff --git a/src/flags/Zimbabwe/16.png b/src/flags/Zimbabwe/16.png new file mode 100644 index 0000000..ba70927 Binary files /dev/null and b/src/flags/Zimbabwe/16.png differ diff --git a/src/flags/Zimbabwe/24.png b/src/flags/Zimbabwe/24.png new file mode 100644 index 0000000..e25bb9a Binary files /dev/null and b/src/flags/Zimbabwe/24.png differ diff --git a/src/flags/Zimbabwe/32.png b/src/flags/Zimbabwe/32.png new file mode 100644 index 0000000..f19eb38 Binary files /dev/null and b/src/flags/Zimbabwe/32.png differ diff --git a/src/flags/Zimbabwe/48.png b/src/flags/Zimbabwe/48.png new file mode 100644 index 0000000..7ff0f2b Binary files /dev/null and b/src/flags/Zimbabwe/48.png differ diff --git a/src/flags/Zimbabwe/64.png b/src/flags/Zimbabwe/64.png new file mode 100644 index 0000000..b979dc1 Binary files /dev/null and b/src/flags/Zimbabwe/64.png differ diff --git a/src/flags/Zimbabwe/code b/src/flags/Zimbabwe/code new file mode 100644 index 0000000..279e03a --- /dev/null +++ b/src/flags/Zimbabwe/code @@ -0,0 +1 @@ +ZW \ No newline at end of file diff --git a/src/overlays/nepal/16.png b/src/overlays/nepal/16.png new file mode 100644 index 0000000..e646332 Binary files /dev/null and b/src/overlays/nepal/16.png differ diff --git a/src/overlays/nepal/24.png b/src/overlays/nepal/24.png new file mode 100644 index 0000000..3dc9645 Binary files /dev/null and b/src/overlays/nepal/24.png differ diff --git a/src/overlays/nepal/32.png b/src/overlays/nepal/32.png new file mode 100644 index 0000000..e2911c5 Binary files /dev/null and b/src/overlays/nepal/32.png differ diff --git a/src/overlays/nepal/48.png b/src/overlays/nepal/48.png new file mode 100644 index 0000000..84805f0 Binary files /dev/null and b/src/overlays/nepal/48.png differ diff --git a/src/overlays/nepal/64.png b/src/overlays/nepal/64.png new file mode 100644 index 0000000..e76b344 Binary files /dev/null and b/src/overlays/nepal/64.png differ diff --git a/src/overlays/normal/16.png b/src/overlays/normal/16.png new file mode 100644 index 0000000..6e54ff7 Binary files /dev/null and b/src/overlays/normal/16.png differ diff --git a/src/overlays/normal/24.png b/src/overlays/normal/24.png new file mode 100644 index 0000000..ea41d4b Binary files /dev/null and b/src/overlays/normal/24.png differ diff --git a/src/overlays/normal/32.png b/src/overlays/normal/32.png new file mode 100644 index 0000000..30fba9c Binary files /dev/null and b/src/overlays/normal/32.png differ diff --git a/src/overlays/normal/48.png b/src/overlays/normal/48.png new file mode 100644 index 0000000..330c985 Binary files /dev/null and b/src/overlays/normal/48.png differ diff --git a/src/overlays/normal/64.png b/src/overlays/normal/64.png new file mode 100644 index 0000000..4b512b5 Binary files /dev/null and b/src/overlays/normal/64.png differ diff --git a/src/overlays/square/16.png b/src/overlays/square/16.png new file mode 100644 index 0000000..d7fc132 Binary files /dev/null and b/src/overlays/square/16.png differ diff --git a/src/overlays/square/24.png b/src/overlays/square/24.png new file mode 100644 index 0000000..d02063e Binary files /dev/null and b/src/overlays/square/24.png differ diff --git a/src/overlays/square/32.png b/src/overlays/square/32.png new file mode 100644 index 0000000..6ec3eec Binary files /dev/null and b/src/overlays/square/32.png differ diff --git a/src/overlays/square/48.png b/src/overlays/square/48.png new file mode 100644 index 0000000..e69f4fd Binary files /dev/null and b/src/overlays/square/48.png differ diff --git a/src/overlays/square/64.png b/src/overlays/square/64.png new file mode 100644 index 0000000..ba8c3ed Binary files /dev/null and b/src/overlays/square/64.png differ