Initial commit
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
flags.zip
|
||||||
55
Hello.txt
Normal file
@ -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
|
||||||
7
LICENSE.txt
Normal file
@ -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.
|
||||||
136
Makefile
Normal file
@ -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
|
||||||
20
README.md
Normal file
@ -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
|
||||||
55
flags/Hello.txt
Normal file
@ -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
|
||||||
7
flags/LICENSE.txt
Normal file
@ -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.
|
||||||
BIN
flags/flags-iso/flat/16/.png
Normal file
|
After Width: | Height: | Size: 182 B |
BIN
flags/flags-iso/flat/16/AD.png
Normal file
|
After Width: | Height: | Size: 263 B |
BIN
flags/flags-iso/flat/16/AE.png
Normal file
|
After Width: | Height: | Size: 107 B |
BIN
flags/flags-iso/flat/16/AF.png
Normal file
|
After Width: | Height: | Size: 259 B |
BIN
flags/flags-iso/flat/16/AG.png
Normal file
|
After Width: | Height: | Size: 302 B |
BIN
flags/flags-iso/flat/16/AI.png
Normal file
|
After Width: | Height: | Size: 332 B |
BIN
flags/flags-iso/flat/16/AL.png
Normal file
|
After Width: | Height: | Size: 291 B |
BIN
flags/flags-iso/flat/16/AM.png
Normal file
|
After Width: | Height: | Size: 105 B |
BIN
flags/flags-iso/flat/16/AN.png
Normal file
|
After Width: | Height: | Size: 145 B |
BIN
flags/flags-iso/flat/16/AO.png
Normal file
|
After Width: | Height: | Size: 241 B |
BIN
flags/flags-iso/flat/16/AQ.png
Normal file
|
After Width: | Height: | Size: 382 B |
BIN
flags/flags-iso/flat/16/AR.png
Normal file
|
After Width: | Height: | Size: 209 B |
BIN
flags/flags-iso/flat/16/AS.png
Normal file
|
After Width: | Height: | Size: 448 B |
BIN
flags/flags-iso/flat/16/AT.png
Normal file
|
After Width: | Height: | Size: 98 B |
BIN
flags/flags-iso/flat/16/AU.png
Normal file
|
After Width: | Height: | Size: 228 B |
BIN
flags/flags-iso/flat/16/AW.png
Normal file
|
After Width: | Height: | Size: 182 B |
BIN
flags/flags-iso/flat/16/AX.png
Normal file
|
After Width: | Height: | Size: 121 B |
BIN
flags/flags-iso/flat/16/AZ.png
Normal file
|
After Width: | Height: | Size: 267 B |
BIN
flags/flags-iso/flat/16/BA.png
Normal file
|
After Width: | Height: | Size: 355 B |
BIN
flags/flags-iso/flat/16/BB.png
Normal file
|
After Width: | Height: | Size: 159 B |
BIN
flags/flags-iso/flat/16/BD.png
Normal file
|
After Width: | Height: | Size: 211 B |
BIN
flags/flags-iso/flat/16/BE.png
Normal file
|
After Width: | Height: | Size: 102 B |
BIN
flags/flags-iso/flat/16/BF.png
Normal file
|
After Width: | Height: | Size: 166 B |
BIN
flags/flags-iso/flat/16/BG.png
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
flags/flags-iso/flat/16/BH.png
Normal file
|
After Width: | Height: | Size: 129 B |
BIN
flags/flags-iso/flat/16/BI.png
Normal file
|
After Width: | Height: | Size: 454 B |
BIN
flags/flags-iso/flat/16/BJ.png
Normal file
|
After Width: | Height: | Size: 106 B |
BIN
flags/flags-iso/flat/16/BL.png
Normal file
|
After Width: | Height: | Size: 539 B |
BIN
flags/flags-iso/flat/16/BM.png
Normal file
|
After Width: | Height: | Size: 321 B |
BIN
flags/flags-iso/flat/16/BN.png
Normal file
|
After Width: | Height: | Size: 518 B |
BIN
flags/flags-iso/flat/16/BO.png
Normal file
|
After Width: | Height: | Size: 236 B |
BIN
flags/flags-iso/flat/16/BR.png
Normal file
|
After Width: | Height: | Size: 432 B |
BIN
flags/flags-iso/flat/16/BS.png
Normal file
|
After Width: | Height: | Size: 171 B |
BIN
flags/flags-iso/flat/16/BT.png
Normal file
|
After Width: | Height: | Size: 449 B |
BIN
flags/flags-iso/flat/16/BW.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
flags/flags-iso/flat/16/BY.png
Normal file
|
After Width: | Height: | Size: 151 B |
BIN
flags/flags-iso/flat/16/BZ.png
Normal file
|
After Width: | Height: | Size: 337 B |
BIN
flags/flags-iso/flat/16/CA.png
Normal file
|
After Width: | Height: | Size: 177 B |
BIN
flags/flags-iso/flat/16/CC.png
Normal file
|
After Width: | Height: | Size: 259 B |
BIN
flags/flags-iso/flat/16/CD.png
Normal file
|
After Width: | Height: | Size: 432 B |
BIN
flags/flags-iso/flat/16/CF.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
flags/flags-iso/flat/16/CG.png
Normal file
|
After Width: | Height: | Size: 152 B |
BIN
flags/flags-iso/flat/16/CH.png
Normal file
|
After Width: | Height: | Size: 100 B |
BIN
flags/flags-iso/flat/16/CI.png
Normal file
|
After Width: | Height: | Size: 100 B |
BIN
flags/flags-iso/flat/16/CK.png
Normal file
|
After Width: | Height: | Size: 331 B |
BIN
flags/flags-iso/flat/16/CL.png
Normal file
|
After Width: | Height: | Size: 150 B |
BIN
flags/flags-iso/flat/16/CM.png
Normal file
|
After Width: | Height: | Size: 163 B |
BIN
flags/flags-iso/flat/16/CN.png
Normal file
|
After Width: | Height: | Size: 310 B |
BIN
flags/flags-iso/flat/16/CO.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
flags/flags-iso/flat/16/CR.png
Normal file
|
After Width: | Height: | Size: 110 B |
BIN
flags/flags-iso/flat/16/CU.png
Normal file
|
After Width: | Height: | Size: 215 B |
BIN
flags/flags-iso/flat/16/CV.png
Normal file
|
After Width: | Height: | Size: 138 B |
BIN
flags/flags-iso/flat/16/CX.png
Normal file
|
After Width: | Height: | Size: 390 B |
BIN
flags/flags-iso/flat/16/CY.png
Normal file
|
After Width: | Height: | Size: 364 B |
BIN
flags/flags-iso/flat/16/CZ.png
Normal file
|
After Width: | Height: | Size: 221 B |
BIN
flags/flags-iso/flat/16/DE.png
Normal file
|
After Width: | Height: | Size: 102 B |
BIN
flags/flags-iso/flat/16/DJ.png
Normal file
|
After Width: | Height: | Size: 228 B |
BIN
flags/flags-iso/flat/16/DK.png
Normal file
|
After Width: | Height: | Size: 106 B |
BIN
flags/flags-iso/flat/16/DM.png
Normal file
|
After Width: | Height: | Size: 333 B |
BIN
flags/flags-iso/flat/16/DO.png
Normal file
|
After Width: | Height: | Size: 142 B |
BIN
flags/flags-iso/flat/16/DZ.png
Normal file
|
After Width: | Height: | Size: 309 B |
BIN
flags/flags-iso/flat/16/EC.png
Normal file
|
After Width: | Height: | Size: 264 B |
BIN
flags/flags-iso/flat/16/EE.png
Normal file
|
After Width: | Height: | Size: 102 B |
BIN
flags/flags-iso/flat/16/EG.png
Normal file
|
After Width: | Height: | Size: 199 B |
BIN
flags/flags-iso/flat/16/EH.png
Normal file
|
After Width: | Height: | Size: 248 B |
BIN
flags/flags-iso/flat/16/ER.png
Normal file
|
After Width: | Height: | Size: 421 B |
BIN
flags/flags-iso/flat/16/ES.png
Normal file
|
After Width: | Height: | Size: 221 B |
BIN
flags/flags-iso/flat/16/ET.png
Normal file
|
After Width: | Height: | Size: 420 B |
BIN
flags/flags-iso/flat/16/EU.png
Normal file
|
After Width: | Height: | Size: 316 B |
BIN
flags/flags-iso/flat/16/FI.png
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
flags/flags-iso/flat/16/FJ.png
Normal file
|
After Width: | Height: | Size: 387 B |
BIN
flags/flags-iso/flat/16/FK.png
Normal file
|
After Width: | Height: | Size: 344 B |
BIN
flags/flags-iso/flat/16/FM.png
Normal file
|
After Width: | Height: | Size: 198 B |
BIN
flags/flags-iso/flat/16/FO.png
Normal file
|
After Width: | Height: | Size: 122 B |
BIN
flags/flags-iso/flat/16/FR.png
Normal file
|
After Width: | Height: | Size: 100 B |
BIN
flags/flags-iso/flat/16/GA.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
flags/flags-iso/flat/16/GB.png
Normal file
|
After Width: | Height: | Size: 353 B |
BIN
flags/flags-iso/flat/16/GD.png
Normal file
|
After Width: | Height: | Size: 313 B |
BIN
flags/flags-iso/flat/16/GE.png
Normal file
|
After Width: | Height: | Size: 122 B |
BIN
flags/flags-iso/flat/16/GG.png
Normal file
|
After Width: | Height: | Size: 124 B |
BIN
flags/flags-iso/flat/16/GH.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
flags/flags-iso/flat/16/GI.png
Normal file
|
After Width: | Height: | Size: 245 B |
BIN
flags/flags-iso/flat/16/GL.png
Normal file
|
After Width: | Height: | Size: 196 B |
BIN
flags/flags-iso/flat/16/GM.png
Normal file
|
After Width: | Height: | Size: 115 B |
BIN
flags/flags-iso/flat/16/GN.png
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
flags/flags-iso/flat/16/GQ.png
Normal file
|
After Width: | Height: | Size: 308 B |
BIN
flags/flags-iso/flat/16/GR.png
Normal file
|
After Width: | Height: | Size: 141 B |
BIN
flags/flags-iso/flat/16/GS.png
Normal file
|
After Width: | Height: | Size: 455 B |
BIN
flags/flags-iso/flat/16/GT.png
Normal file
|
After Width: | Height: | Size: 198 B |
BIN
flags/flags-iso/flat/16/GU.png
Normal file
|
After Width: | Height: | Size: 228 B |
BIN
flags/flags-iso/flat/16/GW.png
Normal file
|
After Width: | Height: | Size: 149 B |
BIN
flags/flags-iso/flat/16/GY.png
Normal file
|
After Width: | Height: | Size: 393 B |
BIN
flags/flags-iso/flat/16/HK.png
Normal file
|
After Width: | Height: | Size: 418 B |