diff --git a/bt/announce.php b/bt/announce.php index 95566cd05..46fc86250 100644 --- a/bt/announce.php +++ b/bt/announce.php @@ -92,6 +92,7 @@ if (strlen($info_hash) !== 20) { if (!isset($port) || $port < 0 || $port > 0xFFFF) { msg_die('Invalid port: ' . $port); } + if (!isset($uploaded) || $uploaded < 0) { msg_die('Invalid uploaded value: ' . $uploaded); } @@ -104,6 +105,10 @@ if (!isset($left) || $left < 0) { msg_die('Invalid left value: ' . $left); } +if (max($uploaded, $downloaded, $left) >= (2**64 - 1)) { // BIGINT + msg_die('Integer overflow'); +} + // IP $ip = $_SERVER['REMOTE_ADDR']; diff --git a/bt/includes/init_tr.php b/bt/includes/init_tr.php index dc5219ca2..9c88d90a2 100644 --- a/bt/includes/init_tr.php +++ b/bt/includes/init_tr.php @@ -63,6 +63,7 @@ function dummy_exit($interval = 1800, $cache_dict = []) $output = [ 'interval' => (int)$interval, 'peers' => (string)DUMMY_PEER, + 'external ip' => inet_pton($_SERVER['REMOTE_ADDR']), ]; if (!empty($cache_dict)) { diff --git a/install/sql/mysql.sql b/install/sql/mysql.sql index 8119042c9..32c505ada 100644 --- a/install/sql/mysql.sql +++ b/install/sql/mysql.sql @@ -994,7 +994,7 @@ CREATE TABLE IF NOT EXISTS `bb_posts_text` -- ---------------------------- INSERT INTO `bb_posts_text` VALUES ('1', - 'Thank you for installing the new — TorrentPier Cattle!\n\nWhat to do next? First of all configure your site in the administration panel (link in the bottom).\n\nChange main options: site description, number of messages per topic, time zone, language by default, seed-bonus options, birthdays etc... Create a couple of forums, delete or change this one. Change settings of categories to allow registration of torrents. If you will have questions or want additional modifications of the engine, [url=https://torrentpier.com/]visit our forum[/url] (you can use english, we will try to help in any case).\n\nIf you want to help with the translations: [url=https://crowdin.com/project/torrentpier]Crowdin[/url].\n\nWe are sure that you will be able to create the best tracker available.\nGood luck!'); + 'Thank you for installing the new — TorrentPier Cattle!\n\nWhat to do next? First of all configure your site in the administration panel (link in the bottom).\n\nChange main options: site description, number of messages per topic, time zone, language by default, seed-bonus options, birthdays etc... Create a couple of forums, delete or change this one. Change settings of categories to allow registration of torrents, change announcer url. If you will have questions or want additional modifications of the engine, [url=https://torrentpier.com/]visit our forum[/url] (you can use english, we will try to help in any case).\n\nIf you want to help with the translations: [url=https://crowdin.com/project/torrentpier]Crowdin[/url].\n\nWe are sure that you will be able to create the best tracker available.\nGood luck!'); -- ---------------------------- -- Table structure for `bb_privmsgs` diff --git a/library/includes/functions.php b/library/includes/functions.php index 5c26630d3..002703d0d 100644 --- a/library/includes/functions.php +++ b/library/includes/functions.php @@ -1198,7 +1198,7 @@ function bb_date($gmepoch, $format = false, $friendly_date = true) * @param string $peerId * @return mixed|string */ -function get_user_torrent_client(string $peerId): mixed +function get_user_torrent_client(string $peer_id): mixed { static $clients = [ '-AG' => 'Ares', '-AZ' => 'Vuze', '-A~' => 'Ares', '-BC' => 'BitComet', @@ -1245,17 +1245,285 @@ function get_user_torrent_client(string $peerId): mixed $bestMatchLength = 0; foreach ($clients as $key => $clientName) { - if (str_starts_with($peerId, $key) !== false && strlen($key) > $bestMatchLength) { + if (str_starts_with($peer_id, $key) !== false && strlen($key) > $bestMatchLength) { $bestMatch = $clientName; $bestMatchLength = strlen($key); } } if (!empty($bestMatch)) { - return '' . $bestMatch . ''; + return '' . $bestMatch . ''; } - return $peerId; + return $peer_id; +} + +function render_flag($code) { + static $iconExtension = '.svg'; + static $country_codes = [ + 'AD' => 'Andorra', + 'AE' => 'United Arab Emirates', + 'AF' => 'Afghanistan', + 'AG' => 'Antigua and Barbuda', + 'AI' => 'Anguilla', + 'AL' => 'Albania', + 'AM' => 'Armenia', + 'AO' => 'Angola', + 'AQ' => 'Antarctica', + 'AR' => 'Argentina', + 'AS' => 'American Samoa', + 'AT' => 'Austria', + 'AU' => 'Australia', + 'AW' => 'Aruba', + 'AX' => 'Aland Islands', + 'AZ' => 'Azerbaijan', + 'BA' => 'Bosnia and Herzegovina', + 'BB' => 'Barbados', + 'BD' => 'Bangladesh', + 'BE' => 'Belgium', + 'BF' => 'Burkina Faso', + 'BG' => 'Bulgaria', + 'BH' => 'Bahrain', + 'BI' => 'Burundi', + 'BJ' => 'Benin', + 'BL' => 'Saint Barthélemy', + 'BM' => 'Bermuda', + 'BN' => 'Brunei Darussalam', + 'BO' => 'Bolivia, Plurinational State of', + 'BQ' => 'Caribbean Netherlands', + 'BR' => 'Brazil', + 'BS' => 'Bahamas', + 'BT' => 'Bhutan', + 'BV' => 'Bouvet Island', + 'BW' => 'Botswana', + 'BY' => 'Belarus', + 'BZ' => 'Belize', + 'CA' => 'Canada', + 'CC' => 'Cocos (Keeling) Islands', + 'CD' => 'Congo, the Democratic Republic of the', + 'CF' => 'Central African Republic', + 'CG' => 'Republic of the Congo', + 'CH' => 'Switzerland', + 'CI' => 'Republic of Cote d\'Ivoire', + 'CK' => 'Cook Islands', + 'CL' => 'Chile', + 'CM' => 'Cameroon', + 'CN' => 'China (People\'s Republic of China)', + 'CO' => 'Colombia', + 'CR' => 'Costa Rica', + 'CU' => 'Cuba', + 'CV' => 'Cape Verde', + 'CW' => 'Country of Curaçao', + 'CX' => 'Christmas Island', + 'CY' => 'Cyprus', + 'CZ' => 'Czech Republic', + 'DE' => 'Germany', + 'DJ' => 'Djibouti', + 'DK' => 'Denmark', + 'DM' => 'Dominica', + 'DO' => 'Dominican Republic', + 'DZ' => 'Algeria', + 'EC' => 'Ecuador', + 'EE' => 'Estonia', + 'EG' => 'Egypt', + 'EH' => 'Western Sahara', + 'ER' => 'Eritrea', + 'ES' => 'Spain', + 'ET' => 'Ethiopia', + 'EU' => 'Europe', + 'FI' => 'Finland', + 'FJ' => 'Fiji', + 'FK' => 'Falkland Islands (Malvinas)', + 'FM' => 'Micronesia, Federated States of', + 'FO' => 'Faroe Islands', + 'FR' => 'France', + 'GA' => 'Gabon', + 'GB-ENG' => 'England', + 'GB-NIR' => 'Northern Ireland', + 'GB-SCT' => 'Scotland', + 'GB-WLS' => 'Wales', + 'GB' => 'United Kingdom', + 'GD' => 'Grenada', + 'GE' => 'Georgia', + 'GF' => 'French Guiana', + 'GG' => 'Guernsey', + 'GH' => 'Ghana', + 'GI' => 'Gibraltar', + 'GL' => 'Greenland', + 'GM' => 'Gambia', + 'GN' => 'Guinea', + 'GP' => 'Guadeloupe', + 'GQ' => 'Equatorial Guinea', + 'GR' => 'Greece', + 'GS' => 'South Georgia and the South Sandwich Islands', + 'GT' => 'Guatemala', + 'GU' => 'Guam', + 'GW' => 'Guinea-Bissau', + 'GY' => 'Guyana', + 'HK' => 'Hong Kong', + 'HM' => 'Heard Island and McDonald Islands', + 'HN' => 'Honduras', + 'HR' => 'Croatia', + 'HT' => 'Haiti', + 'HU' => 'Hungary', + 'ID' => 'Indonesia', + 'IE' => 'Ireland', + 'IL' => 'Israel', + 'IM' => 'Isle of Man', + 'IN' => 'India', + 'IO' => 'British Indian Ocean Territory', + 'IQ' => 'Iraq', + 'IR' => 'Iran, Islamic Republic of', + 'IS' => 'Iceland', + 'IT' => 'Italy', + 'JE' => 'Jersey', + 'JM' => 'Jamaica', + 'JO' => 'Jordan', + 'JP' => 'Japan', + 'KE' => 'Kenya', + 'KG' => 'Kyrgyzstan', + 'KH' => 'Cambodia', + 'KI' => 'Kiribati', + 'KM' => 'Comoros', + 'KN' => 'Saint Kitts and Nevis', + 'KP' => 'Korea, Democratic People\'s Republic of', + 'KR' => 'Korea, Republic of', + 'KW' => 'Kuwait', + 'KY' => 'Cayman Islands', + 'KZ' => 'Kazakhstan', + 'LA' => 'Laos (Lao People\'s Democratic Republic)', + 'LB' => 'Lebanon', + 'LC' => 'Saint Lucia', + 'LI' => 'Liechtenstein', + 'LK' => 'Sri Lanka', + 'LR' => 'Liberia', + 'LS' => 'Lesotho', + 'LT' => 'Lithuania', + 'LU' => 'Luxembourg', + 'LV' => 'Latvia', + 'LY' => 'Libya', + 'MA' => 'Morocco', + 'MC' => 'Monaco', + 'MD' => 'Moldova, Republic of', + 'ME' => 'Montenegro', + 'MF' => 'Saint Martin', + 'MG' => 'Madagascar', + 'MH' => 'Marshall Islands', + 'MK' => 'North Macedonia', + 'ML' => 'Mali', + 'MM' => 'Myanmar', + 'MN' => 'Mongolia', + 'MO' => 'Macao', + 'MP' => 'Northern Mariana Islands', + 'MQ' => 'Martinique', + 'MR' => 'Mauritania', + 'MS' => 'Montserrat', + 'MT' => 'Malta', + 'MU' => 'Mauritius', + 'MV' => 'Maldives', + 'MW' => 'Malawi', + 'MX' => 'Mexico', + 'MY' => 'Malaysia', + 'MZ' => 'Mozambique', + 'NA' => 'Namibia', + 'NC' => 'New Caledonia', + 'NE' => 'Niger', + 'NF' => 'Norfolk Island', + 'NG' => 'Nigeria', + 'NI' => 'Nicaragua', + 'NL' => 'Netherlands', + 'NO' => 'Norway', + 'NP' => 'Nepal', + 'NR' => 'Nauru', + 'NU' => 'Niue', + 'NZ' => 'New Zealand', + 'OM' => 'Oman', + 'PA' => 'Panama', + 'PE' => 'Peru', + 'PF' => 'French Polynesia', + 'PG' => 'Papua New Guinea', + 'PH' => 'Philippines', + 'PK' => 'Pakistan', + 'PL' => 'Poland', + 'PM' => 'Saint Pierre and Miquelon', + 'PN' => 'Pitcairn', + 'PR' => 'Puerto Rico', + 'PS' => 'Palestine', + 'PT' => 'Portugal', + 'PW' => 'Palau', + 'PY' => 'Paraguay', + 'QA' => 'Qatar', + 'RE' => 'Réunion', + 'RO' => 'Romania', + 'RS' => 'Serbia', + 'RU' => 'Russian Federation', + 'RW' => 'Rwanda', + 'SA' => 'Saudi Arabia', + 'SB' => 'Solomon Islands', + 'SC' => 'Seychelles', + 'SD' => 'Sudan', + 'SE' => 'Sweden', + 'SG' => 'Singapore', + 'SH' => 'Saint Helena, Ascension and Tristan da Cunha', + 'SI' => 'Slovenia', + 'SJ' => 'Svalbard and Jan Mayen Islands', + 'SK' => 'Slovakia', + 'SL' => 'Sierra Leone', + 'SM' => 'San Marino', + 'SN' => 'Senegal', + 'SO' => 'Somalia', + 'SR' => 'Suriname', + 'SS' => 'South Sudan', + 'SU' => 'Soviet Union', + 'ST' => 'Sao Tome and Principe', + 'SV' => 'El Salvador', + 'SX' => 'Sint Maarten (Dutch part)', + 'SY' => 'Syrian Arab Republic', + 'SZ' => 'Swaziland', + 'TC' => 'Turks and Caicos Islands', + 'TD' => 'Chad', + 'TF' => 'French Southern Territories', + 'TG' => 'Togo', + 'TH' => 'Thailand', + 'TJ' => 'Tajikistan', + 'TK' => 'Tokelau', + 'TL' => 'Timor-Leste', + 'TM' => 'Turkmenistan', + 'TN' => 'Tunisia', + 'TO' => 'Tonga', + 'TR' => 'Turkey', + 'TT' => 'Trinidad and Tobago', + 'TV' => 'Tuvalu', + 'TW' => 'Taiwan (Republic of China)', + 'TZ' => 'Tanzania, United Republic of', + 'UA' => 'Ukraine', + 'UG' => 'Uganda', + 'UM' => 'US Minor Outlying Islands', + 'US' => 'United States', + 'UY' => 'Uruguay', + 'UZ' => 'Uzbekistan', + 'VA' => 'Holy See (Vatican City State)', + 'VC' => 'Saint Vincent and the Grenadines', + 'VE' => 'Venezuela, Bolivarian Republic of', + 'VG' => 'Virgin Islands, British', + 'VI' => 'Virgin Islands, U.S.', + 'VN' => 'Vietnam', + 'VU' => 'Vanuatu', + 'WF' => 'Wallis and Futuna Islands', + 'WS' => 'Samoa', + 'XK' => 'Kosovo', + 'YE' => 'Yemen', + 'YT' => 'Mayotte', + 'ZA' => 'South Africa', + 'ZM' => 'Zambia', + 'ZW' => 'Zimbabwe' + ]; + + if (isset($country_codes[$code])) { + return '' . $code . ''; + } + + return $code; } function birthday_age($date) diff --git a/library/includes/ucp/viewprofile.php b/library/includes/ucp/viewprofile.php index b27d79e15..f7d8c2929 100644 --- a/library/includes/ucp/viewprofile.php +++ b/library/includes/ucp/viewprofile.php @@ -99,7 +99,7 @@ $template->assign_vars([ 'LAST_VISIT_TIME' => ($profiledata['user_lastvisit']) ? (!$profile_user_id && bf($profiledata['user_opt'], 'user_opt', 'user_viewonline') && !IS_ADMIN) ? $lang['HIDDEN_USER'] : bb_date($profiledata['user_lastvisit'], 'Y-m-d H:i', false) : $lang['NEVER'], 'LAST_ACTIVITY_TIME' => ($profiledata['user_session_time']) ? (!$profile_user_id && bf($profiledata['user_opt'], 'user_opt', 'user_viewonline') && !IS_ADMIN) ? $lang['HIDDEN_USER'] : bb_date($profiledata['user_session_time'], 'Y-m-d H:i', false) : $lang['NEVER'], 'USER_ACTIVE' => $profiledata['user_active'], - 'LOCATION' => $profiledata['user_from'], + 'LOCATION' => render_flag($profiledata['user_from']), 'OCCUPATION' => $profiledata['user_occ'], 'INTERESTS' => $profiledata['user_interests'], 'SKYPE' => $profiledata['user_skype'], diff --git a/library/language/en/main.php b/library/language/en/main.php index 06a868eaa..ff4d6dad3 100644 --- a/library/language/en/main.php +++ b/library/language/en/main.php @@ -514,6 +514,7 @@ $lang['AVATAR_PANEL'] = 'Avatar control panel'; $lang['WEBSITE'] = 'Website'; $lang['LOCATION'] = 'Location'; +$lang['LOCATION_FLAGS'] = 'Flag images are rendered by country codes:'; $lang['CONTACT'] = 'Contact'; $lang['EMAIL_ADDRESS'] = 'E-mail address'; $lang['SEND_PRIVATE_MESSAGE'] = 'Send private message'; diff --git a/styles/images/flags/AD.SVG b/styles/images/flags/AD.SVG new file mode 100644 index 000000000..067ab772f --- /dev/null +++ b/styles/images/flags/AD.SVG @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/AE.SVG b/styles/images/flags/AE.SVG new file mode 100644 index 000000000..651ac8523 --- /dev/null +++ b/styles/images/flags/AE.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/AF.SVG b/styles/images/flags/AF.SVG new file mode 100644 index 000000000..31a20c9fd --- /dev/null +++ b/styles/images/flags/AF.SVG @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/AG.SVG b/styles/images/flags/AG.SVG new file mode 100644 index 000000000..243c3d8f9 --- /dev/null +++ b/styles/images/flags/AG.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/AI.SVG b/styles/images/flags/AI.SVG new file mode 100644 index 000000000..628ad9be9 --- /dev/null +++ b/styles/images/flags/AI.SVG @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/AL.SVG b/styles/images/flags/AL.SVG new file mode 100644 index 000000000..1135b4b80 --- /dev/null +++ b/styles/images/flags/AL.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/AM.SVG b/styles/images/flags/AM.SVG new file mode 100644 index 000000000..99fa4dc59 --- /dev/null +++ b/styles/images/flags/AM.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/AO.SVG b/styles/images/flags/AO.SVG new file mode 100644 index 000000000..b1863bd0f --- /dev/null +++ b/styles/images/flags/AO.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/AQ.SVG b/styles/images/flags/AQ.SVG new file mode 100644 index 000000000..53840cccb --- /dev/null +++ b/styles/images/flags/AQ.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/AR.SVG b/styles/images/flags/AR.SVG new file mode 100644 index 000000000..d20cbbdcd --- /dev/null +++ b/styles/images/flags/AR.SVG @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/ARAB.SVG b/styles/images/flags/ARAB.SVG new file mode 100644 index 000000000..96d27157e --- /dev/null +++ b/styles/images/flags/ARAB.SVG @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/AS.SVG b/styles/images/flags/AS.SVG new file mode 100644 index 000000000..354355672 --- /dev/null +++ b/styles/images/flags/AS.SVG @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/AT.SVG b/styles/images/flags/AT.SVG new file mode 100644 index 000000000..c28250887 --- /dev/null +++ b/styles/images/flags/AT.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/AU.SVG b/styles/images/flags/AU.SVG new file mode 100644 index 000000000..96e80768b --- /dev/null +++ b/styles/images/flags/AU.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/AW.SVG b/styles/images/flags/AW.SVG new file mode 100644 index 000000000..413b7c45b --- /dev/null +++ b/styles/images/flags/AW.SVG @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/AX.SVG b/styles/images/flags/AX.SVG new file mode 100644 index 000000000..0584d713b --- /dev/null +++ b/styles/images/flags/AX.SVG @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/AZ.SVG b/styles/images/flags/AZ.SVG new file mode 100644 index 000000000..355752211 --- /dev/null +++ b/styles/images/flags/AZ.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/BA.SVG b/styles/images/flags/BA.SVG new file mode 100644 index 000000000..93bd9cf93 --- /dev/null +++ b/styles/images/flags/BA.SVG @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/styles/images/flags/BB.SVG b/styles/images/flags/BB.SVG new file mode 100644 index 000000000..cecd5cc33 --- /dev/null +++ b/styles/images/flags/BB.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/BD.SVG b/styles/images/flags/BD.SVG new file mode 100644 index 000000000..16b794deb --- /dev/null +++ b/styles/images/flags/BD.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/BE.SVG b/styles/images/flags/BE.SVG new file mode 100644 index 000000000..ac706a0b5 --- /dev/null +++ b/styles/images/flags/BE.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/BF.SVG b/styles/images/flags/BF.SVG new file mode 100644 index 000000000..471382258 --- /dev/null +++ b/styles/images/flags/BF.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/BG.SVG b/styles/images/flags/BG.SVG new file mode 100644 index 000000000..b100dd0dc --- /dev/null +++ b/styles/images/flags/BG.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/BH.SVG b/styles/images/flags/BH.SVG new file mode 100644 index 000000000..7a2ea549b --- /dev/null +++ b/styles/images/flags/BH.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/BI.SVG b/styles/images/flags/BI.SVG new file mode 100644 index 000000000..a4434a955 --- /dev/null +++ b/styles/images/flags/BI.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/BJ.SVG b/styles/images/flags/BJ.SVG new file mode 100644 index 000000000..0846724d1 --- /dev/null +++ b/styles/images/flags/BJ.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/BL.SVG b/styles/images/flags/BL.SVG new file mode 100644 index 000000000..f84cbbaeb --- /dev/null +++ b/styles/images/flags/BL.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/BM.SVG b/styles/images/flags/BM.SVG new file mode 100644 index 000000000..bab3e0abe --- /dev/null +++ b/styles/images/flags/BM.SVG @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/BN.SVG b/styles/images/flags/BN.SVG new file mode 100644 index 000000000..4b416ebb7 --- /dev/null +++ b/styles/images/flags/BN.SVG @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/BO.SVG b/styles/images/flags/BO.SVG new file mode 100644 index 000000000..e2b25c527 --- /dev/null +++ b/styles/images/flags/BO.SVG @@ -0,0 +1,674 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/BQ.SVG b/styles/images/flags/BQ.SVG new file mode 100644 index 000000000..0e6bc76e6 --- /dev/null +++ b/styles/images/flags/BQ.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/BR.SVG b/styles/images/flags/BR.SVG new file mode 100644 index 000000000..6f0df703a --- /dev/null +++ b/styles/images/flags/BR.SVG @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/BS.SVG b/styles/images/flags/BS.SVG new file mode 100644 index 000000000..5cc918e5a --- /dev/null +++ b/styles/images/flags/BS.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/BT.SVG b/styles/images/flags/BT.SVG new file mode 100644 index 000000000..798c79b38 --- /dev/null +++ b/styles/images/flags/BT.SVG @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/BV.SVG b/styles/images/flags/BV.SVG new file mode 100644 index 000000000..40e16d948 --- /dev/null +++ b/styles/images/flags/BV.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/BW.SVG b/styles/images/flags/BW.SVG new file mode 100644 index 000000000..3435608d6 --- /dev/null +++ b/styles/images/flags/BW.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/BY.SVG b/styles/images/flags/BY.SVG new file mode 100644 index 000000000..8d25ee3c1 --- /dev/null +++ b/styles/images/flags/BY.SVG @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/BZ.SVG b/styles/images/flags/BZ.SVG new file mode 100644 index 000000000..25386a51a --- /dev/null +++ b/styles/images/flags/BZ.SVG @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/CA.SVG b/styles/images/flags/CA.SVG new file mode 100644 index 000000000..89da5b7b5 --- /dev/null +++ b/styles/images/flags/CA.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/CC.SVG b/styles/images/flags/CC.SVG new file mode 100644 index 000000000..ddfd18038 --- /dev/null +++ b/styles/images/flags/CC.SVG @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/CD.SVG b/styles/images/flags/CD.SVG new file mode 100644 index 000000000..b9cf52894 --- /dev/null +++ b/styles/images/flags/CD.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/CEFTA.SVG b/styles/images/flags/CEFTA.SVG new file mode 100644 index 000000000..f748d08a1 --- /dev/null +++ b/styles/images/flags/CEFTA.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/CF.SVG b/styles/images/flags/CF.SVG new file mode 100644 index 000000000..a6cd3670f --- /dev/null +++ b/styles/images/flags/CF.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/CG.SVG b/styles/images/flags/CG.SVG new file mode 100644 index 000000000..f5a0e42d4 --- /dev/null +++ b/styles/images/flags/CG.SVG @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/styles/images/flags/CH.SVG b/styles/images/flags/CH.SVG new file mode 100644 index 000000000..b42d6709c --- /dev/null +++ b/styles/images/flags/CH.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/CI.SVG b/styles/images/flags/CI.SVG new file mode 100644 index 000000000..e400f0c1c --- /dev/null +++ b/styles/images/flags/CI.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/CK.SVG b/styles/images/flags/CK.SVG new file mode 100644 index 000000000..18e547b17 --- /dev/null +++ b/styles/images/flags/CK.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/CL.SVG b/styles/images/flags/CL.SVG new file mode 100644 index 000000000..5b3c72fa7 --- /dev/null +++ b/styles/images/flags/CL.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/CM.SVG b/styles/images/flags/CM.SVG new file mode 100644 index 000000000..70adc8b68 --- /dev/null +++ b/styles/images/flags/CM.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/CN.SVG b/styles/images/flags/CN.SVG new file mode 100644 index 000000000..10d3489a0 --- /dev/null +++ b/styles/images/flags/CN.SVG @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/styles/images/flags/CO.SVG b/styles/images/flags/CO.SVG new file mode 100644 index 000000000..ebd0a0fb2 --- /dev/null +++ b/styles/images/flags/CO.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/CP.SVG b/styles/images/flags/CP.SVG new file mode 100644 index 000000000..b8aa9cfd6 --- /dev/null +++ b/styles/images/flags/CP.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/CR.SVG b/styles/images/flags/CR.SVG new file mode 100644 index 000000000..5a409eebb --- /dev/null +++ b/styles/images/flags/CR.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/CU.SVG b/styles/images/flags/CU.SVG new file mode 100644 index 000000000..053c9ee3a --- /dev/null +++ b/styles/images/flags/CU.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/CV.SVG b/styles/images/flags/CV.SVG new file mode 100644 index 000000000..aec899490 --- /dev/null +++ b/styles/images/flags/CV.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/CW.SVG b/styles/images/flags/CW.SVG new file mode 100644 index 000000000..bb0ece22e --- /dev/null +++ b/styles/images/flags/CW.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/CX.SVG b/styles/images/flags/CX.SVG new file mode 100644 index 000000000..374ff2dab --- /dev/null +++ b/styles/images/flags/CX.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/CY.SVG b/styles/images/flags/CY.SVG new file mode 100644 index 000000000..7e3d883da --- /dev/null +++ b/styles/images/flags/CY.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/CZ.SVG b/styles/images/flags/CZ.SVG new file mode 100644 index 000000000..7913de389 --- /dev/null +++ b/styles/images/flags/CZ.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/DE.SVG b/styles/images/flags/DE.SVG new file mode 100644 index 000000000..d5ff88b91 --- /dev/null +++ b/styles/images/flags/DE.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/DG.SVG b/styles/images/flags/DG.SVG new file mode 100644 index 000000000..f163caf94 --- /dev/null +++ b/styles/images/flags/DG.SVG @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/DJ.SVG b/styles/images/flags/DJ.SVG new file mode 100644 index 000000000..9b00a8205 --- /dev/null +++ b/styles/images/flags/DJ.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/DK.SVG b/styles/images/flags/DK.SVG new file mode 100644 index 000000000..563277f81 --- /dev/null +++ b/styles/images/flags/DK.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/DM.SVG b/styles/images/flags/DM.SVG new file mode 100644 index 000000000..f692094dd --- /dev/null +++ b/styles/images/flags/DM.SVG @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/DO.SVG b/styles/images/flags/DO.SVG new file mode 100644 index 000000000..5d4b9b2c5 --- /dev/null +++ b/styles/images/flags/DO.SVG @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/DZ.SVG b/styles/images/flags/DZ.SVG new file mode 100644 index 000000000..5ff29a74a --- /dev/null +++ b/styles/images/flags/DZ.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/EAC.SVG b/styles/images/flags/EAC.SVG new file mode 100644 index 000000000..aaf8133f3 --- /dev/null +++ b/styles/images/flags/EAC.SVG @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/EC.SVG b/styles/images/flags/EC.SVG new file mode 100644 index 000000000..397bfd982 --- /dev/null +++ b/styles/images/flags/EC.SVG @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/EE.SVG b/styles/images/flags/EE.SVG new file mode 100644 index 000000000..2a86ee405 --- /dev/null +++ b/styles/images/flags/EE.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/EG.SVG b/styles/images/flags/EG.SVG new file mode 100644 index 000000000..00d1fa59e --- /dev/null +++ b/styles/images/flags/EG.SVG @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/EH.SVG b/styles/images/flags/EH.SVG new file mode 100644 index 000000000..6aec72883 --- /dev/null +++ b/styles/images/flags/EH.SVG @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/ER.SVG b/styles/images/flags/ER.SVG new file mode 100644 index 000000000..3f4f3f292 --- /dev/null +++ b/styles/images/flags/ER.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/ES-CT.SVG b/styles/images/flags/ES-CT.SVG new file mode 100644 index 000000000..4d8591140 --- /dev/null +++ b/styles/images/flags/ES-CT.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/ES-GA.SVG b/styles/images/flags/ES-GA.SVG new file mode 100644 index 000000000..31657813e --- /dev/null +++ b/styles/images/flags/ES-GA.SVG @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/ES-PV.SVG b/styles/images/flags/ES-PV.SVG new file mode 100644 index 000000000..21c8759ec --- /dev/null +++ b/styles/images/flags/ES-PV.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/ES.SVG b/styles/images/flags/ES.SVG new file mode 100644 index 000000000..c7766f4fa --- /dev/null +++ b/styles/images/flags/ES.SVG @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/ET.SVG b/styles/images/flags/ET.SVG new file mode 100644 index 000000000..3f99be486 --- /dev/null +++ b/styles/images/flags/ET.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/EU.SVG b/styles/images/flags/EU.SVG new file mode 100644 index 000000000..b0874c1ed --- /dev/null +++ b/styles/images/flags/EU.SVG @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/FI.SVG b/styles/images/flags/FI.SVG new file mode 100644 index 000000000..470be2d07 --- /dev/null +++ b/styles/images/flags/FI.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/FJ.SVG b/styles/images/flags/FJ.SVG new file mode 100644 index 000000000..a6035eaf0 --- /dev/null +++ b/styles/images/flags/FJ.SVG @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/FK.SVG b/styles/images/flags/FK.SVG new file mode 100644 index 000000000..c65bf96de --- /dev/null +++ b/styles/images/flags/FK.SVG @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/FM.SVG b/styles/images/flags/FM.SVG new file mode 100644 index 000000000..c1b7c9778 --- /dev/null +++ b/styles/images/flags/FM.SVG @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/styles/images/flags/FO.SVG b/styles/images/flags/FO.SVG new file mode 100644 index 000000000..f802d285a --- /dev/null +++ b/styles/images/flags/FO.SVG @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/styles/images/flags/FR.SVG b/styles/images/flags/FR.SVG new file mode 100644 index 000000000..4110e59e4 --- /dev/null +++ b/styles/images/flags/FR.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/GA.SVG b/styles/images/flags/GA.SVG new file mode 100644 index 000000000..76edab429 --- /dev/null +++ b/styles/images/flags/GA.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/GB-ENG.SVG b/styles/images/flags/GB-ENG.SVG new file mode 100644 index 000000000..12e3b67d5 --- /dev/null +++ b/styles/images/flags/GB-ENG.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/GB-NIR.SVG b/styles/images/flags/GB-NIR.SVG new file mode 100644 index 000000000..e6be8dbc2 --- /dev/null +++ b/styles/images/flags/GB-NIR.SVG @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/GB-SCT.SVG b/styles/images/flags/GB-SCT.SVG new file mode 100644 index 000000000..f50cd322a --- /dev/null +++ b/styles/images/flags/GB-SCT.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/GB-WLS.SVG b/styles/images/flags/GB-WLS.SVG new file mode 100644 index 000000000..6e15fd015 --- /dev/null +++ b/styles/images/flags/GB-WLS.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/GB.SVG b/styles/images/flags/GB.SVG new file mode 100644 index 000000000..799138319 --- /dev/null +++ b/styles/images/flags/GB.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/GD.SVG b/styles/images/flags/GD.SVG new file mode 100644 index 000000000..cb51e9618 --- /dev/null +++ b/styles/images/flags/GD.SVG @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/GE.SVG b/styles/images/flags/GE.SVG new file mode 100644 index 000000000..d8126ec8d --- /dev/null +++ b/styles/images/flags/GE.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/GF.SVG b/styles/images/flags/GF.SVG new file mode 100644 index 000000000..f8fe94c65 --- /dev/null +++ b/styles/images/flags/GF.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/GG.SVG b/styles/images/flags/GG.SVG new file mode 100644 index 000000000..f8216c8bc --- /dev/null +++ b/styles/images/flags/GG.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/GH.SVG b/styles/images/flags/GH.SVG new file mode 100644 index 000000000..5c3e3e69a --- /dev/null +++ b/styles/images/flags/GH.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/GI.SVG b/styles/images/flags/GI.SVG new file mode 100644 index 000000000..e2b590afe --- /dev/null +++ b/styles/images/flags/GI.SVG @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/GL.SVG b/styles/images/flags/GL.SVG new file mode 100644 index 000000000..eb5a52e9e --- /dev/null +++ b/styles/images/flags/GL.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/GM.SVG b/styles/images/flags/GM.SVG new file mode 100644 index 000000000..8fe9d6692 --- /dev/null +++ b/styles/images/flags/GM.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/GN.SVG b/styles/images/flags/GN.SVG new file mode 100644 index 000000000..40d6ad4f0 --- /dev/null +++ b/styles/images/flags/GN.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/GP.SVG b/styles/images/flags/GP.SVG new file mode 100644 index 000000000..ee55c4bcd --- /dev/null +++ b/styles/images/flags/GP.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/GQ.SVG b/styles/images/flags/GQ.SVG new file mode 100644 index 000000000..134e44217 --- /dev/null +++ b/styles/images/flags/GQ.SVG @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/GR.SVG b/styles/images/flags/GR.SVG new file mode 100644 index 000000000..599741eec --- /dev/null +++ b/styles/images/flags/GR.SVG @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/GS.SVG b/styles/images/flags/GS.SVG new file mode 100644 index 000000000..1536e073e --- /dev/null +++ b/styles/images/flags/GS.SVG @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/GT.SVG b/styles/images/flags/GT.SVG new file mode 100644 index 000000000..f7cffbdc7 --- /dev/null +++ b/styles/images/flags/GT.SVG @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/GU.SVG b/styles/images/flags/GU.SVG new file mode 100644 index 000000000..0d66e1bfa --- /dev/null +++ b/styles/images/flags/GU.SVG @@ -0,0 +1,23 @@ + + + + + + + + + + G + U + A + M + + + + + + + + + + diff --git a/styles/images/flags/GW.SVG b/styles/images/flags/GW.SVG new file mode 100644 index 000000000..d470bac9f --- /dev/null +++ b/styles/images/flags/GW.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/GY.SVG b/styles/images/flags/GY.SVG new file mode 100644 index 000000000..569fb5627 --- /dev/null +++ b/styles/images/flags/GY.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/HK.SVG b/styles/images/flags/HK.SVG new file mode 100644 index 000000000..4fd55bc14 --- /dev/null +++ b/styles/images/flags/HK.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/HM.SVG b/styles/images/flags/HM.SVG new file mode 100644 index 000000000..815c48208 --- /dev/null +++ b/styles/images/flags/HM.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/HN.SVG b/styles/images/flags/HN.SVG new file mode 100644 index 000000000..11fde67db --- /dev/null +++ b/styles/images/flags/HN.SVG @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/HR.SVG b/styles/images/flags/HR.SVG new file mode 100644 index 000000000..eb4e7d1d7 --- /dev/null +++ b/styles/images/flags/HR.SVG @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/HT.SVG b/styles/images/flags/HT.SVG new file mode 100644 index 000000000..960e128a8 --- /dev/null +++ b/styles/images/flags/HT.SVG @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/HU.SVG b/styles/images/flags/HU.SVG new file mode 100644 index 000000000..baddf7f5e --- /dev/null +++ b/styles/images/flags/HU.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/IC.SVG b/styles/images/flags/IC.SVG new file mode 100644 index 000000000..81e6ee2e1 --- /dev/null +++ b/styles/images/flags/IC.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/ID.SVG b/styles/images/flags/ID.SVG new file mode 100644 index 000000000..3b7c8fcfd --- /dev/null +++ b/styles/images/flags/ID.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/IE.SVG b/styles/images/flags/IE.SVG new file mode 100644 index 000000000..049be14de --- /dev/null +++ b/styles/images/flags/IE.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/IL.SVG b/styles/images/flags/IL.SVG new file mode 100644 index 000000000..f43be7e8e --- /dev/null +++ b/styles/images/flags/IL.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/IM.SVG b/styles/images/flags/IM.SVG new file mode 100644 index 000000000..f06f3d6fe --- /dev/null +++ b/styles/images/flags/IM.SVG @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/IN.SVG b/styles/images/flags/IN.SVG new file mode 100644 index 000000000..bc47d7491 --- /dev/null +++ b/styles/images/flags/IN.SVG @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/IO.SVG b/styles/images/flags/IO.SVG new file mode 100644 index 000000000..77016679e --- /dev/null +++ b/styles/images/flags/IO.SVG @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/IQ.SVG b/styles/images/flags/IQ.SVG new file mode 100644 index 000000000..259da9adc --- /dev/null +++ b/styles/images/flags/IQ.SVG @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/styles/images/flags/IR.SVG b/styles/images/flags/IR.SVG new file mode 100644 index 000000000..8c6d51621 --- /dev/null +++ b/styles/images/flags/IR.SVG @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/IS.SVG b/styles/images/flags/IS.SVG new file mode 100644 index 000000000..a6588afae --- /dev/null +++ b/styles/images/flags/IS.SVG @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/styles/images/flags/IT.SVG b/styles/images/flags/IT.SVG new file mode 100644 index 000000000..20a8bfdcc --- /dev/null +++ b/styles/images/flags/IT.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/JE.SVG b/styles/images/flags/JE.SVG new file mode 100644 index 000000000..611180d42 --- /dev/null +++ b/styles/images/flags/JE.SVG @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/JM.SVG b/styles/images/flags/JM.SVG new file mode 100644 index 000000000..269df0383 --- /dev/null +++ b/styles/images/flags/JM.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/JO.SVG b/styles/images/flags/JO.SVG new file mode 100644 index 000000000..d6f927d44 --- /dev/null +++ b/styles/images/flags/JO.SVG @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/JP.SVG b/styles/images/flags/JP.SVG new file mode 100644 index 000000000..cc1c181ce --- /dev/null +++ b/styles/images/flags/JP.SVG @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/styles/images/flags/KE.SVG b/styles/images/flags/KE.SVG new file mode 100644 index 000000000..3a67ca3cc --- /dev/null +++ b/styles/images/flags/KE.SVG @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KG.SVG b/styles/images/flags/KG.SVG new file mode 100644 index 000000000..68c210b1c --- /dev/null +++ b/styles/images/flags/KG.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KH.SVG b/styles/images/flags/KH.SVG new file mode 100644 index 000000000..c658838f4 --- /dev/null +++ b/styles/images/flags/KH.SVG @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KI.SVG b/styles/images/flags/KI.SVG new file mode 100644 index 000000000..0c8032807 --- /dev/null +++ b/styles/images/flags/KI.SVG @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KM.SVG b/styles/images/flags/KM.SVG new file mode 100644 index 000000000..414d65e47 --- /dev/null +++ b/styles/images/flags/KM.SVG @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KN.SVG b/styles/images/flags/KN.SVG new file mode 100644 index 000000000..47fe64d61 --- /dev/null +++ b/styles/images/flags/KN.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/KP.SVG b/styles/images/flags/KP.SVG new file mode 100644 index 000000000..4d1dbab24 --- /dev/null +++ b/styles/images/flags/KP.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KR.SVG b/styles/images/flags/KR.SVG new file mode 100644 index 000000000..6947eab2b --- /dev/null +++ b/styles/images/flags/KR.SVG @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KW.SVG b/styles/images/flags/KW.SVG new file mode 100644 index 000000000..3dd89e996 --- /dev/null +++ b/styles/images/flags/KW.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/KY.SVG b/styles/images/flags/KY.SVG new file mode 100644 index 000000000..74a2fea2a --- /dev/null +++ b/styles/images/flags/KY.SVG @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/KZ.SVG b/styles/images/flags/KZ.SVG new file mode 100644 index 000000000..04a47f53e --- /dev/null +++ b/styles/images/flags/KZ.SVG @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/LA.SVG b/styles/images/flags/LA.SVG new file mode 100644 index 000000000..6aea6b72b --- /dev/null +++ b/styles/images/flags/LA.SVG @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/styles/images/flags/LB.SVG b/styles/images/flags/LB.SVG new file mode 100644 index 000000000..8619f2410 --- /dev/null +++ b/styles/images/flags/LB.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/LC.SVG b/styles/images/flags/LC.SVG new file mode 100644 index 000000000..bb256541c --- /dev/null +++ b/styles/images/flags/LC.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/LI.SVG b/styles/images/flags/LI.SVG new file mode 100644 index 000000000..68ea26fa3 --- /dev/null +++ b/styles/images/flags/LI.SVG @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/LK.SVG b/styles/images/flags/LK.SVG new file mode 100644 index 000000000..2c5cdbe09 --- /dev/null +++ b/styles/images/flags/LK.SVG @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/LR.SVG b/styles/images/flags/LR.SVG new file mode 100644 index 000000000..e482ab9d7 --- /dev/null +++ b/styles/images/flags/LR.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/LS.SVG b/styles/images/flags/LS.SVG new file mode 100644 index 000000000..a7c01a98f --- /dev/null +++ b/styles/images/flags/LS.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/LT.SVG b/styles/images/flags/LT.SVG new file mode 100644 index 000000000..90ec5d240 --- /dev/null +++ b/styles/images/flags/LT.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/LU.SVG b/styles/images/flags/LU.SVG new file mode 100644 index 000000000..c31d2bfa2 --- /dev/null +++ b/styles/images/flags/LU.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/LV.SVG b/styles/images/flags/LV.SVG new file mode 100644 index 000000000..6a9e75ec9 --- /dev/null +++ b/styles/images/flags/LV.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/LY.SVG b/styles/images/flags/LY.SVG new file mode 100644 index 000000000..1eaa51e46 --- /dev/null +++ b/styles/images/flags/LY.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/MA.SVG b/styles/images/flags/MA.SVG new file mode 100644 index 000000000..7ce56eff7 --- /dev/null +++ b/styles/images/flags/MA.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/MC.SVG b/styles/images/flags/MC.SVG new file mode 100644 index 000000000..9cb6c9e8a --- /dev/null +++ b/styles/images/flags/MC.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/MD.SVG b/styles/images/flags/MD.SVG new file mode 100644 index 000000000..6dc441e17 --- /dev/null +++ b/styles/images/flags/MD.SVG @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/ME.SVG b/styles/images/flags/ME.SVG new file mode 100644 index 000000000..d89189074 --- /dev/null +++ b/styles/images/flags/ME.SVG @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/MF.SVG b/styles/images/flags/MF.SVG new file mode 100644 index 000000000..6305edc1c --- /dev/null +++ b/styles/images/flags/MF.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/MG.SVG b/styles/images/flags/MG.SVG new file mode 100644 index 000000000..5fa2d2440 --- /dev/null +++ b/styles/images/flags/MG.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/MH.SVG b/styles/images/flags/MH.SVG new file mode 100644 index 000000000..7b9f49075 --- /dev/null +++ b/styles/images/flags/MH.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/MK.SVG b/styles/images/flags/MK.SVG new file mode 100644 index 000000000..4f5cae77e --- /dev/null +++ b/styles/images/flags/MK.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/ML.SVG b/styles/images/flags/ML.SVG new file mode 100644 index 000000000..6f6b71695 --- /dev/null +++ b/styles/images/flags/ML.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/MM.SVG b/styles/images/flags/MM.SVG new file mode 100644 index 000000000..42b4dee2b --- /dev/null +++ b/styles/images/flags/MM.SVG @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/styles/images/flags/MN.SVG b/styles/images/flags/MN.SVG new file mode 100644 index 000000000..152c2fcb0 --- /dev/null +++ b/styles/images/flags/MN.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/MO.SVG b/styles/images/flags/MO.SVG new file mode 100644 index 000000000..d39985d05 --- /dev/null +++ b/styles/images/flags/MO.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/MP.SVG b/styles/images/flags/MP.SVG new file mode 100644 index 000000000..ff59ebf87 --- /dev/null +++ b/styles/images/flags/MP.SVG @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/MQ.SVG b/styles/images/flags/MQ.SVG new file mode 100644 index 000000000..b221951e3 --- /dev/null +++ b/styles/images/flags/MQ.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/MR.SVG b/styles/images/flags/MR.SVG new file mode 100644 index 000000000..7558234cb --- /dev/null +++ b/styles/images/flags/MR.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/MS.SVG b/styles/images/flags/MS.SVG new file mode 100644 index 000000000..faf07b07f --- /dev/null +++ b/styles/images/flags/MS.SVG @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/MT.SVG b/styles/images/flags/MT.SVG new file mode 100644 index 000000000..f0c8194bc --- /dev/null +++ b/styles/images/flags/MT.SVG @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/MU.SVG b/styles/images/flags/MU.SVG new file mode 100644 index 000000000..82d7a3bec --- /dev/null +++ b/styles/images/flags/MU.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/MV.SVG b/styles/images/flags/MV.SVG new file mode 100644 index 000000000..10450f984 --- /dev/null +++ b/styles/images/flags/MV.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/MW.SVG b/styles/images/flags/MW.SVG new file mode 100644 index 000000000..d83ddb217 --- /dev/null +++ b/styles/images/flags/MW.SVG @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/styles/images/flags/MX.SVG b/styles/images/flags/MX.SVG new file mode 100644 index 000000000..3a55cd7c2 --- /dev/null +++ b/styles/images/flags/MX.SVG @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/MY.SVG b/styles/images/flags/MY.SVG new file mode 100644 index 000000000..89576f69e --- /dev/null +++ b/styles/images/flags/MY.SVG @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/MZ.SVG b/styles/images/flags/MZ.SVG new file mode 100644 index 000000000..2ee6ec14b --- /dev/null +++ b/styles/images/flags/MZ.SVG @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/NA.SVG b/styles/images/flags/NA.SVG new file mode 100644 index 000000000..35b9f783e --- /dev/null +++ b/styles/images/flags/NA.SVG @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/NC.SVG b/styles/images/flags/NC.SVG new file mode 100644 index 000000000..068f0c69a --- /dev/null +++ b/styles/images/flags/NC.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/NE.SVG b/styles/images/flags/NE.SVG new file mode 100644 index 000000000..39a82b827 --- /dev/null +++ b/styles/images/flags/NE.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/NF.SVG b/styles/images/flags/NF.SVG new file mode 100644 index 000000000..c8b30938d --- /dev/null +++ b/styles/images/flags/NF.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/NG.SVG b/styles/images/flags/NG.SVG new file mode 100644 index 000000000..81eb35f78 --- /dev/null +++ b/styles/images/flags/NG.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/NI.SVG b/styles/images/flags/NI.SVG new file mode 100644 index 000000000..6dcdc9a80 --- /dev/null +++ b/styles/images/flags/NI.SVG @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/NL.SVG b/styles/images/flags/NL.SVG new file mode 100644 index 000000000..4faaf498e --- /dev/null +++ b/styles/images/flags/NL.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/NO.SVG b/styles/images/flags/NO.SVG new file mode 100644 index 000000000..a5f2a152a --- /dev/null +++ b/styles/images/flags/NO.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/NP.SVG b/styles/images/flags/NP.SVG new file mode 100644 index 000000000..8d71d106b --- /dev/null +++ b/styles/images/flags/NP.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/NR.SVG b/styles/images/flags/NR.SVG new file mode 100644 index 000000000..ff394c411 --- /dev/null +++ b/styles/images/flags/NR.SVG @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/styles/images/flags/NU.SVG b/styles/images/flags/NU.SVG new file mode 100644 index 000000000..4067bafff --- /dev/null +++ b/styles/images/flags/NU.SVG @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/styles/images/flags/NZ.SVG b/styles/images/flags/NZ.SVG new file mode 100644 index 000000000..935d8a749 --- /dev/null +++ b/styles/images/flags/NZ.SVG @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/OM.SVG b/styles/images/flags/OM.SVG new file mode 100644 index 000000000..c003f86e4 --- /dev/null +++ b/styles/images/flags/OM.SVG @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/PA.SVG b/styles/images/flags/PA.SVG new file mode 100644 index 000000000..8dc03bc61 --- /dev/null +++ b/styles/images/flags/PA.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/PC.SVG b/styles/images/flags/PC.SVG new file mode 100644 index 000000000..882197da6 --- /dev/null +++ b/styles/images/flags/PC.SVG @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/PE.SVG b/styles/images/flags/PE.SVG new file mode 100644 index 000000000..33e6cfd41 --- /dev/null +++ b/styles/images/flags/PE.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/PF.SVG b/styles/images/flags/PF.SVG new file mode 100644 index 000000000..e06b236e8 --- /dev/null +++ b/styles/images/flags/PF.SVG @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/PG.SVG b/styles/images/flags/PG.SVG new file mode 100644 index 000000000..237cb6eee --- /dev/null +++ b/styles/images/flags/PG.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/PH.SVG b/styles/images/flags/PH.SVG new file mode 100644 index 000000000..65489e1cb --- /dev/null +++ b/styles/images/flags/PH.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/PK.SVG b/styles/images/flags/PK.SVG new file mode 100644 index 000000000..491e58ab1 --- /dev/null +++ b/styles/images/flags/PK.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/PL.SVG b/styles/images/flags/PL.SVG new file mode 100644 index 000000000..0fa514524 --- /dev/null +++ b/styles/images/flags/PL.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/PM.SVG b/styles/images/flags/PM.SVG new file mode 100644 index 000000000..19a9330a3 --- /dev/null +++ b/styles/images/flags/PM.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/PN.SVG b/styles/images/flags/PN.SVG new file mode 100644 index 000000000..07958aca1 --- /dev/null +++ b/styles/images/flags/PN.SVG @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/PR.SVG b/styles/images/flags/PR.SVG new file mode 100644 index 000000000..ec51831dc --- /dev/null +++ b/styles/images/flags/PR.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/PS.SVG b/styles/images/flags/PS.SVG new file mode 100644 index 000000000..b33824a5d --- /dev/null +++ b/styles/images/flags/PS.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/PT.SVG b/styles/images/flags/PT.SVG new file mode 100644 index 000000000..445cf7f53 --- /dev/null +++ b/styles/images/flags/PT.SVG @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/PW.SVG b/styles/images/flags/PW.SVG new file mode 100644 index 000000000..9f89c5f14 --- /dev/null +++ b/styles/images/flags/PW.SVG @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/styles/images/flags/PY.SVG b/styles/images/flags/PY.SVG new file mode 100644 index 000000000..38e2051eb --- /dev/null +++ b/styles/images/flags/PY.SVG @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/QA.SVG b/styles/images/flags/QA.SVG new file mode 100644 index 000000000..901f3fa76 --- /dev/null +++ b/styles/images/flags/QA.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/RE.SVG b/styles/images/flags/RE.SVG new file mode 100644 index 000000000..64e788e01 --- /dev/null +++ b/styles/images/flags/RE.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/RO.SVG b/styles/images/flags/RO.SVG new file mode 100644 index 000000000..fda0f7bec --- /dev/null +++ b/styles/images/flags/RO.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/RS.SVG b/styles/images/flags/RS.SVG new file mode 100644 index 000000000..1fa989f8e --- /dev/null +++ b/styles/images/flags/RS.SVG @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/RU.SVG b/styles/images/flags/RU.SVG new file mode 100644 index 000000000..f4d27efc9 --- /dev/null +++ b/styles/images/flags/RU.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/RW.SVG b/styles/images/flags/RW.SVG new file mode 100644 index 000000000..06e26ae44 --- /dev/null +++ b/styles/images/flags/RW.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/SA.SVG b/styles/images/flags/SA.SVG new file mode 100644 index 000000000..c0a148663 --- /dev/null +++ b/styles/images/flags/SA.SVG @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SB.SVG b/styles/images/flags/SB.SVG new file mode 100644 index 000000000..6066f94cd --- /dev/null +++ b/styles/images/flags/SB.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/SC.SVG b/styles/images/flags/SC.SVG new file mode 100644 index 000000000..9a46b369b --- /dev/null +++ b/styles/images/flags/SC.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/SD.SVG b/styles/images/flags/SD.SVG new file mode 100644 index 000000000..12818b411 --- /dev/null +++ b/styles/images/flags/SD.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/SE.SVG b/styles/images/flags/SE.SVG new file mode 100644 index 000000000..8ba745aca --- /dev/null +++ b/styles/images/flags/SE.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/SG.SVG b/styles/images/flags/SG.SVG new file mode 100644 index 000000000..c4dd4ac9e --- /dev/null +++ b/styles/images/flags/SG.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/SH-AC.SVG b/styles/images/flags/SH-AC.SVG new file mode 100644 index 000000000..6aa90a461 --- /dev/null +++ b/styles/images/flags/SH-AC.SVG @@ -0,0 +1,689 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SH-HL.SVG b/styles/images/flags/SH-HL.SVG new file mode 100644 index 000000000..d74e783b4 --- /dev/null +++ b/styles/images/flags/SH-HL.SVG @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SH-TA.SVG b/styles/images/flags/SH-TA.SVG new file mode 100644 index 000000000..686ffdcc2 --- /dev/null +++ b/styles/images/flags/SH-TA.SVG @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SH.SVG b/styles/images/flags/SH.SVG new file mode 100644 index 000000000..7aba0aec8 --- /dev/null +++ b/styles/images/flags/SH.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/SI.SVG b/styles/images/flags/SI.SVG new file mode 100644 index 000000000..66a390dcd --- /dev/null +++ b/styles/images/flags/SI.SVG @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SJ.SVG b/styles/images/flags/SJ.SVG new file mode 100644 index 000000000..bb2799ce7 --- /dev/null +++ b/styles/images/flags/SJ.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/SK.SVG b/styles/images/flags/SK.SVG new file mode 100644 index 000000000..81476940e --- /dev/null +++ b/styles/images/flags/SK.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/SL.SVG b/styles/images/flags/SL.SVG new file mode 100644 index 000000000..a07baf75b --- /dev/null +++ b/styles/images/flags/SL.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/SM.SVG b/styles/images/flags/SM.SVG new file mode 100644 index 000000000..00e9286c4 --- /dev/null +++ b/styles/images/flags/SM.SVG @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SN.SVG b/styles/images/flags/SN.SVG new file mode 100644 index 000000000..7c0673d6d --- /dev/null +++ b/styles/images/flags/SN.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/SO.SVG b/styles/images/flags/SO.SVG new file mode 100644 index 000000000..a581ac63c --- /dev/null +++ b/styles/images/flags/SO.SVG @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/styles/images/flags/SR.SVG b/styles/images/flags/SR.SVG new file mode 100644 index 000000000..5e71c4002 --- /dev/null +++ b/styles/images/flags/SR.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/SS.SVG b/styles/images/flags/SS.SVG new file mode 100644 index 000000000..b257aa0b3 --- /dev/null +++ b/styles/images/flags/SS.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/ST.SVG b/styles/images/flags/ST.SVG new file mode 100644 index 000000000..1294bcb70 --- /dev/null +++ b/styles/images/flags/ST.SVG @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SU.SVG b/styles/images/flags/SU.SVG new file mode 100644 index 000000000..bca13faa8 --- /dev/null +++ b/styles/images/flags/SU.SVG @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/styles/images/flags/SV.SVG b/styles/images/flags/SV.SVG new file mode 100644 index 000000000..c811e912f --- /dev/null +++ b/styles/images/flags/SV.SVG @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SX.SVG b/styles/images/flags/SX.SVG new file mode 100644 index 000000000..e993092e9 --- /dev/null +++ b/styles/images/flags/SX.SVG @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/SY.SVG b/styles/images/flags/SY.SVG new file mode 100644 index 000000000..522555052 --- /dev/null +++ b/styles/images/flags/SY.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/SZ.SVG b/styles/images/flags/SZ.SVG new file mode 100644 index 000000000..294a2cc1a --- /dev/null +++ b/styles/images/flags/SZ.SVG @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/TC.SVG b/styles/images/flags/TC.SVG new file mode 100644 index 000000000..63f13c359 --- /dev/null +++ b/styles/images/flags/TC.SVG @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/TD.SVG b/styles/images/flags/TD.SVG new file mode 100644 index 000000000..fa3bd927c --- /dev/null +++ b/styles/images/flags/TD.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/TF.SVG b/styles/images/flags/TF.SVG new file mode 100644 index 000000000..fba233563 --- /dev/null +++ b/styles/images/flags/TF.SVG @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/styles/images/flags/TG.SVG b/styles/images/flags/TG.SVG new file mode 100644 index 000000000..c63a6d1a9 --- /dev/null +++ b/styles/images/flags/TG.SVG @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/styles/images/flags/TH.SVG b/styles/images/flags/TH.SVG new file mode 100644 index 000000000..1e93a61e9 --- /dev/null +++ b/styles/images/flags/TH.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/TJ.SVG b/styles/images/flags/TJ.SVG new file mode 100644 index 000000000..9fba246cd --- /dev/null +++ b/styles/images/flags/TJ.SVG @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/TK.SVG b/styles/images/flags/TK.SVG new file mode 100644 index 000000000..05d3e86ce --- /dev/null +++ b/styles/images/flags/TK.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/TL.SVG b/styles/images/flags/TL.SVG new file mode 100644 index 000000000..3d0701a2c --- /dev/null +++ b/styles/images/flags/TL.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/TM.SVG b/styles/images/flags/TM.SVG new file mode 100644 index 000000000..c71f9cbf1 --- /dev/null +++ b/styles/images/flags/TM.SVG @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/TN.SVG b/styles/images/flags/TN.SVG new file mode 100644 index 000000000..5735c1984 --- /dev/null +++ b/styles/images/flags/TN.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/TO.SVG b/styles/images/flags/TO.SVG new file mode 100644 index 000000000..d07233706 --- /dev/null +++ b/styles/images/flags/TO.SVG @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/styles/images/flags/TR.SVG b/styles/images/flags/TR.SVG new file mode 100644 index 000000000..b96da21f0 --- /dev/null +++ b/styles/images/flags/TR.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/TT.SVG b/styles/images/flags/TT.SVG new file mode 100644 index 000000000..bc24938cf --- /dev/null +++ b/styles/images/flags/TT.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/TV.SVG b/styles/images/flags/TV.SVG new file mode 100644 index 000000000..675210ec5 --- /dev/null +++ b/styles/images/flags/TV.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/TW.SVG b/styles/images/flags/TW.SVG new file mode 100644 index 000000000..57fd98b43 --- /dev/null +++ b/styles/images/flags/TW.SVG @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/TZ.SVG b/styles/images/flags/TZ.SVG new file mode 100644 index 000000000..a2cfbca42 --- /dev/null +++ b/styles/images/flags/TZ.SVG @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/styles/images/flags/UA.SVG b/styles/images/flags/UA.SVG new file mode 100644 index 000000000..a339eb1b9 --- /dev/null +++ b/styles/images/flags/UA.SVG @@ -0,0 +1,6 @@ + + + + + + diff --git a/styles/images/flags/UG.SVG b/styles/images/flags/UG.SVG new file mode 100644 index 000000000..737eb2ce1 --- /dev/null +++ b/styles/images/flags/UG.SVG @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/UM.SVG b/styles/images/flags/UM.SVG new file mode 100644 index 000000000..9e9eddaa4 --- /dev/null +++ b/styles/images/flags/UM.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/UN.SVG b/styles/images/flags/UN.SVG new file mode 100644 index 000000000..b20040701 --- /dev/null +++ b/styles/images/flags/UN.SVG @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/US.SVG b/styles/images/flags/US.SVG new file mode 100644 index 000000000..9cfd0c927 --- /dev/null +++ b/styles/images/flags/US.SVG @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/styles/images/flags/UY.SVG b/styles/images/flags/UY.SVG new file mode 100644 index 000000000..62c36f8e5 --- /dev/null +++ b/styles/images/flags/UY.SVG @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/UZ.SVG b/styles/images/flags/UZ.SVG new file mode 100644 index 000000000..0ccca1b1b --- /dev/null +++ b/styles/images/flags/UZ.SVG @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/VA.SVG b/styles/images/flags/VA.SVG new file mode 100644 index 000000000..87e0fbbdc --- /dev/null +++ b/styles/images/flags/VA.SVG @@ -0,0 +1,190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/VC.SVG b/styles/images/flags/VC.SVG new file mode 100644 index 000000000..f26c2d8da --- /dev/null +++ b/styles/images/flags/VC.SVG @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/styles/images/flags/VE.SVG b/styles/images/flags/VE.SVG new file mode 100644 index 000000000..314e7f5f7 --- /dev/null +++ b/styles/images/flags/VE.SVG @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/VG.SVG b/styles/images/flags/VG.SVG new file mode 100644 index 000000000..0ee90fb28 --- /dev/null +++ b/styles/images/flags/VG.SVG @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/VI.SVG b/styles/images/flags/VI.SVG new file mode 100644 index 000000000..427025779 --- /dev/null +++ b/styles/images/flags/VI.SVG @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/VN.SVG b/styles/images/flags/VN.SVG new file mode 100644 index 000000000..7e4bac8f4 --- /dev/null +++ b/styles/images/flags/VN.SVG @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/styles/images/flags/VU.SVG b/styles/images/flags/VU.SVG new file mode 100644 index 000000000..91e1236a0 --- /dev/null +++ b/styles/images/flags/VU.SVG @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/WF.SVG b/styles/images/flags/WF.SVG new file mode 100644 index 000000000..054c57df9 --- /dev/null +++ b/styles/images/flags/WF.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/WS.SVG b/styles/images/flags/WS.SVG new file mode 100644 index 000000000..0e758a7a9 --- /dev/null +++ b/styles/images/flags/WS.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/XK.SVG b/styles/images/flags/XK.SVG new file mode 100644 index 000000000..551e7a414 --- /dev/null +++ b/styles/images/flags/XK.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/XX.SVG b/styles/images/flags/XX.SVG new file mode 100644 index 000000000..9333be363 --- /dev/null +++ b/styles/images/flags/XX.SVG @@ -0,0 +1,4 @@ + + + + diff --git a/styles/images/flags/YE.SVG b/styles/images/flags/YE.SVG new file mode 100644 index 000000000..1c9e6d639 --- /dev/null +++ b/styles/images/flags/YE.SVG @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/images/flags/YT.SVG b/styles/images/flags/YT.SVG new file mode 100644 index 000000000..e7776b307 --- /dev/null +++ b/styles/images/flags/YT.SVG @@ -0,0 +1,5 @@ + + + + + diff --git a/styles/images/flags/ZA.SVG b/styles/images/flags/ZA.SVG new file mode 100644 index 000000000..d563adb90 --- /dev/null +++ b/styles/images/flags/ZA.SVG @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/ZM.SVG b/styles/images/flags/ZM.SVG new file mode 100644 index 000000000..13239f5e2 --- /dev/null +++ b/styles/images/flags/ZM.SVG @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/images/flags/ZW.SVG b/styles/images/flags/ZW.SVG new file mode 100644 index 000000000..dc4d1a7c1 --- /dev/null +++ b/styles/images/flags/ZW.SVG @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/templates/default/css/main_content.css b/styles/templates/default/css/main_content.css index ad0a53e97..995c22a1f 100644 --- a/styles/templates/default/css/main_content.css +++ b/styles/templates/default/css/main_content.css @@ -502,6 +502,12 @@ a.postLink:visited { text-align: center } +.poster-flag { + width: 32px; + height: 20px; + vertical-align: middle; +} + .poster_info .avatar { margin: 5px 0 4px; max-width: 100px; diff --git a/styles/templates/default/usercp_register.tpl b/styles/templates/default/usercp_register.tpl index eca2cc80c..8ed894d92 100644 --- a/styles/templates/default/usercp_register.tpl +++ b/styles/templates/default/usercp_register.tpl @@ -156,7 +156,7 @@ {L_LOCATION}: -
+

{L_LOCATION_FLAGS} {L_LIST}
diff --git a/viewtopic.php b/viewtopic.php index 66b066f4e..b20701099 100644 --- a/viewtopic.php +++ b/viewtopic.php @@ -692,7 +692,7 @@ for ($i = 0; $i < $total_posts; $i++) { 'POSTER_JOINED_DATE' => $poster_joined, 'POSTER_POSTS' => ($bb_cfg['show_poster_posts'] && $poster_posts) ? '' . $poster_posts . '' : '', - 'POSTER_FROM' => $bb_cfg['show_poster_from'] ? $poster_from : '', + 'POSTER_FROM' => $bb_cfg['show_poster_from'] ? render_flag($poster_from) : '', 'POSTER_BOT' => $poster_bot, 'POSTER_GUEST' => $poster_guest, 'POSTER_ID' => $poster_id,