diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..32f4276
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+dist/
+composer.lock
+phpunit.xml
+vendor
+.phpunit.result.cache
+.idea
+.original-repo
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..79fcdbf
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,7 @@
+# Changelog
+
+This changelog follows [the Keep a Changelog standard](https://keepachangelog.com).
+
+## 0.1.0 (TBC)
+
+Initial release.
\ No newline at end of file
diff --git a/LICENCE.md b/LICENCE.md
new file mode 100644
index 0000000..4dc110b
--- /dev/null
+++ b/LICENCE.md
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) Dries Vints
+
+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.
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..a086ec9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,97 @@
+
+
+
+
+# Blade Health Icons
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+A package to easily make use of [Health Icons](https://github.com/resolvetosavelives/healthicons) in your Laravel Blade views.
+
+For a full list of available icons see [the SVG directory](resources/svg) or preview them at [healthicons.org](https://healthicons.org).
+
+## Requirements
+
+- PHP 7.4 or higher
+- Laravel 8.0 or higher
+
+## Installation
+
+```bash
+composer require troccoli/blade-health-icons
+```
+
+## Blade Icons
+
+Blade Healthicons uses Blade Icons under the hood. Please refer to [the Blade Icons readme](https://github.com/blade-ui-kit/blade-icons) for additional functionality. We also recommend to [enable icon caching](https://github.com/blade-ui-kit/blade-icons#caching) with this library.
+
+## Configuration
+
+Blade Healthicons also offers the ability to use features from Blade Icons like default classes, default attributes, etc. If you'd like to configure these, publish the `blade-health-icons.php` config file:
+
+```bash
+php artisan vendor:publish --tag=blade-health-icons-config
+```
+
+## Usage
+
+Icons can be used as self-closing Blade components which will be compiled to SVG icons:
+
+```blade
+
+```
+
+You can also pass classes to your icon components:
+
+```blade
+
+```
+
+And even use inline styles:
+
+```blade
+
+```
+
+The solid icons can be referenced like this:
+
+```blade
+
+```
+
+### Raw SVG Icons
+
+If you want to use the raw SVG icons as assets, you can publish them using:
+
+```bash
+php artisan vendor:publish --tag=blade-health-icons --force
+```
+
+Then use them in your views like:
+
+```blade
+
+```
+
+## Changelog
+
+Check out the [CHANGELOG](CHANGELOG.md) in this repository for all the recent changes.
+
+## Maintainers
+
+Blade Healthicons is developed and maintained by [Giulio Troccoli-Allard](https://troccoli.it).
+
+## License
+
+Blade Healthicons is open-sourced software licensed under [the MIT license](LICENSE.md).
\ No newline at end of file
diff --git a/bin/compile.sh b/bin/compile.sh
new file mode 100755
index 0000000..e29c578
--- /dev/null
+++ b/bin/compile.sh
@@ -0,0 +1,35 @@
+#!/usr/bin/env bash
+
+set -e
+
+DIRECTORY=$(cd `dirname $0` && pwd)
+TEMP=$DIRECTORY/../.original-repo
+REPO=$TEMP/healthicons
+DIST=$REPO/public/icons/svg
+RESOURCES=$DIRECTORY/../resources/svg
+
+if [ -d $TEMP ]; then
+ rm -rf $TEMP
+ mkdir $TEMP
+fi
+
+echo "Cloning resolvetosavelives/healthicons repo"
+
+git clone -q https://github.com/resolvetosavelives/healthicons $REPO
+
+echo "Compiling outline icons..."
+
+for FILE in $DIST/outline/*/*; do
+ cp $FILE $RESOURCES/o-$(echo ${FILE##*/})
+done
+
+echo "Compiling filled icons..."
+
+for FILE in $DIST/filled/*/*; do
+ cp $FILE $RESOURCES/f-$(echo ${FILE##*/})
+done
+
+echo "Cleaning up"
+rm -rf $TEMP
+
+echo "All done!"
\ No newline at end of file
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..287afd0
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,43 @@
+{
+ "name": "troccoli/blade-health-icons",
+ "description": "A package to easily make use of Health Icons in your Laravel Blade views.",
+ "keywords": ["Blade", "Healthicons", "Laravel"],
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Giulio Troccoli-Allard",
+ "email": "giulio@troccoli.it"
+ }
+ ],
+ "require": {
+ "php": "^7.4|^8.0",
+ "blade-ui-kit/blade-icons": "^1.0",
+ "illuminate/support": "^8.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.0",
+ "orchestra/testbench": "^6.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Troccoli\\BladeHealthIcons\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Tests\\": "tests"
+ }
+ },
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Troccoli\\BladeHealthIcons\\BladeHealthIconsServiceProvider"
+ ]
+ }
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "minimum-stability": "dev",
+ "prefer-stable": true
+}
diff --git a/config/blade-health-icons.php b/config/blade-health-icons.php
new file mode 100644
index 0000000..b10a13b
--- /dev/null
+++ b/config/blade-health-icons.php
@@ -0,0 +1,57 @@
+ 'health-icons',
+
+ /*
+ |-----------------------------------------------------------------
+ | Fallback Icon
+ |-----------------------------------------------------------------
+ |
+ | This config option allows you to define a fallback
+ | icon when an icon in this set cannot be found.
+ |
+ */
+
+ 'fallback' => '',
+
+ /*
+ |-----------------------------------------------------------------
+ | Default Set Classes
+ |-----------------------------------------------------------------
+ |
+ | This config option allows you to define some classes which
+ | will be applied by default to all icons within this set.
+ |
+ */
+
+ 'class' => '',
+
+ /*
+ |-----------------------------------------------------------------
+ | Default Set Attributes
+ |-----------------------------------------------------------------
+ |
+ | This config option allows you to define some attributes which
+ | will be applied by default to all icons within this set.
+ |
+ */
+
+ 'attributes' => [
+ // 'width' => 50,
+ // 'height' => 50,
+ ],
+
+];
\ No newline at end of file
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 0000000..ba93417
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,17 @@
+
+
+
+
+ tests
+
+
+
+
+ src/
+
+
+
\ No newline at end of file
diff --git a/resources/svg/f-2g.svg b/resources/svg/f-2g.svg
new file mode 100644
index 0000000..c7c9323
--- /dev/null
+++ b/resources/svg/f-2g.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-3g.svg b/resources/svg/f-3g.svg
new file mode 100644
index 0000000..7dc154e
--- /dev/null
+++ b/resources/svg/f-3g.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-4x4.svg b/resources/svg/f-4x4.svg
new file mode 100644
index 0000000..45d0987
--- /dev/null
+++ b/resources/svg/f-4x4.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/f-agriculture.svg b/resources/svg/f-agriculture.svg
new file mode 100644
index 0000000..fc313b2
--- /dev/null
+++ b/resources/svg/f-agriculture.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-agriculture_worker.svg b/resources/svg/f-agriculture_worker.svg
new file mode 100644
index 0000000..42a8c37
--- /dev/null
+++ b/resources/svg/f-agriculture_worker.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-alert.svg b/resources/svg/f-alert.svg
new file mode 100644
index 0000000..76e2817
--- /dev/null
+++ b/resources/svg/f-alert.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-alert_circle.svg b/resources/svg/f-alert_circle.svg
new file mode 100644
index 0000000..3d00973
--- /dev/null
+++ b/resources/svg/f-alert_circle.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-alert_triangle.svg b/resources/svg/f-alert_triangle.svg
new file mode 100644
index 0000000..7b706b9
--- /dev/null
+++ b/resources/svg/f-alert_triangle.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-ambulance.svg b/resources/svg/f-ambulance.svg
new file mode 100644
index 0000000..6e7abba
--- /dev/null
+++ b/resources/svg/f-ambulance.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-ambulatory_clinic.svg b/resources/svg/f-ambulatory_clinic.svg
new file mode 100644
index 0000000..db650be
--- /dev/null
+++ b/resources/svg/f-ambulatory_clinic.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-ancv.svg b/resources/svg/f-ancv.svg
new file mode 100644
index 0000000..1062ee7
--- /dev/null
+++ b/resources/svg/f-ancv.svg
@@ -0,0 +1,16 @@
+
diff --git a/resources/svg/f-award_ribbon.svg b/resources/svg/f-award_ribbon.svg
new file mode 100644
index 0000000..def0d7a
--- /dev/null
+++ b/resources/svg/f-award_ribbon.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-award_trophy.svg b/resources/svg/f-award_trophy.svg
new file mode 100644
index 0000000..e7e77f6
--- /dev/null
+++ b/resources/svg/f-award_trophy.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-baby_female_0306m.svg b/resources/svg/f-baby_female_0306m.svg
new file mode 100644
index 0000000..5c926c9
--- /dev/null
+++ b/resources/svg/f-baby_female_0306m.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-baby_male_0203m.svg b/resources/svg/f-baby_male_0203m.svg
new file mode 100644
index 0000000..08a6684
--- /dev/null
+++ b/resources/svg/f-baby_male_0203m.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-baby_male_0306m.svg b/resources/svg/f-baby_male_0306m.svg
new file mode 100644
index 0000000..680a4a0
--- /dev/null
+++ b/resources/svg/f-baby_male_0306m.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-basic_motorcycle.svg b/resources/svg/f-basic_motorcycle.svg
new file mode 100644
index 0000000..27bd5ed
--- /dev/null
+++ b/resources/svg/f-basic_motorcycle.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/f-bike.svg b/resources/svg/f-bike.svg
new file mode 100644
index 0000000..e042b5b
--- /dev/null
+++ b/resources/svg/f-bike.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-bills.svg b/resources/svg/f-bills.svg
new file mode 100644
index 0000000..241a809
--- /dev/null
+++ b/resources/svg/f-bills.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blister_pills_oval_x1.svg b/resources/svg/f-blister_pills_oval_x1.svg
new file mode 100644
index 0000000..f742487
--- /dev/null
+++ b/resources/svg/f-blister_pills_oval_x1.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blister_pills_oval_x14.svg b/resources/svg/f-blister_pills_oval_x14.svg
new file mode 100644
index 0000000..895a08d
--- /dev/null
+++ b/resources/svg/f-blister_pills_oval_x14.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blister_pills_oval_x16.svg b/resources/svg/f-blister_pills_oval_x16.svg
new file mode 100644
index 0000000..571b954
--- /dev/null
+++ b/resources/svg/f-blister_pills_oval_x16.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blister_pills_oval_x4.svg b/resources/svg/f-blister_pills_oval_x4.svg
new file mode 100644
index 0000000..6adee37
--- /dev/null
+++ b/resources/svg/f-blister_pills_oval_x4.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blister_pills_round_x1.svg b/resources/svg/f-blister_pills_round_x1.svg
new file mode 100644
index 0000000..c152c2d
--- /dev/null
+++ b/resources/svg/f-blister_pills_round_x1.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blister_pills_round_x14.svg b/resources/svg/f-blister_pills_round_x14.svg
new file mode 100644
index 0000000..d2cd127
--- /dev/null
+++ b/resources/svg/f-blister_pills_round_x14.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blister_pills_round_x16.svg b/resources/svg/f-blister_pills_round_x16.svg
new file mode 100644
index 0000000..b5487f1
--- /dev/null
+++ b/resources/svg/f-blister_pills_round_x16.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blister_pills_round_x4.svg b/resources/svg/f-blister_pills_round_x4.svg
new file mode 100644
index 0000000..c3336c4
--- /dev/null
+++ b/resources/svg/f-blister_pills_round_x4.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blood_a_n.svg b/resources/svg/f-blood_a_n.svg
new file mode 100644
index 0000000..e2d9cb2
--- /dev/null
+++ b/resources/svg/f-blood_a_n.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blood_a_p.svg b/resources/svg/f-blood_a_p.svg
new file mode 100644
index 0000000..4a8ba01
--- /dev/null
+++ b/resources/svg/f-blood_a_p.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blood_ab_n.svg b/resources/svg/f-blood_ab_n.svg
new file mode 100644
index 0000000..6bcb3cf
--- /dev/null
+++ b/resources/svg/f-blood_ab_n.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-blood_ab_p.svg b/resources/svg/f-blood_ab_p.svg
new file mode 100644
index 0000000..ed2ecff
--- /dev/null
+++ b/resources/svg/f-blood_ab_p.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-blood_b_n.svg b/resources/svg/f-blood_b_n.svg
new file mode 100644
index 0000000..4d9e54d
--- /dev/null
+++ b/resources/svg/f-blood_b_n.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blood_b_p.svg b/resources/svg/f-blood_b_p.svg
new file mode 100644
index 0000000..4541c1e
--- /dev/null
+++ b/resources/svg/f-blood_b_p.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blood_o_n.svg b/resources/svg/f-blood_o_n.svg
new file mode 100644
index 0000000..ed8211c
--- /dev/null
+++ b/resources/svg/f-blood_o_n.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blood_o_p.svg b/resources/svg/f-blood_o_p.svg
new file mode 100644
index 0000000..01d9e38
--- /dev/null
+++ b/resources/svg/f-blood_o_p.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blood_pressure.svg b/resources/svg/f-blood_pressure.svg
new file mode 100644
index 0000000..5823647
--- /dev/null
+++ b/resources/svg/f-blood_pressure.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-blood_pressure_2.svg b/resources/svg/f-blood_pressure_2.svg
new file mode 100644
index 0000000..f68682e
--- /dev/null
+++ b/resources/svg/f-blood_pressure_2.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-blood_pressure_monitor.svg b/resources/svg/f-blood_pressure_monitor.svg
new file mode 100644
index 0000000..3e7e41d
--- /dev/null
+++ b/resources/svg/f-blood_pressure_monitor.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-blood_rh_n.svg b/resources/svg/f-blood_rh_n.svg
new file mode 100644
index 0000000..1bfe5b2
--- /dev/null
+++ b/resources/svg/f-blood_rh_n.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-blood_rh_p.svg b/resources/svg/f-blood_rh_p.svg
new file mode 100644
index 0000000..dbd695a
--- /dev/null
+++ b/resources/svg/f-blood_rh_p.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-boy_0105y.svg b/resources/svg/f-boy_0105y.svg
new file mode 100644
index 0000000..b6357ca
--- /dev/null
+++ b/resources/svg/f-boy_0105y.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-boy_1015y.svg b/resources/svg/f-boy_1015y.svg
new file mode 100644
index 0000000..af2311f
--- /dev/null
+++ b/resources/svg/f-boy_1015y.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-breeding_sites.svg b/resources/svg/f-breeding_sites.svg
new file mode 100644
index 0000000..5d9aa26
--- /dev/null
+++ b/resources/svg/f-breeding_sites.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/f-calendar.svg b/resources/svg/f-calendar.svg
new file mode 100644
index 0000000..8761264
--- /dev/null
+++ b/resources/svg/f-calendar.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/f-cardiogram.svg b/resources/svg/f-cardiogram.svg
new file mode 100644
index 0000000..e631f9d
--- /dev/null
+++ b/resources/svg/f-cardiogram.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-cardiogram_e.svg b/resources/svg/f-cardiogram_e.svg
new file mode 100644
index 0000000..4dd85b4
--- /dev/null
+++ b/resources/svg/f-cardiogram_e.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-cervical_cancer.svg b/resources/svg/f-cervical_cancer.svg
new file mode 100644
index 0000000..13614c4
--- /dev/null
+++ b/resources/svg/f-cervical_cancer.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-child_care.svg b/resources/svg/f-child_care.svg
new file mode 100644
index 0000000..4e4457b
--- /dev/null
+++ b/resources/svg/f-child_care.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-child_cognition.svg b/resources/svg/f-child_cognition.svg
new file mode 100644
index 0000000..d105073
--- /dev/null
+++ b/resources/svg/f-child_cognition.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-child_program.svg b/resources/svg/f-child_program.svg
new file mode 100644
index 0000000..c90641e
--- /dev/null
+++ b/resources/svg/f-child_program.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-chills.svg b/resources/svg/f-chills.svg
new file mode 100644
index 0000000..7a5a742
--- /dev/null
+++ b/resources/svg/f-chills.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-chills_fever.svg b/resources/svg/f-chills_fever.svg
new file mode 100644
index 0000000..f8d7230
--- /dev/null
+++ b/resources/svg/f-chills_fever.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-cholera.svg b/resources/svg/f-cholera.svg
new file mode 100644
index 0000000..664e71a
--- /dev/null
+++ b/resources/svg/f-cholera.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-church.svg b/resources/svg/f-church.svg
new file mode 100644
index 0000000..f0aedc9
--- /dev/null
+++ b/resources/svg/f-church.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-circle_large.svg b/resources/svg/f-circle_large.svg
new file mode 100644
index 0000000..129a648
--- /dev/null
+++ b/resources/svg/f-circle_large.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-circle_medium.svg b/resources/svg/f-circle_medium.svg
new file mode 100644
index 0000000..459a962
--- /dev/null
+++ b/resources/svg/f-circle_medium.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-circle_small.svg b/resources/svg/f-circle_small.svg
new file mode 100644
index 0000000..d7aff9d
--- /dev/null
+++ b/resources/svg/f-circle_small.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-city.svg b/resources/svg/f-city.svg
new file mode 100644
index 0000000..7e2570e
--- /dev/null
+++ b/resources/svg/f-city.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/f-city_worker.svg b/resources/svg/f-city_worker.svg
new file mode 100644
index 0000000..ac2b986
--- /dev/null
+++ b/resources/svg/f-city_worker.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-clean_hands.svg b/resources/svg/f-clean_hands.svg
new file mode 100644
index 0000000..e8cf7ed
--- /dev/null
+++ b/resources/svg/f-clean_hands.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-clinical_a.svg b/resources/svg/f-clinical_a.svg
new file mode 100644
index 0000000..1d9e769
--- /dev/null
+++ b/resources/svg/f-clinical_a.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-clinical_f.svg b/resources/svg/f-clinical_f.svg
new file mode 100644
index 0000000..a520dba
--- /dev/null
+++ b/resources/svg/f-clinical_f.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-clinical_fe.svg b/resources/svg/f-clinical_fe.svg
new file mode 100644
index 0000000..b9750a3
--- /dev/null
+++ b/resources/svg/f-clinical_fe.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-coins.svg b/resources/svg/f-coins.svg
new file mode 100644
index 0000000..5cb7ceb
--- /dev/null
+++ b/resources/svg/f-coins.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-cold_chain.svg b/resources/svg/f-cold_chain.svg
new file mode 100644
index 0000000..894ef3c
--- /dev/null
+++ b/resources/svg/f-cold_chain.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-communication.svg b/resources/svg/f-communication.svg
new file mode 100644
index 0000000..4e23a3e
--- /dev/null
+++ b/resources/svg/f-communication.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-cone_test_on_nets.svg b/resources/svg/f-cone_test_on_nets.svg
new file mode 100644
index 0000000..4d5cd52
--- /dev/null
+++ b/resources/svg/f-cone_test_on_nets.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-cone_test_on_walls.svg b/resources/svg/f-cone_test_on_walls.svg
new file mode 100644
index 0000000..d857c8a
--- /dev/null
+++ b/resources/svg/f-cone_test_on_walls.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-construction.svg b/resources/svg/f-construction.svg
new file mode 100644
index 0000000..aa6349b
--- /dev/null
+++ b/resources/svg/f-construction.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-construction_worker.svg b/resources/svg/f-construction_worker.svg
new file mode 100644
index 0000000..cdb74c9
--- /dev/null
+++ b/resources/svg/f-construction_worker.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-contact_support.svg b/resources/svg/f-contact_support.svg
new file mode 100644
index 0000000..a6d82e1
--- /dev/null
+++ b/resources/svg/f-contact_support.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-contraceptive_diaphragm.svg b/resources/svg/f-contraceptive_diaphragm.svg
new file mode 100644
index 0000000..bdd20bf
--- /dev/null
+++ b/resources/svg/f-contraceptive_diaphragm.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-contraceptive_injection.svg b/resources/svg/f-contraceptive_injection.svg
new file mode 100644
index 0000000..aeb32c7
--- /dev/null
+++ b/resources/svg/f-contraceptive_injection.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-contraceptive_patch.svg b/resources/svg/f-contraceptive_patch.svg
new file mode 100644
index 0000000..7760ecd
--- /dev/null
+++ b/resources/svg/f-contraceptive_patch.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-contraceptive_voucher.svg b/resources/svg/f-contraceptive_voucher.svg
new file mode 100644
index 0000000..32c322d
--- /dev/null
+++ b/resources/svg/f-contraceptive_voucher.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-copper_iud.svg b/resources/svg/f-copper_iud.svg
new file mode 100644
index 0000000..7a6161f
--- /dev/null
+++ b/resources/svg/f-copper_iud.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-coughing.svg b/resources/svg/f-coughing.svg
new file mode 100644
index 0000000..fd12944
--- /dev/null
+++ b/resources/svg/f-coughing.svg
@@ -0,0 +1,15 @@
+
diff --git a/resources/svg/f-credit_card.svg b/resources/svg/f-credit_card.svg
new file mode 100644
index 0000000..b176071
--- /dev/null
+++ b/resources/svg/f-credit_card.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-cross_country_motorcycle.svg b/resources/svg/f-cross_country_motorcycle.svg
new file mode 100644
index 0000000..107907f
--- /dev/null
+++ b/resources/svg/f-cross_country_motorcycle.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-death.svg b/resources/svg/f-death.svg
new file mode 100644
index 0000000..0b3454e
--- /dev/null
+++ b/resources/svg/f-death.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-death_alt.svg b/resources/svg/f-death_alt.svg
new file mode 100644
index 0000000..7815c69
--- /dev/null
+++ b/resources/svg/f-death_alt.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/f-death_alt2.svg b/resources/svg/f-death_alt2.svg
new file mode 100644
index 0000000..cb16cba
--- /dev/null
+++ b/resources/svg/f-death_alt2.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-default.svg b/resources/svg/f-default.svg
new file mode 100644
index 0000000..20a070f
--- /dev/null
+++ b/resources/svg/f-default.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-dhis2_logo.svg b/resources/svg/f-dhis2_logo.svg
new file mode 100644
index 0000000..5b4ed96
--- /dev/null
+++ b/resources/svg/f-dhis2_logo.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-diabetes.svg b/resources/svg/f-diabetes.svg
new file mode 100644
index 0000000..8b42443
--- /dev/null
+++ b/resources/svg/f-diabetes.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-diabetes_measure.svg b/resources/svg/f-diabetes_measure.svg
new file mode 100644
index 0000000..e134e0e
--- /dev/null
+++ b/resources/svg/f-diabetes_measure.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-diarrhea.svg b/resources/svg/f-diarrhea.svg
new file mode 100644
index 0000000..413de1c
--- /dev/null
+++ b/resources/svg/f-diarrhea.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-discriminating_concentration_bioassays.svg b/resources/svg/f-discriminating_concentration_bioassays.svg
new file mode 100644
index 0000000..7549ee2
--- /dev/null
+++ b/resources/svg/f-discriminating_concentration_bioassays.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-doctor.svg b/resources/svg/f-doctor.svg
new file mode 100644
index 0000000..f73ae66
--- /dev/null
+++ b/resources/svg/f-doctor.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-doctor_female.svg b/resources/svg/f-doctor_female.svg
new file mode 100644
index 0000000..f39252d
--- /dev/null
+++ b/resources/svg/f-doctor_female.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-doctor_male.svg b/resources/svg/f-doctor_male.svg
new file mode 100644
index 0000000..cc4512c
--- /dev/null
+++ b/resources/svg/f-doctor_male.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-domestic_worker.svg b/resources/svg/f-domestic_worker.svg
new file mode 100644
index 0000000..6e15f22
--- /dev/null
+++ b/resources/svg/f-domestic_worker.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-donkey.svg b/resources/svg/f-donkey.svg
new file mode 100644
index 0000000..131c723
--- /dev/null
+++ b/resources/svg/f-donkey.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-drone.svg b/resources/svg/f-drone.svg
new file mode 100644
index 0000000..fdf32a2
--- /dev/null
+++ b/resources/svg/f-drone.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/f-eco_care.svg b/resources/svg/f-eco_care.svg
new file mode 100644
index 0000000..858d4e3
--- /dev/null
+++ b/resources/svg/f-eco_care.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-elderly.svg b/resources/svg/f-elderly.svg
new file mode 100644
index 0000000..cb92819
--- /dev/null
+++ b/resources/svg/f-elderly.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-electricity.svg b/resources/svg/f-electricity.svg
new file mode 100644
index 0000000..ebc51a3
--- /dev/null
+++ b/resources/svg/f-electricity.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-emergency_post.svg b/resources/svg/f-emergency_post.svg
new file mode 100644
index 0000000..b2b2d43
--- /dev/null
+++ b/resources/svg/f-emergency_post.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-expectorate.svg b/resources/svg/f-expectorate.svg
new file mode 100644
index 0000000..ccfd8e1
--- /dev/null
+++ b/resources/svg/f-expectorate.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-factory_worker.svg b/resources/svg/f-factory_worker.svg
new file mode 100644
index 0000000..149e23c
--- /dev/null
+++ b/resources/svg/f-factory_worker.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-family_planning.svg b/resources/svg/f-family_planning.svg
new file mode 100644
index 0000000..4eda61d
--- /dev/null
+++ b/resources/svg/f-family_planning.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-female_and_male.svg b/resources/svg/f-female_and_male.svg
new file mode 100644
index 0000000..72d9c6f
--- /dev/null
+++ b/resources/svg/f-female_and_male.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-female_condom.svg b/resources/svg/f-female_condom.svg
new file mode 100644
index 0000000..e54eb97
--- /dev/null
+++ b/resources/svg/f-female_condom.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-female_sex_worker.svg b/resources/svg/f-female_sex_worker.svg
new file mode 100644
index 0000000..57d59b8
--- /dev/null
+++ b/resources/svg/f-female_sex_worker.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/f-fetus.svg b/resources/svg/f-fetus.svg
new file mode 100644
index 0000000..d924e89
--- /dev/null
+++ b/resources/svg/f-fetus.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/f-fever.svg b/resources/svg/f-fever.svg
new file mode 100644
index 0000000..d75329e
--- /dev/null
+++ b/resources/svg/f-fever.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-forest.svg b/resources/svg/f-forest.svg
new file mode 100644
index 0000000..314c0fe
--- /dev/null
+++ b/resources/svg/f-forest.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-forest_persons.svg b/resources/svg/f-forest_persons.svg
new file mode 100644
index 0000000..77783de
--- /dev/null
+++ b/resources/svg/f-forest_persons.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-forum.svg b/resources/svg/f-forum.svg
new file mode 100644
index 0000000..6b82a92
--- /dev/null
+++ b/resources/svg/f-forum.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-geo_location.svg b/resources/svg/f-geo_location.svg
new file mode 100644
index 0000000..7f38f8a
--- /dev/null
+++ b/resources/svg/f-geo_location.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-girl_0105y.svg b/resources/svg/f-girl_0105y.svg
new file mode 100644
index 0000000..67d9745
--- /dev/null
+++ b/resources/svg/f-girl_0105y.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-girl_1015y.svg b/resources/svg/f-girl_1015y.svg
new file mode 100644
index 0000000..2da51e9
--- /dev/null
+++ b/resources/svg/f-girl_1015y.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-group_discussion_meeting.svg b/resources/svg/f-group_discussion_meeting.svg
new file mode 100644
index 0000000..c7167a6
--- /dev/null
+++ b/resources/svg/f-group_discussion_meeting.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-group_discussion_meetingx3.svg b/resources/svg/f-group_discussion_meetingx3.svg
new file mode 100644
index 0000000..5362564
--- /dev/null
+++ b/resources/svg/f-group_discussion_meetingx3.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/f-happy.svg b/resources/svg/f-happy.svg
new file mode 100644
index 0000000..8d94b63
--- /dev/null
+++ b/resources/svg/f-happy.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-hazardous.svg b/resources/svg/f-hazardous.svg
new file mode 100644
index 0000000..56bb864
--- /dev/null
+++ b/resources/svg/f-hazardous.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-headache.svg b/resources/svg/f-headache.svg
new file mode 100644
index 0000000..63aa205
--- /dev/null
+++ b/resources/svg/f-headache.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-health_worker.svg b/resources/svg/f-health_worker.svg
new file mode 100644
index 0000000..d1ed6ee
--- /dev/null
+++ b/resources/svg/f-health_worker.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-health_worker_form.svg b/resources/svg/f-health_worker_form.svg
new file mode 100644
index 0000000..0494313
--- /dev/null
+++ b/resources/svg/f-health_worker_form.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-heart.svg b/resources/svg/f-heart.svg
new file mode 100644
index 0000000..3a54691
--- /dev/null
+++ b/resources/svg/f-heart.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-heart_cardiogram.svg b/resources/svg/f-heart_cardiogram.svg
new file mode 100644
index 0000000..4d72a50
--- /dev/null
+++ b/resources/svg/f-heart_cardiogram.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-helicopter.svg b/resources/svg/f-helicopter.svg
new file mode 100644
index 0000000..04789b0
--- /dev/null
+++ b/resources/svg/f-helicopter.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-high_bars.svg b/resources/svg/f-high_bars.svg
new file mode 100644
index 0000000..8fc7f7f
--- /dev/null
+++ b/resources/svg/f-high_bars.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-high_level.svg b/resources/svg/f-high_level.svg
new file mode 100644
index 0000000..6a118ce
--- /dev/null
+++ b/resources/svg/f-high_level.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/f-hiv_ind.svg b/resources/svg/f-hiv_ind.svg
new file mode 100644
index 0000000..239b7eb
--- /dev/null
+++ b/resources/svg/f-hiv_ind.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-hiv_neg.svg b/resources/svg/f-hiv_neg.svg
new file mode 100644
index 0000000..a5d639e
--- /dev/null
+++ b/resources/svg/f-hiv_neg.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-hiv_pos.svg b/resources/svg/f-hiv_pos.svg
new file mode 100644
index 0000000..841675c
--- /dev/null
+++ b/resources/svg/f-hiv_pos.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-hiv_self_test.svg b/resources/svg/f-hiv_self_test.svg
new file mode 100644
index 0000000..57b4918
--- /dev/null
+++ b/resources/svg/f-hiv_self_test.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-home.svg b/resources/svg/f-home.svg
new file mode 100644
index 0000000..a3981f0
--- /dev/null
+++ b/resources/svg/f-home.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-hormonal_ring.svg b/resources/svg/f-hormonal_ring.svg
new file mode 100644
index 0000000..6c1d43b
--- /dev/null
+++ b/resources/svg/f-hormonal_ring.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-hospital.svg b/resources/svg/f-hospital.svg
new file mode 100644
index 0000000..dc0ed0b
--- /dev/null
+++ b/resources/svg/f-hospital.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-hospitalized.svg b/resources/svg/f-hospitalized.svg
new file mode 100644
index 0000000..72c7e7f
--- /dev/null
+++ b/resources/svg/f-hospitalized.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/f-hot_meal.svg b/resources/svg/f-hot_meal.svg
new file mode 100644
index 0000000..28b98c1
--- /dev/null
+++ b/resources/svg/f-hot_meal.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-hpv.svg b/resources/svg/f-hpv.svg
new file mode 100644
index 0000000..65a67ee
--- /dev/null
+++ b/resources/svg/f-hpv.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/f-i_certificate_paper.svg b/resources/svg/f-i_certificate_paper.svg
new file mode 100644
index 0000000..877bcba
--- /dev/null
+++ b/resources/svg/f-i_certificate_paper.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-i_documents_accepted.svg b/resources/svg/f-i_documents_accepted.svg
new file mode 100644
index 0000000..4178f6f
--- /dev/null
+++ b/resources/svg/f-i_documents_accepted.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-i_documents_denied.svg b/resources/svg/f-i_documents_denied.svg
new file mode 100644
index 0000000..46ef5b6
--- /dev/null
+++ b/resources/svg/f-i_documents_denied.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-i_exam_multiple_choice.svg b/resources/svg/f-i_exam_multiple_choice.svg
new file mode 100644
index 0000000..612a795
--- /dev/null
+++ b/resources/svg/f-i_exam_multiple_choice.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-i_exam_qualification.svg b/resources/svg/f-i_exam_qualification.svg
new file mode 100644
index 0000000..6427500
--- /dev/null
+++ b/resources/svg/f-i_exam_qualification.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-i_groups_perspective_crowd.svg b/resources/svg/f-i_groups_perspective_crowd.svg
new file mode 100644
index 0000000..83c5cba
--- /dev/null
+++ b/resources/svg/f-i_groups_perspective_crowd.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-i_note_action.svg b/resources/svg/f-i_note_action.svg
new file mode 100644
index 0000000..e78fa00
--- /dev/null
+++ b/resources/svg/f-i_note_action.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-i_schedule_school_date_time.svg b/resources/svg/f-i_schedule_school_date_time.svg
new file mode 100644
index 0000000..00a2fe7
--- /dev/null
+++ b/resources/svg/f-i_schedule_school_date_time.svg
@@ -0,0 +1,15 @@
+
diff --git a/resources/svg/f-i_training_class.svg b/resources/svg/f-i_training_class.svg
new file mode 100644
index 0000000..30efbe8
--- /dev/null
+++ b/resources/svg/f-i_training_class.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-i_utensils.svg b/resources/svg/f-i_utensils.svg
new file mode 100644
index 0000000..9575807
--- /dev/null
+++ b/resources/svg/f-i_utensils.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-imm.svg b/resources/svg/f-imm.svg
new file mode 100644
index 0000000..cd01a66
--- /dev/null
+++ b/resources/svg/f-imm.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-implant.svg b/resources/svg/f-implant.svg
new file mode 100644
index 0000000..f34ede9
--- /dev/null
+++ b/resources/svg/f-implant.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-info.svg b/resources/svg/f-info.svg
new file mode 100644
index 0000000..4d4d5d8
--- /dev/null
+++ b/resources/svg/f-info.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-information_campaign.svg b/resources/svg/f-information_campaign.svg
new file mode 100644
index 0000000..a8ea585
--- /dev/null
+++ b/resources/svg/f-information_campaign.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-inpatient.svg b/resources/svg/f-inpatient.svg
new file mode 100644
index 0000000..e655478
--- /dev/null
+++ b/resources/svg/f-inpatient.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-insecticide_resistance.svg b/resources/svg/f-insecticide_resistance.svg
new file mode 100644
index 0000000..291edba
--- /dev/null
+++ b/resources/svg/f-insecticide_resistance.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-intensity_concentration_bioassays.svg b/resources/svg/f-intensity_concentration_bioassays.svg
new file mode 100644
index 0000000..73c53cf
--- /dev/null
+++ b/resources/svg/f-intensity_concentration_bioassays.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-iud.svg b/resources/svg/f-iud.svg
new file mode 100644
index 0000000..a9d6a7e
--- /dev/null
+++ b/resources/svg/f-iud.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-justice.svg b/resources/svg/f-justice.svg
new file mode 100644
index 0000000..f3bfad4
--- /dev/null
+++ b/resources/svg/f-justice.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-kidneys.svg b/resources/svg/f-kidneys.svg
new file mode 100644
index 0000000..9ba0d02
--- /dev/null
+++ b/resources/svg/f-kidneys.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-lactation.svg b/resources/svg/f-lactation.svg
new file mode 100644
index 0000000..dd2be0a
--- /dev/null
+++ b/resources/svg/f-lactation.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-letrina.svg b/resources/svg/f-letrina.svg
new file mode 100644
index 0000000..338b60d
--- /dev/null
+++ b/resources/svg/f-letrina.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-llin.svg b/resources/svg/f-llin.svg
new file mode 100644
index 0000000..e78cb49
--- /dev/null
+++ b/resources/svg/f-llin.svg
@@ -0,0 +1,17 @@
+
diff --git a/resources/svg/f-low_bars.svg b/resources/svg/f-low_bars.svg
new file mode 100644
index 0000000..2cc399b
--- /dev/null
+++ b/resources/svg/f-low_bars.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-low_level.svg b/resources/svg/f-low_level.svg
new file mode 100644
index 0000000..cfe8057
--- /dev/null
+++ b/resources/svg/f-low_level.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/f-lungs.svg b/resources/svg/f-lungs.svg
new file mode 100644
index 0000000..c40faaf
--- /dev/null
+++ b/resources/svg/f-lungs.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-machinery.svg b/resources/svg/f-machinery.svg
new file mode 100644
index 0000000..46107be
--- /dev/null
+++ b/resources/svg/f-machinery.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-magnifying_glass.svg b/resources/svg/f-magnifying_glass.svg
new file mode 100644
index 0000000..5880986
--- /dev/null
+++ b/resources/svg/f-magnifying_glass.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-malaria_mixed_microscope.svg b/resources/svg/f-malaria_mixed_microscope.svg
new file mode 100644
index 0000000..7419c5f
--- /dev/null
+++ b/resources/svg/f-malaria_mixed_microscope.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-malaria_negative_microscope.svg b/resources/svg/f-malaria_negative_microscope.svg
new file mode 100644
index 0000000..0896aec
--- /dev/null
+++ b/resources/svg/f-malaria_negative_microscope.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-malaria_outbreak.svg b/resources/svg/f-malaria_outbreak.svg
new file mode 100644
index 0000000..bdce20a
--- /dev/null
+++ b/resources/svg/f-malaria_outbreak.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-malaria_pf_microscope.svg b/resources/svg/f-malaria_pf_microscope.svg
new file mode 100644
index 0000000..5bea0a4
--- /dev/null
+++ b/resources/svg/f-malaria_pf_microscope.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-malaria_pv_microscope.svg b/resources/svg/f-malaria_pv_microscope.svg
new file mode 100644
index 0000000..e28658e
--- /dev/null
+++ b/resources/svg/f-malaria_pv_microscope.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-malaria_testing.svg b/resources/svg/f-malaria_testing.svg
new file mode 100644
index 0000000..7dd22af
--- /dev/null
+++ b/resources/svg/f-malaria_testing.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-male_and_female.svg b/resources/svg/f-male_and_female.svg
new file mode 100644
index 0000000..5f827a6
--- /dev/null
+++ b/resources/svg/f-male_and_female.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-male_condom.svg b/resources/svg/f-male_condom.svg
new file mode 100644
index 0000000..11fbe6e
--- /dev/null
+++ b/resources/svg/f-male_condom.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-male_sex_worker.svg b/resources/svg/f-male_sex_worker.svg
new file mode 100644
index 0000000..b68ae3f
--- /dev/null
+++ b/resources/svg/f-male_sex_worker.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/f-man.svg b/resources/svg/f-man.svg
new file mode 100644
index 0000000..e517061
--- /dev/null
+++ b/resources/svg/f-man.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-market_stall.svg b/resources/svg/f-market_stall.svg
new file mode 100644
index 0000000..eaab4d2
--- /dev/null
+++ b/resources/svg/f-market_stall.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-mask.svg b/resources/svg/f-mask.svg
new file mode 100644
index 0000000..af26686
--- /dev/null
+++ b/resources/svg/f-mask.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-measles.svg b/resources/svg/f-measles.svg
new file mode 100644
index 0000000..4b6563f
--- /dev/null
+++ b/resources/svg/f-measles.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-medicines.svg b/resources/svg/f-medicines.svg
new file mode 100644
index 0000000..d744b06
--- /dev/null
+++ b/resources/svg/f-medicines.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-medium_bars.svg b/resources/svg/f-medium_bars.svg
new file mode 100644
index 0000000..6703551
--- /dev/null
+++ b/resources/svg/f-medium_bars.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-medium_level.svg b/resources/svg/f-medium_level.svg
new file mode 100644
index 0000000..d82206f
--- /dev/null
+++ b/resources/svg/f-medium_level.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/f-megaphone.svg b/resources/svg/f-megaphone.svg
new file mode 100644
index 0000000..7879979
--- /dev/null
+++ b/resources/svg/f-megaphone.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-mental_disorders.svg b/resources/svg/f-mental_disorders.svg
new file mode 100644
index 0000000..5c3cf82
--- /dev/null
+++ b/resources/svg/f-mental_disorders.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-microscope.svg b/resources/svg/f-microscope.svg
new file mode 100644
index 0000000..c59432a
--- /dev/null
+++ b/resources/svg/f-microscope.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/f-miner_worker.svg b/resources/svg/f-miner_worker.svg
new file mode 100644
index 0000000..2a924b9
--- /dev/null
+++ b/resources/svg/f-miner_worker.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-mobile.svg b/resources/svg/f-mobile.svg
new file mode 100644
index 0000000..ad0c24d
--- /dev/null
+++ b/resources/svg/f-mobile.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-mobile_clinic.svg b/resources/svg/f-mobile_clinic.svg
new file mode 100644
index 0000000..1fd9723
--- /dev/null
+++ b/resources/svg/f-mobile_clinic.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-money_bag.svg b/resources/svg/f-money_bag.svg
new file mode 100644
index 0000000..b0f4335
--- /dev/null
+++ b/resources/svg/f-money_bag.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-mosquito.svg b/resources/svg/f-mosquito.svg
new file mode 100644
index 0000000..ed01e7d
--- /dev/null
+++ b/resources/svg/f-mosquito.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-mosquito_collection.svg b/resources/svg/f-mosquito_collection.svg
new file mode 100644
index 0000000..b398451
--- /dev/null
+++ b/resources/svg/f-mosquito_collection.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-msm.svg b/resources/svg/f-msm.svg
new file mode 100644
index 0000000..a9d12f2
--- /dev/null
+++ b/resources/svg/f-msm.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-nausea.svg b/resources/svg/f-nausea.svg
new file mode 100644
index 0000000..9f4d87f
--- /dev/null
+++ b/resources/svg/f-nausea.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-negative.svg b/resources/svg/f-negative.svg
new file mode 100644
index 0000000..53f9825
--- /dev/null
+++ b/resources/svg/f-negative.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-network_4g.svg b/resources/svg/f-network_4g.svg
new file mode 100644
index 0000000..6a21c76
--- /dev/null
+++ b/resources/svg/f-network_4g.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-network_5g.svg b/resources/svg/f-network_5g.svg
new file mode 100644
index 0000000..05390c2
--- /dev/null
+++ b/resources/svg/f-network_5g.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-neurology.svg b/resources/svg/f-neurology.svg
new file mode 100644
index 0000000..340bcc9
--- /dev/null
+++ b/resources/svg/f-neurology.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-neutral.svg b/resources/svg/f-neutral.svg
new file mode 100644
index 0000000..dedbc1b
--- /dev/null
+++ b/resources/svg/f-neutral.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-no.svg b/resources/svg/f-no.svg
new file mode 100644
index 0000000..2425d81
--- /dev/null
+++ b/resources/svg/f-no.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-not_ok.svg b/resources/svg/f-not_ok.svg
new file mode 100644
index 0000000..91cea34
--- /dev/null
+++ b/resources/svg/f-not_ok.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-nurse.svg b/resources/svg/f-nurse.svg
new file mode 100644
index 0000000..015a8b0
--- /dev/null
+++ b/resources/svg/f-nurse.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-nutrition.svg b/resources/svg/f-nutrition.svg
new file mode 100644
index 0000000..5ebbccd
--- /dev/null
+++ b/resources/svg/f-nutrition.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-observation.svg b/resources/svg/f-observation.svg
new file mode 100644
index 0000000..3a5c7b7
--- /dev/null
+++ b/resources/svg/f-observation.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/f-odontology.svg b/resources/svg/f-odontology.svg
new file mode 100644
index 0000000..c692258
--- /dev/null
+++ b/resources/svg/f-odontology.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-odontology_implant.svg b/resources/svg/f-odontology_implant.svg
new file mode 100644
index 0000000..0c968b2
--- /dev/null
+++ b/resources/svg/f-odontology_implant.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-officer.svg b/resources/svg/f-officer.svg
new file mode 100644
index 0000000..4de50d5
--- /dev/null
+++ b/resources/svg/f-officer.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-ok.svg b/resources/svg/f-ok.svg
new file mode 100644
index 0000000..6f55a78
--- /dev/null
+++ b/resources/svg/f-ok.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-old_man.svg b/resources/svg/f-old_man.svg
new file mode 100644
index 0000000..71eda01
--- /dev/null
+++ b/resources/svg/f-old_man.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-old_woman.svg b/resources/svg/f-old_woman.svg
new file mode 100644
index 0000000..4d9db20
--- /dev/null
+++ b/resources/svg/f-old_woman.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-oral_contraception_pillsx21.svg b/resources/svg/f-oral_contraception_pillsx21.svg
new file mode 100644
index 0000000..873f8ac
--- /dev/null
+++ b/resources/svg/f-oral_contraception_pillsx21.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-oral_contraception_pillsx28.svg b/resources/svg/f-oral_contraception_pillsx28.svg
new file mode 100644
index 0000000..23f9427
--- /dev/null
+++ b/resources/svg/f-oral_contraception_pillsx28.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-outbreak.svg b/resources/svg/f-outbreak.svg
new file mode 100644
index 0000000..fc76c81
--- /dev/null
+++ b/resources/svg/f-outbreak.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-outpatient.svg b/resources/svg/f-outpatient.svg
new file mode 100644
index 0000000..77732dc
--- /dev/null
+++ b/resources/svg/f-outpatient.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-overweight.svg b/resources/svg/f-overweight.svg
new file mode 100644
index 0000000..a9c71ef
--- /dev/null
+++ b/resources/svg/f-overweight.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-oxygen_tank.svg b/resources/svg/f-oxygen_tank.svg
new file mode 100644
index 0000000..607f1a2
--- /dev/null
+++ b/resources/svg/f-oxygen_tank.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-palm_branches_roof.svg b/resources/svg/f-palm_branches_roof.svg
new file mode 100644
index 0000000..3100bbf
--- /dev/null
+++ b/resources/svg/f-palm_branches_roof.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-pave_road.svg b/resources/svg/f-pave_road.svg
new file mode 100644
index 0000000..fe856da
--- /dev/null
+++ b/resources/svg/f-pave_road.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-peace.svg b/resources/svg/f-peace.svg
new file mode 100644
index 0000000..e76647e
--- /dev/null
+++ b/resources/svg/f-peace.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-people.svg b/resources/svg/f-people.svg
new file mode 100644
index 0000000..1270b21
--- /dev/null
+++ b/resources/svg/f-people.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-person.svg b/resources/svg/f-person.svg
new file mode 100644
index 0000000..ed2b7b5
--- /dev/null
+++ b/resources/svg/f-person.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-phone.svg b/resources/svg/f-phone.svg
new file mode 100644
index 0000000..f8288b5
--- /dev/null
+++ b/resources/svg/f-phone.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pill_1.svg b/resources/svg/f-pill_1.svg
new file mode 100644
index 0000000..2d432ab
--- /dev/null
+++ b/resources/svg/f-pill_1.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pills_2.svg b/resources/svg/f-pills_2.svg
new file mode 100644
index 0000000..9d32d4a
--- /dev/null
+++ b/resources/svg/f-pills_2.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-pills_3.svg b/resources/svg/f-pills_3.svg
new file mode 100644
index 0000000..5067210
--- /dev/null
+++ b/resources/svg/f-pills_3.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-pills_4.svg b/resources/svg/f-pills_4.svg
new file mode 100644
index 0000000..e5df654
--- /dev/null
+++ b/resources/svg/f-pills_4.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-plantation_worker.svg b/resources/svg/f-plantation_worker.svg
new file mode 100644
index 0000000..15e95f1
--- /dev/null
+++ b/resources/svg/f-plantation_worker.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pneumonia.svg b/resources/svg/f-pneumonia.svg
new file mode 100644
index 0000000..4ad98a9
--- /dev/null
+++ b/resources/svg/f-pneumonia.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-polygon.svg b/resources/svg/f-polygon.svg
new file mode 100644
index 0000000..9232818
--- /dev/null
+++ b/resources/svg/f-polygon.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/f-positive.svg b/resources/svg/f-positive.svg
new file mode 100644
index 0000000..8a7ca70
--- /dev/null
+++ b/resources/svg/f-positive.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-ppe_face_mask.svg b/resources/svg/f-ppe_face_mask.svg
new file mode 100644
index 0000000..c791294
--- /dev/null
+++ b/resources/svg/f-ppe_face_mask.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-ppe_gloves.svg b/resources/svg/f-ppe_gloves.svg
new file mode 100644
index 0000000..f430ffa
--- /dev/null
+++ b/resources/svg/f-ppe_gloves.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-ppe_gown.svg b/resources/svg/f-ppe_gown.svg
new file mode 100644
index 0000000..d1321ac
--- /dev/null
+++ b/resources/svg/f-ppe_gown.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-ppe_mask_n95.svg b/resources/svg/f-ppe_mask_n95.svg
new file mode 100644
index 0000000..9117e2c
--- /dev/null
+++ b/resources/svg/f-ppe_mask_n95.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pregnant.svg b/resources/svg/f-pregnant.svg
new file mode 100644
index 0000000..d71d4ff
--- /dev/null
+++ b/resources/svg/f-pregnant.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-pregnant_0812w.svg b/resources/svg/f-pregnant_0812w.svg
new file mode 100644
index 0000000..7e85ba5
--- /dev/null
+++ b/resources/svg/f-pregnant_0812w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pregnant_2426w.svg b/resources/svg/f-pregnant_2426w.svg
new file mode 100644
index 0000000..25b58e3
--- /dev/null
+++ b/resources/svg/f-pregnant_2426w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pregnant_32w.svg b/resources/svg/f-pregnant_32w.svg
new file mode 100644
index 0000000..8d42b61
--- /dev/null
+++ b/resources/svg/f-pregnant_32w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pregnant_3638w.svg b/resources/svg/f-pregnant_3638w.svg
new file mode 100644
index 0000000..830e66c
--- /dev/null
+++ b/resources/svg/f-pregnant_3638w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-proper_roof.svg b/resources/svg/f-proper_roof.svg
new file mode 100644
index 0000000..a3c3eb3
--- /dev/null
+++ b/resources/svg/f-proper_roof.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-provider_fst.svg b/resources/svg/f-provider_fst.svg
new file mode 100644
index 0000000..1230beb
--- /dev/null
+++ b/resources/svg/f-provider_fst.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-pwid.svg b/resources/svg/f-pwid.svg
new file mode 100644
index 0000000..2ddb646
--- /dev/null
+++ b/resources/svg/f-pwid.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-question.svg b/resources/svg/f-question.svg
new file mode 100644
index 0000000..9d53615
--- /dev/null
+++ b/resources/svg/f-question.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-question_circle.svg b/resources/svg/f-question_circle.svg
new file mode 100644
index 0000000..eb0e597
--- /dev/null
+++ b/resources/svg/f-question_circle.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-question_triangle.svg b/resources/svg/f-question_triangle.svg
new file mode 100644
index 0000000..fc55b46
--- /dev/null
+++ b/resources/svg/f-question_triangle.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-rdt_result.svg b/resources/svg/f-rdt_result.svg
new file mode 100644
index 0000000..6c68835
--- /dev/null
+++ b/resources/svg/f-rdt_result.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-rdt_result_invalid.svg b/resources/svg/f-rdt_result_invalid.svg
new file mode 100644
index 0000000..eb88d05
--- /dev/null
+++ b/resources/svg/f-rdt_result_invalid.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-rdt_result_mixed.svg b/resources/svg/f-rdt_result_mixed.svg
new file mode 100644
index 0000000..9816021
--- /dev/null
+++ b/resources/svg/f-rdt_result_mixed.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_mixed_invalid.svg b/resources/svg/f-rdt_result_mixed_invalid.svg
new file mode 100644
index 0000000..e9fa148
--- /dev/null
+++ b/resources/svg/f-rdt_result_mixed_invalid.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_mixed_invalid_rectangular.svg b/resources/svg/f-rdt_result_mixed_invalid_rectangular.svg
new file mode 100644
index 0000000..9fa05b7
--- /dev/null
+++ b/resources/svg/f-rdt_result_mixed_invalid_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_mixed_rectangular.svg b/resources/svg/f-rdt_result_mixed_rectangular.svg
new file mode 100644
index 0000000..6d98dbc
--- /dev/null
+++ b/resources/svg/f-rdt_result_mixed_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_neg.svg b/resources/svg/f-rdt_result_neg.svg
new file mode 100644
index 0000000..e1fb606
--- /dev/null
+++ b/resources/svg/f-rdt_result_neg.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_neg_invalid.svg b/resources/svg/f-rdt_result_neg_invalid.svg
new file mode 100644
index 0000000..a14540b
--- /dev/null
+++ b/resources/svg/f-rdt_result_neg_invalid.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_neg_invalid_rectangular.svg b/resources/svg/f-rdt_result_neg_invalid_rectangular.svg
new file mode 100644
index 0000000..d6a3ddd
--- /dev/null
+++ b/resources/svg/f-rdt_result_neg_invalid_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_neg_rectangular.svg b/resources/svg/f-rdt_result_neg_rectangular.svg
new file mode 100644
index 0000000..e28929e
--- /dev/null
+++ b/resources/svg/f-rdt_result_neg_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_no_test.svg b/resources/svg/f-rdt_result_no_test.svg
new file mode 100644
index 0000000..4c4d40b
--- /dev/null
+++ b/resources/svg/f-rdt_result_no_test.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-rdt_result_out_stock.svg b/resources/svg/f-rdt_result_out_stock.svg
new file mode 100644
index 0000000..7c71e4e
--- /dev/null
+++ b/resources/svg/f-rdt_result_out_stock.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-rdt_result_pf_invalid.svg b/resources/svg/f-rdt_result_pf_invalid.svg
new file mode 100644
index 0000000..78790b8
--- /dev/null
+++ b/resources/svg/f-rdt_result_pf_invalid.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_pf_invalid_rectangular.svg b/resources/svg/f-rdt_result_pf_invalid_rectangular.svg
new file mode 100644
index 0000000..df92d27
--- /dev/null
+++ b/resources/svg/f-rdt_result_pf_invalid_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_pf_rectangular.svg b/resources/svg/f-rdt_result_pf_rectangular.svg
new file mode 100644
index 0000000..9b8dd9b
--- /dev/null
+++ b/resources/svg/f-rdt_result_pf_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_positive.svg b/resources/svg/f-rdt_result_positive.svg
new file mode 100644
index 0000000..c7f4f84
--- /dev/null
+++ b/resources/svg/f-rdt_result_positive.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-rdt_result_pv.svg b/resources/svg/f-rdt_result_pv.svg
new file mode 100644
index 0000000..6c75ab4
--- /dev/null
+++ b/resources/svg/f-rdt_result_pv.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_pv_invalid_rectangular.svg b/resources/svg/f-rdt_result_pv_invalid_rectangular.svg
new file mode 100644
index 0000000..c8a296d
--- /dev/null
+++ b/resources/svg/f-rdt_result_pv_invalid_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-rdt_result_pv_rectangular.svg b/resources/svg/f-rdt_result_pv_rectangular.svg
new file mode 100644
index 0000000..0adba33
--- /dev/null
+++ b/resources/svg/f-rdt_result_pv_rectangular.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/f-referral.svg b/resources/svg/f-referral.svg
new file mode 100644
index 0000000..beb66f4
--- /dev/null
+++ b/resources/svg/f-referral.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-refused.svg b/resources/svg/f-refused.svg
new file mode 100644
index 0000000..81a08f1
--- /dev/null
+++ b/resources/svg/f-refused.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-ribbon.svg b/resources/svg/f-ribbon.svg
new file mode 100644
index 0000000..c5dbfed
--- /dev/null
+++ b/resources/svg/f-ribbon.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-rmnh.svg b/resources/svg/f-rmnh.svg
new file mode 100644
index 0000000..69b00fc
--- /dev/null
+++ b/resources/svg/f-rmnh.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-running_water.svg b/resources/svg/f-running_water.svg
new file mode 100644
index 0000000..3d2c2d5
--- /dev/null
+++ b/resources/svg/f-running_water.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-rural_post.svg b/resources/svg/f-rural_post.svg
new file mode 100644
index 0000000..b26da6e
--- /dev/null
+++ b/resources/svg/f-rural_post.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-sad.svg b/resources/svg/f-sad.svg
new file mode 100644
index 0000000..5a19341
--- /dev/null
+++ b/resources/svg/f-sad.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-sanitizer.svg b/resources/svg/f-sanitizer.svg
new file mode 100644
index 0000000..52f934d
--- /dev/null
+++ b/resources/svg/f-sanitizer.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-sayana_press.svg b/resources/svg/f-sayana_press.svg
new file mode 100644
index 0000000..bc1e077
--- /dev/null
+++ b/resources/svg/f-sayana_press.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-security_worker.svg b/resources/svg/f-security_worker.svg
new file mode 100644
index 0000000..f126d70
--- /dev/null
+++ b/resources/svg/f-security_worker.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-sexual_reproductive_health.svg b/resources/svg/f-sexual_reproductive_health.svg
new file mode 100644
index 0000000..5fc4ef9
--- /dev/null
+++ b/resources/svg/f-sexual_reproductive_health.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-small_plane.svg b/resources/svg/f-small_plane.svg
new file mode 100644
index 0000000..b844a17
--- /dev/null
+++ b/resources/svg/f-small_plane.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-social_distancing.svg b/resources/svg/f-social_distancing.svg
new file mode 100644
index 0000000..c799d80
--- /dev/null
+++ b/resources/svg/f-social_distancing.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-spraying.svg b/resources/svg/f-spraying.svg
new file mode 100644
index 0000000..5d118a2
--- /dev/null
+++ b/resources/svg/f-spraying.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-square_large.svg b/resources/svg/f-square_large.svg
new file mode 100644
index 0000000..985bc13
--- /dev/null
+++ b/resources/svg/f-square_large.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-square_medium.svg b/resources/svg/f-square_medium.svg
new file mode 100644
index 0000000..9f8ee37
--- /dev/null
+++ b/resources/svg/f-square_medium.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-square_small.svg b/resources/svg/f-square_small.svg
new file mode 100644
index 0000000..ce548a6
--- /dev/null
+++ b/resources/svg/f-square_small.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-star_large.svg b/resources/svg/f-star_large.svg
new file mode 100644
index 0000000..7b74c86
--- /dev/null
+++ b/resources/svg/f-star_large.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-star_medium.svg b/resources/svg/f-star_medium.svg
new file mode 100644
index 0000000..2016f7f
--- /dev/null
+++ b/resources/svg/f-star_medium.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-star_small.svg b/resources/svg/f-star_small.svg
new file mode 100644
index 0000000..c9032c0
--- /dev/null
+++ b/resources/svg/f-star_small.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-stethoscope.svg b/resources/svg/f-stethoscope.svg
new file mode 100644
index 0000000..b472650
--- /dev/null
+++ b/resources/svg/f-stethoscope.svg
@@ -0,0 +1,15 @@
+
diff --git a/resources/svg/f-sti.svg b/resources/svg/f-sti.svg
new file mode 100644
index 0000000..933e8c4
--- /dev/null
+++ b/resources/svg/f-sti.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-stock_out.svg b/resources/svg/f-stock_out.svg
new file mode 100644
index 0000000..af1b7fb
--- /dev/null
+++ b/resources/svg/f-stock_out.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-stop.svg b/resources/svg/f-stop.svg
new file mode 100644
index 0000000..b964593
--- /dev/null
+++ b/resources/svg/f-stop.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-surgical_sterilization.svg b/resources/svg/f-surgical_sterilization.svg
new file mode 100644
index 0000000..fa687ce
--- /dev/null
+++ b/resources/svg/f-surgical_sterilization.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-sweating.svg b/resources/svg/f-sweating.svg
new file mode 100644
index 0000000..475ff33
--- /dev/null
+++ b/resources/svg/f-sweating.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-symptom.svg b/resources/svg/f-symptom.svg
new file mode 100644
index 0000000..6cb6579
--- /dev/null
+++ b/resources/svg/f-symptom.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-synergist_insecticide_bioassays.svg b/resources/svg/f-synergist_insecticide_bioassays.svg
new file mode 100644
index 0000000..7761440
--- /dev/null
+++ b/resources/svg/f-synergist_insecticide_bioassays.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/f-syringe.svg b/resources/svg/f-syringe.svg
new file mode 100644
index 0000000..c15621d
--- /dev/null
+++ b/resources/svg/f-syringe.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/f-tac.svg b/resources/svg/f-tac.svg
new file mode 100644
index 0000000..2a8cf87
--- /dev/null
+++ b/resources/svg/f-tac.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-tb.svg b/resources/svg/f-tb.svg
new file mode 100644
index 0000000..b8a7c41
--- /dev/null
+++ b/resources/svg/f-tb.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-thermometer.svg b/resources/svg/f-thermometer.svg
new file mode 100644
index 0000000..15916c2
--- /dev/null
+++ b/resources/svg/f-thermometer.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-transgender.svg b/resources/svg/f-transgender.svg
new file mode 100644
index 0000000..6a98c6e
--- /dev/null
+++ b/resources/svg/f-transgender.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/f-traumatism.svg b/resources/svg/f-traumatism.svg
new file mode 100644
index 0000000..4e444e3
--- /dev/null
+++ b/resources/svg/f-traumatism.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/f-travel.svg b/resources/svg/f-travel.svg
new file mode 100644
index 0000000..5f46d87
--- /dev/null
+++ b/resources/svg/f-travel.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-treated_water.svg b/resources/svg/f-treated_water.svg
new file mode 100644
index 0000000..2fd9a77
--- /dev/null
+++ b/resources/svg/f-treated_water.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-triangle_large.svg b/resources/svg/f-triangle_large.svg
new file mode 100644
index 0000000..46f6157
--- /dev/null
+++ b/resources/svg/f-triangle_large.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-triangle_medium.svg b/resources/svg/f-triangle_medium.svg
new file mode 100644
index 0000000..cb3b21c
--- /dev/null
+++ b/resources/svg/f-triangle_medium.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-triangle_small.svg b/resources/svg/f-triangle_small.svg
new file mode 100644
index 0000000..5f1964a
--- /dev/null
+++ b/resources/svg/f-triangle_small.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-truck_driver.svg b/resources/svg/f-truck_driver.svg
new file mode 100644
index 0000000..5ae5f81
--- /dev/null
+++ b/resources/svg/f-truck_driver.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-un_pave_road.svg b/resources/svg/f-un_pave_road.svg
new file mode 100644
index 0000000..dcb47f3
--- /dev/null
+++ b/resources/svg/f-un_pave_road.svg
@@ -0,0 +1,25 @@
+
diff --git a/resources/svg/f-underweight.svg b/resources/svg/f-underweight.svg
new file mode 100644
index 0000000..fe0564b
--- /dev/null
+++ b/resources/svg/f-underweight.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-vespa_motorcycle.svg b/resources/svg/f-vespa_motorcycle.svg
new file mode 100644
index 0000000..8aaee28
--- /dev/null
+++ b/resources/svg/f-vespa_motorcycle.svg
@@ -0,0 +1,19 @@
+
diff --git a/resources/svg/f-vih.svg b/resources/svg/f-vih.svg
new file mode 100644
index 0000000..dcaa71e
--- /dev/null
+++ b/resources/svg/f-vih.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/f-virus.svg b/resources/svg/f-virus.svg
new file mode 100644
index 0000000..93ac645
--- /dev/null
+++ b/resources/svg/f-virus.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-vomiting.svg b/resources/svg/f-vomiting.svg
new file mode 100644
index 0000000..6822738
--- /dev/null
+++ b/resources/svg/f-vomiting.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/f-war.svg b/resources/svg/f-war.svg
new file mode 100644
index 0000000..3166c3f
--- /dev/null
+++ b/resources/svg/f-war.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/f-wash_hands.svg b/resources/svg/f-wash_hands.svg
new file mode 100644
index 0000000..c28506a
--- /dev/null
+++ b/resources/svg/f-wash_hands.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/f-water_sanitation.svg b/resources/svg/f-water_sanitation.svg
new file mode 100644
index 0000000..0aac68e
--- /dev/null
+++ b/resources/svg/f-water_sanitation.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/f-water_treatment.svg b/resources/svg/f-water_treatment.svg
new file mode 100644
index 0000000..6651672
--- /dev/null
+++ b/resources/svg/f-water_treatment.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-weight.svg b/resources/svg/f-weight.svg
new file mode 100644
index 0000000..303ec92
--- /dev/null
+++ b/resources/svg/f-weight.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-wold_care.svg b/resources/svg/f-wold_care.svg
new file mode 100644
index 0000000..a605186
--- /dev/null
+++ b/resources/svg/f-wold_care.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-woman.svg b/resources/svg/f-woman.svg
new file mode 100644
index 0000000..bb71286
--- /dev/null
+++ b/resources/svg/f-woman.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/f-yes.svg b/resources/svg/f-yes.svg
new file mode 100644
index 0000000..bf9f24a
--- /dev/null
+++ b/resources/svg/f-yes.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/f-young_people.svg b/resources/svg/f-young_people.svg
new file mode 100644
index 0000000..a29978e
--- /dev/null
+++ b/resources/svg/f-young_people.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-2g.svg b/resources/svg/o-2g.svg
new file mode 100644
index 0000000..28c1614
--- /dev/null
+++ b/resources/svg/o-2g.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-3g.svg b/resources/svg/o-3g.svg
new file mode 100644
index 0000000..0bd47af
--- /dev/null
+++ b/resources/svg/o-3g.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-4x4.svg b/resources/svg/o-4x4.svg
new file mode 100644
index 0000000..a1e9ddf
--- /dev/null
+++ b/resources/svg/o-4x4.svg
@@ -0,0 +1,16 @@
+
diff --git a/resources/svg/o-agriculture.svg b/resources/svg/o-agriculture.svg
new file mode 100644
index 0000000..08923dc
--- /dev/null
+++ b/resources/svg/o-agriculture.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-agriculture_worker.svg b/resources/svg/o-agriculture_worker.svg
new file mode 100644
index 0000000..9eca721
--- /dev/null
+++ b/resources/svg/o-agriculture_worker.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-alert.svg b/resources/svg/o-alert.svg
new file mode 100644
index 0000000..4ed6ee8
--- /dev/null
+++ b/resources/svg/o-alert.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-alert_circle.svg b/resources/svg/o-alert_circle.svg
new file mode 100644
index 0000000..abbb56e
--- /dev/null
+++ b/resources/svg/o-alert_circle.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-alert_triangle.svg b/resources/svg/o-alert_triangle.svg
new file mode 100644
index 0000000..03e3f2b
--- /dev/null
+++ b/resources/svg/o-alert_triangle.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-ambulance.svg b/resources/svg/o-ambulance.svg
new file mode 100644
index 0000000..390f3ab
--- /dev/null
+++ b/resources/svg/o-ambulance.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-ambulatory_clinic.svg b/resources/svg/o-ambulatory_clinic.svg
new file mode 100644
index 0000000..dce59e2
--- /dev/null
+++ b/resources/svg/o-ambulatory_clinic.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-ancv.svg b/resources/svg/o-ancv.svg
new file mode 100644
index 0000000..5b474e2
--- /dev/null
+++ b/resources/svg/o-ancv.svg
@@ -0,0 +1,16 @@
+
diff --git a/resources/svg/o-award_ribbon.svg b/resources/svg/o-award_ribbon.svg
new file mode 100644
index 0000000..6185b4e
--- /dev/null
+++ b/resources/svg/o-award_ribbon.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-award_trophy.svg b/resources/svg/o-award_trophy.svg
new file mode 100644
index 0000000..cae6af6
--- /dev/null
+++ b/resources/svg/o-award_trophy.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-baby_female_0306m.svg b/resources/svg/o-baby_female_0306m.svg
new file mode 100644
index 0000000..d59baf3
--- /dev/null
+++ b/resources/svg/o-baby_female_0306m.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-baby_male_0203m.svg b/resources/svg/o-baby_male_0203m.svg
new file mode 100644
index 0000000..a5ed5df
--- /dev/null
+++ b/resources/svg/o-baby_male_0203m.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-baby_male_0306m.svg b/resources/svg/o-baby_male_0306m.svg
new file mode 100644
index 0000000..468c1dd
--- /dev/null
+++ b/resources/svg/o-baby_male_0306m.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-basic_motorcycle.svg b/resources/svg/o-basic_motorcycle.svg
new file mode 100644
index 0000000..52acc92
--- /dev/null
+++ b/resources/svg/o-basic_motorcycle.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-bike.svg b/resources/svg/o-bike.svg
new file mode 100644
index 0000000..e042b5b
--- /dev/null
+++ b/resources/svg/o-bike.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-bills.svg b/resources/svg/o-bills.svg
new file mode 100644
index 0000000..3957fcb
--- /dev/null
+++ b/resources/svg/o-bills.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-blister_pills_oval_x1.svg b/resources/svg/o-blister_pills_oval_x1.svg
new file mode 100644
index 0000000..44ba36a
--- /dev/null
+++ b/resources/svg/o-blister_pills_oval_x1.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-blister_pills_oval_x14.svg b/resources/svg/o-blister_pills_oval_x14.svg
new file mode 100644
index 0000000..2e6cfc9
--- /dev/null
+++ b/resources/svg/o-blister_pills_oval_x14.svg
@@ -0,0 +1,31 @@
+
diff --git a/resources/svg/o-blister_pills_oval_x16.svg b/resources/svg/o-blister_pills_oval_x16.svg
new file mode 100644
index 0000000..7c46089
--- /dev/null
+++ b/resources/svg/o-blister_pills_oval_x16.svg
@@ -0,0 +1,25 @@
+
diff --git a/resources/svg/o-blister_pills_oval_x4.svg b/resources/svg/o-blister_pills_oval_x4.svg
new file mode 100644
index 0000000..25e6334
--- /dev/null
+++ b/resources/svg/o-blister_pills_oval_x4.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-blister_pills_round_x1.svg b/resources/svg/o-blister_pills_round_x1.svg
new file mode 100644
index 0000000..157341c
--- /dev/null
+++ b/resources/svg/o-blister_pills_round_x1.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-blister_pills_round_x14.svg b/resources/svg/o-blister_pills_round_x14.svg
new file mode 100644
index 0000000..727b6d3
--- /dev/null
+++ b/resources/svg/o-blister_pills_round_x14.svg
@@ -0,0 +1,31 @@
+
diff --git a/resources/svg/o-blister_pills_round_x16.svg b/resources/svg/o-blister_pills_round_x16.svg
new file mode 100644
index 0000000..271a94b
--- /dev/null
+++ b/resources/svg/o-blister_pills_round_x16.svg
@@ -0,0 +1,25 @@
+
diff --git a/resources/svg/o-blister_pills_round_x4.svg b/resources/svg/o-blister_pills_round_x4.svg
new file mode 100644
index 0000000..c975707
--- /dev/null
+++ b/resources/svg/o-blister_pills_round_x4.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-blood_a_n.svg b/resources/svg/o-blood_a_n.svg
new file mode 100644
index 0000000..625c46e
--- /dev/null
+++ b/resources/svg/o-blood_a_n.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-blood_a_p.svg b/resources/svg/o-blood_a_p.svg
new file mode 100644
index 0000000..0b5b626
--- /dev/null
+++ b/resources/svg/o-blood_a_p.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-blood_ab_n.svg b/resources/svg/o-blood_ab_n.svg
new file mode 100644
index 0000000..939d8cc
--- /dev/null
+++ b/resources/svg/o-blood_ab_n.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-blood_ab_p.svg b/resources/svg/o-blood_ab_p.svg
new file mode 100644
index 0000000..9be9970
--- /dev/null
+++ b/resources/svg/o-blood_ab_p.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-blood_b_n.svg b/resources/svg/o-blood_b_n.svg
new file mode 100644
index 0000000..966c4cf
--- /dev/null
+++ b/resources/svg/o-blood_b_n.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-blood_b_p.svg b/resources/svg/o-blood_b_p.svg
new file mode 100644
index 0000000..dddafc6
--- /dev/null
+++ b/resources/svg/o-blood_b_p.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-blood_o_n.svg b/resources/svg/o-blood_o_n.svg
new file mode 100644
index 0000000..af90314
--- /dev/null
+++ b/resources/svg/o-blood_o_n.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-blood_o_p.svg b/resources/svg/o-blood_o_p.svg
new file mode 100644
index 0000000..14ae18f
--- /dev/null
+++ b/resources/svg/o-blood_o_p.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-blood_pressure.svg b/resources/svg/o-blood_pressure.svg
new file mode 100644
index 0000000..5ef5206
--- /dev/null
+++ b/resources/svg/o-blood_pressure.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-blood_pressure_2.svg b/resources/svg/o-blood_pressure_2.svg
new file mode 100644
index 0000000..26e288a
--- /dev/null
+++ b/resources/svg/o-blood_pressure_2.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-blood_pressure_monitor.svg b/resources/svg/o-blood_pressure_monitor.svg
new file mode 100644
index 0000000..a73a1f3
--- /dev/null
+++ b/resources/svg/o-blood_pressure_monitor.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-blood_rh_n.svg b/resources/svg/o-blood_rh_n.svg
new file mode 100644
index 0000000..a7e7230
--- /dev/null
+++ b/resources/svg/o-blood_rh_n.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-blood_rh_p.svg b/resources/svg/o-blood_rh_p.svg
new file mode 100644
index 0000000..70c57de
--- /dev/null
+++ b/resources/svg/o-blood_rh_p.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-boy_0105y.svg b/resources/svg/o-boy_0105y.svg
new file mode 100644
index 0000000..bc2ab47
--- /dev/null
+++ b/resources/svg/o-boy_0105y.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-boy_1015y.svg b/resources/svg/o-boy_1015y.svg
new file mode 100644
index 0000000..faba137
--- /dev/null
+++ b/resources/svg/o-boy_1015y.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-breeding_sites.svg b/resources/svg/o-breeding_sites.svg
new file mode 100644
index 0000000..986950c
--- /dev/null
+++ b/resources/svg/o-breeding_sites.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-calendar.svg b/resources/svg/o-calendar.svg
new file mode 100644
index 0000000..426c781
--- /dev/null
+++ b/resources/svg/o-calendar.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-cardiogram.svg b/resources/svg/o-cardiogram.svg
new file mode 100644
index 0000000..5c3ee7b
--- /dev/null
+++ b/resources/svg/o-cardiogram.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-cardiogram_e.svg b/resources/svg/o-cardiogram_e.svg
new file mode 100644
index 0000000..e0f7356
--- /dev/null
+++ b/resources/svg/o-cardiogram_e.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-cervical_cancer.svg b/resources/svg/o-cervical_cancer.svg
new file mode 100644
index 0000000..8d97b85
--- /dev/null
+++ b/resources/svg/o-cervical_cancer.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-child_care.svg b/resources/svg/o-child_care.svg
new file mode 100644
index 0000000..3b23473
--- /dev/null
+++ b/resources/svg/o-child_care.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-child_cognition.svg b/resources/svg/o-child_cognition.svg
new file mode 100644
index 0000000..c1529bb
--- /dev/null
+++ b/resources/svg/o-child_cognition.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-child_program.svg b/resources/svg/o-child_program.svg
new file mode 100644
index 0000000..95c3d26
--- /dev/null
+++ b/resources/svg/o-child_program.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-chills.svg b/resources/svg/o-chills.svg
new file mode 100644
index 0000000..7d4a041
--- /dev/null
+++ b/resources/svg/o-chills.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-chills_fever.svg b/resources/svg/o-chills_fever.svg
new file mode 100644
index 0000000..5fb584b
--- /dev/null
+++ b/resources/svg/o-chills_fever.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-cholera.svg b/resources/svg/o-cholera.svg
new file mode 100644
index 0000000..08e3e5b
--- /dev/null
+++ b/resources/svg/o-cholera.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-church.svg b/resources/svg/o-church.svg
new file mode 100644
index 0000000..df8a720
--- /dev/null
+++ b/resources/svg/o-church.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-circle_large.svg b/resources/svg/o-circle_large.svg
new file mode 100644
index 0000000..d1cd473
--- /dev/null
+++ b/resources/svg/o-circle_large.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-circle_medium.svg b/resources/svg/o-circle_medium.svg
new file mode 100644
index 0000000..da75947
--- /dev/null
+++ b/resources/svg/o-circle_medium.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-circle_small.svg b/resources/svg/o-circle_small.svg
new file mode 100644
index 0000000..6c53dbe
--- /dev/null
+++ b/resources/svg/o-circle_small.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-city.svg b/resources/svg/o-city.svg
new file mode 100644
index 0000000..162b1e3
--- /dev/null
+++ b/resources/svg/o-city.svg
@@ -0,0 +1,22 @@
+
diff --git a/resources/svg/o-city_worker.svg b/resources/svg/o-city_worker.svg
new file mode 100644
index 0000000..79dc99d
--- /dev/null
+++ b/resources/svg/o-city_worker.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-clean_hands.svg b/resources/svg/o-clean_hands.svg
new file mode 100644
index 0000000..e21811f
--- /dev/null
+++ b/resources/svg/o-clean_hands.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-clinical_a.svg b/resources/svg/o-clinical_a.svg
new file mode 100644
index 0000000..272f0ed
--- /dev/null
+++ b/resources/svg/o-clinical_a.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-clinical_f.svg b/resources/svg/o-clinical_f.svg
new file mode 100644
index 0000000..30a4bf7
--- /dev/null
+++ b/resources/svg/o-clinical_f.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-clinical_fe.svg b/resources/svg/o-clinical_fe.svg
new file mode 100644
index 0000000..8ca5f9f
--- /dev/null
+++ b/resources/svg/o-clinical_fe.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-coins.svg b/resources/svg/o-coins.svg
new file mode 100644
index 0000000..c4af9fc
--- /dev/null
+++ b/resources/svg/o-coins.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-cold_chain.svg b/resources/svg/o-cold_chain.svg
new file mode 100644
index 0000000..3a0fb2a
--- /dev/null
+++ b/resources/svg/o-cold_chain.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-communication.svg b/resources/svg/o-communication.svg
new file mode 100644
index 0000000..df9694d
--- /dev/null
+++ b/resources/svg/o-communication.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-cone_test_on_nets.svg b/resources/svg/o-cone_test_on_nets.svg
new file mode 100644
index 0000000..ba9d0bc
--- /dev/null
+++ b/resources/svg/o-cone_test_on_nets.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-cone_test_on_walls.svg b/resources/svg/o-cone_test_on_walls.svg
new file mode 100644
index 0000000..3c54728
--- /dev/null
+++ b/resources/svg/o-cone_test_on_walls.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-construction.svg b/resources/svg/o-construction.svg
new file mode 100644
index 0000000..5e1c8c0
--- /dev/null
+++ b/resources/svg/o-construction.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-construction_worker.svg b/resources/svg/o-construction_worker.svg
new file mode 100644
index 0000000..db8ac2c
--- /dev/null
+++ b/resources/svg/o-construction_worker.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-contact_support.svg b/resources/svg/o-contact_support.svg
new file mode 100644
index 0000000..ed730ee
--- /dev/null
+++ b/resources/svg/o-contact_support.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-contraceptive_diaphragm.svg b/resources/svg/o-contraceptive_diaphragm.svg
new file mode 100644
index 0000000..f474694
--- /dev/null
+++ b/resources/svg/o-contraceptive_diaphragm.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-contraceptive_injection.svg b/resources/svg/o-contraceptive_injection.svg
new file mode 100644
index 0000000..c01af72
--- /dev/null
+++ b/resources/svg/o-contraceptive_injection.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-contraceptive_patch.svg b/resources/svg/o-contraceptive_patch.svg
new file mode 100644
index 0000000..f54135a
--- /dev/null
+++ b/resources/svg/o-contraceptive_patch.svg
@@ -0,0 +1,21 @@
+
diff --git a/resources/svg/o-contraceptive_voucher.svg b/resources/svg/o-contraceptive_voucher.svg
new file mode 100644
index 0000000..a88ea74
--- /dev/null
+++ b/resources/svg/o-contraceptive_voucher.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-copper_iud.svg b/resources/svg/o-copper_iud.svg
new file mode 100644
index 0000000..7a6161f
--- /dev/null
+++ b/resources/svg/o-copper_iud.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-coughing.svg b/resources/svg/o-coughing.svg
new file mode 100644
index 0000000..e422832
--- /dev/null
+++ b/resources/svg/o-coughing.svg
@@ -0,0 +1,18 @@
+
diff --git a/resources/svg/o-credit_card.svg b/resources/svg/o-credit_card.svg
new file mode 100644
index 0000000..fa0b770
--- /dev/null
+++ b/resources/svg/o-credit_card.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-cross_country_motorcycle.svg b/resources/svg/o-cross_country_motorcycle.svg
new file mode 100644
index 0000000..2bec38a
--- /dev/null
+++ b/resources/svg/o-cross_country_motorcycle.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-death.svg b/resources/svg/o-death.svg
new file mode 100644
index 0000000..a591c07
--- /dev/null
+++ b/resources/svg/o-death.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-death_alt.svg b/resources/svg/o-death_alt.svg
new file mode 100644
index 0000000..e467589
--- /dev/null
+++ b/resources/svg/o-death_alt.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-death_alt2.svg b/resources/svg/o-death_alt2.svg
new file mode 100644
index 0000000..99d23e3
--- /dev/null
+++ b/resources/svg/o-death_alt2.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-default.svg b/resources/svg/o-default.svg
new file mode 100644
index 0000000..81d61df
--- /dev/null
+++ b/resources/svg/o-default.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-dhis2_logo.svg b/resources/svg/o-dhis2_logo.svg
new file mode 100644
index 0000000..a59b76f
--- /dev/null
+++ b/resources/svg/o-dhis2_logo.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-diabetes.svg b/resources/svg/o-diabetes.svg
new file mode 100644
index 0000000..275f671
--- /dev/null
+++ b/resources/svg/o-diabetes.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-diabetes_measure.svg b/resources/svg/o-diabetes_measure.svg
new file mode 100644
index 0000000..232277a
--- /dev/null
+++ b/resources/svg/o-diabetes_measure.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-diarrhea.svg b/resources/svg/o-diarrhea.svg
new file mode 100644
index 0000000..1a34304
--- /dev/null
+++ b/resources/svg/o-diarrhea.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-discriminating_concentration_bioassays.svg b/resources/svg/o-discriminating_concentration_bioassays.svg
new file mode 100644
index 0000000..08efa7f
--- /dev/null
+++ b/resources/svg/o-discriminating_concentration_bioassays.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-doctor.svg b/resources/svg/o-doctor.svg
new file mode 100644
index 0000000..0324ef2
--- /dev/null
+++ b/resources/svg/o-doctor.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-doctor_female.svg b/resources/svg/o-doctor_female.svg
new file mode 100644
index 0000000..2a3006b
--- /dev/null
+++ b/resources/svg/o-doctor_female.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-doctor_male.svg b/resources/svg/o-doctor_male.svg
new file mode 100644
index 0000000..ffb571a
--- /dev/null
+++ b/resources/svg/o-doctor_male.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-domestic_worker.svg b/resources/svg/o-domestic_worker.svg
new file mode 100644
index 0000000..ede6674
--- /dev/null
+++ b/resources/svg/o-domestic_worker.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-donkey.svg b/resources/svg/o-donkey.svg
new file mode 100644
index 0000000..5604bb9
--- /dev/null
+++ b/resources/svg/o-donkey.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-drone.svg b/resources/svg/o-drone.svg
new file mode 100644
index 0000000..46fbc45
--- /dev/null
+++ b/resources/svg/o-drone.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-eco_care.svg b/resources/svg/o-eco_care.svg
new file mode 100644
index 0000000..4aed43c
--- /dev/null
+++ b/resources/svg/o-eco_care.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-elderly.svg b/resources/svg/o-elderly.svg
new file mode 100644
index 0000000..ce5b6d2
--- /dev/null
+++ b/resources/svg/o-elderly.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-electricity.svg b/resources/svg/o-electricity.svg
new file mode 100644
index 0000000..41223fc
--- /dev/null
+++ b/resources/svg/o-electricity.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-emergency_post.svg b/resources/svg/o-emergency_post.svg
new file mode 100644
index 0000000..987fcca
--- /dev/null
+++ b/resources/svg/o-emergency_post.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-expectorate.svg b/resources/svg/o-expectorate.svg
new file mode 100644
index 0000000..715d3c4
--- /dev/null
+++ b/resources/svg/o-expectorate.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-factory_worker.svg b/resources/svg/o-factory_worker.svg
new file mode 100644
index 0000000..e58bc18
--- /dev/null
+++ b/resources/svg/o-factory_worker.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-family_planning.svg b/resources/svg/o-family_planning.svg
new file mode 100644
index 0000000..05cb99d
--- /dev/null
+++ b/resources/svg/o-family_planning.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-female_and_male.svg b/resources/svg/o-female_and_male.svg
new file mode 100644
index 0000000..308147e
--- /dev/null
+++ b/resources/svg/o-female_and_male.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-female_condom.svg b/resources/svg/o-female_condom.svg
new file mode 100644
index 0000000..7c8de0e
--- /dev/null
+++ b/resources/svg/o-female_condom.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-female_sex_worker.svg b/resources/svg/o-female_sex_worker.svg
new file mode 100644
index 0000000..5907439
--- /dev/null
+++ b/resources/svg/o-female_sex_worker.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-fetus.svg b/resources/svg/o-fetus.svg
new file mode 100644
index 0000000..c220a8f
--- /dev/null
+++ b/resources/svg/o-fetus.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-fever.svg b/resources/svg/o-fever.svg
new file mode 100644
index 0000000..1254998
--- /dev/null
+++ b/resources/svg/o-fever.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-forest.svg b/resources/svg/o-forest.svg
new file mode 100644
index 0000000..914d9f1
--- /dev/null
+++ b/resources/svg/o-forest.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-forest_persons.svg b/resources/svg/o-forest_persons.svg
new file mode 100644
index 0000000..d03996b
--- /dev/null
+++ b/resources/svg/o-forest_persons.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-forum.svg b/resources/svg/o-forum.svg
new file mode 100644
index 0000000..1186783
--- /dev/null
+++ b/resources/svg/o-forum.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-geo_location.svg b/resources/svg/o-geo_location.svg
new file mode 100644
index 0000000..e95f6e7
--- /dev/null
+++ b/resources/svg/o-geo_location.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-girl_0105y.svg b/resources/svg/o-girl_0105y.svg
new file mode 100644
index 0000000..d7220b1
--- /dev/null
+++ b/resources/svg/o-girl_0105y.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-girl_1015y.svg b/resources/svg/o-girl_1015y.svg
new file mode 100644
index 0000000..7ceb1ea
--- /dev/null
+++ b/resources/svg/o-girl_1015y.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-group_discussion_meeting.svg b/resources/svg/o-group_discussion_meeting.svg
new file mode 100644
index 0000000..0c9960e
--- /dev/null
+++ b/resources/svg/o-group_discussion_meeting.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-group_discussion_meetingx3.svg b/resources/svg/o-group_discussion_meetingx3.svg
new file mode 100644
index 0000000..95c8e20
--- /dev/null
+++ b/resources/svg/o-group_discussion_meetingx3.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-happy.svg b/resources/svg/o-happy.svg
new file mode 100644
index 0000000..b635963
--- /dev/null
+++ b/resources/svg/o-happy.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-hazardous.svg b/resources/svg/o-hazardous.svg
new file mode 100644
index 0000000..c9cec16
--- /dev/null
+++ b/resources/svg/o-hazardous.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-headache.svg b/resources/svg/o-headache.svg
new file mode 100644
index 0000000..f1aec54
--- /dev/null
+++ b/resources/svg/o-headache.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-health_worker.svg b/resources/svg/o-health_worker.svg
new file mode 100644
index 0000000..444808b
--- /dev/null
+++ b/resources/svg/o-health_worker.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-health_worker_form.svg b/resources/svg/o-health_worker_form.svg
new file mode 100644
index 0000000..ed67279
--- /dev/null
+++ b/resources/svg/o-health_worker_form.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-heart.svg b/resources/svg/o-heart.svg
new file mode 100644
index 0000000..29b7839
--- /dev/null
+++ b/resources/svg/o-heart.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-heart_cardiogram.svg b/resources/svg/o-heart_cardiogram.svg
new file mode 100644
index 0000000..82b66af
--- /dev/null
+++ b/resources/svg/o-heart_cardiogram.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-helicopter.svg b/resources/svg/o-helicopter.svg
new file mode 100644
index 0000000..771e84c
--- /dev/null
+++ b/resources/svg/o-helicopter.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-high_bars.svg b/resources/svg/o-high_bars.svg
new file mode 100644
index 0000000..70ffe6f
--- /dev/null
+++ b/resources/svg/o-high_bars.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-high_level.svg b/resources/svg/o-high_level.svg
new file mode 100644
index 0000000..341c29a
--- /dev/null
+++ b/resources/svg/o-high_level.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-hiv_ind.svg b/resources/svg/o-hiv_ind.svg
new file mode 100644
index 0000000..ec180c3
--- /dev/null
+++ b/resources/svg/o-hiv_ind.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-hiv_neg.svg b/resources/svg/o-hiv_neg.svg
new file mode 100644
index 0000000..70c4074
--- /dev/null
+++ b/resources/svg/o-hiv_neg.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-hiv_pos.svg b/resources/svg/o-hiv_pos.svg
new file mode 100644
index 0000000..0689f39
--- /dev/null
+++ b/resources/svg/o-hiv_pos.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-hiv_self_test.svg b/resources/svg/o-hiv_self_test.svg
new file mode 100644
index 0000000..5c5e7c2
--- /dev/null
+++ b/resources/svg/o-hiv_self_test.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-home.svg b/resources/svg/o-home.svg
new file mode 100644
index 0000000..675ee1d
--- /dev/null
+++ b/resources/svg/o-home.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-hormonal_ring.svg b/resources/svg/o-hormonal_ring.svg
new file mode 100644
index 0000000..6c1d43b
--- /dev/null
+++ b/resources/svg/o-hormonal_ring.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-hospital.svg b/resources/svg/o-hospital.svg
new file mode 100644
index 0000000..a6d0892
--- /dev/null
+++ b/resources/svg/o-hospital.svg
@@ -0,0 +1,15 @@
+
diff --git a/resources/svg/o-hospitalized.svg b/resources/svg/o-hospitalized.svg
new file mode 100644
index 0000000..8b7e66d
--- /dev/null
+++ b/resources/svg/o-hospitalized.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-hot_meal.svg b/resources/svg/o-hot_meal.svg
new file mode 100644
index 0000000..ebaaab6
--- /dev/null
+++ b/resources/svg/o-hot_meal.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-hpv.svg b/resources/svg/o-hpv.svg
new file mode 100644
index 0000000..0b287a9
--- /dev/null
+++ b/resources/svg/o-hpv.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-i_certificate_paper.svg b/resources/svg/o-i_certificate_paper.svg
new file mode 100644
index 0000000..ba87ee5
--- /dev/null
+++ b/resources/svg/o-i_certificate_paper.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-i_documents_accepted.svg b/resources/svg/o-i_documents_accepted.svg
new file mode 100644
index 0000000..e2b7a9c
--- /dev/null
+++ b/resources/svg/o-i_documents_accepted.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-i_documents_denied.svg b/resources/svg/o-i_documents_denied.svg
new file mode 100644
index 0000000..92f7239
--- /dev/null
+++ b/resources/svg/o-i_documents_denied.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-i_exam_multiple_choice.svg b/resources/svg/o-i_exam_multiple_choice.svg
new file mode 100644
index 0000000..60b775d
--- /dev/null
+++ b/resources/svg/o-i_exam_multiple_choice.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-i_exam_qualification.svg b/resources/svg/o-i_exam_qualification.svg
new file mode 100644
index 0000000..cf9055d
--- /dev/null
+++ b/resources/svg/o-i_exam_qualification.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-i_groups_perspective_crowd.svg b/resources/svg/o-i_groups_perspective_crowd.svg
new file mode 100644
index 0000000..a36ab90
--- /dev/null
+++ b/resources/svg/o-i_groups_perspective_crowd.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-i_note_action.svg b/resources/svg/o-i_note_action.svg
new file mode 100644
index 0000000..e473839
--- /dev/null
+++ b/resources/svg/o-i_note_action.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-i_schedule_school_date_time.svg b/resources/svg/o-i_schedule_school_date_time.svg
new file mode 100644
index 0000000..4315571
--- /dev/null
+++ b/resources/svg/o-i_schedule_school_date_time.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-i_training_class.svg b/resources/svg/o-i_training_class.svg
new file mode 100644
index 0000000..d1f43d6
--- /dev/null
+++ b/resources/svg/o-i_training_class.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-i_utensils.svg b/resources/svg/o-i_utensils.svg
new file mode 100644
index 0000000..6e467b2
--- /dev/null
+++ b/resources/svg/o-i_utensils.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-imm.svg b/resources/svg/o-imm.svg
new file mode 100644
index 0000000..5eb73ec
--- /dev/null
+++ b/resources/svg/o-imm.svg
@@ -0,0 +1,45 @@
+
diff --git a/resources/svg/o-implant.svg b/resources/svg/o-implant.svg
new file mode 100644
index 0000000..0f08cd8
--- /dev/null
+++ b/resources/svg/o-implant.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-info.svg b/resources/svg/o-info.svg
new file mode 100644
index 0000000..1113cd2
--- /dev/null
+++ b/resources/svg/o-info.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-information_campaign.svg b/resources/svg/o-information_campaign.svg
new file mode 100644
index 0000000..efd6d75
--- /dev/null
+++ b/resources/svg/o-information_campaign.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-inpatient.svg b/resources/svg/o-inpatient.svg
new file mode 100644
index 0000000..bd9df19
--- /dev/null
+++ b/resources/svg/o-inpatient.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-insecticide_resistance.svg b/resources/svg/o-insecticide_resistance.svg
new file mode 100644
index 0000000..039b1e5
--- /dev/null
+++ b/resources/svg/o-insecticide_resistance.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-intensity_concentration_bioassays.svg b/resources/svg/o-intensity_concentration_bioassays.svg
new file mode 100644
index 0000000..a3a3d54
--- /dev/null
+++ b/resources/svg/o-intensity_concentration_bioassays.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-iud.svg b/resources/svg/o-iud.svg
new file mode 100644
index 0000000..994d930
--- /dev/null
+++ b/resources/svg/o-iud.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-justice.svg b/resources/svg/o-justice.svg
new file mode 100644
index 0000000..a54725d
--- /dev/null
+++ b/resources/svg/o-justice.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-kidneys.svg b/resources/svg/o-kidneys.svg
new file mode 100644
index 0000000..1e92a5d
--- /dev/null
+++ b/resources/svg/o-kidneys.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-lactation.svg b/resources/svg/o-lactation.svg
new file mode 100644
index 0000000..35188d7
--- /dev/null
+++ b/resources/svg/o-lactation.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-letrina.svg b/resources/svg/o-letrina.svg
new file mode 100644
index 0000000..27df759
--- /dev/null
+++ b/resources/svg/o-letrina.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-llin.svg b/resources/svg/o-llin.svg
new file mode 100644
index 0000000..70ab22d
--- /dev/null
+++ b/resources/svg/o-llin.svg
@@ -0,0 +1,17 @@
+
diff --git a/resources/svg/o-low_bars.svg b/resources/svg/o-low_bars.svg
new file mode 100644
index 0000000..832c7d6
--- /dev/null
+++ b/resources/svg/o-low_bars.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-low_level.svg b/resources/svg/o-low_level.svg
new file mode 100644
index 0000000..c605ee7
--- /dev/null
+++ b/resources/svg/o-low_level.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-lungs.svg b/resources/svg/o-lungs.svg
new file mode 100644
index 0000000..371e946
--- /dev/null
+++ b/resources/svg/o-lungs.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-machinery.svg b/resources/svg/o-machinery.svg
new file mode 100644
index 0000000..22cea58
--- /dev/null
+++ b/resources/svg/o-machinery.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-magnifying_glass.svg b/resources/svg/o-magnifying_glass.svg
new file mode 100644
index 0000000..94445fa
--- /dev/null
+++ b/resources/svg/o-magnifying_glass.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-malaria_mixed_microscope.svg b/resources/svg/o-malaria_mixed_microscope.svg
new file mode 100644
index 0000000..250c0f5
--- /dev/null
+++ b/resources/svg/o-malaria_mixed_microscope.svg
@@ -0,0 +1,22 @@
+
diff --git a/resources/svg/o-malaria_negative_microscope.svg b/resources/svg/o-malaria_negative_microscope.svg
new file mode 100644
index 0000000..88843b1
--- /dev/null
+++ b/resources/svg/o-malaria_negative_microscope.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-malaria_outbreak.svg b/resources/svg/o-malaria_outbreak.svg
new file mode 100644
index 0000000..dc038e8
--- /dev/null
+++ b/resources/svg/o-malaria_outbreak.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-malaria_pf_microscope.svg b/resources/svg/o-malaria_pf_microscope.svg
new file mode 100644
index 0000000..02e2cec
--- /dev/null
+++ b/resources/svg/o-malaria_pf_microscope.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-malaria_pv_microscope.svg b/resources/svg/o-malaria_pv_microscope.svg
new file mode 100644
index 0000000..b804764
--- /dev/null
+++ b/resources/svg/o-malaria_pv_microscope.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-malaria_testing.svg b/resources/svg/o-malaria_testing.svg
new file mode 100644
index 0000000..0e75e4f
--- /dev/null
+++ b/resources/svg/o-malaria_testing.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-male_and_female.svg b/resources/svg/o-male_and_female.svg
new file mode 100644
index 0000000..fa34464
--- /dev/null
+++ b/resources/svg/o-male_and_female.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-male_condom.svg b/resources/svg/o-male_condom.svg
new file mode 100644
index 0000000..d5db97c
--- /dev/null
+++ b/resources/svg/o-male_condom.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-male_sex_worker.svg b/resources/svg/o-male_sex_worker.svg
new file mode 100644
index 0000000..8c024d6
--- /dev/null
+++ b/resources/svg/o-male_sex_worker.svg
@@ -0,0 +1,16 @@
+
diff --git a/resources/svg/o-man.svg b/resources/svg/o-man.svg
new file mode 100644
index 0000000..51755e4
--- /dev/null
+++ b/resources/svg/o-man.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-market_stall.svg b/resources/svg/o-market_stall.svg
new file mode 100644
index 0000000..d3142f0
--- /dev/null
+++ b/resources/svg/o-market_stall.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-mask.svg b/resources/svg/o-mask.svg
new file mode 100644
index 0000000..dc3b391
--- /dev/null
+++ b/resources/svg/o-mask.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-measles.svg b/resources/svg/o-measles.svg
new file mode 100644
index 0000000..007a7a9
--- /dev/null
+++ b/resources/svg/o-measles.svg
@@ -0,0 +1,29 @@
+
diff --git a/resources/svg/o-medicines.svg b/resources/svg/o-medicines.svg
new file mode 100644
index 0000000..d222f82
--- /dev/null
+++ b/resources/svg/o-medicines.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-medium_bars.svg b/resources/svg/o-medium_bars.svg
new file mode 100644
index 0000000..67cc95a
--- /dev/null
+++ b/resources/svg/o-medium_bars.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-medium_level.svg b/resources/svg/o-medium_level.svg
new file mode 100644
index 0000000..4056c45
--- /dev/null
+++ b/resources/svg/o-medium_level.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-megaphone.svg b/resources/svg/o-megaphone.svg
new file mode 100644
index 0000000..b09a846
--- /dev/null
+++ b/resources/svg/o-megaphone.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-mental_disorders.svg b/resources/svg/o-mental_disorders.svg
new file mode 100644
index 0000000..bd18ebf
--- /dev/null
+++ b/resources/svg/o-mental_disorders.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-microscope.svg b/resources/svg/o-microscope.svg
new file mode 100644
index 0000000..2d8524f
--- /dev/null
+++ b/resources/svg/o-microscope.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-miner_worker.svg b/resources/svg/o-miner_worker.svg
new file mode 100644
index 0000000..bbec74c
--- /dev/null
+++ b/resources/svg/o-miner_worker.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-mobile.svg b/resources/svg/o-mobile.svg
new file mode 100644
index 0000000..a8082bc
--- /dev/null
+++ b/resources/svg/o-mobile.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-mobile_clinic.svg b/resources/svg/o-mobile_clinic.svg
new file mode 100644
index 0000000..4c55b68
--- /dev/null
+++ b/resources/svg/o-mobile_clinic.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-money_bag.svg b/resources/svg/o-money_bag.svg
new file mode 100644
index 0000000..6dd6353
--- /dev/null
+++ b/resources/svg/o-money_bag.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-mosquito.svg b/resources/svg/o-mosquito.svg
new file mode 100644
index 0000000..b69abdd
--- /dev/null
+++ b/resources/svg/o-mosquito.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-mosquito_collection.svg b/resources/svg/o-mosquito_collection.svg
new file mode 100644
index 0000000..2d579b4
--- /dev/null
+++ b/resources/svg/o-mosquito_collection.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-msm.svg b/resources/svg/o-msm.svg
new file mode 100644
index 0000000..d483735
--- /dev/null
+++ b/resources/svg/o-msm.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-nausea.svg b/resources/svg/o-nausea.svg
new file mode 100644
index 0000000..a7b4c95
--- /dev/null
+++ b/resources/svg/o-nausea.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-negative.svg b/resources/svg/o-negative.svg
new file mode 100644
index 0000000..d0007a2
--- /dev/null
+++ b/resources/svg/o-negative.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-network_4g.svg b/resources/svg/o-network_4g.svg
new file mode 100644
index 0000000..e94666f
--- /dev/null
+++ b/resources/svg/o-network_4g.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-network_5g.svg b/resources/svg/o-network_5g.svg
new file mode 100644
index 0000000..fac51f4
--- /dev/null
+++ b/resources/svg/o-network_5g.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-neurology.svg b/resources/svg/o-neurology.svg
new file mode 100644
index 0000000..822d2d3
--- /dev/null
+++ b/resources/svg/o-neurology.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-neutral.svg b/resources/svg/o-neutral.svg
new file mode 100644
index 0000000..f73ac29
--- /dev/null
+++ b/resources/svg/o-neutral.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-no.svg b/resources/svg/o-no.svg
new file mode 100644
index 0000000..01b3afa
--- /dev/null
+++ b/resources/svg/o-no.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-not_ok.svg b/resources/svg/o-not_ok.svg
new file mode 100644
index 0000000..6f41139
--- /dev/null
+++ b/resources/svg/o-not_ok.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-nurse.svg b/resources/svg/o-nurse.svg
new file mode 100644
index 0000000..8ffdb66
--- /dev/null
+++ b/resources/svg/o-nurse.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-nutrition.svg b/resources/svg/o-nutrition.svg
new file mode 100644
index 0000000..659b5b5
--- /dev/null
+++ b/resources/svg/o-nutrition.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-observation.svg b/resources/svg/o-observation.svg
new file mode 100644
index 0000000..e422b54
--- /dev/null
+++ b/resources/svg/o-observation.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-odontology.svg b/resources/svg/o-odontology.svg
new file mode 100644
index 0000000..f0dc61f
--- /dev/null
+++ b/resources/svg/o-odontology.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-odontology_implant.svg b/resources/svg/o-odontology_implant.svg
new file mode 100644
index 0000000..940433b
--- /dev/null
+++ b/resources/svg/o-odontology_implant.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-officer.svg b/resources/svg/o-officer.svg
new file mode 100644
index 0000000..915352e
--- /dev/null
+++ b/resources/svg/o-officer.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-ok.svg b/resources/svg/o-ok.svg
new file mode 100644
index 0000000..f67cb99
--- /dev/null
+++ b/resources/svg/o-ok.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-old_man.svg b/resources/svg/o-old_man.svg
new file mode 100644
index 0000000..d7bd5a5
--- /dev/null
+++ b/resources/svg/o-old_man.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-old_woman.svg b/resources/svg/o-old_woman.svg
new file mode 100644
index 0000000..05ae51e
--- /dev/null
+++ b/resources/svg/o-old_woman.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-oral_contraception_pillsx21.svg b/resources/svg/o-oral_contraception_pillsx21.svg
new file mode 100644
index 0000000..22e042c
--- /dev/null
+++ b/resources/svg/o-oral_contraception_pillsx21.svg
@@ -0,0 +1,55 @@
+
diff --git a/resources/svg/o-oral_contraception_pillsx28.svg b/resources/svg/o-oral_contraception_pillsx28.svg
new file mode 100644
index 0000000..4383066
--- /dev/null
+++ b/resources/svg/o-oral_contraception_pillsx28.svg
@@ -0,0 +1,45 @@
+
diff --git a/resources/svg/o-outbreak.svg b/resources/svg/o-outbreak.svg
new file mode 100644
index 0000000..ccab202
--- /dev/null
+++ b/resources/svg/o-outbreak.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-outpatient.svg b/resources/svg/o-outpatient.svg
new file mode 100644
index 0000000..606ed30
--- /dev/null
+++ b/resources/svg/o-outpatient.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-overweight.svg b/resources/svg/o-overweight.svg
new file mode 100644
index 0000000..e98fdf9
--- /dev/null
+++ b/resources/svg/o-overweight.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-oxygen_tank.svg b/resources/svg/o-oxygen_tank.svg
new file mode 100644
index 0000000..a030cf0
--- /dev/null
+++ b/resources/svg/o-oxygen_tank.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-palm_branches_roof.svg b/resources/svg/o-palm_branches_roof.svg
new file mode 100644
index 0000000..cd19ed9
--- /dev/null
+++ b/resources/svg/o-palm_branches_roof.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-pave_road.svg b/resources/svg/o-pave_road.svg
new file mode 100644
index 0000000..158ac4b
--- /dev/null
+++ b/resources/svg/o-pave_road.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-peace.svg b/resources/svg/o-peace.svg
new file mode 100644
index 0000000..e76647e
--- /dev/null
+++ b/resources/svg/o-peace.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-people.svg b/resources/svg/o-people.svg
new file mode 100644
index 0000000..ac5476a
--- /dev/null
+++ b/resources/svg/o-people.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-person.svg b/resources/svg/o-person.svg
new file mode 100644
index 0000000..1844f35
--- /dev/null
+++ b/resources/svg/o-person.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-phone.svg b/resources/svg/o-phone.svg
new file mode 100644
index 0000000..0076535
--- /dev/null
+++ b/resources/svg/o-phone.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-pill_1.svg b/resources/svg/o-pill_1.svg
new file mode 100644
index 0000000..061aeee
--- /dev/null
+++ b/resources/svg/o-pill_1.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-pills_2.svg b/resources/svg/o-pills_2.svg
new file mode 100644
index 0000000..ff285a7
--- /dev/null
+++ b/resources/svg/o-pills_2.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-pills_3.svg b/resources/svg/o-pills_3.svg
new file mode 100644
index 0000000..b607e50
--- /dev/null
+++ b/resources/svg/o-pills_3.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-pills_4.svg b/resources/svg/o-pills_4.svg
new file mode 100644
index 0000000..b94c2e3
--- /dev/null
+++ b/resources/svg/o-pills_4.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-plantation_worker.svg b/resources/svg/o-plantation_worker.svg
new file mode 100644
index 0000000..d934c26
--- /dev/null
+++ b/resources/svg/o-plantation_worker.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-pneumonia.svg b/resources/svg/o-pneumonia.svg
new file mode 100644
index 0000000..41b8ba1
--- /dev/null
+++ b/resources/svg/o-pneumonia.svg
@@ -0,0 +1,16 @@
+
diff --git a/resources/svg/o-polygon.svg b/resources/svg/o-polygon.svg
new file mode 100644
index 0000000..c8b8799
--- /dev/null
+++ b/resources/svg/o-polygon.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-positive.svg b/resources/svg/o-positive.svg
new file mode 100644
index 0000000..229747f
--- /dev/null
+++ b/resources/svg/o-positive.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-ppe_face_mask.svg b/resources/svg/o-ppe_face_mask.svg
new file mode 100644
index 0000000..8c33a9c
--- /dev/null
+++ b/resources/svg/o-ppe_face_mask.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-ppe_gloves.svg b/resources/svg/o-ppe_gloves.svg
new file mode 100644
index 0000000..525f3d6
--- /dev/null
+++ b/resources/svg/o-ppe_gloves.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-ppe_gown.svg b/resources/svg/o-ppe_gown.svg
new file mode 100644
index 0000000..6c8dad4
--- /dev/null
+++ b/resources/svg/o-ppe_gown.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-ppe_gown_outline-1.svg b/resources/svg/o-ppe_gown_outline-1.svg
new file mode 100644
index 0000000..6c8dad4
--- /dev/null
+++ b/resources/svg/o-ppe_gown_outline-1.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-ppe_mask_n95.svg b/resources/svg/o-ppe_mask_n95.svg
new file mode 100644
index 0000000..2e8a9f1
--- /dev/null
+++ b/resources/svg/o-ppe_mask_n95.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-pregnant.svg b/resources/svg/o-pregnant.svg
new file mode 100644
index 0000000..700a39f
--- /dev/null
+++ b/resources/svg/o-pregnant.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-pregnant_0812w.svg b/resources/svg/o-pregnant_0812w.svg
new file mode 100644
index 0000000..a6960ba
--- /dev/null
+++ b/resources/svg/o-pregnant_0812w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-pregnant_2426w.svg b/resources/svg/o-pregnant_2426w.svg
new file mode 100644
index 0000000..51b985c
--- /dev/null
+++ b/resources/svg/o-pregnant_2426w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-pregnant_32w.svg b/resources/svg/o-pregnant_32w.svg
new file mode 100644
index 0000000..40e037f
--- /dev/null
+++ b/resources/svg/o-pregnant_32w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-pregnant_3638w.svg b/resources/svg/o-pregnant_3638w.svg
new file mode 100644
index 0000000..9da54a0
--- /dev/null
+++ b/resources/svg/o-pregnant_3638w.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-proper_roof.svg b/resources/svg/o-proper_roof.svg
new file mode 100644
index 0000000..90a2094
--- /dev/null
+++ b/resources/svg/o-proper_roof.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-provider_fst.svg b/resources/svg/o-provider_fst.svg
new file mode 100644
index 0000000..ec2b6ea
--- /dev/null
+++ b/resources/svg/o-provider_fst.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-pwid.svg b/resources/svg/o-pwid.svg
new file mode 100644
index 0000000..86134d1
--- /dev/null
+++ b/resources/svg/o-pwid.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-question.svg b/resources/svg/o-question.svg
new file mode 100644
index 0000000..2b15068
--- /dev/null
+++ b/resources/svg/o-question.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-question_circle.svg b/resources/svg/o-question_circle.svg
new file mode 100644
index 0000000..ea23701
--- /dev/null
+++ b/resources/svg/o-question_circle.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-question_triangle.svg b/resources/svg/o-question_triangle.svg
new file mode 100644
index 0000000..ca9b156
--- /dev/null
+++ b/resources/svg/o-question_triangle.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-rdt_result.svg b/resources/svg/o-rdt_result.svg
new file mode 100644
index 0000000..f6971e6
--- /dev/null
+++ b/resources/svg/o-rdt_result.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-rdt_result_invalid.svg b/resources/svg/o-rdt_result_invalid.svg
new file mode 100644
index 0000000..7e6b077
--- /dev/null
+++ b/resources/svg/o-rdt_result_invalid.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-rdt_result_mixed.svg b/resources/svg/o-rdt_result_mixed.svg
new file mode 100644
index 0000000..594d90e
--- /dev/null
+++ b/resources/svg/o-rdt_result_mixed.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-rdt_result_mixed_invalid.svg b/resources/svg/o-rdt_result_mixed_invalid.svg
new file mode 100644
index 0000000..549932b
--- /dev/null
+++ b/resources/svg/o-rdt_result_mixed_invalid.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-rdt_result_mixed_invalid_rectangular.svg b/resources/svg/o-rdt_result_mixed_invalid_rectangular.svg
new file mode 100644
index 0000000..6c70b0d
--- /dev/null
+++ b/resources/svg/o-rdt_result_mixed_invalid_rectangular.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-rdt_result_mixed_outline-1.svg b/resources/svg/o-rdt_result_mixed_outline-1.svg
new file mode 100644
index 0000000..f5cdf93
--- /dev/null
+++ b/resources/svg/o-rdt_result_mixed_outline-1.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-rdt_result_mixed_outline-2.svg b/resources/svg/o-rdt_result_mixed_outline-2.svg
new file mode 100644
index 0000000..4f52a38
--- /dev/null
+++ b/resources/svg/o-rdt_result_mixed_outline-2.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-rdt_result_mixed_rectangular.svg b/resources/svg/o-rdt_result_mixed_rectangular.svg
new file mode 100644
index 0000000..46c41f7
--- /dev/null
+++ b/resources/svg/o-rdt_result_mixed_rectangular.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-rdt_result_neg.svg b/resources/svg/o-rdt_result_neg.svg
new file mode 100644
index 0000000..d2dab4f
--- /dev/null
+++ b/resources/svg/o-rdt_result_neg.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-rdt_result_neg_invalid.svg b/resources/svg/o-rdt_result_neg_invalid.svg
new file mode 100644
index 0000000..c5f9d38
--- /dev/null
+++ b/resources/svg/o-rdt_result_neg_invalid.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-rdt_result_neg_invalid_rectangular.svg b/resources/svg/o-rdt_result_neg_invalid_rectangular.svg
new file mode 100644
index 0000000..e1888fa
--- /dev/null
+++ b/resources/svg/o-rdt_result_neg_invalid_rectangular.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-rdt_result_neg_rectangular.svg b/resources/svg/o-rdt_result_neg_rectangular.svg
new file mode 100644
index 0000000..87c76e4
--- /dev/null
+++ b/resources/svg/o-rdt_result_neg_rectangular.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-rdt_result_no_test.svg b/resources/svg/o-rdt_result_no_test.svg
new file mode 100644
index 0000000..1fdab2e
--- /dev/null
+++ b/resources/svg/o-rdt_result_no_test.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-rdt_result_out_stock.svg b/resources/svg/o-rdt_result_out_stock.svg
new file mode 100644
index 0000000..d278254
--- /dev/null
+++ b/resources/svg/o-rdt_result_out_stock.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-rdt_result_pf_invalid.svg b/resources/svg/o-rdt_result_pf_invalid.svg
new file mode 100644
index 0000000..f5b4f45
--- /dev/null
+++ b/resources/svg/o-rdt_result_pf_invalid.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-rdt_result_pf_invalid_rectangular.svg b/resources/svg/o-rdt_result_pf_invalid_rectangular.svg
new file mode 100644
index 0000000..27295e9
--- /dev/null
+++ b/resources/svg/o-rdt_result_pf_invalid_rectangular.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-rdt_result_pf_rectangular.svg b/resources/svg/o-rdt_result_pf_rectangular.svg
new file mode 100644
index 0000000..0f95681
--- /dev/null
+++ b/resources/svg/o-rdt_result_pf_rectangular.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-rdt_result_positive.svg b/resources/svg/o-rdt_result_positive.svg
new file mode 100644
index 0000000..d419b86
--- /dev/null
+++ b/resources/svg/o-rdt_result_positive.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-rdt_result_pv.svg b/resources/svg/o-rdt_result_pv.svg
new file mode 100644
index 0000000..f4d598e
--- /dev/null
+++ b/resources/svg/o-rdt_result_pv.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-rdt_result_pv_invalid_rectangular.svg b/resources/svg/o-rdt_result_pv_invalid_rectangular.svg
new file mode 100644
index 0000000..80b8625
--- /dev/null
+++ b/resources/svg/o-rdt_result_pv_invalid_rectangular.svg
@@ -0,0 +1,12 @@
+
diff --git a/resources/svg/o-rdt_result_pv_rectangular.svg b/resources/svg/o-rdt_result_pv_rectangular.svg
new file mode 100644
index 0000000..f5ddf18
--- /dev/null
+++ b/resources/svg/o-rdt_result_pv_rectangular.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-referral.svg b/resources/svg/o-referral.svg
new file mode 100644
index 0000000..f2989f4
--- /dev/null
+++ b/resources/svg/o-referral.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-refused.svg b/resources/svg/o-refused.svg
new file mode 100644
index 0000000..29e6638
--- /dev/null
+++ b/resources/svg/o-refused.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-ribbon.svg b/resources/svg/o-ribbon.svg
new file mode 100644
index 0000000..af11233
--- /dev/null
+++ b/resources/svg/o-ribbon.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-rmnh.svg b/resources/svg/o-rmnh.svg
new file mode 100644
index 0000000..2a2a3cb
--- /dev/null
+++ b/resources/svg/o-rmnh.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-running_water.svg b/resources/svg/o-running_water.svg
new file mode 100644
index 0000000..154b2c2
--- /dev/null
+++ b/resources/svg/o-running_water.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-rural_post.svg b/resources/svg/o-rural_post.svg
new file mode 100644
index 0000000..b437230
--- /dev/null
+++ b/resources/svg/o-rural_post.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-sad.svg b/resources/svg/o-sad.svg
new file mode 100644
index 0000000..264d27c
--- /dev/null
+++ b/resources/svg/o-sad.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-sanitizer.svg b/resources/svg/o-sanitizer.svg
new file mode 100644
index 0000000..cca6b9c
--- /dev/null
+++ b/resources/svg/o-sanitizer.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-sayana_press.svg b/resources/svg/o-sayana_press.svg
new file mode 100644
index 0000000..fc8281b
--- /dev/null
+++ b/resources/svg/o-sayana_press.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-security_worker.svg b/resources/svg/o-security_worker.svg
new file mode 100644
index 0000000..02233d0
--- /dev/null
+++ b/resources/svg/o-security_worker.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-sexual_reproductive_health.svg b/resources/svg/o-sexual_reproductive_health.svg
new file mode 100644
index 0000000..5fc4ef9
--- /dev/null
+++ b/resources/svg/o-sexual_reproductive_health.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-small_plane.svg b/resources/svg/o-small_plane.svg
new file mode 100644
index 0000000..909b1a9
--- /dev/null
+++ b/resources/svg/o-small_plane.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-social_distancing.svg b/resources/svg/o-social_distancing.svg
new file mode 100644
index 0000000..5e4556e
--- /dev/null
+++ b/resources/svg/o-social_distancing.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-spraying.svg b/resources/svg/o-spraying.svg
new file mode 100644
index 0000000..04c6af6
--- /dev/null
+++ b/resources/svg/o-spraying.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-square_large.svg b/resources/svg/o-square_large.svg
new file mode 100644
index 0000000..6b70cb9
--- /dev/null
+++ b/resources/svg/o-square_large.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-square_medium.svg b/resources/svg/o-square_medium.svg
new file mode 100644
index 0000000..2025670
--- /dev/null
+++ b/resources/svg/o-square_medium.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-square_small.svg b/resources/svg/o-square_small.svg
new file mode 100644
index 0000000..0fcdcd4
--- /dev/null
+++ b/resources/svg/o-square_small.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-star_large.svg b/resources/svg/o-star_large.svg
new file mode 100644
index 0000000..02d5241
--- /dev/null
+++ b/resources/svg/o-star_large.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-star_medium.svg b/resources/svg/o-star_medium.svg
new file mode 100644
index 0000000..32a9088
--- /dev/null
+++ b/resources/svg/o-star_medium.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-star_small.svg b/resources/svg/o-star_small.svg
new file mode 100644
index 0000000..60d2d9c
--- /dev/null
+++ b/resources/svg/o-star_small.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-stethoscope.svg b/resources/svg/o-stethoscope.svg
new file mode 100644
index 0000000..c4fa531
--- /dev/null
+++ b/resources/svg/o-stethoscope.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-sti.svg b/resources/svg/o-sti.svg
new file mode 100644
index 0000000..2232023
--- /dev/null
+++ b/resources/svg/o-sti.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-stock_out.svg b/resources/svg/o-stock_out.svg
new file mode 100644
index 0000000..90c6447
--- /dev/null
+++ b/resources/svg/o-stock_out.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-stop.svg b/resources/svg/o-stop.svg
new file mode 100644
index 0000000..d047d80
--- /dev/null
+++ b/resources/svg/o-stop.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-surgical_sterilization.svg b/resources/svg/o-surgical_sterilization.svg
new file mode 100644
index 0000000..c9db2b9
--- /dev/null
+++ b/resources/svg/o-surgical_sterilization.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-sweating.svg b/resources/svg/o-sweating.svg
new file mode 100644
index 0000000..085491c
--- /dev/null
+++ b/resources/svg/o-sweating.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-symptom.svg b/resources/svg/o-symptom.svg
new file mode 100644
index 0000000..6fbb50f
--- /dev/null
+++ b/resources/svg/o-symptom.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-synergist_insecticide_bioassays.svg b/resources/svg/o-synergist_insecticide_bioassays.svg
new file mode 100644
index 0000000..9f0f8de
--- /dev/null
+++ b/resources/svg/o-synergist_insecticide_bioassays.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-syringe.svg b/resources/svg/o-syringe.svg
new file mode 100644
index 0000000..cbe575c
--- /dev/null
+++ b/resources/svg/o-syringe.svg
@@ -0,0 +1,18 @@
+
diff --git a/resources/svg/o-tac.svg b/resources/svg/o-tac.svg
new file mode 100644
index 0000000..c3a28a1
--- /dev/null
+++ b/resources/svg/o-tac.svg
@@ -0,0 +1,6 @@
+
diff --git a/resources/svg/o-tb.svg b/resources/svg/o-tb.svg
new file mode 100644
index 0000000..aa4e972
--- /dev/null
+++ b/resources/svg/o-tb.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-thermometer.svg b/resources/svg/o-thermometer.svg
new file mode 100644
index 0000000..cf3db2f
--- /dev/null
+++ b/resources/svg/o-thermometer.svg
@@ -0,0 +1,13 @@
+
diff --git a/resources/svg/o-transgender.svg b/resources/svg/o-transgender.svg
new file mode 100644
index 0000000..6a98c6e
--- /dev/null
+++ b/resources/svg/o-transgender.svg
@@ -0,0 +1,10 @@
+
diff --git a/resources/svg/o-traumatism.svg b/resources/svg/o-traumatism.svg
new file mode 100644
index 0000000..2db497c
--- /dev/null
+++ b/resources/svg/o-traumatism.svg
@@ -0,0 +1,7 @@
+
diff --git a/resources/svg/o-travel.svg b/resources/svg/o-travel.svg
new file mode 100644
index 0000000..bcfa1cb
--- /dev/null
+++ b/resources/svg/o-travel.svg
@@ -0,0 +1,8 @@
+
diff --git a/resources/svg/o-treated_water.svg b/resources/svg/o-treated_water.svg
new file mode 100644
index 0000000..8745150
--- /dev/null
+++ b/resources/svg/o-treated_water.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-triangle_large.svg b/resources/svg/o-triangle_large.svg
new file mode 100644
index 0000000..bca1c1f
--- /dev/null
+++ b/resources/svg/o-triangle_large.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-triangle_medium.svg b/resources/svg/o-triangle_medium.svg
new file mode 100644
index 0000000..48015c8
--- /dev/null
+++ b/resources/svg/o-triangle_medium.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-triangle_small.svg b/resources/svg/o-triangle_small.svg
new file mode 100644
index 0000000..81bb7cd
--- /dev/null
+++ b/resources/svg/o-triangle_small.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-truck_driver.svg b/resources/svg/o-truck_driver.svg
new file mode 100644
index 0000000..44085d6
--- /dev/null
+++ b/resources/svg/o-truck_driver.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-un_pave_road.svg b/resources/svg/o-un_pave_road.svg
new file mode 100644
index 0000000..e3c6427
--- /dev/null
+++ b/resources/svg/o-un_pave_road.svg
@@ -0,0 +1,27 @@
+
diff --git a/resources/svg/o-underweight.svg b/resources/svg/o-underweight.svg
new file mode 100644
index 0000000..eb1e75f
--- /dev/null
+++ b/resources/svg/o-underweight.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-vespa_motorcycle.svg b/resources/svg/o-vespa_motorcycle.svg
new file mode 100644
index 0000000..bc2379f
--- /dev/null
+++ b/resources/svg/o-vespa_motorcycle.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-vih.svg b/resources/svg/o-vih.svg
new file mode 100644
index 0000000..7afbd13
--- /dev/null
+++ b/resources/svg/o-vih.svg
@@ -0,0 +1,14 @@
+
diff --git a/resources/svg/o-virus.svg b/resources/svg/o-virus.svg
new file mode 100644
index 0000000..d522e5d
--- /dev/null
+++ b/resources/svg/o-virus.svg
@@ -0,0 +1,3 @@
+
diff --git a/resources/svg/o-vomiting.svg b/resources/svg/o-vomiting.svg
new file mode 100644
index 0000000..18a481e
--- /dev/null
+++ b/resources/svg/o-vomiting.svg
@@ -0,0 +1,9 @@
+
diff --git a/resources/svg/o-war.svg b/resources/svg/o-war.svg
new file mode 100644
index 0000000..9bf8b79
--- /dev/null
+++ b/resources/svg/o-war.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-wash_hands.svg b/resources/svg/o-wash_hands.svg
new file mode 100644
index 0000000..eb68fbd
--- /dev/null
+++ b/resources/svg/o-wash_hands.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-water_sanitation.svg b/resources/svg/o-water_sanitation.svg
new file mode 100644
index 0000000..fb0ada9
--- /dev/null
+++ b/resources/svg/o-water_sanitation.svg
@@ -0,0 +1,11 @@
+
diff --git a/resources/svg/o-water_treatment.svg b/resources/svg/o-water_treatment.svg
new file mode 100644
index 0000000..2665109
--- /dev/null
+++ b/resources/svg/o-water_treatment.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-weight.svg b/resources/svg/o-weight.svg
new file mode 100644
index 0000000..922814d
--- /dev/null
+++ b/resources/svg/o-weight.svg
@@ -0,0 +1,5 @@
+
diff --git a/resources/svg/o-wold_care.svg b/resources/svg/o-wold_care.svg
new file mode 100644
index 0000000..b53c08c
--- /dev/null
+++ b/resources/svg/o-wold_care.svg
@@ -0,0 +1,17 @@
+
diff --git a/resources/svg/o-woman.svg b/resources/svg/o-woman.svg
new file mode 100644
index 0000000..3e5cde1
--- /dev/null
+++ b/resources/svg/o-woman.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-yes.svg b/resources/svg/o-yes.svg
new file mode 100644
index 0000000..94f9560
--- /dev/null
+++ b/resources/svg/o-yes.svg
@@ -0,0 +1,4 @@
+
diff --git a/resources/svg/o-young_people.svg b/resources/svg/o-young_people.svg
new file mode 100644
index 0000000..cc37f23
--- /dev/null
+++ b/resources/svg/o-young_people.svg
@@ -0,0 +1,18 @@
+
diff --git a/socialcard-blade-health-icons.png b/socialcard-blade-health-icons.png
new file mode 100644
index 0000000..bc90591
Binary files /dev/null and b/socialcard-blade-health-icons.png differ
diff --git a/src/BladeHealthIconsServiceProvider.php b/src/BladeHealthIconsServiceProvider.php
new file mode 100644
index 0000000..03108d3
--- /dev/null
+++ b/src/BladeHealthIconsServiceProvider.php
@@ -0,0 +1,39 @@
+registerConfig();
+
+ $this->callAfterResolving(Factory::class, function (Factory $factory, Container $container) {
+ $config = $container->make('config')->get('blade-health-icons', []);
+
+ $factory->add('health-icons', array_merge(['path' => __DIR__ . '/../resources/svg'], $config));
+ });
+ }
+
+ private function registerConfig() : void
+ {
+ $this->mergeConfigFrom(__DIR__ . '/../config/blade-health-icons.php', 'blade-health-icons');
+ }
+
+ public function boot() : void
+ {
+ if ($this->app->runningInConsole()) {
+ $this->publishes([
+ __DIR__ . '/../resources/svg' => public_path('vendor/blade-health-icons'),
+ ], 'blade-health-icons');
+
+ $this->publishes([
+ __DIR__ . '/../config/blade-health-icons.php' => $this->app->configPath('blade-health-icons.php'),
+ ], 'blade-health-icons-config');
+ }
+ }
+}
\ No newline at end of file