├── .github ├── FUNDING.yml └── workflows │ └── build.yaml ├── LICENSE ├── README.md ├── cert ├── README └── cert.py ├── fonts ├── .gitignore ├── README ├── fontconvert │ ├── Makefile │ ├── fontconvert.c │ ├── gfxfont.h │ └── license.txt ├── ttf │ ├── FreeMono.otf │ ├── FreeSans.otf │ ├── FreeSerif.otf │ ├── Lato-Regular.ttf │ ├── Montserrat-Regular.ttf │ ├── OpenSans-Regular.ttf │ ├── Poppins-Regular.ttf │ ├── Quicksand-Regular.ttf │ ├── Raleway-Regular.ttf │ ├── Roboto-Regular.ttf │ ├── RobotoMono-Regular.ttf │ ├── RobotoSlab-Regular.ttf │ ├── Ubuntu-R.ttf │ └── UbuntuMono-R.ttf └── ttf_to_adafruit_gfx.sh ├── icons ├── .gitignore ├── Makefile ├── README ├── final_generate_icons_h.py ├── png_to_header.py ├── rotate_90_svg │ ├── README │ ├── battery_0_bar.svg │ ├── battery_1_bar.svg │ ├── battery_2_bar.svg │ ├── battery_3_bar.svg │ ├── battery_4_bar.svg │ ├── battery_5_bar.svg │ ├── battery_6_bar.svg │ ├── battery_alert.svg │ ├── battery_charging_full.svg │ ├── battery_full.svg │ └── generate_rotated_90.sh ├── rotate_wind_direction_svg │ ├── README │ ├── generate_rotated_wind_direction_svg.sh │ ├── wi-wind.svg │ └── wind_direction_meteorological.svg ├── svg │ ├── air_filter.svg │ ├── battery_0_bar_0deg.svg │ ├── battery_0_bar_180deg.svg │ ├── battery_0_bar_270deg.svg │ ├── battery_0_bar_90deg.svg │ ├── battery_1_bar_0deg.svg │ ├── battery_1_bar_180deg.svg │ ├── battery_1_bar_270deg.svg │ ├── battery_1_bar_90deg.svg │ ├── battery_2_bar_0deg.svg │ ├── battery_2_bar_180deg.svg │ ├── battery_2_bar_270deg.svg │ ├── battery_2_bar_90deg.svg │ ├── battery_3_bar_0deg.svg │ ├── battery_3_bar_180deg.svg │ ├── battery_3_bar_270deg.svg │ ├── battery_3_bar_90deg.svg │ ├── battery_4_bar_0deg.svg │ ├── battery_4_bar_180deg.svg │ ├── battery_4_bar_270deg.svg │ ├── battery_4_bar_90deg.svg │ ├── battery_5_bar_0deg.svg │ ├── battery_5_bar_180deg.svg │ ├── battery_5_bar_270deg.svg │ ├── battery_5_bar_90deg.svg │ ├── battery_6_bar_0deg.svg │ ├── battery_6_bar_180deg.svg │ ├── battery_6_bar_270deg.svg │ ├── battery_6_bar_90deg.svg │ ├── battery_alert_0deg.svg │ ├── battery_alert_180deg.svg │ ├── battery_alert_270deg.svg │ ├── battery_alert_90deg.svg │ ├── battery_charging_full_0deg.svg │ ├── battery_charging_full_180deg.svg │ ├── battery_charging_full_270deg.svg │ ├── battery_charging_full_90deg.svg │ ├── battery_full_0deg.svg │ ├── battery_full_180deg.svg │ ├── battery_full_270deg.svg │ ├── battery_full_90deg.svg │ ├── biological_hazard_symbol.svg │ ├── error_icon.svg │ ├── house.svg │ ├── house_humidity.svg │ ├── house_raindrops.svg │ ├── house_thermometer.svg │ ├── ionizing_radiation_symbol.svg │ ├── visibility_icon.svg │ ├── warning_icon.svg │ ├── wi-alien.svg │ ├── wi-barometer.svg │ ├── wi-celsius.svg │ ├── wi-cloud-down.svg │ ├── wi-cloud-refresh.svg │ ├── wi-cloud-up.svg │ ├── wi-cloud.svg │ ├── wi-cloudy-gusts.svg │ ├── wi-cloudy-windy.svg │ ├── wi-cloudy.svg │ ├── wi-day-cloudy-gusts.svg │ ├── wi-day-cloudy-high.svg │ ├── wi-day-cloudy-windy.svg │ ├── wi-day-cloudy.svg │ ├── wi-day-fog.svg │ ├── wi-day-hail.svg │ ├── wi-day-haze.svg │ ├── wi-day-light-wind.svg │ ├── wi-day-lightning.svg │ ├── wi-day-rain-mix.svg │ ├── wi-day-rain-wind.svg │ ├── wi-day-rain.svg │ ├── wi-day-showers.svg │ ├── wi-day-sleet-storm.svg │ ├── wi-day-sleet.svg │ ├── wi-day-snow-thunderstorm.svg │ ├── wi-day-snow-wind.svg │ ├── wi-day-snow.svg │ ├── wi-day-sprinkle.svg │ ├── wi-day-storm-showers.svg │ ├── wi-day-sunny-overcast.svg │ ├── wi-day-sunny.svg │ ├── wi-day-thunderstorm.svg │ ├── wi-day-windy.svg │ ├── wi-degrees.svg │ ├── wi-direction-down-left.svg │ ├── wi-direction-down-right.svg │ ├── wi-direction-down.svg │ ├── wi-direction-left.svg │ ├── wi-direction-right.svg │ ├── wi-direction-up-left.svg │ ├── wi-direction-up-right.svg │ ├── wi-direction-up.svg │ ├── wi-dust.svg │ ├── wi-earthquake.svg │ ├── wi-fahrenheit.svg │ ├── wi-fire.svg │ ├── wi-flood.svg │ ├── wi-fog.svg │ ├── wi-gale-warning.svg │ ├── wi-hail.svg │ ├── wi-horizon-alt.svg │ ├── wi-horizon.svg │ ├── wi-hot.svg │ ├── wi-humidity.svg │ ├── wi-hurricane-warning.svg │ ├── wi-hurricane.svg │ ├── wi-lightning.svg │ ├── wi-lunar-eclipse.svg │ ├── wi-meteor.svg │ ├── wi-moon-alt-first-quarter.svg │ ├── wi-moon-alt-full.svg │ ├── wi-moon-alt-new.svg │ ├── wi-moon-alt-third-quarter.svg │ ├── wi-moon-alt-waning-crescent-1.svg │ ├── wi-moon-alt-waning-crescent-2.svg │ ├── wi-moon-alt-waning-crescent-3.svg │ ├── wi-moon-alt-waning-crescent-4.svg │ ├── wi-moon-alt-waning-crescent-5.svg │ ├── wi-moon-alt-waning-crescent-6.svg │ ├── wi-moon-alt-waning-gibbous-1.svg │ ├── wi-moon-alt-waning-gibbous-2.svg │ ├── wi-moon-alt-waning-gibbous-3.svg │ ├── wi-moon-alt-waning-gibbous-4.svg │ ├── wi-moon-alt-waning-gibbous-5.svg │ ├── wi-moon-alt-waning-gibbous-6.svg │ ├── wi-moon-alt-waxing-crescent-1.svg │ ├── wi-moon-alt-waxing-crescent-2.svg │ ├── wi-moon-alt-waxing-crescent-3.svg │ ├── wi-moon-alt-waxing-crescent-4.svg │ ├── wi-moon-alt-waxing-crescent-5.svg │ ├── wi-moon-alt-waxing-crescent-6.svg │ ├── wi-moon-alt-waxing-gibbous-1.svg │ ├── wi-moon-alt-waxing-gibbous-2.svg │ ├── wi-moon-alt-waxing-gibbous-3.svg │ ├── wi-moon-alt-waxing-gibbous-4.svg │ ├── wi-moon-alt-waxing-gibbous-5.svg │ ├── wi-moon-alt-waxing-gibbous-6.svg │ ├── wi-moon-first-quarter.svg │ ├── wi-moon-full.svg │ ├── wi-moon-new.svg │ ├── wi-moon-third-quarter.svg │ ├── wi-moon-waning-crescent-1.svg │ ├── wi-moon-waning-crescent-2.svg │ ├── wi-moon-waning-crescent-3.svg │ ├── wi-moon-waning-crescent-4.svg │ ├── wi-moon-waning-crescent-5.svg │ ├── wi-moon-waning-crescent-6.svg │ ├── wi-moon-waning-gibbous-1.svg │ ├── wi-moon-waning-gibbous-2.svg │ ├── wi-moon-waning-gibbous-3.svg │ ├── wi-moon-waning-gibbous-4.svg │ ├── wi-moon-waning-gibbous-5.svg │ ├── wi-moon-waning-gibbous-6.svg │ ├── wi-moon-waxing-6.svg │ ├── wi-moon-waxing-crescent-1.svg │ ├── wi-moon-waxing-crescent-2.svg │ ├── wi-moon-waxing-crescent-3.svg │ ├── wi-moon-waxing-crescent-4.svg │ ├── wi-moon-waxing-crescent-5.svg │ ├── wi-moon-waxing-gibbous-1.svg │ ├── wi-moon-waxing-gibbous-2.svg │ ├── wi-moon-waxing-gibbous-3.svg │ ├── wi-moon-waxing-gibbous-4.svg │ ├── wi-moon-waxing-gibbous-5.svg │ ├── wi-moon-waxing-gibbous-6.svg │ ├── wi-moonrise.svg │ ├── wi-moonset.svg │ ├── wi-na.svg │ ├── wi-night-alt-cloudy-gusts.svg │ ├── wi-night-alt-cloudy-high.svg │ ├── wi-night-alt-cloudy-windy.svg │ ├── wi-night-alt-cloudy.svg │ ├── wi-night-alt-hail.svg │ ├── wi-night-alt-lightning.svg │ ├── wi-night-alt-partly-cloudy.svg │ ├── wi-night-alt-rain-mix.svg │ ├── wi-night-alt-rain-wind.svg │ ├── wi-night-alt-rain.svg │ ├── wi-night-alt-showers.svg │ ├── wi-night-alt-sleet-storm.svg │ ├── wi-night-alt-sleet.svg │ ├── wi-night-alt-snow-thunderstorm.svg │ ├── wi-night-alt-snow-wind.svg │ ├── wi-night-alt-snow.svg │ ├── wi-night-alt-sprinkle.svg │ ├── wi-night-alt-storm-showers.svg │ ├── wi-night-alt-thunderstorm.svg │ ├── wi-night-clear.svg │ ├── wi-night-cloudy-gusts.svg │ ├── wi-night-cloudy-high.svg │ ├── wi-night-cloudy-windy.svg │ ├── wi-night-cloudy.svg │ ├── wi-night-fog.svg │ ├── wi-night-hail.svg │ ├── wi-night-lightning.svg │ ├── wi-night-partly-cloudy.svg │ ├── wi-night-rain-mix.svg │ ├── wi-night-rain-wind.svg │ ├── wi-night-rain.svg │ ├── wi-night-showers.svg │ ├── wi-night-sleet-storm.svg │ ├── wi-night-sleet.svg │ ├── wi-night-snow-thunderstorm.svg │ ├── wi-night-snow-wind.svg │ ├── wi-night-snow.svg │ ├── wi-night-sprinkle.svg │ ├── wi-night-storm-showers.svg │ ├── wi-night-thunderstorm.svg │ ├── wi-rain-mix.svg │ ├── wi-rain-wind.svg │ ├── wi-rain.svg │ ├── wi-raindrop.svg │ ├── wi-raindrops.svg │ ├── wi-refresh-alt.svg │ ├── wi-refresh.svg │ ├── wi-sandstorm.svg │ ├── wi-showers.svg │ ├── wi-sleet.svg │ ├── wi-small-craft-advisory.svg │ ├── wi-smog.svg │ ├── wi-smoke.svg │ ├── wi-snow-wind.svg │ ├── wi-snow.svg │ ├── wi-snowflake-cold.svg │ ├── wi-solar-eclipse.svg │ ├── wi-sprinkle.svg │ ├── wi-stars.svg │ ├── wi-storm-showers.svg │ ├── wi-storm-warning.svg │ ├── wi-strong-wind.svg │ ├── wi-sunrise.svg │ ├── wi-sunset.svg │ ├── wi-thermometer-exterior.svg │ ├── wi-thermometer-internal.svg │ ├── wi-thermometer.svg │ ├── wi-thunderstorm.svg │ ├── wi-time-1.svg │ ├── wi-time-10.svg │ ├── wi-time-11.svg │ ├── wi-time-12.svg │ ├── wi-time-2.svg │ ├── wi-time-3.svg │ ├── wi-time-4.svg │ ├── wi-time-5.svg │ ├── wi-time-6.svg │ ├── wi-time-7.svg │ ├── wi-time-8.svg │ ├── wi-time-9.svg │ ├── wi-tornado.svg │ ├── wi-train.svg │ ├── wi-tsunami.svg │ ├── wi-umbrella.svg │ ├── wi-volcano.svg │ ├── wi-wind-0deg.svg │ ├── wi-wind-100deg.svg │ ├── wi-wind-101_25deg.svg │ ├── wi-wind-101deg.svg │ ├── wi-wind-102deg.svg │ ├── wi-wind-103deg.svg │ ├── wi-wind-104deg.svg │ ├── wi-wind-105deg.svg │ ├── wi-wind-106deg.svg │ ├── wi-wind-107deg.svg │ ├── wi-wind-108deg.svg │ ├── wi-wind-109deg.svg │ ├── wi-wind-10deg.svg │ ├── wi-wind-110deg.svg │ ├── wi-wind-111deg.svg │ ├── wi-wind-112_5deg.svg │ ├── wi-wind-112deg.svg │ ├── wi-wind-113deg.svg │ ├── wi-wind-114deg.svg │ ├── wi-wind-115deg.svg │ ├── wi-wind-116deg.svg │ ├── wi-wind-117deg.svg │ ├── wi-wind-118deg.svg │ ├── wi-wind-119deg.svg │ ├── wi-wind-11_25deg.svg │ ├── wi-wind-11deg.svg │ ├── wi-wind-120deg.svg │ ├── wi-wind-121deg.svg │ ├── wi-wind-122deg.svg │ ├── wi-wind-123_75deg.svg │ ├── wi-wind-123deg.svg │ ├── wi-wind-124deg.svg │ ├── wi-wind-125deg.svg │ ├── wi-wind-126deg.svg │ ├── wi-wind-127deg.svg │ ├── wi-wind-128deg.svg │ ├── wi-wind-129deg.svg │ ├── wi-wind-12deg.svg │ ├── wi-wind-130deg.svg │ ├── wi-wind-131deg.svg │ ├── wi-wind-132deg.svg │ ├── wi-wind-133deg.svg │ ├── wi-wind-134deg.svg │ ├── wi-wind-135deg.svg │ ├── wi-wind-136deg.svg │ ├── wi-wind-137deg.svg │ ├── wi-wind-138deg.svg │ ├── wi-wind-139deg.svg │ ├── wi-wind-13deg.svg │ ├── wi-wind-140deg.svg │ ├── wi-wind-141deg.svg │ ├── wi-wind-142deg.svg │ ├── wi-wind-143deg.svg │ ├── wi-wind-144deg.svg │ ├── wi-wind-145deg.svg │ ├── wi-wind-146_25deg.svg │ ├── wi-wind-146deg.svg │ ├── wi-wind-147deg.svg │ ├── wi-wind-148deg.svg │ ├── wi-wind-149deg.svg │ ├── wi-wind-14deg.svg │ ├── wi-wind-150deg.svg │ ├── wi-wind-151deg.svg │ ├── wi-wind-152deg.svg │ ├── wi-wind-153deg.svg │ ├── wi-wind-154deg.svg │ ├── wi-wind-155deg.svg │ ├── wi-wind-156deg.svg │ ├── wi-wind-157_5deg.svg │ ├── wi-wind-157deg.svg │ ├── wi-wind-158deg.svg │ ├── wi-wind-159deg.svg │ ├── wi-wind-15deg.svg │ ├── wi-wind-160deg.svg │ ├── wi-wind-161deg.svg │ ├── wi-wind-162deg.svg │ ├── wi-wind-163deg.svg │ ├── wi-wind-164deg.svg │ ├── wi-wind-165deg.svg │ ├── wi-wind-166deg.svg │ ├── wi-wind-167deg.svg │ ├── wi-wind-168_75deg.svg │ ├── wi-wind-168deg.svg │ ├── wi-wind-169deg.svg │ ├── wi-wind-16deg.svg │ ├── wi-wind-170deg.svg │ ├── wi-wind-171deg.svg │ ├── wi-wind-172deg.svg │ ├── wi-wind-173deg.svg │ ├── wi-wind-174deg.svg │ ├── wi-wind-175deg.svg │ ├── wi-wind-176deg.svg │ ├── wi-wind-177deg.svg │ ├── wi-wind-178deg.svg │ ├── wi-wind-179deg.svg │ ├── wi-wind-17deg.svg │ ├── wi-wind-180deg.svg │ ├── wi-wind-181deg.svg │ ├── wi-wind-182deg.svg │ ├── wi-wind-183deg.svg │ ├── wi-wind-184deg.svg │ ├── wi-wind-185deg.svg │ ├── wi-wind-186deg.svg │ ├── wi-wind-187deg.svg │ ├── wi-wind-188deg.svg │ ├── wi-wind-189deg.svg │ ├── wi-wind-18deg.svg │ ├── wi-wind-190deg.svg │ ├── wi-wind-191_25deg.svg │ ├── wi-wind-191deg.svg │ ├── wi-wind-192deg.svg │ ├── wi-wind-193deg.svg │ ├── wi-wind-194deg.svg │ ├── wi-wind-195deg.svg │ ├── wi-wind-196deg.svg │ ├── wi-wind-197deg.svg │ ├── wi-wind-198deg.svg │ ├── wi-wind-199deg.svg │ ├── wi-wind-19deg.svg │ ├── wi-wind-1deg.svg │ ├── wi-wind-200deg.svg │ ├── wi-wind-201deg.svg │ ├── wi-wind-202_5deg.svg │ ├── wi-wind-202deg.svg │ ├── wi-wind-203deg.svg │ ├── wi-wind-204deg.svg │ ├── wi-wind-205deg.svg │ ├── wi-wind-206deg.svg │ ├── wi-wind-207deg.svg │ ├── wi-wind-208deg.svg │ ├── wi-wind-209deg.svg │ ├── wi-wind-20deg.svg │ ├── wi-wind-210deg.svg │ ├── wi-wind-211deg.svg │ ├── wi-wind-212deg.svg │ ├── wi-wind-213_75deg.svg │ ├── wi-wind-213deg.svg │ ├── wi-wind-214deg.svg │ ├── wi-wind-215deg.svg │ ├── wi-wind-216deg.svg │ ├── wi-wind-217deg.svg │ ├── wi-wind-218deg.svg │ ├── wi-wind-219deg.svg │ ├── wi-wind-21deg.svg │ ├── wi-wind-220deg.svg │ ├── wi-wind-221deg.svg │ ├── wi-wind-222deg.svg │ ├── wi-wind-223deg.svg │ ├── wi-wind-224deg.svg │ ├── wi-wind-225deg.svg │ ├── wi-wind-226deg.svg │ ├── wi-wind-227deg.svg │ ├── wi-wind-228deg.svg │ ├── wi-wind-229deg.svg │ ├── wi-wind-22_5deg.svg │ ├── wi-wind-22deg.svg │ ├── wi-wind-230deg.svg │ ├── wi-wind-231deg.svg │ ├── wi-wind-232deg.svg │ ├── wi-wind-233deg.svg │ ├── wi-wind-234deg.svg │ ├── wi-wind-235deg.svg │ ├── wi-wind-236_25deg.svg │ ├── wi-wind-236deg.svg │ ├── wi-wind-237deg.svg │ ├── wi-wind-238deg.svg │ ├── wi-wind-239deg.svg │ ├── wi-wind-23deg.svg │ ├── wi-wind-240deg.svg │ ├── wi-wind-241deg.svg │ ├── wi-wind-242deg.svg │ ├── wi-wind-243deg.svg │ ├── wi-wind-244deg.svg │ ├── wi-wind-245deg.svg │ ├── wi-wind-246deg.svg │ ├── wi-wind-247_5deg.svg │ ├── wi-wind-247deg.svg │ ├── wi-wind-248deg.svg │ ├── wi-wind-249deg.svg │ ├── wi-wind-24deg.svg │ ├── wi-wind-250deg.svg │ ├── wi-wind-251deg.svg │ ├── wi-wind-252deg.svg │ ├── wi-wind-253deg.svg │ ├── wi-wind-254deg.svg │ ├── wi-wind-255deg.svg │ ├── wi-wind-256deg.svg │ ├── wi-wind-257deg.svg │ ├── wi-wind-258_75deg.svg │ ├── wi-wind-258deg.svg │ ├── wi-wind-259deg.svg │ ├── wi-wind-25deg.svg │ ├── wi-wind-260deg.svg │ ├── wi-wind-261deg.svg │ ├── wi-wind-262deg.svg │ ├── wi-wind-263deg.svg │ ├── wi-wind-264deg.svg │ ├── wi-wind-265deg.svg │ ├── wi-wind-266deg.svg │ ├── wi-wind-267deg.svg │ ├── wi-wind-268deg.svg │ ├── wi-wind-269deg.svg │ ├── wi-wind-26deg.svg │ ├── wi-wind-270deg.svg │ ├── wi-wind-271deg.svg │ ├── wi-wind-272deg.svg │ ├── wi-wind-273deg.svg │ ├── wi-wind-274deg.svg │ ├── wi-wind-275deg.svg │ ├── wi-wind-276deg.svg │ ├── wi-wind-277deg.svg │ ├── wi-wind-278deg.svg │ ├── wi-wind-279deg.svg │ ├── wi-wind-27deg.svg │ ├── wi-wind-280deg.svg │ ├── wi-wind-281_25deg.svg │ ├── wi-wind-281deg.svg │ ├── wi-wind-282deg.svg │ ├── wi-wind-283deg.svg │ ├── wi-wind-284deg.svg │ ├── wi-wind-285deg.svg │ ├── wi-wind-286deg.svg │ ├── wi-wind-287deg.svg │ ├── wi-wind-288deg.svg │ ├── wi-wind-289deg.svg │ ├── wi-wind-28deg.svg │ ├── wi-wind-290deg.svg │ ├── wi-wind-291deg.svg │ ├── wi-wind-292_5deg.svg │ ├── wi-wind-292deg.svg │ ├── wi-wind-293deg.svg │ ├── wi-wind-294deg.svg │ ├── wi-wind-295deg.svg │ ├── wi-wind-296deg.svg │ ├── wi-wind-297deg.svg │ ├── wi-wind-298deg.svg │ ├── wi-wind-299deg.svg │ ├── wi-wind-29deg.svg │ ├── wi-wind-2deg.svg │ ├── wi-wind-300deg.svg │ ├── wi-wind-301deg.svg │ ├── wi-wind-302deg.svg │ ├── wi-wind-303_75deg.svg │ ├── wi-wind-303deg.svg │ ├── wi-wind-304deg.svg │ ├── wi-wind-305deg.svg │ ├── wi-wind-306deg.svg │ ├── wi-wind-307deg.svg │ ├── wi-wind-308deg.svg │ ├── wi-wind-309deg.svg │ ├── wi-wind-30deg.svg │ ├── wi-wind-310deg.svg │ ├── wi-wind-311deg.svg │ ├── wi-wind-312deg.svg │ ├── wi-wind-313deg.svg │ ├── wi-wind-314deg.svg │ ├── wi-wind-315deg.svg │ ├── wi-wind-316deg.svg │ ├── wi-wind-317deg.svg │ ├── wi-wind-318deg.svg │ ├── wi-wind-319deg.svg │ ├── wi-wind-31deg.svg │ ├── wi-wind-320deg.svg │ ├── wi-wind-321deg.svg │ ├── wi-wind-322deg.svg │ ├── wi-wind-323deg.svg │ ├── wi-wind-324deg.svg │ ├── wi-wind-325deg.svg │ ├── wi-wind-326_25deg.svg │ ├── wi-wind-326deg.svg │ ├── wi-wind-327deg.svg │ ├── wi-wind-328deg.svg │ ├── wi-wind-329deg.svg │ ├── wi-wind-32deg.svg │ ├── wi-wind-330deg.svg │ ├── wi-wind-331deg.svg │ ├── wi-wind-332deg.svg │ ├── wi-wind-333deg.svg │ ├── wi-wind-334deg.svg │ ├── wi-wind-335deg.svg │ ├── wi-wind-336deg.svg │ ├── wi-wind-337_5deg.svg │ ├── wi-wind-337deg.svg │ ├── wi-wind-338deg.svg │ ├── wi-wind-339deg.svg │ ├── wi-wind-33_75deg.svg │ ├── wi-wind-33deg.svg │ ├── wi-wind-340deg.svg │ ├── wi-wind-341deg.svg │ ├── wi-wind-342deg.svg │ ├── wi-wind-343deg.svg │ ├── wi-wind-344deg.svg │ ├── wi-wind-345deg.svg │ ├── wi-wind-346deg.svg │ ├── wi-wind-347deg.svg │ ├── wi-wind-348_75deg.svg │ ├── wi-wind-348deg.svg │ ├── wi-wind-349deg.svg │ ├── wi-wind-34deg.svg │ ├── wi-wind-350deg.svg │ ├── wi-wind-351deg.svg │ ├── wi-wind-352deg.svg │ ├── wi-wind-353deg.svg │ ├── wi-wind-354deg.svg │ ├── wi-wind-355deg.svg │ ├── wi-wind-356deg.svg │ ├── wi-wind-357deg.svg │ ├── wi-wind-358deg.svg │ ├── wi-wind-359deg.svg │ ├── wi-wind-35deg.svg │ ├── wi-wind-36deg.svg │ ├── wi-wind-37deg.svg │ ├── wi-wind-38deg.svg │ ├── wi-wind-39deg.svg │ ├── wi-wind-3deg.svg │ ├── wi-wind-40deg.svg │ ├── wi-wind-41deg.svg │ ├── wi-wind-42deg.svg │ ├── wi-wind-43deg.svg │ ├── wi-wind-44deg.svg │ ├── wi-wind-45deg.svg │ ├── wi-wind-46deg.svg │ ├── wi-wind-47deg.svg │ ├── wi-wind-48deg.svg │ ├── wi-wind-49deg.svg │ ├── wi-wind-4deg.svg │ ├── wi-wind-50deg.svg │ ├── wi-wind-51deg.svg │ ├── wi-wind-52deg.svg │ ├── wi-wind-53deg.svg │ ├── wi-wind-54deg.svg │ ├── wi-wind-55deg.svg │ ├── wi-wind-56_25deg.svg │ ├── wi-wind-56deg.svg │ ├── wi-wind-57deg.svg │ ├── wi-wind-58deg.svg │ ├── wi-wind-59deg.svg │ ├── wi-wind-5deg.svg │ ├── wi-wind-60deg.svg │ ├── wi-wind-61deg.svg │ ├── wi-wind-62deg.svg │ ├── wi-wind-63deg.svg │ ├── wi-wind-64deg.svg │ ├── wi-wind-65deg.svg │ ├── wi-wind-66deg.svg │ ├── wi-wind-67_5deg.svg │ ├── wi-wind-67deg.svg │ ├── wi-wind-68deg.svg │ ├── wi-wind-69deg.svg │ ├── wi-wind-6deg.svg │ ├── wi-wind-70deg.svg │ ├── wi-wind-71deg.svg │ ├── wi-wind-72deg.svg │ ├── wi-wind-73deg.svg │ ├── wi-wind-74deg.svg │ ├── wi-wind-75deg.svg │ ├── wi-wind-76deg.svg │ ├── wi-wind-77deg.svg │ ├── wi-wind-78_75deg.svg │ ├── wi-wind-78deg.svg │ ├── wi-wind-79deg.svg │ ├── wi-wind-7deg.svg │ ├── wi-wind-80deg.svg │ ├── wi-wind-81deg.svg │ ├── wi-wind-82deg.svg │ ├── wi-wind-83deg.svg │ ├── wi-wind-84deg.svg │ ├── wi-wind-85deg.svg │ ├── wi-wind-86deg.svg │ ├── wi-wind-87deg.svg │ ├── wi-wind-88deg.svg │ ├── wi-wind-89deg.svg │ ├── wi-wind-8deg.svg │ ├── wi-wind-90deg.svg │ ├── wi-wind-91deg.svg │ ├── wi-wind-92deg.svg │ ├── wi-wind-93deg.svg │ ├── wi-wind-94deg.svg │ ├── wi-wind-95deg.svg │ ├── wi-wind-96deg.svg │ ├── wi-wind-97deg.svg │ ├── wi-wind-98deg.svg │ ├── wi-wind-99deg.svg │ ├── wi-wind-9deg.svg │ ├── wi-wind-beaufort-0.svg │ ├── wi-wind-beaufort-1.svg │ ├── wi-wind-beaufort-10.svg │ ├── wi-wind-beaufort-11.svg │ ├── wi-wind-beaufort-12.svg │ ├── wi-wind-beaufort-2.svg │ ├── wi-wind-beaufort-3.svg │ ├── wi-wind-beaufort-4.svg │ ├── wi-wind-beaufort-5.svg │ ├── wi-wind-beaufort-6.svg │ ├── wi-wind-beaufort-7.svg │ ├── wi-wind-beaufort-8.svg │ ├── wi-wind-beaufort-9.svg │ ├── wi-windy.svg │ ├── wifi.svg │ ├── wifi_1_bar.svg │ ├── wifi_2_bar.svg │ ├── wifi_3_bar.svg │ ├── wifi_off.svg │ ├── wifi_x.svg │ ├── wind_direction_meteorological_0deg.svg │ ├── wind_direction_meteorological_100deg.svg │ ├── wind_direction_meteorological_101_25deg.svg │ ├── wind_direction_meteorological_101deg.svg │ ├── wind_direction_meteorological_102deg.svg │ ├── wind_direction_meteorological_103deg.svg │ ├── wind_direction_meteorological_104deg.svg │ ├── wind_direction_meteorological_105deg.svg │ ├── wind_direction_meteorological_106deg.svg │ ├── wind_direction_meteorological_107deg.svg │ ├── wind_direction_meteorological_108deg.svg │ ├── wind_direction_meteorological_109deg.svg │ ├── wind_direction_meteorological_10deg.svg │ ├── wind_direction_meteorological_110deg.svg │ ├── wind_direction_meteorological_111deg.svg │ ├── wind_direction_meteorological_112_5deg.svg │ ├── wind_direction_meteorological_112deg.svg │ ├── wind_direction_meteorological_113deg.svg │ ├── wind_direction_meteorological_114deg.svg │ ├── wind_direction_meteorological_115deg.svg │ ├── wind_direction_meteorological_116deg.svg │ ├── wind_direction_meteorological_117deg.svg │ ├── wind_direction_meteorological_118deg.svg │ ├── wind_direction_meteorological_119deg.svg │ ├── wind_direction_meteorological_11_25deg.svg │ ├── wind_direction_meteorological_11deg.svg │ ├── wind_direction_meteorological_120deg.svg │ ├── wind_direction_meteorological_121deg.svg │ ├── wind_direction_meteorological_122deg.svg │ ├── wind_direction_meteorological_123_75deg.svg │ ├── wind_direction_meteorological_123deg.svg │ ├── wind_direction_meteorological_124deg.svg │ ├── wind_direction_meteorological_125deg.svg │ ├── wind_direction_meteorological_126deg.svg │ ├── wind_direction_meteorological_127deg.svg │ ├── wind_direction_meteorological_128deg.svg │ ├── wind_direction_meteorological_129deg.svg │ ├── wind_direction_meteorological_12deg.svg │ ├── wind_direction_meteorological_130deg.svg │ ├── wind_direction_meteorological_131deg.svg │ ├── wind_direction_meteorological_132deg.svg │ ├── wind_direction_meteorological_133deg.svg │ ├── wind_direction_meteorological_134deg.svg │ ├── wind_direction_meteorological_135deg.svg │ ├── wind_direction_meteorological_136deg.svg │ ├── wind_direction_meteorological_137deg.svg │ ├── wind_direction_meteorological_138deg.svg │ ├── wind_direction_meteorological_139deg.svg │ ├── wind_direction_meteorological_13deg.svg │ ├── wind_direction_meteorological_140deg.svg │ ├── wind_direction_meteorological_141deg.svg │ ├── wind_direction_meteorological_142deg.svg │ ├── wind_direction_meteorological_143deg.svg │ ├── wind_direction_meteorological_144deg.svg │ ├── wind_direction_meteorological_145deg.svg │ ├── wind_direction_meteorological_146_25deg.svg │ ├── wind_direction_meteorological_146deg.svg │ ├── wind_direction_meteorological_147deg.svg │ ├── wind_direction_meteorological_148deg.svg │ ├── wind_direction_meteorological_149deg.svg │ ├── wind_direction_meteorological_14deg.svg │ ├── wind_direction_meteorological_150deg.svg │ ├── wind_direction_meteorological_151deg.svg │ ├── wind_direction_meteorological_152deg.svg │ ├── wind_direction_meteorological_153deg.svg │ ├── wind_direction_meteorological_154deg.svg │ ├── wind_direction_meteorological_155deg.svg │ ├── wind_direction_meteorological_156deg.svg │ ├── wind_direction_meteorological_157_5deg.svg │ ├── wind_direction_meteorological_157deg.svg │ ├── wind_direction_meteorological_158deg.svg │ ├── wind_direction_meteorological_159deg.svg │ ├── wind_direction_meteorological_15deg.svg │ ├── wind_direction_meteorological_160deg.svg │ ├── wind_direction_meteorological_161deg.svg │ ├── wind_direction_meteorological_162deg.svg │ ├── wind_direction_meteorological_163deg.svg │ ├── wind_direction_meteorological_164deg.svg │ ├── wind_direction_meteorological_165deg.svg │ ├── wind_direction_meteorological_166deg.svg │ ├── wind_direction_meteorological_167deg.svg │ ├── wind_direction_meteorological_168_75deg.svg │ ├── wind_direction_meteorological_168deg.svg │ ├── wind_direction_meteorological_169deg.svg │ ├── wind_direction_meteorological_16deg.svg │ ├── wind_direction_meteorological_170deg.svg │ ├── wind_direction_meteorological_171deg.svg │ ├── wind_direction_meteorological_172deg.svg │ ├── wind_direction_meteorological_173deg.svg │ ├── wind_direction_meteorological_174deg.svg │ ├── wind_direction_meteorological_175deg.svg │ ├── wind_direction_meteorological_176deg.svg │ ├── wind_direction_meteorological_177deg.svg │ ├── wind_direction_meteorological_178deg.svg │ ├── wind_direction_meteorological_179deg.svg │ ├── wind_direction_meteorological_17deg.svg │ ├── wind_direction_meteorological_180deg.svg │ ├── wind_direction_meteorological_181deg.svg │ ├── wind_direction_meteorological_182deg.svg │ ├── wind_direction_meteorological_183deg.svg │ ├── wind_direction_meteorological_184deg.svg │ ├── wind_direction_meteorological_185deg.svg │ ├── wind_direction_meteorological_186deg.svg │ ├── wind_direction_meteorological_187deg.svg │ ├── wind_direction_meteorological_188deg.svg │ ├── wind_direction_meteorological_189deg.svg │ ├── wind_direction_meteorological_18deg.svg │ ├── wind_direction_meteorological_190deg.svg │ ├── wind_direction_meteorological_191_25deg.svg │ ├── wind_direction_meteorological_191deg.svg │ ├── wind_direction_meteorological_192deg.svg │ ├── wind_direction_meteorological_193deg.svg │ ├── wind_direction_meteorological_194deg.svg │ ├── wind_direction_meteorological_195deg.svg │ ├── wind_direction_meteorological_196deg.svg │ ├── wind_direction_meteorological_197deg.svg │ ├── wind_direction_meteorological_198deg.svg │ ├── wind_direction_meteorological_199deg.svg │ ├── wind_direction_meteorological_19deg.svg │ ├── wind_direction_meteorological_1deg.svg │ ├── wind_direction_meteorological_200deg.svg │ ├── wind_direction_meteorological_201deg.svg │ ├── wind_direction_meteorological_202_5deg.svg │ ├── wind_direction_meteorological_202deg.svg │ ├── wind_direction_meteorological_203deg.svg │ ├── wind_direction_meteorological_204deg.svg │ ├── wind_direction_meteorological_205deg.svg │ ├── wind_direction_meteorological_206deg.svg │ ├── wind_direction_meteorological_207deg.svg │ ├── wind_direction_meteorological_208deg.svg │ ├── wind_direction_meteorological_209deg.svg │ ├── wind_direction_meteorological_20deg.svg │ ├── wind_direction_meteorological_210deg.svg │ ├── wind_direction_meteorological_211deg.svg │ ├── wind_direction_meteorological_212deg.svg │ ├── wind_direction_meteorological_213_75deg.svg │ ├── wind_direction_meteorological_213deg.svg │ ├── wind_direction_meteorological_214deg.svg │ ├── wind_direction_meteorological_215deg.svg │ ├── wind_direction_meteorological_216deg.svg │ ├── wind_direction_meteorological_217deg.svg │ ├── wind_direction_meteorological_218deg.svg │ ├── wind_direction_meteorological_219deg.svg │ ├── wind_direction_meteorological_21deg.svg │ ├── wind_direction_meteorological_220deg.svg │ ├── wind_direction_meteorological_221deg.svg │ ├── wind_direction_meteorological_222deg.svg │ ├── wind_direction_meteorological_223deg.svg │ ├── wind_direction_meteorological_224deg.svg │ ├── wind_direction_meteorological_225deg.svg │ ├── wind_direction_meteorological_226deg.svg │ ├── wind_direction_meteorological_227deg.svg │ ├── wind_direction_meteorological_228deg.svg │ ├── wind_direction_meteorological_229deg.svg │ ├── wind_direction_meteorological_22_5deg.svg │ ├── wind_direction_meteorological_22deg.svg │ ├── wind_direction_meteorological_230deg.svg │ ├── wind_direction_meteorological_231deg.svg │ ├── wind_direction_meteorological_232deg.svg │ ├── wind_direction_meteorological_233deg.svg │ ├── wind_direction_meteorological_234deg.svg │ ├── wind_direction_meteorological_235deg.svg │ ├── wind_direction_meteorological_236_25deg.svg │ ├── wind_direction_meteorological_236deg.svg │ ├── wind_direction_meteorological_237deg.svg │ ├── wind_direction_meteorological_238deg.svg │ ├── wind_direction_meteorological_239deg.svg │ ├── wind_direction_meteorological_23deg.svg │ ├── wind_direction_meteorological_240deg.svg │ ├── wind_direction_meteorological_241deg.svg │ ├── wind_direction_meteorological_242deg.svg │ ├── wind_direction_meteorological_243deg.svg │ ├── wind_direction_meteorological_244deg.svg │ ├── wind_direction_meteorological_245deg.svg │ ├── wind_direction_meteorological_246deg.svg │ ├── wind_direction_meteorological_247_5deg.svg │ ├── wind_direction_meteorological_247deg.svg │ ├── wind_direction_meteorological_248deg.svg │ ├── wind_direction_meteorological_249deg.svg │ ├── wind_direction_meteorological_24deg.svg │ ├── wind_direction_meteorological_250deg.svg │ ├── wind_direction_meteorological_251deg.svg │ ├── wind_direction_meteorological_252deg.svg │ ├── wind_direction_meteorological_253deg.svg │ ├── wind_direction_meteorological_254deg.svg │ ├── wind_direction_meteorological_255deg.svg │ ├── wind_direction_meteorological_256deg.svg │ ├── wind_direction_meteorological_257deg.svg │ ├── wind_direction_meteorological_258_75deg.svg │ ├── wind_direction_meteorological_258deg.svg │ ├── wind_direction_meteorological_259deg.svg │ ├── wind_direction_meteorological_25deg.svg │ ├── wind_direction_meteorological_260deg.svg │ ├── wind_direction_meteorological_261deg.svg │ ├── wind_direction_meteorological_262deg.svg │ ├── wind_direction_meteorological_263deg.svg │ ├── wind_direction_meteorological_264deg.svg │ ├── wind_direction_meteorological_265deg.svg │ ├── wind_direction_meteorological_266deg.svg │ ├── wind_direction_meteorological_267deg.svg │ ├── wind_direction_meteorological_268deg.svg │ ├── wind_direction_meteorological_269deg.svg │ ├── wind_direction_meteorological_26deg.svg │ ├── wind_direction_meteorological_270deg.svg │ ├── wind_direction_meteorological_271deg.svg │ ├── wind_direction_meteorological_272deg.svg │ ├── wind_direction_meteorological_273deg.svg │ ├── wind_direction_meteorological_274deg.svg │ ├── wind_direction_meteorological_275deg.svg │ ├── wind_direction_meteorological_276deg.svg │ ├── wind_direction_meteorological_277deg.svg │ ├── wind_direction_meteorological_278deg.svg │ ├── wind_direction_meteorological_279deg.svg │ ├── wind_direction_meteorological_27deg.svg │ ├── wind_direction_meteorological_280deg.svg │ ├── wind_direction_meteorological_281_25deg.svg │ ├── wind_direction_meteorological_281deg.svg │ ├── wind_direction_meteorological_282deg.svg │ ├── wind_direction_meteorological_283deg.svg │ ├── wind_direction_meteorological_284deg.svg │ ├── wind_direction_meteorological_285deg.svg │ ├── wind_direction_meteorological_286deg.svg │ ├── wind_direction_meteorological_287deg.svg │ ├── wind_direction_meteorological_288deg.svg │ ├── wind_direction_meteorological_289deg.svg │ ├── wind_direction_meteorological_28deg.svg │ ├── wind_direction_meteorological_290deg.svg │ ├── wind_direction_meteorological_291deg.svg │ ├── wind_direction_meteorological_292_5deg.svg │ ├── wind_direction_meteorological_292deg.svg │ ├── wind_direction_meteorological_293deg.svg │ ├── wind_direction_meteorological_294deg.svg │ ├── wind_direction_meteorological_295deg.svg │ ├── wind_direction_meteorological_296deg.svg │ ├── wind_direction_meteorological_297deg.svg │ ├── wind_direction_meteorological_298deg.svg │ ├── wind_direction_meteorological_299deg.svg │ ├── wind_direction_meteorological_29deg.svg │ ├── wind_direction_meteorological_2deg.svg │ ├── wind_direction_meteorological_300deg.svg │ ├── wind_direction_meteorological_301deg.svg │ ├── wind_direction_meteorological_302deg.svg │ ├── wind_direction_meteorological_303_75deg.svg │ ├── wind_direction_meteorological_303deg.svg │ ├── wind_direction_meteorological_304deg.svg │ ├── wind_direction_meteorological_305deg.svg │ ├── wind_direction_meteorological_306deg.svg │ ├── wind_direction_meteorological_307deg.svg │ ├── wind_direction_meteorological_308deg.svg │ ├── wind_direction_meteorological_309deg.svg │ ├── wind_direction_meteorological_30deg.svg │ ├── wind_direction_meteorological_310deg.svg │ ├── wind_direction_meteorological_311deg.svg │ ├── wind_direction_meteorological_312deg.svg │ ├── wind_direction_meteorological_313deg.svg │ ├── wind_direction_meteorological_314deg.svg │ ├── wind_direction_meteorological_315deg.svg │ ├── wind_direction_meteorological_316deg.svg │ ├── wind_direction_meteorological_317deg.svg │ ├── wind_direction_meteorological_318deg.svg │ ├── wind_direction_meteorological_319deg.svg │ ├── wind_direction_meteorological_31deg.svg │ ├── wind_direction_meteorological_320deg.svg │ ├── wind_direction_meteorological_321deg.svg │ ├── wind_direction_meteorological_322deg.svg │ ├── wind_direction_meteorological_323deg.svg │ ├── wind_direction_meteorological_324deg.svg │ ├── wind_direction_meteorological_325deg.svg │ ├── wind_direction_meteorological_326_25deg.svg │ ├── wind_direction_meteorological_326deg.svg │ ├── wind_direction_meteorological_327deg.svg │ ├── wind_direction_meteorological_328deg.svg │ ├── wind_direction_meteorological_329deg.svg │ ├── wind_direction_meteorological_32deg.svg │ ├── wind_direction_meteorological_330deg.svg │ ├── wind_direction_meteorological_331deg.svg │ ├── wind_direction_meteorological_332deg.svg │ ├── wind_direction_meteorological_333deg.svg │ ├── wind_direction_meteorological_334deg.svg │ ├── wind_direction_meteorological_335deg.svg │ ├── wind_direction_meteorological_336deg.svg │ ├── wind_direction_meteorological_337_5deg.svg │ ├── wind_direction_meteorological_337deg.svg │ ├── wind_direction_meteorological_338deg.svg │ ├── wind_direction_meteorological_339deg.svg │ ├── wind_direction_meteorological_33_75deg.svg │ ├── wind_direction_meteorological_33deg.svg │ ├── wind_direction_meteorological_340deg.svg │ ├── wind_direction_meteorological_341deg.svg │ ├── wind_direction_meteorological_342deg.svg │ ├── wind_direction_meteorological_343deg.svg │ ├── wind_direction_meteorological_344deg.svg │ ├── wind_direction_meteorological_345deg.svg │ ├── wind_direction_meteorological_346deg.svg │ ├── wind_direction_meteorological_347deg.svg │ ├── wind_direction_meteorological_348_75deg.svg │ ├── wind_direction_meteorological_348deg.svg │ ├── wind_direction_meteorological_349deg.svg │ ├── wind_direction_meteorological_34deg.svg │ ├── wind_direction_meteorological_350deg.svg │ ├── wind_direction_meteorological_351deg.svg │ ├── wind_direction_meteorological_352deg.svg │ ├── wind_direction_meteorological_353deg.svg │ ├── wind_direction_meteorological_354deg.svg │ ├── wind_direction_meteorological_355deg.svg │ ├── wind_direction_meteorological_356deg.svg │ ├── wind_direction_meteorological_357deg.svg │ ├── wind_direction_meteorological_358deg.svg │ ├── wind_direction_meteorological_359deg.svg │ ├── wind_direction_meteorological_35deg.svg │ ├── wind_direction_meteorological_36deg.svg │ ├── wind_direction_meteorological_37deg.svg │ ├── wind_direction_meteorological_38deg.svg │ ├── wind_direction_meteorological_39deg.svg │ ├── wind_direction_meteorological_3deg.svg │ ├── wind_direction_meteorological_40deg.svg │ ├── wind_direction_meteorological_41deg.svg │ ├── wind_direction_meteorological_42deg.svg │ ├── wind_direction_meteorological_43deg.svg │ ├── wind_direction_meteorological_44deg.svg │ ├── wind_direction_meteorological_45deg.svg │ ├── wind_direction_meteorological_46deg.svg │ ├── wind_direction_meteorological_47deg.svg │ ├── wind_direction_meteorological_48deg.svg │ ├── wind_direction_meteorological_49deg.svg │ ├── wind_direction_meteorological_4deg.svg │ ├── wind_direction_meteorological_50deg.svg │ ├── wind_direction_meteorological_51deg.svg │ ├── wind_direction_meteorological_52deg.svg │ ├── wind_direction_meteorological_53deg.svg │ ├── wind_direction_meteorological_54deg.svg │ ├── wind_direction_meteorological_55deg.svg │ ├── wind_direction_meteorological_56_25deg.svg │ ├── wind_direction_meteorological_56deg.svg │ ├── wind_direction_meteorological_57deg.svg │ ├── wind_direction_meteorological_58deg.svg │ ├── wind_direction_meteorological_59deg.svg │ ├── wind_direction_meteorological_5deg.svg │ ├── wind_direction_meteorological_60deg.svg │ ├── wind_direction_meteorological_61deg.svg │ ├── wind_direction_meteorological_62deg.svg │ ├── wind_direction_meteorological_63deg.svg │ ├── wind_direction_meteorological_64deg.svg │ ├── wind_direction_meteorological_65deg.svg │ ├── wind_direction_meteorological_66deg.svg │ ├── wind_direction_meteorological_67_5deg.svg │ ├── wind_direction_meteorological_67deg.svg │ ├── wind_direction_meteorological_68deg.svg │ ├── wind_direction_meteorological_69deg.svg │ ├── wind_direction_meteorological_6deg.svg │ ├── wind_direction_meteorological_70deg.svg │ ├── wind_direction_meteorological_71deg.svg │ ├── wind_direction_meteorological_72deg.svg │ ├── wind_direction_meteorological_73deg.svg │ ├── wind_direction_meteorological_74deg.svg │ ├── wind_direction_meteorological_75deg.svg │ ├── wind_direction_meteorological_76deg.svg │ ├── wind_direction_meteorological_77deg.svg │ ├── wind_direction_meteorological_78_75deg.svg │ ├── wind_direction_meteorological_78deg.svg │ ├── wind_direction_meteorological_79deg.svg │ ├── wind_direction_meteorological_7deg.svg │ ├── wind_direction_meteorological_80deg.svg │ ├── wind_direction_meteorological_81deg.svg │ ├── wind_direction_meteorological_82deg.svg │ ├── wind_direction_meteorological_83deg.svg │ ├── wind_direction_meteorological_84deg.svg │ ├── wind_direction_meteorological_85deg.svg │ ├── wind_direction_meteorological_86deg.svg │ ├── wind_direction_meteorological_87deg.svg │ ├── wind_direction_meteorological_88deg.svg │ ├── wind_direction_meteorological_89deg.svg │ ├── wind_direction_meteorological_8deg.svg │ ├── wind_direction_meteorological_90deg.svg │ ├── wind_direction_meteorological_91deg.svg │ ├── wind_direction_meteorological_92deg.svg │ ├── wind_direction_meteorological_93deg.svg │ ├── wind_direction_meteorological_94deg.svg │ ├── wind_direction_meteorological_95deg.svg │ ├── wind_direction_meteorological_96deg.svg │ ├── wind_direction_meteorological_97deg.svg │ ├── wind_direction_meteorological_98deg.svg │ ├── wind_direction_meteorological_99deg.svg │ └── wind_direction_meteorological_9deg.svg └── svg_to_headers.sh ├── platformio ├── .gitignore ├── include │ ├── _locale.h │ ├── _strftime.h │ ├── api_response.h │ ├── cert.h │ ├── client_utils.h │ ├── config.h │ ├── conversions.h │ ├── display_utils.h │ ├── locales │ │ ├── locale_de_DE.inc │ │ ├── locale_en_GB.inc │ │ ├── locale_en_US.inc │ │ ├── locale_es_ES.inc │ │ ├── locale_et_EE.inc │ │ ├── locale_fi_FI.inc │ │ ├── locale_fr_FR.inc │ │ ├── locale_it_IT.inc │ │ ├── locale_nl_BE.inc │ │ └── locale_pt_BR.inc │ └── renderer.h ├── lib │ ├── esp32-weather-epd-assets │ │ ├── fonts │ │ │ ├── FreeMono.h │ │ │ ├── FreeMono │ │ │ │ ├── FreeMono_10pt8b.h │ │ │ │ ├── FreeMono_11pt8b.h │ │ │ │ ├── FreeMono_12pt8b.h │ │ │ │ ├── FreeMono_14pt8b.h │ │ │ │ ├── FreeMono_16pt8b.h │ │ │ │ ├── FreeMono_18pt8b.h │ │ │ │ ├── FreeMono_20pt8b.h │ │ │ │ ├── FreeMono_22pt8b.h │ │ │ │ ├── FreeMono_24pt8b.h │ │ │ │ ├── FreeMono_26pt8b.h │ │ │ │ ├── FreeMono_48pt8b_temperature.h │ │ │ │ ├── FreeMono_4pt8b.h │ │ │ │ ├── FreeMono_5pt8b.h │ │ │ │ ├── FreeMono_6pt8b.h │ │ │ │ ├── FreeMono_7pt8b.h │ │ │ │ ├── FreeMono_8pt8b.h │ │ │ │ └── FreeMono_9pt8b.h │ │ │ ├── FreeSans.h │ │ │ ├── FreeSans │ │ │ │ ├── FreeSans_10pt8b.h │ │ │ │ ├── FreeSans_11pt8b.h │ │ │ │ ├── FreeSans_12pt8b.h │ │ │ │ ├── FreeSans_14pt8b.h │ │ │ │ ├── FreeSans_16pt8b.h │ │ │ │ ├── FreeSans_18pt8b.h │ │ │ │ ├── FreeSans_20pt8b.h │ │ │ │ ├── FreeSans_22pt8b.h │ │ │ │ ├── FreeSans_24pt8b.h │ │ │ │ ├── FreeSans_26pt8b.h │ │ │ │ ├── FreeSans_48pt8b_temperature.h │ │ │ │ ├── FreeSans_4pt8b.h │ │ │ │ ├── FreeSans_5pt8b.h │ │ │ │ ├── FreeSans_6pt8b.h │ │ │ │ ├── FreeSans_7pt8b.h │ │ │ │ ├── FreeSans_8pt8b.h │ │ │ │ └── FreeSans_9pt8b.h │ │ │ ├── FreeSerif.h │ │ │ ├── FreeSerif │ │ │ │ ├── FreeSerif_10pt8b.h │ │ │ │ ├── FreeSerif_11pt8b.h │ │ │ │ ├── FreeSerif_12pt8b.h │ │ │ │ ├── FreeSerif_14pt8b.h │ │ │ │ ├── FreeSerif_16pt8b.h │ │ │ │ ├── FreeSerif_18pt8b.h │ │ │ │ ├── FreeSerif_20pt8b.h │ │ │ │ ├── FreeSerif_22pt8b.h │ │ │ │ ├── FreeSerif_24pt8b.h │ │ │ │ ├── FreeSerif_26pt8b.h │ │ │ │ ├── FreeSerif_48pt8b_temperature.h │ │ │ │ ├── FreeSerif_4pt8b.h │ │ │ │ ├── FreeSerif_5pt8b.h │ │ │ │ ├── FreeSerif_6pt8b.h │ │ │ │ ├── FreeSerif_7pt8b.h │ │ │ │ ├── FreeSerif_8pt8b.h │ │ │ │ └── FreeSerif_9pt8b.h │ │ │ ├── Lato_Regular.h │ │ │ ├── Lato_Regular │ │ │ │ ├── Lato_Regular_10pt8b.h │ │ │ │ ├── Lato_Regular_11pt8b.h │ │ │ │ ├── Lato_Regular_12pt8b.h │ │ │ │ ├── Lato_Regular_14pt8b.h │ │ │ │ ├── Lato_Regular_16pt8b.h │ │ │ │ ├── Lato_Regular_18pt8b.h │ │ │ │ ├── Lato_Regular_20pt8b.h │ │ │ │ ├── Lato_Regular_22pt8b.h │ │ │ │ ├── Lato_Regular_24pt8b.h │ │ │ │ ├── Lato_Regular_26pt8b.h │ │ │ │ ├── Lato_Regular_48pt8b_temperature.h │ │ │ │ ├── Lato_Regular_4pt8b.h │ │ │ │ ├── Lato_Regular_5pt8b.h │ │ │ │ ├── Lato_Regular_6pt8b.h │ │ │ │ ├── Lato_Regular_7pt8b.h │ │ │ │ ├── Lato_Regular_8pt8b.h │ │ │ │ └── Lato_Regular_9pt8b.h │ │ │ ├── Montserrat_Regular.h │ │ │ ├── Montserrat_Regular │ │ │ │ ├── Montserrat_Regular_10pt8b.h │ │ │ │ ├── Montserrat_Regular_11pt8b.h │ │ │ │ ├── Montserrat_Regular_12pt8b.h │ │ │ │ ├── Montserrat_Regular_14pt8b.h │ │ │ │ ├── Montserrat_Regular_16pt8b.h │ │ │ │ ├── Montserrat_Regular_18pt8b.h │ │ │ │ ├── Montserrat_Regular_20pt8b.h │ │ │ │ ├── Montserrat_Regular_22pt8b.h │ │ │ │ ├── Montserrat_Regular_24pt8b.h │ │ │ │ ├── Montserrat_Regular_26pt8b.h │ │ │ │ ├── Montserrat_Regular_48pt8b_temperature.h │ │ │ │ ├── Montserrat_Regular_4pt8b.h │ │ │ │ ├── Montserrat_Regular_5pt8b.h │ │ │ │ ├── Montserrat_Regular_6pt8b.h │ │ │ │ ├── Montserrat_Regular_7pt8b.h │ │ │ │ ├── Montserrat_Regular_8pt8b.h │ │ │ │ └── Montserrat_Regular_9pt8b.h │ │ │ ├── OpenSans_Regular.h │ │ │ ├── OpenSans_Regular │ │ │ │ ├── OpenSans_Regular_10pt8b.h │ │ │ │ ├── OpenSans_Regular_11pt8b.h │ │ │ │ ├── OpenSans_Regular_12pt8b.h │ │ │ │ ├── OpenSans_Regular_14pt8b.h │ │ │ │ ├── OpenSans_Regular_16pt8b.h │ │ │ │ ├── OpenSans_Regular_18pt8b.h │ │ │ │ ├── OpenSans_Regular_20pt8b.h │ │ │ │ ├── OpenSans_Regular_22pt8b.h │ │ │ │ ├── OpenSans_Regular_24pt8b.h │ │ │ │ ├── OpenSans_Regular_26pt8b.h │ │ │ │ ├── OpenSans_Regular_48pt8b_temperature.h │ │ │ │ ├── OpenSans_Regular_4pt8b.h │ │ │ │ ├── OpenSans_Regular_5pt8b.h │ │ │ │ ├── OpenSans_Regular_6pt8b.h │ │ │ │ ├── OpenSans_Regular_7pt8b.h │ │ │ │ ├── OpenSans_Regular_8pt8b.h │ │ │ │ └── OpenSans_Regular_9pt8b.h │ │ │ ├── Poppins_Regular.h │ │ │ ├── Poppins_Regular │ │ │ │ ├── Poppins_Regular_10pt8b.h │ │ │ │ ├── Poppins_Regular_11pt8b.h │ │ │ │ ├── Poppins_Regular_12pt8b.h │ │ │ │ ├── Poppins_Regular_14pt8b.h │ │ │ │ ├── Poppins_Regular_16pt8b.h │ │ │ │ ├── Poppins_Regular_18pt8b.h │ │ │ │ ├── Poppins_Regular_20pt8b.h │ │ │ │ ├── Poppins_Regular_22pt8b.h │ │ │ │ ├── Poppins_Regular_24pt8b.h │ │ │ │ ├── Poppins_Regular_26pt8b.h │ │ │ │ ├── Poppins_Regular_48pt8b_temperature.h │ │ │ │ ├── Poppins_Regular_4pt8b.h │ │ │ │ ├── Poppins_Regular_5pt8b.h │ │ │ │ ├── Poppins_Regular_6pt8b.h │ │ │ │ ├── Poppins_Regular_7pt8b.h │ │ │ │ ├── Poppins_Regular_8pt8b.h │ │ │ │ └── Poppins_Regular_9pt8b.h │ │ │ ├── Quicksand_Regular.h │ │ │ ├── Quicksand_Regular │ │ │ │ ├── Quicksand_Regular_10pt8b.h │ │ │ │ ├── Quicksand_Regular_11pt8b.h │ │ │ │ ├── Quicksand_Regular_12pt8b.h │ │ │ │ ├── Quicksand_Regular_14pt8b.h │ │ │ │ ├── Quicksand_Regular_16pt8b.h │ │ │ │ ├── Quicksand_Regular_18pt8b.h │ │ │ │ ├── Quicksand_Regular_20pt8b.h │ │ │ │ ├── Quicksand_Regular_22pt8b.h │ │ │ │ ├── Quicksand_Regular_24pt8b.h │ │ │ │ ├── Quicksand_Regular_26pt8b.h │ │ │ │ ├── Quicksand_Regular_48pt8b_temperature.h │ │ │ │ ├── Quicksand_Regular_4pt8b.h │ │ │ │ ├── Quicksand_Regular_5pt8b.h │ │ │ │ ├── Quicksand_Regular_6pt8b.h │ │ │ │ ├── Quicksand_Regular_7pt8b.h │ │ │ │ ├── Quicksand_Regular_8pt8b.h │ │ │ │ └── Quicksand_Regular_9pt8b.h │ │ │ ├── Raleway_Regular.h │ │ │ ├── Raleway_Regular │ │ │ │ ├── Raleway_Regular_10pt8b.h │ │ │ │ ├── Raleway_Regular_11pt8b.h │ │ │ │ ├── Raleway_Regular_12pt8b.h │ │ │ │ ├── Raleway_Regular_14pt8b.h │ │ │ │ ├── Raleway_Regular_16pt8b.h │ │ │ │ ├── Raleway_Regular_18pt8b.h │ │ │ │ ├── Raleway_Regular_20pt8b.h │ │ │ │ ├── Raleway_Regular_22pt8b.h │ │ │ │ ├── Raleway_Regular_24pt8b.h │ │ │ │ ├── Raleway_Regular_26pt8b.h │ │ │ │ ├── Raleway_Regular_48pt8b_temperature.h │ │ │ │ ├── Raleway_Regular_4pt8b.h │ │ │ │ ├── Raleway_Regular_5pt8b.h │ │ │ │ ├── Raleway_Regular_6pt8b.h │ │ │ │ ├── Raleway_Regular_7pt8b.h │ │ │ │ ├── Raleway_Regular_8pt8b.h │ │ │ │ └── Raleway_Regular_9pt8b.h │ │ │ ├── RobotoMono_Regular.h │ │ │ ├── RobotoMono_Regular │ │ │ │ ├── RobotoMono_Regular_10pt8b.h │ │ │ │ ├── RobotoMono_Regular_11pt8b.h │ │ │ │ ├── RobotoMono_Regular_12pt8b.h │ │ │ │ ├── RobotoMono_Regular_14pt8b.h │ │ │ │ ├── RobotoMono_Regular_16pt8b.h │ │ │ │ ├── RobotoMono_Regular_18pt8b.h │ │ │ │ ├── RobotoMono_Regular_20pt8b.h │ │ │ │ ├── RobotoMono_Regular_22pt8b.h │ │ │ │ ├── RobotoMono_Regular_24pt8b.h │ │ │ │ ├── RobotoMono_Regular_26pt8b.h │ │ │ │ ├── RobotoMono_Regular_48pt8b_temperature.h │ │ │ │ ├── RobotoMono_Regular_4pt8b.h │ │ │ │ ├── RobotoMono_Regular_5pt8b.h │ │ │ │ ├── RobotoMono_Regular_6pt8b.h │ │ │ │ ├── RobotoMono_Regular_7pt8b.h │ │ │ │ ├── RobotoMono_Regular_8pt8b.h │ │ │ │ └── RobotoMono_Regular_9pt8b.h │ │ │ ├── RobotoSlab_Regular.h │ │ │ ├── RobotoSlab_Regular │ │ │ │ ├── RobotoSlab_Regular_10pt8b.h │ │ │ │ ├── RobotoSlab_Regular_11pt8b.h │ │ │ │ ├── RobotoSlab_Regular_12pt8b.h │ │ │ │ ├── RobotoSlab_Regular_14pt8b.h │ │ │ │ ├── RobotoSlab_Regular_16pt8b.h │ │ │ │ ├── RobotoSlab_Regular_18pt8b.h │ │ │ │ ├── RobotoSlab_Regular_20pt8b.h │ │ │ │ ├── RobotoSlab_Regular_22pt8b.h │ │ │ │ ├── RobotoSlab_Regular_24pt8b.h │ │ │ │ ├── RobotoSlab_Regular_26pt8b.h │ │ │ │ ├── RobotoSlab_Regular_48pt8b_temperature.h │ │ │ │ ├── RobotoSlab_Regular_4pt8b.h │ │ │ │ ├── RobotoSlab_Regular_5pt8b.h │ │ │ │ ├── RobotoSlab_Regular_6pt8b.h │ │ │ │ ├── RobotoSlab_Regular_7pt8b.h │ │ │ │ ├── RobotoSlab_Regular_8pt8b.h │ │ │ │ └── RobotoSlab_Regular_9pt8b.h │ │ │ ├── Roboto_Regular.h │ │ │ ├── Roboto_Regular │ │ │ │ ├── Roboto_Regular_10pt8b.h │ │ │ │ ├── Roboto_Regular_11pt8b.h │ │ │ │ ├── Roboto_Regular_12pt8b.h │ │ │ │ ├── Roboto_Regular_14pt8b.h │ │ │ │ ├── Roboto_Regular_16pt8b.h │ │ │ │ ├── Roboto_Regular_18pt8b.h │ │ │ │ ├── Roboto_Regular_20pt8b.h │ │ │ │ ├── Roboto_Regular_22pt8b.h │ │ │ │ ├── Roboto_Regular_24pt8b.h │ │ │ │ ├── Roboto_Regular_26pt8b.h │ │ │ │ ├── Roboto_Regular_48pt8b_temperature.h │ │ │ │ ├── Roboto_Regular_4pt8b.h │ │ │ │ ├── Roboto_Regular_5pt8b.h │ │ │ │ ├── Roboto_Regular_6pt8b.h │ │ │ │ ├── Roboto_Regular_7pt8b.h │ │ │ │ ├── Roboto_Regular_8pt8b.h │ │ │ │ └── Roboto_Regular_9pt8b.h │ │ │ ├── UbuntuMono_R.h │ │ │ ├── UbuntuMono_R │ │ │ │ ├── UbuntuMono_R_10pt8b.h │ │ │ │ ├── UbuntuMono_R_11pt8b.h │ │ │ │ ├── UbuntuMono_R_12pt8b.h │ │ │ │ ├── UbuntuMono_R_14pt8b.h │ │ │ │ ├── UbuntuMono_R_16pt8b.h │ │ │ │ ├── UbuntuMono_R_18pt8b.h │ │ │ │ ├── UbuntuMono_R_20pt8b.h │ │ │ │ ├── UbuntuMono_R_22pt8b.h │ │ │ │ ├── UbuntuMono_R_24pt8b.h │ │ │ │ ├── UbuntuMono_R_26pt8b.h │ │ │ │ ├── UbuntuMono_R_48pt8b_temperature.h │ │ │ │ ├── UbuntuMono_R_4pt8b.h │ │ │ │ ├── UbuntuMono_R_5pt8b.h │ │ │ │ ├── UbuntuMono_R_6pt8b.h │ │ │ │ ├── UbuntuMono_R_7pt8b.h │ │ │ │ ├── UbuntuMono_R_8pt8b.h │ │ │ │ └── UbuntuMono_R_9pt8b.h │ │ │ ├── Ubuntu_R.h │ │ │ └── Ubuntu_R │ │ │ │ ├── Ubuntu_R_10pt8b.h │ │ │ │ ├── Ubuntu_R_11pt8b.h │ │ │ │ ├── Ubuntu_R_12pt8b.h │ │ │ │ ├── Ubuntu_R_14pt8b.h │ │ │ │ ├── Ubuntu_R_16pt8b.h │ │ │ │ ├── Ubuntu_R_18pt8b.h │ │ │ │ ├── Ubuntu_R_20pt8b.h │ │ │ │ ├── Ubuntu_R_22pt8b.h │ │ │ │ ├── Ubuntu_R_24pt8b.h │ │ │ │ ├── Ubuntu_R_26pt8b.h │ │ │ │ ├── Ubuntu_R_48pt8b_temperature.h │ │ │ │ ├── Ubuntu_R_4pt8b.h │ │ │ │ ├── Ubuntu_R_5pt8b.h │ │ │ │ ├── Ubuntu_R_6pt8b.h │ │ │ │ ├── Ubuntu_R_7pt8b.h │ │ │ │ ├── Ubuntu_R_8pt8b.h │ │ │ │ └── Ubuntu_R_9pt8b.h │ │ ├── icons │ │ │ ├── 128x128 │ │ │ │ ├── air_filter_128x128.h │ │ │ │ ├── battery_0_bar_0deg_128x128.h │ │ │ │ ├── battery_0_bar_180deg_128x128.h │ │ │ │ ├── battery_0_bar_270deg_128x128.h │ │ │ │ ├── battery_0_bar_90deg_128x128.h │ │ │ │ ├── battery_1_bar_0deg_128x128.h │ │ │ │ ├── battery_1_bar_180deg_128x128.h │ │ │ │ ├── battery_1_bar_270deg_128x128.h │ │ │ │ ├── battery_1_bar_90deg_128x128.h │ │ │ │ ├── battery_2_bar_0deg_128x128.h │ │ │ │ ├── battery_2_bar_180deg_128x128.h │ │ │ │ ├── battery_2_bar_270deg_128x128.h │ │ │ │ ├── battery_2_bar_90deg_128x128.h │ │ │ │ ├── battery_3_bar_0deg_128x128.h │ │ │ │ ├── battery_3_bar_180deg_128x128.h │ │ │ │ ├── battery_3_bar_270deg_128x128.h │ │ │ │ ├── battery_3_bar_90deg_128x128.h │ │ │ │ ├── battery_4_bar_0deg_128x128.h │ │ │ │ ├── battery_4_bar_180deg_128x128.h │ │ │ │ ├── battery_4_bar_270deg_128x128.h │ │ │ │ ├── battery_4_bar_90deg_128x128.h │ │ │ │ ├── battery_5_bar_0deg_128x128.h │ │ │ │ ├── battery_5_bar_180deg_128x128.h │ │ │ │ ├── battery_5_bar_270deg_128x128.h │ │ │ │ ├── battery_5_bar_90deg_128x128.h │ │ │ │ ├── battery_6_bar_0deg_128x128.h │ │ │ │ ├── battery_6_bar_180deg_128x128.h │ │ │ │ ├── battery_6_bar_270deg_128x128.h │ │ │ │ ├── battery_6_bar_90deg_128x128.h │ │ │ │ ├── battery_alert_0deg_128x128.h │ │ │ │ ├── battery_alert_180deg_128x128.h │ │ │ │ ├── battery_alert_270deg_128x128.h │ │ │ │ ├── battery_alert_90deg_128x128.h │ │ │ │ ├── battery_charging_full_0deg_128x128.h │ │ │ │ ├── battery_charging_full_180deg_128x128.h │ │ │ │ ├── battery_charging_full_270deg_128x128.h │ │ │ │ ├── battery_charging_full_90deg_128x128.h │ │ │ │ ├── battery_full_0deg_128x128.h │ │ │ │ ├── battery_full_180deg_128x128.h │ │ │ │ ├── battery_full_270deg_128x128.h │ │ │ │ ├── battery_full_90deg_128x128.h │ │ │ │ ├── biological_hazard_symbol_128x128.h │ │ │ │ ├── error_icon_128x128.h │ │ │ │ ├── house_128x128.h │ │ │ │ ├── house_humidity_128x128.h │ │ │ │ ├── house_raindrops_128x128.h │ │ │ │ ├── house_thermometer_128x128.h │ │ │ │ ├── ionizing_radiation_symbol_128x128.h │ │ │ │ ├── visibility_icon_128x128.h │ │ │ │ ├── warning_icon_128x128.h │ │ │ │ ├── wi_alien_128x128.h │ │ │ │ ├── wi_barometer_128x128.h │ │ │ │ ├── wi_celsius_128x128.h │ │ │ │ ├── wi_cloud_128x128.h │ │ │ │ ├── wi_cloud_down_128x128.h │ │ │ │ ├── wi_cloud_refresh_128x128.h │ │ │ │ ├── wi_cloud_up_128x128.h │ │ │ │ ├── wi_cloudy_128x128.h │ │ │ │ ├── wi_cloudy_gusts_128x128.h │ │ │ │ ├── wi_cloudy_windy_128x128.h │ │ │ │ ├── wi_day_cloudy_128x128.h │ │ │ │ ├── wi_day_cloudy_gusts_128x128.h │ │ │ │ ├── wi_day_cloudy_high_128x128.h │ │ │ │ ├── wi_day_cloudy_windy_128x128.h │ │ │ │ ├── wi_day_fog_128x128.h │ │ │ │ ├── wi_day_hail_128x128.h │ │ │ │ ├── wi_day_haze_128x128.h │ │ │ │ ├── wi_day_light_wind_128x128.h │ │ │ │ ├── wi_day_lightning_128x128.h │ │ │ │ ├── wi_day_rain_128x128.h │ │ │ │ ├── wi_day_rain_mix_128x128.h │ │ │ │ ├── wi_day_rain_wind_128x128.h │ │ │ │ ├── wi_day_showers_128x128.h │ │ │ │ ├── wi_day_sleet_128x128.h │ │ │ │ ├── wi_day_sleet_storm_128x128.h │ │ │ │ ├── wi_day_snow_128x128.h │ │ │ │ ├── wi_day_snow_thunderstorm_128x128.h │ │ │ │ ├── wi_day_snow_wind_128x128.h │ │ │ │ ├── wi_day_sprinkle_128x128.h │ │ │ │ ├── wi_day_storm_showers_128x128.h │ │ │ │ ├── wi_day_sunny_128x128.h │ │ │ │ ├── wi_day_sunny_overcast_128x128.h │ │ │ │ ├── wi_day_thunderstorm_128x128.h │ │ │ │ ├── wi_day_windy_128x128.h │ │ │ │ ├── wi_degrees_128x128.h │ │ │ │ ├── wi_direction_down_128x128.h │ │ │ │ ├── wi_direction_down_left_128x128.h │ │ │ │ ├── wi_direction_down_right_128x128.h │ │ │ │ ├── wi_direction_left_128x128.h │ │ │ │ ├── wi_direction_right_128x128.h │ │ │ │ ├── wi_direction_up_128x128.h │ │ │ │ ├── wi_direction_up_left_128x128.h │ │ │ │ ├── wi_direction_up_right_128x128.h │ │ │ │ ├── wi_dust_128x128.h │ │ │ │ ├── wi_earthquake_128x128.h │ │ │ │ ├── wi_fahrenheit_128x128.h │ │ │ │ ├── wi_fire_128x128.h │ │ │ │ ├── wi_flood_128x128.h │ │ │ │ ├── wi_fog_128x128.h │ │ │ │ ├── wi_gale_warning_128x128.h │ │ │ │ ├── wi_hail_128x128.h │ │ │ │ ├── wi_horizon_128x128.h │ │ │ │ ├── wi_horizon_alt_128x128.h │ │ │ │ ├── wi_hot_128x128.h │ │ │ │ ├── wi_humidity_128x128.h │ │ │ │ ├── wi_hurricane_128x128.h │ │ │ │ ├── wi_hurricane_warning_128x128.h │ │ │ │ ├── wi_lightning_128x128.h │ │ │ │ ├── wi_lunar_eclipse_128x128.h │ │ │ │ ├── wi_meteor_128x128.h │ │ │ │ ├── wi_moon_alt_first_quarter_128x128.h │ │ │ │ ├── wi_moon_alt_full_128x128.h │ │ │ │ ├── wi_moon_alt_new_128x128.h │ │ │ │ ├── wi_moon_alt_third_quarter_128x128.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_128x128.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_128x128.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_128x128.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_128x128.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_128x128.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_128x128.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_128x128.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_128x128.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_128x128.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_128x128.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_128x128.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_128x128.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_128x128.h │ │ │ │ ├── wi_moon_first_quarter_128x128.h │ │ │ │ ├── wi_moon_full_128x128.h │ │ │ │ ├── wi_moon_new_128x128.h │ │ │ │ ├── wi_moon_third_quarter_128x128.h │ │ │ │ ├── wi_moon_waning_crescent_1_128x128.h │ │ │ │ ├── wi_moon_waning_crescent_2_128x128.h │ │ │ │ ├── wi_moon_waning_crescent_3_128x128.h │ │ │ │ ├── wi_moon_waning_crescent_4_128x128.h │ │ │ │ ├── wi_moon_waning_crescent_5_128x128.h │ │ │ │ ├── wi_moon_waning_crescent_6_128x128.h │ │ │ │ ├── wi_moon_waning_gibbous_1_128x128.h │ │ │ │ ├── wi_moon_waning_gibbous_2_128x128.h │ │ │ │ ├── wi_moon_waning_gibbous_3_128x128.h │ │ │ │ ├── wi_moon_waning_gibbous_4_128x128.h │ │ │ │ ├── wi_moon_waning_gibbous_5_128x128.h │ │ │ │ ├── wi_moon_waning_gibbous_6_128x128.h │ │ │ │ ├── wi_moon_waxing_6_128x128.h │ │ │ │ ├── wi_moon_waxing_crescent_1_128x128.h │ │ │ │ ├── wi_moon_waxing_crescent_2_128x128.h │ │ │ │ ├── wi_moon_waxing_crescent_3_128x128.h │ │ │ │ ├── wi_moon_waxing_crescent_4_128x128.h │ │ │ │ ├── wi_moon_waxing_crescent_5_128x128.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_128x128.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_128x128.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_128x128.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_128x128.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_128x128.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_128x128.h │ │ │ │ ├── wi_moonrise_128x128.h │ │ │ │ ├── wi_moonset_128x128.h │ │ │ │ ├── wi_na_128x128.h │ │ │ │ ├── wi_night_alt_cloudy_128x128.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_128x128.h │ │ │ │ ├── wi_night_alt_cloudy_high_128x128.h │ │ │ │ ├── wi_night_alt_cloudy_windy_128x128.h │ │ │ │ ├── wi_night_alt_hail_128x128.h │ │ │ │ ├── wi_night_alt_lightning_128x128.h │ │ │ │ ├── wi_night_alt_partly_cloudy_128x128.h │ │ │ │ ├── wi_night_alt_rain_128x128.h │ │ │ │ ├── wi_night_alt_rain_mix_128x128.h │ │ │ │ ├── wi_night_alt_rain_wind_128x128.h │ │ │ │ ├── wi_night_alt_showers_128x128.h │ │ │ │ ├── wi_night_alt_sleet_128x128.h │ │ │ │ ├── wi_night_alt_sleet_storm_128x128.h │ │ │ │ ├── wi_night_alt_snow_128x128.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_128x128.h │ │ │ │ ├── wi_night_alt_snow_wind_128x128.h │ │ │ │ ├── wi_night_alt_sprinkle_128x128.h │ │ │ │ ├── wi_night_alt_storm_showers_128x128.h │ │ │ │ ├── wi_night_alt_thunderstorm_128x128.h │ │ │ │ ├── wi_night_clear_128x128.h │ │ │ │ ├── wi_night_cloudy_128x128.h │ │ │ │ ├── wi_night_cloudy_gusts_128x128.h │ │ │ │ ├── wi_night_cloudy_high_128x128.h │ │ │ │ ├── wi_night_cloudy_windy_128x128.h │ │ │ │ ├── wi_night_fog_128x128.h │ │ │ │ ├── wi_night_hail_128x128.h │ │ │ │ ├── wi_night_lightning_128x128.h │ │ │ │ ├── wi_night_partly_cloudy_128x128.h │ │ │ │ ├── wi_night_rain_128x128.h │ │ │ │ ├── wi_night_rain_mix_128x128.h │ │ │ │ ├── wi_night_rain_wind_128x128.h │ │ │ │ ├── wi_night_showers_128x128.h │ │ │ │ ├── wi_night_sleet_128x128.h │ │ │ │ ├── wi_night_sleet_storm_128x128.h │ │ │ │ ├── wi_night_snow_128x128.h │ │ │ │ ├── wi_night_snow_thunderstorm_128x128.h │ │ │ │ ├── wi_night_snow_wind_128x128.h │ │ │ │ ├── wi_night_sprinkle_128x128.h │ │ │ │ ├── wi_night_storm_showers_128x128.h │ │ │ │ ├── wi_night_thunderstorm_128x128.h │ │ │ │ ├── wi_rain_128x128.h │ │ │ │ ├── wi_rain_mix_128x128.h │ │ │ │ ├── wi_rain_wind_128x128.h │ │ │ │ ├── wi_raindrop_128x128.h │ │ │ │ ├── wi_raindrops_128x128.h │ │ │ │ ├── wi_refresh_128x128.h │ │ │ │ ├── wi_refresh_alt_128x128.h │ │ │ │ ├── wi_sandstorm_128x128.h │ │ │ │ ├── wi_showers_128x128.h │ │ │ │ ├── wi_sleet_128x128.h │ │ │ │ ├── wi_small_craft_advisory_128x128.h │ │ │ │ ├── wi_smog_128x128.h │ │ │ │ ├── wi_smoke_128x128.h │ │ │ │ ├── wi_snow_128x128.h │ │ │ │ ├── wi_snow_wind_128x128.h │ │ │ │ ├── wi_snowflake_cold_128x128.h │ │ │ │ ├── wi_solar_eclipse_128x128.h │ │ │ │ ├── wi_sprinkle_128x128.h │ │ │ │ ├── wi_stars_128x128.h │ │ │ │ ├── wi_storm_showers_128x128.h │ │ │ │ ├── wi_storm_warning_128x128.h │ │ │ │ ├── wi_strong_wind_128x128.h │ │ │ │ ├── wi_sunrise_128x128.h │ │ │ │ ├── wi_sunset_128x128.h │ │ │ │ ├── wi_thermometer_128x128.h │ │ │ │ ├── wi_thermometer_exterior_128x128.h │ │ │ │ ├── wi_thermometer_internal_128x128.h │ │ │ │ ├── wi_thunderstorm_128x128.h │ │ │ │ ├── wi_time_10_128x128.h │ │ │ │ ├── wi_time_11_128x128.h │ │ │ │ ├── wi_time_12_128x128.h │ │ │ │ ├── wi_time_1_128x128.h │ │ │ │ ├── wi_time_2_128x128.h │ │ │ │ ├── wi_time_3_128x128.h │ │ │ │ ├── wi_time_4_128x128.h │ │ │ │ ├── wi_time_5_128x128.h │ │ │ │ ├── wi_time_6_128x128.h │ │ │ │ ├── wi_time_7_128x128.h │ │ │ │ ├── wi_time_8_128x128.h │ │ │ │ ├── wi_time_9_128x128.h │ │ │ │ ├── wi_tornado_128x128.h │ │ │ │ ├── wi_train_128x128.h │ │ │ │ ├── wi_tsunami_128x128.h │ │ │ │ ├── wi_umbrella_128x128.h │ │ │ │ ├── wi_volcano_128x128.h │ │ │ │ ├── wi_wind_0deg_128x128.h │ │ │ │ ├── wi_wind_100deg_128x128.h │ │ │ │ ├── wi_wind_101_25deg_128x128.h │ │ │ │ ├── wi_wind_101deg_128x128.h │ │ │ │ ├── wi_wind_102deg_128x128.h │ │ │ │ ├── wi_wind_103deg_128x128.h │ │ │ │ ├── wi_wind_104deg_128x128.h │ │ │ │ ├── wi_wind_105deg_128x128.h │ │ │ │ ├── wi_wind_106deg_128x128.h │ │ │ │ ├── wi_wind_107deg_128x128.h │ │ │ │ ├── wi_wind_108deg_128x128.h │ │ │ │ ├── wi_wind_109deg_128x128.h │ │ │ │ ├── wi_wind_10deg_128x128.h │ │ │ │ ├── wi_wind_110deg_128x128.h │ │ │ │ ├── wi_wind_111deg_128x128.h │ │ │ │ ├── wi_wind_112_5deg_128x128.h │ │ │ │ ├── wi_wind_112deg_128x128.h │ │ │ │ ├── wi_wind_113deg_128x128.h │ │ │ │ ├── wi_wind_114deg_128x128.h │ │ │ │ ├── wi_wind_115deg_128x128.h │ │ │ │ ├── wi_wind_116deg_128x128.h │ │ │ │ ├── wi_wind_117deg_128x128.h │ │ │ │ ├── wi_wind_118deg_128x128.h │ │ │ │ ├── wi_wind_119deg_128x128.h │ │ │ │ ├── wi_wind_11_25deg_128x128.h │ │ │ │ ├── wi_wind_11deg_128x128.h │ │ │ │ ├── wi_wind_120deg_128x128.h │ │ │ │ ├── wi_wind_121deg_128x128.h │ │ │ │ ├── wi_wind_122deg_128x128.h │ │ │ │ ├── wi_wind_123_75deg_128x128.h │ │ │ │ ├── wi_wind_123deg_128x128.h │ │ │ │ ├── wi_wind_124deg_128x128.h │ │ │ │ ├── wi_wind_125deg_128x128.h │ │ │ │ ├── wi_wind_126deg_128x128.h │ │ │ │ ├── wi_wind_127deg_128x128.h │ │ │ │ ├── wi_wind_128deg_128x128.h │ │ │ │ ├── wi_wind_129deg_128x128.h │ │ │ │ ├── wi_wind_12deg_128x128.h │ │ │ │ ├── wi_wind_130deg_128x128.h │ │ │ │ ├── wi_wind_131deg_128x128.h │ │ │ │ ├── wi_wind_132deg_128x128.h │ │ │ │ ├── wi_wind_133deg_128x128.h │ │ │ │ ├── wi_wind_134deg_128x128.h │ │ │ │ ├── wi_wind_135deg_128x128.h │ │ │ │ ├── wi_wind_136deg_128x128.h │ │ │ │ ├── wi_wind_137deg_128x128.h │ │ │ │ ├── wi_wind_138deg_128x128.h │ │ │ │ ├── wi_wind_139deg_128x128.h │ │ │ │ ├── wi_wind_13deg_128x128.h │ │ │ │ ├── wi_wind_140deg_128x128.h │ │ │ │ ├── wi_wind_141deg_128x128.h │ │ │ │ ├── wi_wind_142deg_128x128.h │ │ │ │ ├── wi_wind_143deg_128x128.h │ │ │ │ ├── wi_wind_144deg_128x128.h │ │ │ │ ├── wi_wind_145deg_128x128.h │ │ │ │ ├── wi_wind_146_25deg_128x128.h │ │ │ │ ├── wi_wind_146deg_128x128.h │ │ │ │ ├── wi_wind_147deg_128x128.h │ │ │ │ ├── wi_wind_148deg_128x128.h │ │ │ │ ├── wi_wind_149deg_128x128.h │ │ │ │ ├── wi_wind_14deg_128x128.h │ │ │ │ ├── wi_wind_150deg_128x128.h │ │ │ │ ├── wi_wind_151deg_128x128.h │ │ │ │ ├── wi_wind_152deg_128x128.h │ │ │ │ ├── wi_wind_153deg_128x128.h │ │ │ │ ├── wi_wind_154deg_128x128.h │ │ │ │ ├── wi_wind_155deg_128x128.h │ │ │ │ ├── wi_wind_156deg_128x128.h │ │ │ │ ├── wi_wind_157_5deg_128x128.h │ │ │ │ ├── wi_wind_157deg_128x128.h │ │ │ │ ├── wi_wind_158deg_128x128.h │ │ │ │ ├── wi_wind_159deg_128x128.h │ │ │ │ ├── wi_wind_15deg_128x128.h │ │ │ │ ├── wi_wind_160deg_128x128.h │ │ │ │ ├── wi_wind_161deg_128x128.h │ │ │ │ ├── wi_wind_162deg_128x128.h │ │ │ │ ├── wi_wind_163deg_128x128.h │ │ │ │ ├── wi_wind_164deg_128x128.h │ │ │ │ ├── wi_wind_165deg_128x128.h │ │ │ │ ├── wi_wind_166deg_128x128.h │ │ │ │ ├── wi_wind_167deg_128x128.h │ │ │ │ ├── wi_wind_168_75deg_128x128.h │ │ │ │ ├── wi_wind_168deg_128x128.h │ │ │ │ ├── wi_wind_169deg_128x128.h │ │ │ │ ├── wi_wind_16deg_128x128.h │ │ │ │ ├── wi_wind_170deg_128x128.h │ │ │ │ ├── wi_wind_171deg_128x128.h │ │ │ │ ├── wi_wind_172deg_128x128.h │ │ │ │ ├── wi_wind_173deg_128x128.h │ │ │ │ ├── wi_wind_174deg_128x128.h │ │ │ │ ├── wi_wind_175deg_128x128.h │ │ │ │ ├── wi_wind_176deg_128x128.h │ │ │ │ ├── wi_wind_177deg_128x128.h │ │ │ │ ├── wi_wind_178deg_128x128.h │ │ │ │ ├── wi_wind_179deg_128x128.h │ │ │ │ ├── wi_wind_17deg_128x128.h │ │ │ │ ├── wi_wind_180deg_128x128.h │ │ │ │ ├── wi_wind_181deg_128x128.h │ │ │ │ ├── wi_wind_182deg_128x128.h │ │ │ │ ├── wi_wind_183deg_128x128.h │ │ │ │ ├── wi_wind_184deg_128x128.h │ │ │ │ ├── wi_wind_185deg_128x128.h │ │ │ │ ├── wi_wind_186deg_128x128.h │ │ │ │ ├── wi_wind_187deg_128x128.h │ │ │ │ ├── wi_wind_188deg_128x128.h │ │ │ │ ├── wi_wind_189deg_128x128.h │ │ │ │ ├── wi_wind_18deg_128x128.h │ │ │ │ ├── wi_wind_190deg_128x128.h │ │ │ │ ├── wi_wind_191_25deg_128x128.h │ │ │ │ ├── wi_wind_191deg_128x128.h │ │ │ │ ├── wi_wind_192deg_128x128.h │ │ │ │ ├── wi_wind_193deg_128x128.h │ │ │ │ ├── wi_wind_194deg_128x128.h │ │ │ │ ├── wi_wind_195deg_128x128.h │ │ │ │ ├── wi_wind_196deg_128x128.h │ │ │ │ ├── wi_wind_197deg_128x128.h │ │ │ │ ├── wi_wind_198deg_128x128.h │ │ │ │ ├── wi_wind_199deg_128x128.h │ │ │ │ ├── wi_wind_19deg_128x128.h │ │ │ │ ├── wi_wind_1deg_128x128.h │ │ │ │ ├── wi_wind_200deg_128x128.h │ │ │ │ ├── wi_wind_201deg_128x128.h │ │ │ │ ├── wi_wind_202_5deg_128x128.h │ │ │ │ ├── wi_wind_202deg_128x128.h │ │ │ │ ├── wi_wind_203deg_128x128.h │ │ │ │ ├── wi_wind_204deg_128x128.h │ │ │ │ ├── wi_wind_205deg_128x128.h │ │ │ │ ├── wi_wind_206deg_128x128.h │ │ │ │ ├── wi_wind_207deg_128x128.h │ │ │ │ ├── wi_wind_208deg_128x128.h │ │ │ │ ├── wi_wind_209deg_128x128.h │ │ │ │ ├── wi_wind_20deg_128x128.h │ │ │ │ ├── wi_wind_210deg_128x128.h │ │ │ │ ├── wi_wind_211deg_128x128.h │ │ │ │ ├── wi_wind_212deg_128x128.h │ │ │ │ ├── wi_wind_213_75deg_128x128.h │ │ │ │ ├── wi_wind_213deg_128x128.h │ │ │ │ ├── wi_wind_214deg_128x128.h │ │ │ │ ├── wi_wind_215deg_128x128.h │ │ │ │ ├── wi_wind_216deg_128x128.h │ │ │ │ ├── wi_wind_217deg_128x128.h │ │ │ │ ├── wi_wind_218deg_128x128.h │ │ │ │ ├── wi_wind_219deg_128x128.h │ │ │ │ ├── wi_wind_21deg_128x128.h │ │ │ │ ├── wi_wind_220deg_128x128.h │ │ │ │ ├── wi_wind_221deg_128x128.h │ │ │ │ ├── wi_wind_222deg_128x128.h │ │ │ │ ├── wi_wind_223deg_128x128.h │ │ │ │ ├── wi_wind_224deg_128x128.h │ │ │ │ ├── wi_wind_225deg_128x128.h │ │ │ │ ├── wi_wind_226deg_128x128.h │ │ │ │ ├── wi_wind_227deg_128x128.h │ │ │ │ ├── wi_wind_228deg_128x128.h │ │ │ │ ├── wi_wind_229deg_128x128.h │ │ │ │ ├── wi_wind_22_5deg_128x128.h │ │ │ │ ├── wi_wind_22deg_128x128.h │ │ │ │ ├── wi_wind_230deg_128x128.h │ │ │ │ ├── wi_wind_231deg_128x128.h │ │ │ │ ├── wi_wind_232deg_128x128.h │ │ │ │ ├── wi_wind_233deg_128x128.h │ │ │ │ ├── wi_wind_234deg_128x128.h │ │ │ │ ├── wi_wind_235deg_128x128.h │ │ │ │ ├── wi_wind_236_25deg_128x128.h │ │ │ │ ├── wi_wind_236deg_128x128.h │ │ │ │ ├── wi_wind_237deg_128x128.h │ │ │ │ ├── wi_wind_238deg_128x128.h │ │ │ │ ├── wi_wind_239deg_128x128.h │ │ │ │ ├── wi_wind_23deg_128x128.h │ │ │ │ ├── wi_wind_240deg_128x128.h │ │ │ │ ├── wi_wind_241deg_128x128.h │ │ │ │ ├── wi_wind_242deg_128x128.h │ │ │ │ ├── wi_wind_243deg_128x128.h │ │ │ │ ├── wi_wind_244deg_128x128.h │ │ │ │ ├── wi_wind_245deg_128x128.h │ │ │ │ ├── wi_wind_246deg_128x128.h │ │ │ │ ├── wi_wind_247_5deg_128x128.h │ │ │ │ ├── wi_wind_247deg_128x128.h │ │ │ │ ├── wi_wind_248deg_128x128.h │ │ │ │ ├── wi_wind_249deg_128x128.h │ │ │ │ ├── wi_wind_24deg_128x128.h │ │ │ │ ├── wi_wind_250deg_128x128.h │ │ │ │ ├── wi_wind_251deg_128x128.h │ │ │ │ ├── wi_wind_252deg_128x128.h │ │ │ │ ├── wi_wind_253deg_128x128.h │ │ │ │ ├── wi_wind_254deg_128x128.h │ │ │ │ ├── wi_wind_255deg_128x128.h │ │ │ │ ├── wi_wind_256deg_128x128.h │ │ │ │ ├── wi_wind_257deg_128x128.h │ │ │ │ ├── wi_wind_258_75deg_128x128.h │ │ │ │ ├── wi_wind_258deg_128x128.h │ │ │ │ ├── wi_wind_259deg_128x128.h │ │ │ │ ├── wi_wind_25deg_128x128.h │ │ │ │ ├── wi_wind_260deg_128x128.h │ │ │ │ ├── wi_wind_261deg_128x128.h │ │ │ │ ├── wi_wind_262deg_128x128.h │ │ │ │ ├── wi_wind_263deg_128x128.h │ │ │ │ ├── wi_wind_264deg_128x128.h │ │ │ │ ├── wi_wind_265deg_128x128.h │ │ │ │ ├── wi_wind_266deg_128x128.h │ │ │ │ ├── wi_wind_267deg_128x128.h │ │ │ │ ├── wi_wind_268deg_128x128.h │ │ │ │ ├── wi_wind_269deg_128x128.h │ │ │ │ ├── wi_wind_26deg_128x128.h │ │ │ │ ├── wi_wind_270deg_128x128.h │ │ │ │ ├── wi_wind_271deg_128x128.h │ │ │ │ ├── wi_wind_272deg_128x128.h │ │ │ │ ├── wi_wind_273deg_128x128.h │ │ │ │ ├── wi_wind_274deg_128x128.h │ │ │ │ ├── wi_wind_275deg_128x128.h │ │ │ │ ├── wi_wind_276deg_128x128.h │ │ │ │ ├── wi_wind_277deg_128x128.h │ │ │ │ ├── wi_wind_278deg_128x128.h │ │ │ │ ├── wi_wind_279deg_128x128.h │ │ │ │ ├── wi_wind_27deg_128x128.h │ │ │ │ ├── wi_wind_280deg_128x128.h │ │ │ │ ├── wi_wind_281_25deg_128x128.h │ │ │ │ ├── wi_wind_281deg_128x128.h │ │ │ │ ├── wi_wind_282deg_128x128.h │ │ │ │ ├── wi_wind_283deg_128x128.h │ │ │ │ ├── wi_wind_284deg_128x128.h │ │ │ │ ├── wi_wind_285deg_128x128.h │ │ │ │ ├── wi_wind_286deg_128x128.h │ │ │ │ ├── wi_wind_287deg_128x128.h │ │ │ │ ├── wi_wind_288deg_128x128.h │ │ │ │ ├── wi_wind_289deg_128x128.h │ │ │ │ ├── wi_wind_28deg_128x128.h │ │ │ │ ├── wi_wind_290deg_128x128.h │ │ │ │ ├── wi_wind_291deg_128x128.h │ │ │ │ ├── wi_wind_292_5deg_128x128.h │ │ │ │ ├── wi_wind_292deg_128x128.h │ │ │ │ ├── wi_wind_293deg_128x128.h │ │ │ │ ├── wi_wind_294deg_128x128.h │ │ │ │ ├── wi_wind_295deg_128x128.h │ │ │ │ ├── wi_wind_296deg_128x128.h │ │ │ │ ├── wi_wind_297deg_128x128.h │ │ │ │ ├── wi_wind_298deg_128x128.h │ │ │ │ ├── wi_wind_299deg_128x128.h │ │ │ │ ├── wi_wind_29deg_128x128.h │ │ │ │ ├── wi_wind_2deg_128x128.h │ │ │ │ ├── wi_wind_300deg_128x128.h │ │ │ │ ├── wi_wind_301deg_128x128.h │ │ │ │ ├── wi_wind_302deg_128x128.h │ │ │ │ ├── wi_wind_303_75deg_128x128.h │ │ │ │ ├── wi_wind_303deg_128x128.h │ │ │ │ ├── wi_wind_304deg_128x128.h │ │ │ │ ├── wi_wind_305deg_128x128.h │ │ │ │ ├── wi_wind_306deg_128x128.h │ │ │ │ ├── wi_wind_307deg_128x128.h │ │ │ │ ├── wi_wind_308deg_128x128.h │ │ │ │ ├── wi_wind_309deg_128x128.h │ │ │ │ ├── wi_wind_30deg_128x128.h │ │ │ │ ├── wi_wind_310deg_128x128.h │ │ │ │ ├── wi_wind_311deg_128x128.h │ │ │ │ ├── wi_wind_312deg_128x128.h │ │ │ │ ├── wi_wind_313deg_128x128.h │ │ │ │ ├── wi_wind_314deg_128x128.h │ │ │ │ ├── wi_wind_315deg_128x128.h │ │ │ │ ├── wi_wind_316deg_128x128.h │ │ │ │ ├── wi_wind_317deg_128x128.h │ │ │ │ ├── wi_wind_318deg_128x128.h │ │ │ │ ├── wi_wind_319deg_128x128.h │ │ │ │ ├── wi_wind_31deg_128x128.h │ │ │ │ ├── wi_wind_320deg_128x128.h │ │ │ │ ├── wi_wind_321deg_128x128.h │ │ │ │ ├── wi_wind_322deg_128x128.h │ │ │ │ ├── wi_wind_323deg_128x128.h │ │ │ │ ├── wi_wind_324deg_128x128.h │ │ │ │ ├── wi_wind_325deg_128x128.h │ │ │ │ ├── wi_wind_326_25deg_128x128.h │ │ │ │ ├── wi_wind_326deg_128x128.h │ │ │ │ ├── wi_wind_327deg_128x128.h │ │ │ │ ├── wi_wind_328deg_128x128.h │ │ │ │ ├── wi_wind_329deg_128x128.h │ │ │ │ ├── wi_wind_32deg_128x128.h │ │ │ │ ├── wi_wind_330deg_128x128.h │ │ │ │ ├── wi_wind_331deg_128x128.h │ │ │ │ ├── wi_wind_332deg_128x128.h │ │ │ │ ├── wi_wind_333deg_128x128.h │ │ │ │ ├── wi_wind_334deg_128x128.h │ │ │ │ ├── wi_wind_335deg_128x128.h │ │ │ │ ├── wi_wind_336deg_128x128.h │ │ │ │ ├── wi_wind_337_5deg_128x128.h │ │ │ │ ├── wi_wind_337deg_128x128.h │ │ │ │ ├── wi_wind_338deg_128x128.h │ │ │ │ ├── wi_wind_339deg_128x128.h │ │ │ │ ├── wi_wind_33_75deg_128x128.h │ │ │ │ ├── wi_wind_33deg_128x128.h │ │ │ │ ├── wi_wind_340deg_128x128.h │ │ │ │ ├── wi_wind_341deg_128x128.h │ │ │ │ ├── wi_wind_342deg_128x128.h │ │ │ │ ├── wi_wind_343deg_128x128.h │ │ │ │ ├── wi_wind_344deg_128x128.h │ │ │ │ ├── wi_wind_345deg_128x128.h │ │ │ │ ├── wi_wind_346deg_128x128.h │ │ │ │ ├── wi_wind_347deg_128x128.h │ │ │ │ ├── wi_wind_348_75deg_128x128.h │ │ │ │ ├── wi_wind_348deg_128x128.h │ │ │ │ ├── wi_wind_349deg_128x128.h │ │ │ │ ├── wi_wind_34deg_128x128.h │ │ │ │ ├── wi_wind_350deg_128x128.h │ │ │ │ ├── wi_wind_351deg_128x128.h │ │ │ │ ├── wi_wind_352deg_128x128.h │ │ │ │ ├── wi_wind_353deg_128x128.h │ │ │ │ ├── wi_wind_354deg_128x128.h │ │ │ │ ├── wi_wind_355deg_128x128.h │ │ │ │ ├── wi_wind_356deg_128x128.h │ │ │ │ ├── wi_wind_357deg_128x128.h │ │ │ │ ├── wi_wind_358deg_128x128.h │ │ │ │ ├── wi_wind_359deg_128x128.h │ │ │ │ ├── wi_wind_35deg_128x128.h │ │ │ │ ├── wi_wind_36deg_128x128.h │ │ │ │ ├── wi_wind_37deg_128x128.h │ │ │ │ ├── wi_wind_38deg_128x128.h │ │ │ │ ├── wi_wind_39deg_128x128.h │ │ │ │ ├── wi_wind_3deg_128x128.h │ │ │ │ ├── wi_wind_40deg_128x128.h │ │ │ │ ├── wi_wind_41deg_128x128.h │ │ │ │ ├── wi_wind_42deg_128x128.h │ │ │ │ ├── wi_wind_43deg_128x128.h │ │ │ │ ├── wi_wind_44deg_128x128.h │ │ │ │ ├── wi_wind_45deg_128x128.h │ │ │ │ ├── wi_wind_46deg_128x128.h │ │ │ │ ├── wi_wind_47deg_128x128.h │ │ │ │ ├── wi_wind_48deg_128x128.h │ │ │ │ ├── wi_wind_49deg_128x128.h │ │ │ │ ├── wi_wind_4deg_128x128.h │ │ │ │ ├── wi_wind_50deg_128x128.h │ │ │ │ ├── wi_wind_51deg_128x128.h │ │ │ │ ├── wi_wind_52deg_128x128.h │ │ │ │ ├── wi_wind_53deg_128x128.h │ │ │ │ ├── wi_wind_54deg_128x128.h │ │ │ │ ├── wi_wind_55deg_128x128.h │ │ │ │ ├── wi_wind_56_25deg_128x128.h │ │ │ │ ├── wi_wind_56deg_128x128.h │ │ │ │ ├── wi_wind_57deg_128x128.h │ │ │ │ ├── wi_wind_58deg_128x128.h │ │ │ │ ├── wi_wind_59deg_128x128.h │ │ │ │ ├── wi_wind_5deg_128x128.h │ │ │ │ ├── wi_wind_60deg_128x128.h │ │ │ │ ├── wi_wind_61deg_128x128.h │ │ │ │ ├── wi_wind_62deg_128x128.h │ │ │ │ ├── wi_wind_63deg_128x128.h │ │ │ │ ├── wi_wind_64deg_128x128.h │ │ │ │ ├── wi_wind_65deg_128x128.h │ │ │ │ ├── wi_wind_66deg_128x128.h │ │ │ │ ├── wi_wind_67_5deg_128x128.h │ │ │ │ ├── wi_wind_67deg_128x128.h │ │ │ │ ├── wi_wind_68deg_128x128.h │ │ │ │ ├── wi_wind_69deg_128x128.h │ │ │ │ ├── wi_wind_6deg_128x128.h │ │ │ │ ├── wi_wind_70deg_128x128.h │ │ │ │ ├── wi_wind_71deg_128x128.h │ │ │ │ ├── wi_wind_72deg_128x128.h │ │ │ │ ├── wi_wind_73deg_128x128.h │ │ │ │ ├── wi_wind_74deg_128x128.h │ │ │ │ ├── wi_wind_75deg_128x128.h │ │ │ │ ├── wi_wind_76deg_128x128.h │ │ │ │ ├── wi_wind_77deg_128x128.h │ │ │ │ ├── wi_wind_78_75deg_128x128.h │ │ │ │ ├── wi_wind_78deg_128x128.h │ │ │ │ ├── wi_wind_79deg_128x128.h │ │ │ │ ├── wi_wind_7deg_128x128.h │ │ │ │ ├── wi_wind_80deg_128x128.h │ │ │ │ ├── wi_wind_81deg_128x128.h │ │ │ │ ├── wi_wind_82deg_128x128.h │ │ │ │ ├── wi_wind_83deg_128x128.h │ │ │ │ ├── wi_wind_84deg_128x128.h │ │ │ │ ├── wi_wind_85deg_128x128.h │ │ │ │ ├── wi_wind_86deg_128x128.h │ │ │ │ ├── wi_wind_87deg_128x128.h │ │ │ │ ├── wi_wind_88deg_128x128.h │ │ │ │ ├── wi_wind_89deg_128x128.h │ │ │ │ ├── wi_wind_8deg_128x128.h │ │ │ │ ├── wi_wind_90deg_128x128.h │ │ │ │ ├── wi_wind_91deg_128x128.h │ │ │ │ ├── wi_wind_92deg_128x128.h │ │ │ │ ├── wi_wind_93deg_128x128.h │ │ │ │ ├── wi_wind_94deg_128x128.h │ │ │ │ ├── wi_wind_95deg_128x128.h │ │ │ │ ├── wi_wind_96deg_128x128.h │ │ │ │ ├── wi_wind_97deg_128x128.h │ │ │ │ ├── wi_wind_98deg_128x128.h │ │ │ │ ├── wi_wind_99deg_128x128.h │ │ │ │ ├── wi_wind_9deg_128x128.h │ │ │ │ ├── wi_wind_beaufort_0_128x128.h │ │ │ │ ├── wi_wind_beaufort_10_128x128.h │ │ │ │ ├── wi_wind_beaufort_11_128x128.h │ │ │ │ ├── wi_wind_beaufort_12_128x128.h │ │ │ │ ├── wi_wind_beaufort_1_128x128.h │ │ │ │ ├── wi_wind_beaufort_2_128x128.h │ │ │ │ ├── wi_wind_beaufort_3_128x128.h │ │ │ │ ├── wi_wind_beaufort_4_128x128.h │ │ │ │ ├── wi_wind_beaufort_5_128x128.h │ │ │ │ ├── wi_wind_beaufort_6_128x128.h │ │ │ │ ├── wi_wind_beaufort_7_128x128.h │ │ │ │ ├── wi_wind_beaufort_8_128x128.h │ │ │ │ ├── wi_wind_beaufort_9_128x128.h │ │ │ │ ├── wi_windy_128x128.h │ │ │ │ ├── wifi_128x128.h │ │ │ │ ├── wifi_1_bar_128x128.h │ │ │ │ ├── wifi_2_bar_128x128.h │ │ │ │ ├── wifi_3_bar_128x128.h │ │ │ │ ├── wifi_off_128x128.h │ │ │ │ ├── wifi_x_128x128.h │ │ │ │ ├── wind_direction_meteorological_0deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_100deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_101deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_102deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_103deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_104deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_105deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_106deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_107deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_108deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_109deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_10deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_110deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_111deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_112deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_113deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_114deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_115deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_116deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_117deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_118deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_119deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_11deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_120deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_121deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_122deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_123deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_124deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_125deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_126deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_127deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_128deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_129deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_12deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_130deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_131deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_132deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_133deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_134deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_135deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_136deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_137deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_138deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_139deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_13deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_140deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_141deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_142deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_143deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_144deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_145deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_146deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_147deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_148deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_149deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_14deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_150deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_151deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_152deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_153deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_154deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_155deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_156deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_157deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_158deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_159deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_15deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_160deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_161deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_162deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_163deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_164deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_165deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_166deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_167deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_168deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_169deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_16deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_170deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_171deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_172deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_173deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_174deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_175deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_176deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_177deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_178deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_179deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_17deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_180deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_181deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_182deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_183deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_184deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_185deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_186deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_187deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_188deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_189deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_18deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_190deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_191deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_192deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_193deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_194deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_195deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_196deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_197deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_198deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_199deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_19deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_1deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_200deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_201deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_202deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_203deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_204deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_205deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_206deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_207deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_208deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_209deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_20deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_210deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_211deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_212deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_213deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_214deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_215deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_216deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_217deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_218deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_219deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_21deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_220deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_221deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_222deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_223deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_224deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_225deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_226deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_227deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_228deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_229deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_22deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_230deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_231deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_232deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_233deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_234deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_235deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_236deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_237deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_238deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_239deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_23deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_240deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_241deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_242deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_243deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_244deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_245deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_246deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_247deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_248deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_249deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_24deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_250deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_251deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_252deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_253deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_254deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_255deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_256deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_257deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_258deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_259deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_260deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_261deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_262deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_263deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_264deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_265deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_266deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_267deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_268deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_269deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_26deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_270deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_271deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_272deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_273deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_274deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_275deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_276deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_277deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_278deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_279deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_27deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_280deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_281deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_282deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_283deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_284deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_285deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_286deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_287deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_288deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_289deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_28deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_290deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_291deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_292deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_293deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_294deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_295deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_296deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_297deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_298deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_299deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_29deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_2deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_300deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_301deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_302deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_303deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_304deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_305deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_306deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_307deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_308deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_309deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_30deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_310deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_311deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_312deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_313deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_314deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_315deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_316deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_317deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_318deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_319deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_31deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_320deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_321deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_322deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_323deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_324deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_325deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_326deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_327deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_328deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_329deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_32deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_330deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_331deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_332deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_333deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_334deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_335deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_336deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_337deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_338deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_339deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_33deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_340deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_341deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_342deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_343deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_344deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_345deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_346deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_347deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_348deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_349deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_34deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_350deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_351deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_352deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_353deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_354deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_355deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_356deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_357deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_358deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_359deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_35deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_36deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_37deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_38deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_39deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_3deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_40deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_41deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_42deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_43deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_44deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_45deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_46deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_47deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_48deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_49deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_4deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_50deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_51deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_52deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_53deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_54deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_55deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_56deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_57deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_58deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_59deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_60deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_61deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_62deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_63deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_64deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_65deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_66deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_67deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_68deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_69deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_6deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_70deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_71deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_72deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_73deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_74deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_76deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_77deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_78deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_79deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_7deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_80deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_81deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_82deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_83deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_84deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_85deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_86deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_87deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_88deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_89deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_8deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_90deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_91deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_92deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_93deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_94deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_95deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_96deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_97deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_98deg_128x128.h │ │ │ │ ├── wind_direction_meteorological_99deg_128x128.h │ │ │ │ └── wind_direction_meteorological_9deg_128x128.h │ │ │ ├── 160x160 │ │ │ │ ├── air_filter_160x160.h │ │ │ │ ├── battery_0_bar_0deg_160x160.h │ │ │ │ ├── battery_0_bar_180deg_160x160.h │ │ │ │ ├── battery_0_bar_270deg_160x160.h │ │ │ │ ├── battery_0_bar_90deg_160x160.h │ │ │ │ ├── battery_1_bar_0deg_160x160.h │ │ │ │ ├── battery_1_bar_180deg_160x160.h │ │ │ │ ├── battery_1_bar_270deg_160x160.h │ │ │ │ ├── battery_1_bar_90deg_160x160.h │ │ │ │ ├── battery_2_bar_0deg_160x160.h │ │ │ │ ├── battery_2_bar_180deg_160x160.h │ │ │ │ ├── battery_2_bar_270deg_160x160.h │ │ │ │ ├── battery_2_bar_90deg_160x160.h │ │ │ │ ├── battery_3_bar_0deg_160x160.h │ │ │ │ ├── battery_3_bar_180deg_160x160.h │ │ │ │ ├── battery_3_bar_270deg_160x160.h │ │ │ │ ├── battery_3_bar_90deg_160x160.h │ │ │ │ ├── battery_4_bar_0deg_160x160.h │ │ │ │ ├── battery_4_bar_180deg_160x160.h │ │ │ │ ├── battery_4_bar_270deg_160x160.h │ │ │ │ ├── battery_4_bar_90deg_160x160.h │ │ │ │ ├── battery_5_bar_0deg_160x160.h │ │ │ │ ├── battery_5_bar_180deg_160x160.h │ │ │ │ ├── battery_5_bar_270deg_160x160.h │ │ │ │ ├── battery_5_bar_90deg_160x160.h │ │ │ │ ├── battery_6_bar_0deg_160x160.h │ │ │ │ ├── battery_6_bar_180deg_160x160.h │ │ │ │ ├── battery_6_bar_270deg_160x160.h │ │ │ │ ├── battery_6_bar_90deg_160x160.h │ │ │ │ ├── battery_alert_0deg_160x160.h │ │ │ │ ├── battery_alert_180deg_160x160.h │ │ │ │ ├── battery_alert_270deg_160x160.h │ │ │ │ ├── battery_alert_90deg_160x160.h │ │ │ │ ├── battery_charging_full_0deg_160x160.h │ │ │ │ ├── battery_charging_full_180deg_160x160.h │ │ │ │ ├── battery_charging_full_270deg_160x160.h │ │ │ │ ├── battery_charging_full_90deg_160x160.h │ │ │ │ ├── battery_full_0deg_160x160.h │ │ │ │ ├── battery_full_180deg_160x160.h │ │ │ │ ├── battery_full_270deg_160x160.h │ │ │ │ ├── battery_full_90deg_160x160.h │ │ │ │ ├── biological_hazard_symbol_160x160.h │ │ │ │ ├── error_icon_160x160.h │ │ │ │ ├── house_160x160.h │ │ │ │ ├── house_humidity_160x160.h │ │ │ │ ├── house_raindrops_160x160.h │ │ │ │ ├── house_thermometer_160x160.h │ │ │ │ ├── ionizing_radiation_symbol_160x160.h │ │ │ │ ├── visibility_icon_160x160.h │ │ │ │ ├── warning_icon_160x160.h │ │ │ │ ├── wi_alien_160x160.h │ │ │ │ ├── wi_barometer_160x160.h │ │ │ │ ├── wi_celsius_160x160.h │ │ │ │ ├── wi_cloud_160x160.h │ │ │ │ ├── wi_cloud_down_160x160.h │ │ │ │ ├── wi_cloud_refresh_160x160.h │ │ │ │ ├── wi_cloud_up_160x160.h │ │ │ │ ├── wi_cloudy_160x160.h │ │ │ │ ├── wi_cloudy_gusts_160x160.h │ │ │ │ ├── wi_cloudy_windy_160x160.h │ │ │ │ ├── wi_day_cloudy_160x160.h │ │ │ │ ├── wi_day_cloudy_gusts_160x160.h │ │ │ │ ├── wi_day_cloudy_high_160x160.h │ │ │ │ ├── wi_day_cloudy_windy_160x160.h │ │ │ │ ├── wi_day_fog_160x160.h │ │ │ │ ├── wi_day_hail_160x160.h │ │ │ │ ├── wi_day_haze_160x160.h │ │ │ │ ├── wi_day_light_wind_160x160.h │ │ │ │ ├── wi_day_lightning_160x160.h │ │ │ │ ├── wi_day_rain_160x160.h │ │ │ │ ├── wi_day_rain_mix_160x160.h │ │ │ │ ├── wi_day_rain_wind_160x160.h │ │ │ │ ├── wi_day_showers_160x160.h │ │ │ │ ├── wi_day_sleet_160x160.h │ │ │ │ ├── wi_day_sleet_storm_160x160.h │ │ │ │ ├── wi_day_snow_160x160.h │ │ │ │ ├── wi_day_snow_thunderstorm_160x160.h │ │ │ │ ├── wi_day_snow_wind_160x160.h │ │ │ │ ├── wi_day_sprinkle_160x160.h │ │ │ │ ├── wi_day_storm_showers_160x160.h │ │ │ │ ├── wi_day_sunny_160x160.h │ │ │ │ ├── wi_day_sunny_overcast_160x160.h │ │ │ │ ├── wi_day_thunderstorm_160x160.h │ │ │ │ ├── wi_day_windy_160x160.h │ │ │ │ ├── wi_degrees_160x160.h │ │ │ │ ├── wi_direction_down_160x160.h │ │ │ │ ├── wi_direction_down_left_160x160.h │ │ │ │ ├── wi_direction_down_right_160x160.h │ │ │ │ ├── wi_direction_left_160x160.h │ │ │ │ ├── wi_direction_right_160x160.h │ │ │ │ ├── wi_direction_up_160x160.h │ │ │ │ ├── wi_direction_up_left_160x160.h │ │ │ │ ├── wi_direction_up_right_160x160.h │ │ │ │ ├── wi_dust_160x160.h │ │ │ │ ├── wi_earthquake_160x160.h │ │ │ │ ├── wi_fahrenheit_160x160.h │ │ │ │ ├── wi_fire_160x160.h │ │ │ │ ├── wi_flood_160x160.h │ │ │ │ ├── wi_fog_160x160.h │ │ │ │ ├── wi_gale_warning_160x160.h │ │ │ │ ├── wi_hail_160x160.h │ │ │ │ ├── wi_horizon_160x160.h │ │ │ │ ├── wi_horizon_alt_160x160.h │ │ │ │ ├── wi_hot_160x160.h │ │ │ │ ├── wi_humidity_160x160.h │ │ │ │ ├── wi_hurricane_160x160.h │ │ │ │ ├── wi_hurricane_warning_160x160.h │ │ │ │ ├── wi_lightning_160x160.h │ │ │ │ ├── wi_lunar_eclipse_160x160.h │ │ │ │ ├── wi_meteor_160x160.h │ │ │ │ ├── wi_moon_alt_first_quarter_160x160.h │ │ │ │ ├── wi_moon_alt_full_160x160.h │ │ │ │ ├── wi_moon_alt_new_160x160.h │ │ │ │ ├── wi_moon_alt_third_quarter_160x160.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_160x160.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_160x160.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_160x160.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_160x160.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_160x160.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_160x160.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_160x160.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_160x160.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_160x160.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_160x160.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_160x160.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_160x160.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_160x160.h │ │ │ │ ├── wi_moon_first_quarter_160x160.h │ │ │ │ ├── wi_moon_full_160x160.h │ │ │ │ ├── wi_moon_new_160x160.h │ │ │ │ ├── wi_moon_third_quarter_160x160.h │ │ │ │ ├── wi_moon_waning_crescent_1_160x160.h │ │ │ │ ├── wi_moon_waning_crescent_2_160x160.h │ │ │ │ ├── wi_moon_waning_crescent_3_160x160.h │ │ │ │ ├── wi_moon_waning_crescent_4_160x160.h │ │ │ │ ├── wi_moon_waning_crescent_5_160x160.h │ │ │ │ ├── wi_moon_waning_crescent_6_160x160.h │ │ │ │ ├── wi_moon_waning_gibbous_1_160x160.h │ │ │ │ ├── wi_moon_waning_gibbous_2_160x160.h │ │ │ │ ├── wi_moon_waning_gibbous_3_160x160.h │ │ │ │ ├── wi_moon_waning_gibbous_4_160x160.h │ │ │ │ ├── wi_moon_waning_gibbous_5_160x160.h │ │ │ │ ├── wi_moon_waning_gibbous_6_160x160.h │ │ │ │ ├── wi_moon_waxing_6_160x160.h │ │ │ │ ├── wi_moon_waxing_crescent_1_160x160.h │ │ │ │ ├── wi_moon_waxing_crescent_2_160x160.h │ │ │ │ ├── wi_moon_waxing_crescent_3_160x160.h │ │ │ │ ├── wi_moon_waxing_crescent_4_160x160.h │ │ │ │ ├── wi_moon_waxing_crescent_5_160x160.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_160x160.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_160x160.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_160x160.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_160x160.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_160x160.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_160x160.h │ │ │ │ ├── wi_moonrise_160x160.h │ │ │ │ ├── wi_moonset_160x160.h │ │ │ │ ├── wi_na_160x160.h │ │ │ │ ├── wi_night_alt_cloudy_160x160.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_160x160.h │ │ │ │ ├── wi_night_alt_cloudy_high_160x160.h │ │ │ │ ├── wi_night_alt_cloudy_windy_160x160.h │ │ │ │ ├── wi_night_alt_hail_160x160.h │ │ │ │ ├── wi_night_alt_lightning_160x160.h │ │ │ │ ├── wi_night_alt_partly_cloudy_160x160.h │ │ │ │ ├── wi_night_alt_rain_160x160.h │ │ │ │ ├── wi_night_alt_rain_mix_160x160.h │ │ │ │ ├── wi_night_alt_rain_wind_160x160.h │ │ │ │ ├── wi_night_alt_showers_160x160.h │ │ │ │ ├── wi_night_alt_sleet_160x160.h │ │ │ │ ├── wi_night_alt_sleet_storm_160x160.h │ │ │ │ ├── wi_night_alt_snow_160x160.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_160x160.h │ │ │ │ ├── wi_night_alt_snow_wind_160x160.h │ │ │ │ ├── wi_night_alt_sprinkle_160x160.h │ │ │ │ ├── wi_night_alt_storm_showers_160x160.h │ │ │ │ ├── wi_night_alt_thunderstorm_160x160.h │ │ │ │ ├── wi_night_clear_160x160.h │ │ │ │ ├── wi_night_cloudy_160x160.h │ │ │ │ ├── wi_night_cloudy_gusts_160x160.h │ │ │ │ ├── wi_night_cloudy_high_160x160.h │ │ │ │ ├── wi_night_cloudy_windy_160x160.h │ │ │ │ ├── wi_night_fog_160x160.h │ │ │ │ ├── wi_night_hail_160x160.h │ │ │ │ ├── wi_night_lightning_160x160.h │ │ │ │ ├── wi_night_partly_cloudy_160x160.h │ │ │ │ ├── wi_night_rain_160x160.h │ │ │ │ ├── wi_night_rain_mix_160x160.h │ │ │ │ ├── wi_night_rain_wind_160x160.h │ │ │ │ ├── wi_night_showers_160x160.h │ │ │ │ ├── wi_night_sleet_160x160.h │ │ │ │ ├── wi_night_sleet_storm_160x160.h │ │ │ │ ├── wi_night_snow_160x160.h │ │ │ │ ├── wi_night_snow_thunderstorm_160x160.h │ │ │ │ ├── wi_night_snow_wind_160x160.h │ │ │ │ ├── wi_night_sprinkle_160x160.h │ │ │ │ ├── wi_night_storm_showers_160x160.h │ │ │ │ ├── wi_night_thunderstorm_160x160.h │ │ │ │ ├── wi_rain_160x160.h │ │ │ │ ├── wi_rain_mix_160x160.h │ │ │ │ ├── wi_rain_wind_160x160.h │ │ │ │ ├── wi_raindrop_160x160.h │ │ │ │ ├── wi_raindrops_160x160.h │ │ │ │ ├── wi_refresh_160x160.h │ │ │ │ ├── wi_refresh_alt_160x160.h │ │ │ │ ├── wi_sandstorm_160x160.h │ │ │ │ ├── wi_showers_160x160.h │ │ │ │ ├── wi_sleet_160x160.h │ │ │ │ ├── wi_small_craft_advisory_160x160.h │ │ │ │ ├── wi_smog_160x160.h │ │ │ │ ├── wi_smoke_160x160.h │ │ │ │ ├── wi_snow_160x160.h │ │ │ │ ├── wi_snow_wind_160x160.h │ │ │ │ ├── wi_snowflake_cold_160x160.h │ │ │ │ ├── wi_solar_eclipse_160x160.h │ │ │ │ ├── wi_sprinkle_160x160.h │ │ │ │ ├── wi_stars_160x160.h │ │ │ │ ├── wi_storm_showers_160x160.h │ │ │ │ ├── wi_storm_warning_160x160.h │ │ │ │ ├── wi_strong_wind_160x160.h │ │ │ │ ├── wi_sunrise_160x160.h │ │ │ │ ├── wi_sunset_160x160.h │ │ │ │ ├── wi_thermometer_160x160.h │ │ │ │ ├── wi_thermometer_exterior_160x160.h │ │ │ │ ├── wi_thermometer_internal_160x160.h │ │ │ │ ├── wi_thunderstorm_160x160.h │ │ │ │ ├── wi_time_10_160x160.h │ │ │ │ ├── wi_time_11_160x160.h │ │ │ │ ├── wi_time_12_160x160.h │ │ │ │ ├── wi_time_1_160x160.h │ │ │ │ ├── wi_time_2_160x160.h │ │ │ │ ├── wi_time_3_160x160.h │ │ │ │ ├── wi_time_4_160x160.h │ │ │ │ ├── wi_time_5_160x160.h │ │ │ │ ├── wi_time_6_160x160.h │ │ │ │ ├── wi_time_7_160x160.h │ │ │ │ ├── wi_time_8_160x160.h │ │ │ │ ├── wi_time_9_160x160.h │ │ │ │ ├── wi_tornado_160x160.h │ │ │ │ ├── wi_train_160x160.h │ │ │ │ ├── wi_tsunami_160x160.h │ │ │ │ ├── wi_umbrella_160x160.h │ │ │ │ ├── wi_volcano_160x160.h │ │ │ │ ├── wi_wind_0deg_160x160.h │ │ │ │ ├── wi_wind_100deg_160x160.h │ │ │ │ ├── wi_wind_101_25deg_160x160.h │ │ │ │ ├── wi_wind_101deg_160x160.h │ │ │ │ ├── wi_wind_102deg_160x160.h │ │ │ │ ├── wi_wind_103deg_160x160.h │ │ │ │ ├── wi_wind_104deg_160x160.h │ │ │ │ ├── wi_wind_105deg_160x160.h │ │ │ │ ├── wi_wind_106deg_160x160.h │ │ │ │ ├── wi_wind_107deg_160x160.h │ │ │ │ ├── wi_wind_108deg_160x160.h │ │ │ │ ├── wi_wind_109deg_160x160.h │ │ │ │ ├── wi_wind_10deg_160x160.h │ │ │ │ ├── wi_wind_110deg_160x160.h │ │ │ │ ├── wi_wind_111deg_160x160.h │ │ │ │ ├── wi_wind_112_5deg_160x160.h │ │ │ │ ├── wi_wind_112deg_160x160.h │ │ │ │ ├── wi_wind_113deg_160x160.h │ │ │ │ ├── wi_wind_114deg_160x160.h │ │ │ │ ├── wi_wind_115deg_160x160.h │ │ │ │ ├── wi_wind_116deg_160x160.h │ │ │ │ ├── wi_wind_117deg_160x160.h │ │ │ │ ├── wi_wind_118deg_160x160.h │ │ │ │ ├── wi_wind_119deg_160x160.h │ │ │ │ ├── wi_wind_11_25deg_160x160.h │ │ │ │ ├── wi_wind_11deg_160x160.h │ │ │ │ ├── wi_wind_120deg_160x160.h │ │ │ │ ├── wi_wind_121deg_160x160.h │ │ │ │ ├── wi_wind_122deg_160x160.h │ │ │ │ ├── wi_wind_123_75deg_160x160.h │ │ │ │ ├── wi_wind_123deg_160x160.h │ │ │ │ ├── wi_wind_124deg_160x160.h │ │ │ │ ├── wi_wind_125deg_160x160.h │ │ │ │ ├── wi_wind_126deg_160x160.h │ │ │ │ ├── wi_wind_127deg_160x160.h │ │ │ │ ├── wi_wind_128deg_160x160.h │ │ │ │ ├── wi_wind_129deg_160x160.h │ │ │ │ ├── wi_wind_12deg_160x160.h │ │ │ │ ├── wi_wind_130deg_160x160.h │ │ │ │ ├── wi_wind_131deg_160x160.h │ │ │ │ ├── wi_wind_132deg_160x160.h │ │ │ │ ├── wi_wind_133deg_160x160.h │ │ │ │ ├── wi_wind_134deg_160x160.h │ │ │ │ ├── wi_wind_135deg_160x160.h │ │ │ │ ├── wi_wind_136deg_160x160.h │ │ │ │ ├── wi_wind_137deg_160x160.h │ │ │ │ ├── wi_wind_138deg_160x160.h │ │ │ │ ├── wi_wind_139deg_160x160.h │ │ │ │ ├── wi_wind_13deg_160x160.h │ │ │ │ ├── wi_wind_140deg_160x160.h │ │ │ │ ├── wi_wind_141deg_160x160.h │ │ │ │ ├── wi_wind_142deg_160x160.h │ │ │ │ ├── wi_wind_143deg_160x160.h │ │ │ │ ├── wi_wind_144deg_160x160.h │ │ │ │ ├── wi_wind_145deg_160x160.h │ │ │ │ ├── wi_wind_146_25deg_160x160.h │ │ │ │ ├── wi_wind_146deg_160x160.h │ │ │ │ ├── wi_wind_147deg_160x160.h │ │ │ │ ├── wi_wind_148deg_160x160.h │ │ │ │ ├── wi_wind_149deg_160x160.h │ │ │ │ ├── wi_wind_14deg_160x160.h │ │ │ │ ├── wi_wind_150deg_160x160.h │ │ │ │ ├── wi_wind_151deg_160x160.h │ │ │ │ ├── wi_wind_152deg_160x160.h │ │ │ │ ├── wi_wind_153deg_160x160.h │ │ │ │ ├── wi_wind_154deg_160x160.h │ │ │ │ ├── wi_wind_155deg_160x160.h │ │ │ │ ├── wi_wind_156deg_160x160.h │ │ │ │ ├── wi_wind_157_5deg_160x160.h │ │ │ │ ├── wi_wind_157deg_160x160.h │ │ │ │ ├── wi_wind_158deg_160x160.h │ │ │ │ ├── wi_wind_159deg_160x160.h │ │ │ │ ├── wi_wind_15deg_160x160.h │ │ │ │ ├── wi_wind_160deg_160x160.h │ │ │ │ ├── wi_wind_161deg_160x160.h │ │ │ │ ├── wi_wind_162deg_160x160.h │ │ │ │ ├── wi_wind_163deg_160x160.h │ │ │ │ ├── wi_wind_164deg_160x160.h │ │ │ │ ├── wi_wind_165deg_160x160.h │ │ │ │ ├── wi_wind_166deg_160x160.h │ │ │ │ ├── wi_wind_167deg_160x160.h │ │ │ │ ├── wi_wind_168_75deg_160x160.h │ │ │ │ ├── wi_wind_168deg_160x160.h │ │ │ │ ├── wi_wind_169deg_160x160.h │ │ │ │ ├── wi_wind_16deg_160x160.h │ │ │ │ ├── wi_wind_170deg_160x160.h │ │ │ │ ├── wi_wind_171deg_160x160.h │ │ │ │ ├── wi_wind_172deg_160x160.h │ │ │ │ ├── wi_wind_173deg_160x160.h │ │ │ │ ├── wi_wind_174deg_160x160.h │ │ │ │ ├── wi_wind_175deg_160x160.h │ │ │ │ ├── wi_wind_176deg_160x160.h │ │ │ │ ├── wi_wind_177deg_160x160.h │ │ │ │ ├── wi_wind_178deg_160x160.h │ │ │ │ ├── wi_wind_179deg_160x160.h │ │ │ │ ├── wi_wind_17deg_160x160.h │ │ │ │ ├── wi_wind_180deg_160x160.h │ │ │ │ ├── wi_wind_181deg_160x160.h │ │ │ │ ├── wi_wind_182deg_160x160.h │ │ │ │ ├── wi_wind_183deg_160x160.h │ │ │ │ ├── wi_wind_184deg_160x160.h │ │ │ │ ├── wi_wind_185deg_160x160.h │ │ │ │ ├── wi_wind_186deg_160x160.h │ │ │ │ ├── wi_wind_187deg_160x160.h │ │ │ │ ├── wi_wind_188deg_160x160.h │ │ │ │ ├── wi_wind_189deg_160x160.h │ │ │ │ ├── wi_wind_18deg_160x160.h │ │ │ │ ├── wi_wind_190deg_160x160.h │ │ │ │ ├── wi_wind_191_25deg_160x160.h │ │ │ │ ├── wi_wind_191deg_160x160.h │ │ │ │ ├── wi_wind_192deg_160x160.h │ │ │ │ ├── wi_wind_193deg_160x160.h │ │ │ │ ├── wi_wind_194deg_160x160.h │ │ │ │ ├── wi_wind_195deg_160x160.h │ │ │ │ ├── wi_wind_196deg_160x160.h │ │ │ │ ├── wi_wind_197deg_160x160.h │ │ │ │ ├── wi_wind_198deg_160x160.h │ │ │ │ ├── wi_wind_199deg_160x160.h │ │ │ │ ├── wi_wind_19deg_160x160.h │ │ │ │ ├── wi_wind_1deg_160x160.h │ │ │ │ ├── wi_wind_200deg_160x160.h │ │ │ │ ├── wi_wind_201deg_160x160.h │ │ │ │ ├── wi_wind_202_5deg_160x160.h │ │ │ │ ├── wi_wind_202deg_160x160.h │ │ │ │ ├── wi_wind_203deg_160x160.h │ │ │ │ ├── wi_wind_204deg_160x160.h │ │ │ │ ├── wi_wind_205deg_160x160.h │ │ │ │ ├── wi_wind_206deg_160x160.h │ │ │ │ ├── wi_wind_207deg_160x160.h │ │ │ │ ├── wi_wind_208deg_160x160.h │ │ │ │ ├── wi_wind_209deg_160x160.h │ │ │ │ ├── wi_wind_20deg_160x160.h │ │ │ │ ├── wi_wind_210deg_160x160.h │ │ │ │ ├── wi_wind_211deg_160x160.h │ │ │ │ ├── wi_wind_212deg_160x160.h │ │ │ │ ├── wi_wind_213_75deg_160x160.h │ │ │ │ ├── wi_wind_213deg_160x160.h │ │ │ │ ├── wi_wind_214deg_160x160.h │ │ │ │ ├── wi_wind_215deg_160x160.h │ │ │ │ ├── wi_wind_216deg_160x160.h │ │ │ │ ├── wi_wind_217deg_160x160.h │ │ │ │ ├── wi_wind_218deg_160x160.h │ │ │ │ ├── wi_wind_219deg_160x160.h │ │ │ │ ├── wi_wind_21deg_160x160.h │ │ │ │ ├── wi_wind_220deg_160x160.h │ │ │ │ ├── wi_wind_221deg_160x160.h │ │ │ │ ├── wi_wind_222deg_160x160.h │ │ │ │ ├── wi_wind_223deg_160x160.h │ │ │ │ ├── wi_wind_224deg_160x160.h │ │ │ │ ├── wi_wind_225deg_160x160.h │ │ │ │ ├── wi_wind_226deg_160x160.h │ │ │ │ ├── wi_wind_227deg_160x160.h │ │ │ │ ├── wi_wind_228deg_160x160.h │ │ │ │ ├── wi_wind_229deg_160x160.h │ │ │ │ ├── wi_wind_22_5deg_160x160.h │ │ │ │ ├── wi_wind_22deg_160x160.h │ │ │ │ ├── wi_wind_230deg_160x160.h │ │ │ │ ├── wi_wind_231deg_160x160.h │ │ │ │ ├── wi_wind_232deg_160x160.h │ │ │ │ ├── wi_wind_233deg_160x160.h │ │ │ │ ├── wi_wind_234deg_160x160.h │ │ │ │ ├── wi_wind_235deg_160x160.h │ │ │ │ ├── wi_wind_236_25deg_160x160.h │ │ │ │ ├── wi_wind_236deg_160x160.h │ │ │ │ ├── wi_wind_237deg_160x160.h │ │ │ │ ├── wi_wind_238deg_160x160.h │ │ │ │ ├── wi_wind_239deg_160x160.h │ │ │ │ ├── wi_wind_23deg_160x160.h │ │ │ │ ├── wi_wind_240deg_160x160.h │ │ │ │ ├── wi_wind_241deg_160x160.h │ │ │ │ ├── wi_wind_242deg_160x160.h │ │ │ │ ├── wi_wind_243deg_160x160.h │ │ │ │ ├── wi_wind_244deg_160x160.h │ │ │ │ ├── wi_wind_245deg_160x160.h │ │ │ │ ├── wi_wind_246deg_160x160.h │ │ │ │ ├── wi_wind_247_5deg_160x160.h │ │ │ │ ├── wi_wind_247deg_160x160.h │ │ │ │ ├── wi_wind_248deg_160x160.h │ │ │ │ ├── wi_wind_249deg_160x160.h │ │ │ │ ├── wi_wind_24deg_160x160.h │ │ │ │ ├── wi_wind_250deg_160x160.h │ │ │ │ ├── wi_wind_251deg_160x160.h │ │ │ │ ├── wi_wind_252deg_160x160.h │ │ │ │ ├── wi_wind_253deg_160x160.h │ │ │ │ ├── wi_wind_254deg_160x160.h │ │ │ │ ├── wi_wind_255deg_160x160.h │ │ │ │ ├── wi_wind_256deg_160x160.h │ │ │ │ ├── wi_wind_257deg_160x160.h │ │ │ │ ├── wi_wind_258_75deg_160x160.h │ │ │ │ ├── wi_wind_258deg_160x160.h │ │ │ │ ├── wi_wind_259deg_160x160.h │ │ │ │ ├── wi_wind_25deg_160x160.h │ │ │ │ ├── wi_wind_260deg_160x160.h │ │ │ │ ├── wi_wind_261deg_160x160.h │ │ │ │ ├── wi_wind_262deg_160x160.h │ │ │ │ ├── wi_wind_263deg_160x160.h │ │ │ │ ├── wi_wind_264deg_160x160.h │ │ │ │ ├── wi_wind_265deg_160x160.h │ │ │ │ ├── wi_wind_266deg_160x160.h │ │ │ │ ├── wi_wind_267deg_160x160.h │ │ │ │ ├── wi_wind_268deg_160x160.h │ │ │ │ ├── wi_wind_269deg_160x160.h │ │ │ │ ├── wi_wind_26deg_160x160.h │ │ │ │ ├── wi_wind_270deg_160x160.h │ │ │ │ ├── wi_wind_271deg_160x160.h │ │ │ │ ├── wi_wind_272deg_160x160.h │ │ │ │ ├── wi_wind_273deg_160x160.h │ │ │ │ ├── wi_wind_274deg_160x160.h │ │ │ │ ├── wi_wind_275deg_160x160.h │ │ │ │ ├── wi_wind_276deg_160x160.h │ │ │ │ ├── wi_wind_277deg_160x160.h │ │ │ │ ├── wi_wind_278deg_160x160.h │ │ │ │ ├── wi_wind_279deg_160x160.h │ │ │ │ ├── wi_wind_27deg_160x160.h │ │ │ │ ├── wi_wind_280deg_160x160.h │ │ │ │ ├── wi_wind_281_25deg_160x160.h │ │ │ │ ├── wi_wind_281deg_160x160.h │ │ │ │ ├── wi_wind_282deg_160x160.h │ │ │ │ ├── wi_wind_283deg_160x160.h │ │ │ │ ├── wi_wind_284deg_160x160.h │ │ │ │ ├── wi_wind_285deg_160x160.h │ │ │ │ ├── wi_wind_286deg_160x160.h │ │ │ │ ├── wi_wind_287deg_160x160.h │ │ │ │ ├── wi_wind_288deg_160x160.h │ │ │ │ ├── wi_wind_289deg_160x160.h │ │ │ │ ├── wi_wind_28deg_160x160.h │ │ │ │ ├── wi_wind_290deg_160x160.h │ │ │ │ ├── wi_wind_291deg_160x160.h │ │ │ │ ├── wi_wind_292_5deg_160x160.h │ │ │ │ ├── wi_wind_292deg_160x160.h │ │ │ │ ├── wi_wind_293deg_160x160.h │ │ │ │ ├── wi_wind_294deg_160x160.h │ │ │ │ ├── wi_wind_295deg_160x160.h │ │ │ │ ├── wi_wind_296deg_160x160.h │ │ │ │ ├── wi_wind_297deg_160x160.h │ │ │ │ ├── wi_wind_298deg_160x160.h │ │ │ │ ├── wi_wind_299deg_160x160.h │ │ │ │ ├── wi_wind_29deg_160x160.h │ │ │ │ ├── wi_wind_2deg_160x160.h │ │ │ │ ├── wi_wind_300deg_160x160.h │ │ │ │ ├── wi_wind_301deg_160x160.h │ │ │ │ ├── wi_wind_302deg_160x160.h │ │ │ │ ├── wi_wind_303_75deg_160x160.h │ │ │ │ ├── wi_wind_303deg_160x160.h │ │ │ │ ├── wi_wind_304deg_160x160.h │ │ │ │ ├── wi_wind_305deg_160x160.h │ │ │ │ ├── wi_wind_306deg_160x160.h │ │ │ │ ├── wi_wind_307deg_160x160.h │ │ │ │ ├── wi_wind_308deg_160x160.h │ │ │ │ ├── wi_wind_309deg_160x160.h │ │ │ │ ├── wi_wind_30deg_160x160.h │ │ │ │ ├── wi_wind_310deg_160x160.h │ │ │ │ ├── wi_wind_311deg_160x160.h │ │ │ │ ├── wi_wind_312deg_160x160.h │ │ │ │ ├── wi_wind_313deg_160x160.h │ │ │ │ ├── wi_wind_314deg_160x160.h │ │ │ │ ├── wi_wind_315deg_160x160.h │ │ │ │ ├── wi_wind_316deg_160x160.h │ │ │ │ ├── wi_wind_317deg_160x160.h │ │ │ │ ├── wi_wind_318deg_160x160.h │ │ │ │ ├── wi_wind_319deg_160x160.h │ │ │ │ ├── wi_wind_31deg_160x160.h │ │ │ │ ├── wi_wind_320deg_160x160.h │ │ │ │ ├── wi_wind_321deg_160x160.h │ │ │ │ ├── wi_wind_322deg_160x160.h │ │ │ │ ├── wi_wind_323deg_160x160.h │ │ │ │ ├── wi_wind_324deg_160x160.h │ │ │ │ ├── wi_wind_325deg_160x160.h │ │ │ │ ├── wi_wind_326_25deg_160x160.h │ │ │ │ ├── wi_wind_326deg_160x160.h │ │ │ │ ├── wi_wind_327deg_160x160.h │ │ │ │ ├── wi_wind_328deg_160x160.h │ │ │ │ ├── wi_wind_329deg_160x160.h │ │ │ │ ├── wi_wind_32deg_160x160.h │ │ │ │ ├── wi_wind_330deg_160x160.h │ │ │ │ ├── wi_wind_331deg_160x160.h │ │ │ │ ├── wi_wind_332deg_160x160.h │ │ │ │ ├── wi_wind_333deg_160x160.h │ │ │ │ ├── wi_wind_334deg_160x160.h │ │ │ │ ├── wi_wind_335deg_160x160.h │ │ │ │ ├── wi_wind_336deg_160x160.h │ │ │ │ ├── wi_wind_337_5deg_160x160.h │ │ │ │ ├── wi_wind_337deg_160x160.h │ │ │ │ ├── wi_wind_338deg_160x160.h │ │ │ │ ├── wi_wind_339deg_160x160.h │ │ │ │ ├── wi_wind_33_75deg_160x160.h │ │ │ │ ├── wi_wind_33deg_160x160.h │ │ │ │ ├── wi_wind_340deg_160x160.h │ │ │ │ ├── wi_wind_341deg_160x160.h │ │ │ │ ├── wi_wind_342deg_160x160.h │ │ │ │ ├── wi_wind_343deg_160x160.h │ │ │ │ ├── wi_wind_344deg_160x160.h │ │ │ │ ├── wi_wind_345deg_160x160.h │ │ │ │ ├── wi_wind_346deg_160x160.h │ │ │ │ ├── wi_wind_347deg_160x160.h │ │ │ │ ├── wi_wind_348_75deg_160x160.h │ │ │ │ ├── wi_wind_348deg_160x160.h │ │ │ │ ├── wi_wind_349deg_160x160.h │ │ │ │ ├── wi_wind_34deg_160x160.h │ │ │ │ ├── wi_wind_350deg_160x160.h │ │ │ │ ├── wi_wind_351deg_160x160.h │ │ │ │ ├── wi_wind_352deg_160x160.h │ │ │ │ ├── wi_wind_353deg_160x160.h │ │ │ │ ├── wi_wind_354deg_160x160.h │ │ │ │ ├── wi_wind_355deg_160x160.h │ │ │ │ ├── wi_wind_356deg_160x160.h │ │ │ │ ├── wi_wind_357deg_160x160.h │ │ │ │ ├── wi_wind_358deg_160x160.h │ │ │ │ ├── wi_wind_359deg_160x160.h │ │ │ │ ├── wi_wind_35deg_160x160.h │ │ │ │ ├── wi_wind_36deg_160x160.h │ │ │ │ ├── wi_wind_37deg_160x160.h │ │ │ │ ├── wi_wind_38deg_160x160.h │ │ │ │ ├── wi_wind_39deg_160x160.h │ │ │ │ ├── wi_wind_3deg_160x160.h │ │ │ │ ├── wi_wind_40deg_160x160.h │ │ │ │ ├── wi_wind_41deg_160x160.h │ │ │ │ ├── wi_wind_42deg_160x160.h │ │ │ │ ├── wi_wind_43deg_160x160.h │ │ │ │ ├── wi_wind_44deg_160x160.h │ │ │ │ ├── wi_wind_45deg_160x160.h │ │ │ │ ├── wi_wind_46deg_160x160.h │ │ │ │ ├── wi_wind_47deg_160x160.h │ │ │ │ ├── wi_wind_48deg_160x160.h │ │ │ │ ├── wi_wind_49deg_160x160.h │ │ │ │ ├── wi_wind_4deg_160x160.h │ │ │ │ ├── wi_wind_50deg_160x160.h │ │ │ │ ├── wi_wind_51deg_160x160.h │ │ │ │ ├── wi_wind_52deg_160x160.h │ │ │ │ ├── wi_wind_53deg_160x160.h │ │ │ │ ├── wi_wind_54deg_160x160.h │ │ │ │ ├── wi_wind_55deg_160x160.h │ │ │ │ ├── wi_wind_56_25deg_160x160.h │ │ │ │ ├── wi_wind_56deg_160x160.h │ │ │ │ ├── wi_wind_57deg_160x160.h │ │ │ │ ├── wi_wind_58deg_160x160.h │ │ │ │ ├── wi_wind_59deg_160x160.h │ │ │ │ ├── wi_wind_5deg_160x160.h │ │ │ │ ├── wi_wind_60deg_160x160.h │ │ │ │ ├── wi_wind_61deg_160x160.h │ │ │ │ ├── wi_wind_62deg_160x160.h │ │ │ │ ├── wi_wind_63deg_160x160.h │ │ │ │ ├── wi_wind_64deg_160x160.h │ │ │ │ ├── wi_wind_65deg_160x160.h │ │ │ │ ├── wi_wind_66deg_160x160.h │ │ │ │ ├── wi_wind_67_5deg_160x160.h │ │ │ │ ├── wi_wind_67deg_160x160.h │ │ │ │ ├── wi_wind_68deg_160x160.h │ │ │ │ ├── wi_wind_69deg_160x160.h │ │ │ │ ├── wi_wind_6deg_160x160.h │ │ │ │ ├── wi_wind_70deg_160x160.h │ │ │ │ ├── wi_wind_71deg_160x160.h │ │ │ │ ├── wi_wind_72deg_160x160.h │ │ │ │ ├── wi_wind_73deg_160x160.h │ │ │ │ ├── wi_wind_74deg_160x160.h │ │ │ │ ├── wi_wind_75deg_160x160.h │ │ │ │ ├── wi_wind_76deg_160x160.h │ │ │ │ ├── wi_wind_77deg_160x160.h │ │ │ │ ├── wi_wind_78_75deg_160x160.h │ │ │ │ ├── wi_wind_78deg_160x160.h │ │ │ │ ├── wi_wind_79deg_160x160.h │ │ │ │ ├── wi_wind_7deg_160x160.h │ │ │ │ ├── wi_wind_80deg_160x160.h │ │ │ │ ├── wi_wind_81deg_160x160.h │ │ │ │ ├── wi_wind_82deg_160x160.h │ │ │ │ ├── wi_wind_83deg_160x160.h │ │ │ │ ├── wi_wind_84deg_160x160.h │ │ │ │ ├── wi_wind_85deg_160x160.h │ │ │ │ ├── wi_wind_86deg_160x160.h │ │ │ │ ├── wi_wind_87deg_160x160.h │ │ │ │ ├── wi_wind_88deg_160x160.h │ │ │ │ ├── wi_wind_89deg_160x160.h │ │ │ │ ├── wi_wind_8deg_160x160.h │ │ │ │ ├── wi_wind_90deg_160x160.h │ │ │ │ ├── wi_wind_91deg_160x160.h │ │ │ │ ├── wi_wind_92deg_160x160.h │ │ │ │ ├── wi_wind_93deg_160x160.h │ │ │ │ ├── wi_wind_94deg_160x160.h │ │ │ │ ├── wi_wind_95deg_160x160.h │ │ │ │ ├── wi_wind_96deg_160x160.h │ │ │ │ ├── wi_wind_97deg_160x160.h │ │ │ │ ├── wi_wind_98deg_160x160.h │ │ │ │ ├── wi_wind_99deg_160x160.h │ │ │ │ ├── wi_wind_9deg_160x160.h │ │ │ │ ├── wi_wind_beaufort_0_160x160.h │ │ │ │ ├── wi_wind_beaufort_10_160x160.h │ │ │ │ ├── wi_wind_beaufort_11_160x160.h │ │ │ │ ├── wi_wind_beaufort_12_160x160.h │ │ │ │ ├── wi_wind_beaufort_1_160x160.h │ │ │ │ ├── wi_wind_beaufort_2_160x160.h │ │ │ │ ├── wi_wind_beaufort_3_160x160.h │ │ │ │ ├── wi_wind_beaufort_4_160x160.h │ │ │ │ ├── wi_wind_beaufort_5_160x160.h │ │ │ │ ├── wi_wind_beaufort_6_160x160.h │ │ │ │ ├── wi_wind_beaufort_7_160x160.h │ │ │ │ ├── wi_wind_beaufort_8_160x160.h │ │ │ │ ├── wi_wind_beaufort_9_160x160.h │ │ │ │ ├── wi_windy_160x160.h │ │ │ │ ├── wifi_160x160.h │ │ │ │ ├── wifi_1_bar_160x160.h │ │ │ │ ├── wifi_2_bar_160x160.h │ │ │ │ ├── wifi_3_bar_160x160.h │ │ │ │ ├── wifi_off_160x160.h │ │ │ │ ├── wifi_x_160x160.h │ │ │ │ ├── wind_direction_meteorological_0deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_100deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_101deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_102deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_103deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_104deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_105deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_106deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_107deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_108deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_109deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_10deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_110deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_111deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_112deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_113deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_114deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_115deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_116deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_117deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_118deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_119deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_11deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_120deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_121deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_122deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_123deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_124deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_125deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_126deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_127deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_128deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_129deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_12deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_130deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_131deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_132deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_133deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_134deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_135deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_136deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_137deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_138deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_139deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_13deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_140deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_141deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_142deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_143deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_144deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_145deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_146deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_147deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_148deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_149deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_14deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_150deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_151deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_152deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_153deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_154deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_155deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_156deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_157deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_158deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_159deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_15deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_160deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_161deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_162deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_163deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_164deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_165deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_166deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_167deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_168deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_169deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_16deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_170deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_171deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_172deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_173deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_174deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_175deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_176deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_177deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_178deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_179deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_17deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_180deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_181deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_182deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_183deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_184deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_185deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_186deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_187deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_188deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_189deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_18deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_190deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_191deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_192deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_193deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_194deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_195deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_196deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_197deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_198deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_199deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_19deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_1deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_200deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_201deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_202deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_203deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_204deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_205deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_206deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_207deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_208deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_209deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_20deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_210deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_211deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_212deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_213deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_214deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_215deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_216deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_217deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_218deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_219deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_21deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_220deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_221deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_222deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_223deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_224deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_225deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_226deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_227deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_228deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_229deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_22deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_230deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_231deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_232deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_233deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_234deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_235deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_236deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_237deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_238deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_239deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_23deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_240deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_241deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_242deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_243deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_244deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_245deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_246deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_247deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_248deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_249deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_24deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_250deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_251deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_252deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_253deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_254deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_255deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_256deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_257deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_258deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_259deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_260deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_261deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_262deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_263deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_264deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_265deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_266deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_267deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_268deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_269deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_26deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_270deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_271deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_272deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_273deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_274deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_275deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_276deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_277deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_278deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_279deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_27deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_280deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_281deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_282deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_283deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_284deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_285deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_286deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_287deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_288deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_289deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_28deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_290deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_291deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_292deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_293deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_294deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_295deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_296deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_297deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_298deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_299deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_29deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_2deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_300deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_301deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_302deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_303deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_304deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_305deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_306deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_307deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_308deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_309deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_30deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_310deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_311deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_312deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_313deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_314deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_315deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_316deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_317deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_318deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_319deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_31deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_320deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_321deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_322deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_323deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_324deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_325deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_326deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_327deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_328deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_329deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_32deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_330deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_331deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_332deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_333deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_334deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_335deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_336deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_337deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_338deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_339deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_33deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_340deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_341deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_342deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_343deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_344deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_345deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_346deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_347deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_348deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_349deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_34deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_350deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_351deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_352deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_353deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_354deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_355deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_356deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_357deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_358deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_359deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_35deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_36deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_37deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_38deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_39deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_3deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_40deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_41deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_42deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_43deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_44deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_45deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_46deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_47deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_48deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_49deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_4deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_50deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_51deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_52deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_53deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_54deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_55deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_56deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_57deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_58deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_59deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_60deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_61deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_62deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_63deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_64deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_65deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_66deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_67deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_68deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_69deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_6deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_70deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_71deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_72deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_73deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_74deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_76deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_77deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_78deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_79deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_7deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_80deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_81deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_82deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_83deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_84deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_85deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_86deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_87deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_88deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_89deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_8deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_90deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_91deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_92deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_93deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_94deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_95deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_96deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_97deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_98deg_160x160.h │ │ │ │ ├── wind_direction_meteorological_99deg_160x160.h │ │ │ │ └── wind_direction_meteorological_9deg_160x160.h │ │ │ ├── 16x16 │ │ │ │ ├── air_filter_16x16.h │ │ │ │ ├── battery_0_bar_0deg_16x16.h │ │ │ │ ├── battery_0_bar_180deg_16x16.h │ │ │ │ ├── battery_0_bar_270deg_16x16.h │ │ │ │ ├── battery_0_bar_90deg_16x16.h │ │ │ │ ├── battery_1_bar_0deg_16x16.h │ │ │ │ ├── battery_1_bar_180deg_16x16.h │ │ │ │ ├── battery_1_bar_270deg_16x16.h │ │ │ │ ├── battery_1_bar_90deg_16x16.h │ │ │ │ ├── battery_2_bar_0deg_16x16.h │ │ │ │ ├── battery_2_bar_180deg_16x16.h │ │ │ │ ├── battery_2_bar_270deg_16x16.h │ │ │ │ ├── battery_2_bar_90deg_16x16.h │ │ │ │ ├── battery_3_bar_0deg_16x16.h │ │ │ │ ├── battery_3_bar_180deg_16x16.h │ │ │ │ ├── battery_3_bar_270deg_16x16.h │ │ │ │ ├── battery_3_bar_90deg_16x16.h │ │ │ │ ├── battery_4_bar_0deg_16x16.h │ │ │ │ ├── battery_4_bar_180deg_16x16.h │ │ │ │ ├── battery_4_bar_270deg_16x16.h │ │ │ │ ├── battery_4_bar_90deg_16x16.h │ │ │ │ ├── battery_5_bar_0deg_16x16.h │ │ │ │ ├── battery_5_bar_180deg_16x16.h │ │ │ │ ├── battery_5_bar_270deg_16x16.h │ │ │ │ ├── battery_5_bar_90deg_16x16.h │ │ │ │ ├── battery_6_bar_0deg_16x16.h │ │ │ │ ├── battery_6_bar_180deg_16x16.h │ │ │ │ ├── battery_6_bar_270deg_16x16.h │ │ │ │ ├── battery_6_bar_90deg_16x16.h │ │ │ │ ├── battery_alert_0deg_16x16.h │ │ │ │ ├── battery_alert_180deg_16x16.h │ │ │ │ ├── battery_alert_270deg_16x16.h │ │ │ │ ├── battery_alert_90deg_16x16.h │ │ │ │ ├── battery_charging_full_0deg_16x16.h │ │ │ │ ├── battery_charging_full_180deg_16x16.h │ │ │ │ ├── battery_charging_full_270deg_16x16.h │ │ │ │ ├── battery_charging_full_90deg_16x16.h │ │ │ │ ├── battery_full_0deg_16x16.h │ │ │ │ ├── battery_full_180deg_16x16.h │ │ │ │ ├── battery_full_270deg_16x16.h │ │ │ │ ├── battery_full_90deg_16x16.h │ │ │ │ ├── biological_hazard_symbol_16x16.h │ │ │ │ ├── error_icon_16x16.h │ │ │ │ ├── house_16x16.h │ │ │ │ ├── house_humidity_16x16.h │ │ │ │ ├── house_raindrops_16x16.h │ │ │ │ ├── house_thermometer_16x16.h │ │ │ │ ├── ionizing_radiation_symbol_16x16.h │ │ │ │ ├── visibility_icon_16x16.h │ │ │ │ ├── warning_icon_16x16.h │ │ │ │ ├── wi_alien_16x16.h │ │ │ │ ├── wi_barometer_16x16.h │ │ │ │ ├── wi_celsius_16x16.h │ │ │ │ ├── wi_cloud_16x16.h │ │ │ │ ├── wi_cloud_down_16x16.h │ │ │ │ ├── wi_cloud_refresh_16x16.h │ │ │ │ ├── wi_cloud_up_16x16.h │ │ │ │ ├── wi_cloudy_16x16.h │ │ │ │ ├── wi_cloudy_gusts_16x16.h │ │ │ │ ├── wi_cloudy_windy_16x16.h │ │ │ │ ├── wi_day_cloudy_16x16.h │ │ │ │ ├── wi_day_cloudy_gusts_16x16.h │ │ │ │ ├── wi_day_cloudy_high_16x16.h │ │ │ │ ├── wi_day_cloudy_windy_16x16.h │ │ │ │ ├── wi_day_fog_16x16.h │ │ │ │ ├── wi_day_hail_16x16.h │ │ │ │ ├── wi_day_haze_16x16.h │ │ │ │ ├── wi_day_light_wind_16x16.h │ │ │ │ ├── wi_day_lightning_16x16.h │ │ │ │ ├── wi_day_rain_16x16.h │ │ │ │ ├── wi_day_rain_mix_16x16.h │ │ │ │ ├── wi_day_rain_wind_16x16.h │ │ │ │ ├── wi_day_showers_16x16.h │ │ │ │ ├── wi_day_sleet_16x16.h │ │ │ │ ├── wi_day_sleet_storm_16x16.h │ │ │ │ ├── wi_day_snow_16x16.h │ │ │ │ ├── wi_day_snow_thunderstorm_16x16.h │ │ │ │ ├── wi_day_snow_wind_16x16.h │ │ │ │ ├── wi_day_sprinkle_16x16.h │ │ │ │ ├── wi_day_storm_showers_16x16.h │ │ │ │ ├── wi_day_sunny_16x16.h │ │ │ │ ├── wi_day_sunny_overcast_16x16.h │ │ │ │ ├── wi_day_thunderstorm_16x16.h │ │ │ │ ├── wi_day_windy_16x16.h │ │ │ │ ├── wi_degrees_16x16.h │ │ │ │ ├── wi_direction_down_16x16.h │ │ │ │ ├── wi_direction_down_left_16x16.h │ │ │ │ ├── wi_direction_down_right_16x16.h │ │ │ │ ├── wi_direction_left_16x16.h │ │ │ │ ├── wi_direction_right_16x16.h │ │ │ │ ├── wi_direction_up_16x16.h │ │ │ │ ├── wi_direction_up_left_16x16.h │ │ │ │ ├── wi_direction_up_right_16x16.h │ │ │ │ ├── wi_dust_16x16.h │ │ │ │ ├── wi_earthquake_16x16.h │ │ │ │ ├── wi_fahrenheit_16x16.h │ │ │ │ ├── wi_fire_16x16.h │ │ │ │ ├── wi_flood_16x16.h │ │ │ │ ├── wi_fog_16x16.h │ │ │ │ ├── wi_gale_warning_16x16.h │ │ │ │ ├── wi_hail_16x16.h │ │ │ │ ├── wi_horizon_16x16.h │ │ │ │ ├── wi_horizon_alt_16x16.h │ │ │ │ ├── wi_hot_16x16.h │ │ │ │ ├── wi_humidity_16x16.h │ │ │ │ ├── wi_hurricane_16x16.h │ │ │ │ ├── wi_hurricane_warning_16x16.h │ │ │ │ ├── wi_lightning_16x16.h │ │ │ │ ├── wi_lunar_eclipse_16x16.h │ │ │ │ ├── wi_meteor_16x16.h │ │ │ │ ├── wi_moon_alt_first_quarter_16x16.h │ │ │ │ ├── wi_moon_alt_full_16x16.h │ │ │ │ ├── wi_moon_alt_new_16x16.h │ │ │ │ ├── wi_moon_alt_third_quarter_16x16.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_16x16.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_16x16.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_16x16.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_16x16.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_16x16.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_16x16.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_16x16.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_16x16.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_16x16.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_16x16.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_16x16.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_16x16.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_16x16.h │ │ │ │ ├── wi_moon_first_quarter_16x16.h │ │ │ │ ├── wi_moon_full_16x16.h │ │ │ │ ├── wi_moon_new_16x16.h │ │ │ │ ├── wi_moon_third_quarter_16x16.h │ │ │ │ ├── wi_moon_waning_crescent_1_16x16.h │ │ │ │ ├── wi_moon_waning_crescent_2_16x16.h │ │ │ │ ├── wi_moon_waning_crescent_3_16x16.h │ │ │ │ ├── wi_moon_waning_crescent_4_16x16.h │ │ │ │ ├── wi_moon_waning_crescent_5_16x16.h │ │ │ │ ├── wi_moon_waning_crescent_6_16x16.h │ │ │ │ ├── wi_moon_waning_gibbous_1_16x16.h │ │ │ │ ├── wi_moon_waning_gibbous_2_16x16.h │ │ │ │ ├── wi_moon_waning_gibbous_3_16x16.h │ │ │ │ ├── wi_moon_waning_gibbous_4_16x16.h │ │ │ │ ├── wi_moon_waning_gibbous_5_16x16.h │ │ │ │ ├── wi_moon_waning_gibbous_6_16x16.h │ │ │ │ ├── wi_moon_waxing_6_16x16.h │ │ │ │ ├── wi_moon_waxing_crescent_1_16x16.h │ │ │ │ ├── wi_moon_waxing_crescent_2_16x16.h │ │ │ │ ├── wi_moon_waxing_crescent_3_16x16.h │ │ │ │ ├── wi_moon_waxing_crescent_4_16x16.h │ │ │ │ ├── wi_moon_waxing_crescent_5_16x16.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_16x16.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_16x16.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_16x16.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_16x16.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_16x16.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_16x16.h │ │ │ │ ├── wi_moonrise_16x16.h │ │ │ │ ├── wi_moonset_16x16.h │ │ │ │ ├── wi_na_16x16.h │ │ │ │ ├── wi_night_alt_cloudy_16x16.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_16x16.h │ │ │ │ ├── wi_night_alt_cloudy_high_16x16.h │ │ │ │ ├── wi_night_alt_cloudy_windy_16x16.h │ │ │ │ ├── wi_night_alt_hail_16x16.h │ │ │ │ ├── wi_night_alt_lightning_16x16.h │ │ │ │ ├── wi_night_alt_partly_cloudy_16x16.h │ │ │ │ ├── wi_night_alt_rain_16x16.h │ │ │ │ ├── wi_night_alt_rain_mix_16x16.h │ │ │ │ ├── wi_night_alt_rain_wind_16x16.h │ │ │ │ ├── wi_night_alt_showers_16x16.h │ │ │ │ ├── wi_night_alt_sleet_16x16.h │ │ │ │ ├── wi_night_alt_sleet_storm_16x16.h │ │ │ │ ├── wi_night_alt_snow_16x16.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_16x16.h │ │ │ │ ├── wi_night_alt_snow_wind_16x16.h │ │ │ │ ├── wi_night_alt_sprinkle_16x16.h │ │ │ │ ├── wi_night_alt_storm_showers_16x16.h │ │ │ │ ├── wi_night_alt_thunderstorm_16x16.h │ │ │ │ ├── wi_night_clear_16x16.h │ │ │ │ ├── wi_night_cloudy_16x16.h │ │ │ │ ├── wi_night_cloudy_gusts_16x16.h │ │ │ │ ├── wi_night_cloudy_high_16x16.h │ │ │ │ ├── wi_night_cloudy_windy_16x16.h │ │ │ │ ├── wi_night_fog_16x16.h │ │ │ │ ├── wi_night_hail_16x16.h │ │ │ │ ├── wi_night_lightning_16x16.h │ │ │ │ ├── wi_night_partly_cloudy_16x16.h │ │ │ │ ├── wi_night_rain_16x16.h │ │ │ │ ├── wi_night_rain_mix_16x16.h │ │ │ │ ├── wi_night_rain_wind_16x16.h │ │ │ │ ├── wi_night_showers_16x16.h │ │ │ │ ├── wi_night_sleet_16x16.h │ │ │ │ ├── wi_night_sleet_storm_16x16.h │ │ │ │ ├── wi_night_snow_16x16.h │ │ │ │ ├── wi_night_snow_thunderstorm_16x16.h │ │ │ │ ├── wi_night_snow_wind_16x16.h │ │ │ │ ├── wi_night_sprinkle_16x16.h │ │ │ │ ├── wi_night_storm_showers_16x16.h │ │ │ │ ├── wi_night_thunderstorm_16x16.h │ │ │ │ ├── wi_rain_16x16.h │ │ │ │ ├── wi_rain_mix_16x16.h │ │ │ │ ├── wi_rain_wind_16x16.h │ │ │ │ ├── wi_raindrop_16x16.h │ │ │ │ ├── wi_raindrops_16x16.h │ │ │ │ ├── wi_refresh_16x16.h │ │ │ │ ├── wi_refresh_alt_16x16.h │ │ │ │ ├── wi_sandstorm_16x16.h │ │ │ │ ├── wi_showers_16x16.h │ │ │ │ ├── wi_sleet_16x16.h │ │ │ │ ├── wi_small_craft_advisory_16x16.h │ │ │ │ ├── wi_smog_16x16.h │ │ │ │ ├── wi_smoke_16x16.h │ │ │ │ ├── wi_snow_16x16.h │ │ │ │ ├── wi_snow_wind_16x16.h │ │ │ │ ├── wi_snowflake_cold_16x16.h │ │ │ │ ├── wi_solar_eclipse_16x16.h │ │ │ │ ├── wi_sprinkle_16x16.h │ │ │ │ ├── wi_stars_16x16.h │ │ │ │ ├── wi_storm_showers_16x16.h │ │ │ │ ├── wi_storm_warning_16x16.h │ │ │ │ ├── wi_strong_wind_16x16.h │ │ │ │ ├── wi_sunrise_16x16.h │ │ │ │ ├── wi_sunset_16x16.h │ │ │ │ ├── wi_thermometer_16x16.h │ │ │ │ ├── wi_thermometer_exterior_16x16.h │ │ │ │ ├── wi_thermometer_internal_16x16.h │ │ │ │ ├── wi_thunderstorm_16x16.h │ │ │ │ ├── wi_time_10_16x16.h │ │ │ │ ├── wi_time_11_16x16.h │ │ │ │ ├── wi_time_12_16x16.h │ │ │ │ ├── wi_time_1_16x16.h │ │ │ │ ├── wi_time_2_16x16.h │ │ │ │ ├── wi_time_3_16x16.h │ │ │ │ ├── wi_time_4_16x16.h │ │ │ │ ├── wi_time_5_16x16.h │ │ │ │ ├── wi_time_6_16x16.h │ │ │ │ ├── wi_time_7_16x16.h │ │ │ │ ├── wi_time_8_16x16.h │ │ │ │ ├── wi_time_9_16x16.h │ │ │ │ ├── wi_tornado_16x16.h │ │ │ │ ├── wi_train_16x16.h │ │ │ │ ├── wi_tsunami_16x16.h │ │ │ │ ├── wi_umbrella_16x16.h │ │ │ │ ├── wi_volcano_16x16.h │ │ │ │ ├── wi_wind_0deg_16x16.h │ │ │ │ ├── wi_wind_100deg_16x16.h │ │ │ │ ├── wi_wind_101_25deg_16x16.h │ │ │ │ ├── wi_wind_101deg_16x16.h │ │ │ │ ├── wi_wind_102deg_16x16.h │ │ │ │ ├── wi_wind_103deg_16x16.h │ │ │ │ ├── wi_wind_104deg_16x16.h │ │ │ │ ├── wi_wind_105deg_16x16.h │ │ │ │ ├── wi_wind_106deg_16x16.h │ │ │ │ ├── wi_wind_107deg_16x16.h │ │ │ │ ├── wi_wind_108deg_16x16.h │ │ │ │ ├── wi_wind_109deg_16x16.h │ │ │ │ ├── wi_wind_10deg_16x16.h │ │ │ │ ├── wi_wind_110deg_16x16.h │ │ │ │ ├── wi_wind_111deg_16x16.h │ │ │ │ ├── wi_wind_112_5deg_16x16.h │ │ │ │ ├── wi_wind_112deg_16x16.h │ │ │ │ ├── wi_wind_113deg_16x16.h │ │ │ │ ├── wi_wind_114deg_16x16.h │ │ │ │ ├── wi_wind_115deg_16x16.h │ │ │ │ ├── wi_wind_116deg_16x16.h │ │ │ │ ├── wi_wind_117deg_16x16.h │ │ │ │ ├── wi_wind_118deg_16x16.h │ │ │ │ ├── wi_wind_119deg_16x16.h │ │ │ │ ├── wi_wind_11_25deg_16x16.h │ │ │ │ ├── wi_wind_11deg_16x16.h │ │ │ │ ├── wi_wind_120deg_16x16.h │ │ │ │ ├── wi_wind_121deg_16x16.h │ │ │ │ ├── wi_wind_122deg_16x16.h │ │ │ │ ├── wi_wind_123_75deg_16x16.h │ │ │ │ ├── wi_wind_123deg_16x16.h │ │ │ │ ├── wi_wind_124deg_16x16.h │ │ │ │ ├── wi_wind_125deg_16x16.h │ │ │ │ ├── wi_wind_126deg_16x16.h │ │ │ │ ├── wi_wind_127deg_16x16.h │ │ │ │ ├── wi_wind_128deg_16x16.h │ │ │ │ ├── wi_wind_129deg_16x16.h │ │ │ │ ├── wi_wind_12deg_16x16.h │ │ │ │ ├── wi_wind_130deg_16x16.h │ │ │ │ ├── wi_wind_131deg_16x16.h │ │ │ │ ├── wi_wind_132deg_16x16.h │ │ │ │ ├── wi_wind_133deg_16x16.h │ │ │ │ ├── wi_wind_134deg_16x16.h │ │ │ │ ├── wi_wind_135deg_16x16.h │ │ │ │ ├── wi_wind_136deg_16x16.h │ │ │ │ ├── wi_wind_137deg_16x16.h │ │ │ │ ├── wi_wind_138deg_16x16.h │ │ │ │ ├── wi_wind_139deg_16x16.h │ │ │ │ ├── wi_wind_13deg_16x16.h │ │ │ │ ├── wi_wind_140deg_16x16.h │ │ │ │ ├── wi_wind_141deg_16x16.h │ │ │ │ ├── wi_wind_142deg_16x16.h │ │ │ │ ├── wi_wind_143deg_16x16.h │ │ │ │ ├── wi_wind_144deg_16x16.h │ │ │ │ ├── wi_wind_145deg_16x16.h │ │ │ │ ├── wi_wind_146_25deg_16x16.h │ │ │ │ ├── wi_wind_146deg_16x16.h │ │ │ │ ├── wi_wind_147deg_16x16.h │ │ │ │ ├── wi_wind_148deg_16x16.h │ │ │ │ ├── wi_wind_149deg_16x16.h │ │ │ │ ├── wi_wind_14deg_16x16.h │ │ │ │ ├── wi_wind_150deg_16x16.h │ │ │ │ ├── wi_wind_151deg_16x16.h │ │ │ │ ├── wi_wind_152deg_16x16.h │ │ │ │ ├── wi_wind_153deg_16x16.h │ │ │ │ ├── wi_wind_154deg_16x16.h │ │ │ │ ├── wi_wind_155deg_16x16.h │ │ │ │ ├── wi_wind_156deg_16x16.h │ │ │ │ ├── wi_wind_157_5deg_16x16.h │ │ │ │ ├── wi_wind_157deg_16x16.h │ │ │ │ ├── wi_wind_158deg_16x16.h │ │ │ │ ├── wi_wind_159deg_16x16.h │ │ │ │ ├── wi_wind_15deg_16x16.h │ │ │ │ ├── wi_wind_160deg_16x16.h │ │ │ │ ├── wi_wind_161deg_16x16.h │ │ │ │ ├── wi_wind_162deg_16x16.h │ │ │ │ ├── wi_wind_163deg_16x16.h │ │ │ │ ├── wi_wind_164deg_16x16.h │ │ │ │ ├── wi_wind_165deg_16x16.h │ │ │ │ ├── wi_wind_166deg_16x16.h │ │ │ │ ├── wi_wind_167deg_16x16.h │ │ │ │ ├── wi_wind_168_75deg_16x16.h │ │ │ │ ├── wi_wind_168deg_16x16.h │ │ │ │ ├── wi_wind_169deg_16x16.h │ │ │ │ ├── wi_wind_16deg_16x16.h │ │ │ │ ├── wi_wind_170deg_16x16.h │ │ │ │ ├── wi_wind_171deg_16x16.h │ │ │ │ ├── wi_wind_172deg_16x16.h │ │ │ │ ├── wi_wind_173deg_16x16.h │ │ │ │ ├── wi_wind_174deg_16x16.h │ │ │ │ ├── wi_wind_175deg_16x16.h │ │ │ │ ├── wi_wind_176deg_16x16.h │ │ │ │ ├── wi_wind_177deg_16x16.h │ │ │ │ ├── wi_wind_178deg_16x16.h │ │ │ │ ├── wi_wind_179deg_16x16.h │ │ │ │ ├── wi_wind_17deg_16x16.h │ │ │ │ ├── wi_wind_180deg_16x16.h │ │ │ │ ├── wi_wind_181deg_16x16.h │ │ │ │ ├── wi_wind_182deg_16x16.h │ │ │ │ ├── wi_wind_183deg_16x16.h │ │ │ │ ├── wi_wind_184deg_16x16.h │ │ │ │ ├── wi_wind_185deg_16x16.h │ │ │ │ ├── wi_wind_186deg_16x16.h │ │ │ │ ├── wi_wind_187deg_16x16.h │ │ │ │ ├── wi_wind_188deg_16x16.h │ │ │ │ ├── wi_wind_189deg_16x16.h │ │ │ │ ├── wi_wind_18deg_16x16.h │ │ │ │ ├── wi_wind_190deg_16x16.h │ │ │ │ ├── wi_wind_191_25deg_16x16.h │ │ │ │ ├── wi_wind_191deg_16x16.h │ │ │ │ ├── wi_wind_192deg_16x16.h │ │ │ │ ├── wi_wind_193deg_16x16.h │ │ │ │ ├── wi_wind_194deg_16x16.h │ │ │ │ ├── wi_wind_195deg_16x16.h │ │ │ │ ├── wi_wind_196deg_16x16.h │ │ │ │ ├── wi_wind_197deg_16x16.h │ │ │ │ ├── wi_wind_198deg_16x16.h │ │ │ │ ├── wi_wind_199deg_16x16.h │ │ │ │ ├── wi_wind_19deg_16x16.h │ │ │ │ ├── wi_wind_1deg_16x16.h │ │ │ │ ├── wi_wind_200deg_16x16.h │ │ │ │ ├── wi_wind_201deg_16x16.h │ │ │ │ ├── wi_wind_202_5deg_16x16.h │ │ │ │ ├── wi_wind_202deg_16x16.h │ │ │ │ ├── wi_wind_203deg_16x16.h │ │ │ │ ├── wi_wind_204deg_16x16.h │ │ │ │ ├── wi_wind_205deg_16x16.h │ │ │ │ ├── wi_wind_206deg_16x16.h │ │ │ │ ├── wi_wind_207deg_16x16.h │ │ │ │ ├── wi_wind_208deg_16x16.h │ │ │ │ ├── wi_wind_209deg_16x16.h │ │ │ │ ├── wi_wind_20deg_16x16.h │ │ │ │ ├── wi_wind_210deg_16x16.h │ │ │ │ ├── wi_wind_211deg_16x16.h │ │ │ │ ├── wi_wind_212deg_16x16.h │ │ │ │ ├── wi_wind_213_75deg_16x16.h │ │ │ │ ├── wi_wind_213deg_16x16.h │ │ │ │ ├── wi_wind_214deg_16x16.h │ │ │ │ ├── wi_wind_215deg_16x16.h │ │ │ │ ├── wi_wind_216deg_16x16.h │ │ │ │ ├── wi_wind_217deg_16x16.h │ │ │ │ ├── wi_wind_218deg_16x16.h │ │ │ │ ├── wi_wind_219deg_16x16.h │ │ │ │ ├── wi_wind_21deg_16x16.h │ │ │ │ ├── wi_wind_220deg_16x16.h │ │ │ │ ├── wi_wind_221deg_16x16.h │ │ │ │ ├── wi_wind_222deg_16x16.h │ │ │ │ ├── wi_wind_223deg_16x16.h │ │ │ │ ├── wi_wind_224deg_16x16.h │ │ │ │ ├── wi_wind_225deg_16x16.h │ │ │ │ ├── wi_wind_226deg_16x16.h │ │ │ │ ├── wi_wind_227deg_16x16.h │ │ │ │ ├── wi_wind_228deg_16x16.h │ │ │ │ ├── wi_wind_229deg_16x16.h │ │ │ │ ├── wi_wind_22_5deg_16x16.h │ │ │ │ ├── wi_wind_22deg_16x16.h │ │ │ │ ├── wi_wind_230deg_16x16.h │ │ │ │ ├── wi_wind_231deg_16x16.h │ │ │ │ ├── wi_wind_232deg_16x16.h │ │ │ │ ├── wi_wind_233deg_16x16.h │ │ │ │ ├── wi_wind_234deg_16x16.h │ │ │ │ ├── wi_wind_235deg_16x16.h │ │ │ │ ├── wi_wind_236_25deg_16x16.h │ │ │ │ ├── wi_wind_236deg_16x16.h │ │ │ │ ├── wi_wind_237deg_16x16.h │ │ │ │ ├── wi_wind_238deg_16x16.h │ │ │ │ ├── wi_wind_239deg_16x16.h │ │ │ │ ├── wi_wind_23deg_16x16.h │ │ │ │ ├── wi_wind_240deg_16x16.h │ │ │ │ ├── wi_wind_241deg_16x16.h │ │ │ │ ├── wi_wind_242deg_16x16.h │ │ │ │ ├── wi_wind_243deg_16x16.h │ │ │ │ ├── wi_wind_244deg_16x16.h │ │ │ │ ├── wi_wind_245deg_16x16.h │ │ │ │ ├── wi_wind_246deg_16x16.h │ │ │ │ ├── wi_wind_247_5deg_16x16.h │ │ │ │ ├── wi_wind_247deg_16x16.h │ │ │ │ ├── wi_wind_248deg_16x16.h │ │ │ │ ├── wi_wind_249deg_16x16.h │ │ │ │ ├── wi_wind_24deg_16x16.h │ │ │ │ ├── wi_wind_250deg_16x16.h │ │ │ │ ├── wi_wind_251deg_16x16.h │ │ │ │ ├── wi_wind_252deg_16x16.h │ │ │ │ ├── wi_wind_253deg_16x16.h │ │ │ │ ├── wi_wind_254deg_16x16.h │ │ │ │ ├── wi_wind_255deg_16x16.h │ │ │ │ ├── wi_wind_256deg_16x16.h │ │ │ │ ├── wi_wind_257deg_16x16.h │ │ │ │ ├── wi_wind_258_75deg_16x16.h │ │ │ │ ├── wi_wind_258deg_16x16.h │ │ │ │ ├── wi_wind_259deg_16x16.h │ │ │ │ ├── wi_wind_25deg_16x16.h │ │ │ │ ├── wi_wind_260deg_16x16.h │ │ │ │ ├── wi_wind_261deg_16x16.h │ │ │ │ ├── wi_wind_262deg_16x16.h │ │ │ │ ├── wi_wind_263deg_16x16.h │ │ │ │ ├── wi_wind_264deg_16x16.h │ │ │ │ ├── wi_wind_265deg_16x16.h │ │ │ │ ├── wi_wind_266deg_16x16.h │ │ │ │ ├── wi_wind_267deg_16x16.h │ │ │ │ ├── wi_wind_268deg_16x16.h │ │ │ │ ├── wi_wind_269deg_16x16.h │ │ │ │ ├── wi_wind_26deg_16x16.h │ │ │ │ ├── wi_wind_270deg_16x16.h │ │ │ │ ├── wi_wind_271deg_16x16.h │ │ │ │ ├── wi_wind_272deg_16x16.h │ │ │ │ ├── wi_wind_273deg_16x16.h │ │ │ │ ├── wi_wind_274deg_16x16.h │ │ │ │ ├── wi_wind_275deg_16x16.h │ │ │ │ ├── wi_wind_276deg_16x16.h │ │ │ │ ├── wi_wind_277deg_16x16.h │ │ │ │ ├── wi_wind_278deg_16x16.h │ │ │ │ ├── wi_wind_279deg_16x16.h │ │ │ │ ├── wi_wind_27deg_16x16.h │ │ │ │ ├── wi_wind_280deg_16x16.h │ │ │ │ ├── wi_wind_281_25deg_16x16.h │ │ │ │ ├── wi_wind_281deg_16x16.h │ │ │ │ ├── wi_wind_282deg_16x16.h │ │ │ │ ├── wi_wind_283deg_16x16.h │ │ │ │ ├── wi_wind_284deg_16x16.h │ │ │ │ ├── wi_wind_285deg_16x16.h │ │ │ │ ├── wi_wind_286deg_16x16.h │ │ │ │ ├── wi_wind_287deg_16x16.h │ │ │ │ ├── wi_wind_288deg_16x16.h │ │ │ │ ├── wi_wind_289deg_16x16.h │ │ │ │ ├── wi_wind_28deg_16x16.h │ │ │ │ ├── wi_wind_290deg_16x16.h │ │ │ │ ├── wi_wind_291deg_16x16.h │ │ │ │ ├── wi_wind_292_5deg_16x16.h │ │ │ │ ├── wi_wind_292deg_16x16.h │ │ │ │ ├── wi_wind_293deg_16x16.h │ │ │ │ ├── wi_wind_294deg_16x16.h │ │ │ │ ├── wi_wind_295deg_16x16.h │ │ │ │ ├── wi_wind_296deg_16x16.h │ │ │ │ ├── wi_wind_297deg_16x16.h │ │ │ │ ├── wi_wind_298deg_16x16.h │ │ │ │ ├── wi_wind_299deg_16x16.h │ │ │ │ ├── wi_wind_29deg_16x16.h │ │ │ │ ├── wi_wind_2deg_16x16.h │ │ │ │ ├── wi_wind_300deg_16x16.h │ │ │ │ ├── wi_wind_301deg_16x16.h │ │ │ │ ├── wi_wind_302deg_16x16.h │ │ │ │ ├── wi_wind_303_75deg_16x16.h │ │ │ │ ├── wi_wind_303deg_16x16.h │ │ │ │ ├── wi_wind_304deg_16x16.h │ │ │ │ ├── wi_wind_305deg_16x16.h │ │ │ │ ├── wi_wind_306deg_16x16.h │ │ │ │ ├── wi_wind_307deg_16x16.h │ │ │ │ ├── wi_wind_308deg_16x16.h │ │ │ │ ├── wi_wind_309deg_16x16.h │ │ │ │ ├── wi_wind_30deg_16x16.h │ │ │ │ ├── wi_wind_310deg_16x16.h │ │ │ │ ├── wi_wind_311deg_16x16.h │ │ │ │ ├── wi_wind_312deg_16x16.h │ │ │ │ ├── wi_wind_313deg_16x16.h │ │ │ │ ├── wi_wind_314deg_16x16.h │ │ │ │ ├── wi_wind_315deg_16x16.h │ │ │ │ ├── wi_wind_316deg_16x16.h │ │ │ │ ├── wi_wind_317deg_16x16.h │ │ │ │ ├── wi_wind_318deg_16x16.h │ │ │ │ ├── wi_wind_319deg_16x16.h │ │ │ │ ├── wi_wind_31deg_16x16.h │ │ │ │ ├── wi_wind_320deg_16x16.h │ │ │ │ ├── wi_wind_321deg_16x16.h │ │ │ │ ├── wi_wind_322deg_16x16.h │ │ │ │ ├── wi_wind_323deg_16x16.h │ │ │ │ ├── wi_wind_324deg_16x16.h │ │ │ │ ├── wi_wind_325deg_16x16.h │ │ │ │ ├── wi_wind_326_25deg_16x16.h │ │ │ │ ├── wi_wind_326deg_16x16.h │ │ │ │ ├── wi_wind_327deg_16x16.h │ │ │ │ ├── wi_wind_328deg_16x16.h │ │ │ │ ├── wi_wind_329deg_16x16.h │ │ │ │ ├── wi_wind_32deg_16x16.h │ │ │ │ ├── wi_wind_330deg_16x16.h │ │ │ │ ├── wi_wind_331deg_16x16.h │ │ │ │ ├── wi_wind_332deg_16x16.h │ │ │ │ ├── wi_wind_333deg_16x16.h │ │ │ │ ├── wi_wind_334deg_16x16.h │ │ │ │ ├── wi_wind_335deg_16x16.h │ │ │ │ ├── wi_wind_336deg_16x16.h │ │ │ │ ├── wi_wind_337_5deg_16x16.h │ │ │ │ ├── wi_wind_337deg_16x16.h │ │ │ │ ├── wi_wind_338deg_16x16.h │ │ │ │ ├── wi_wind_339deg_16x16.h │ │ │ │ ├── wi_wind_33_75deg_16x16.h │ │ │ │ ├── wi_wind_33deg_16x16.h │ │ │ │ ├── wi_wind_340deg_16x16.h │ │ │ │ ├── wi_wind_341deg_16x16.h │ │ │ │ ├── wi_wind_342deg_16x16.h │ │ │ │ ├── wi_wind_343deg_16x16.h │ │ │ │ ├── wi_wind_344deg_16x16.h │ │ │ │ ├── wi_wind_345deg_16x16.h │ │ │ │ ├── wi_wind_346deg_16x16.h │ │ │ │ ├── wi_wind_347deg_16x16.h │ │ │ │ ├── wi_wind_348_75deg_16x16.h │ │ │ │ ├── wi_wind_348deg_16x16.h │ │ │ │ ├── wi_wind_349deg_16x16.h │ │ │ │ ├── wi_wind_34deg_16x16.h │ │ │ │ ├── wi_wind_350deg_16x16.h │ │ │ │ ├── wi_wind_351deg_16x16.h │ │ │ │ ├── wi_wind_352deg_16x16.h │ │ │ │ ├── wi_wind_353deg_16x16.h │ │ │ │ ├── wi_wind_354deg_16x16.h │ │ │ │ ├── wi_wind_355deg_16x16.h │ │ │ │ ├── wi_wind_356deg_16x16.h │ │ │ │ ├── wi_wind_357deg_16x16.h │ │ │ │ ├── wi_wind_358deg_16x16.h │ │ │ │ ├── wi_wind_359deg_16x16.h │ │ │ │ ├── wi_wind_35deg_16x16.h │ │ │ │ ├── wi_wind_36deg_16x16.h │ │ │ │ ├── wi_wind_37deg_16x16.h │ │ │ │ ├── wi_wind_38deg_16x16.h │ │ │ │ ├── wi_wind_39deg_16x16.h │ │ │ │ ├── wi_wind_3deg_16x16.h │ │ │ │ ├── wi_wind_40deg_16x16.h │ │ │ │ ├── wi_wind_41deg_16x16.h │ │ │ │ ├── wi_wind_42deg_16x16.h │ │ │ │ ├── wi_wind_43deg_16x16.h │ │ │ │ ├── wi_wind_44deg_16x16.h │ │ │ │ ├── wi_wind_45deg_16x16.h │ │ │ │ ├── wi_wind_46deg_16x16.h │ │ │ │ ├── wi_wind_47deg_16x16.h │ │ │ │ ├── wi_wind_48deg_16x16.h │ │ │ │ ├── wi_wind_49deg_16x16.h │ │ │ │ ├── wi_wind_4deg_16x16.h │ │ │ │ ├── wi_wind_50deg_16x16.h │ │ │ │ ├── wi_wind_51deg_16x16.h │ │ │ │ ├── wi_wind_52deg_16x16.h │ │ │ │ ├── wi_wind_53deg_16x16.h │ │ │ │ ├── wi_wind_54deg_16x16.h │ │ │ │ ├── wi_wind_55deg_16x16.h │ │ │ │ ├── wi_wind_56_25deg_16x16.h │ │ │ │ ├── wi_wind_56deg_16x16.h │ │ │ │ ├── wi_wind_57deg_16x16.h │ │ │ │ ├── wi_wind_58deg_16x16.h │ │ │ │ ├── wi_wind_59deg_16x16.h │ │ │ │ ├── wi_wind_5deg_16x16.h │ │ │ │ ├── wi_wind_60deg_16x16.h │ │ │ │ ├── wi_wind_61deg_16x16.h │ │ │ │ ├── wi_wind_62deg_16x16.h │ │ │ │ ├── wi_wind_63deg_16x16.h │ │ │ │ ├── wi_wind_64deg_16x16.h │ │ │ │ ├── wi_wind_65deg_16x16.h │ │ │ │ ├── wi_wind_66deg_16x16.h │ │ │ │ ├── wi_wind_67_5deg_16x16.h │ │ │ │ ├── wi_wind_67deg_16x16.h │ │ │ │ ├── wi_wind_68deg_16x16.h │ │ │ │ ├── wi_wind_69deg_16x16.h │ │ │ │ ├── wi_wind_6deg_16x16.h │ │ │ │ ├── wi_wind_70deg_16x16.h │ │ │ │ ├── wi_wind_71deg_16x16.h │ │ │ │ ├── wi_wind_72deg_16x16.h │ │ │ │ ├── wi_wind_73deg_16x16.h │ │ │ │ ├── wi_wind_74deg_16x16.h │ │ │ │ ├── wi_wind_75deg_16x16.h │ │ │ │ ├── wi_wind_76deg_16x16.h │ │ │ │ ├── wi_wind_77deg_16x16.h │ │ │ │ ├── wi_wind_78_75deg_16x16.h │ │ │ │ ├── wi_wind_78deg_16x16.h │ │ │ │ ├── wi_wind_79deg_16x16.h │ │ │ │ ├── wi_wind_7deg_16x16.h │ │ │ │ ├── wi_wind_80deg_16x16.h │ │ │ │ ├── wi_wind_81deg_16x16.h │ │ │ │ ├── wi_wind_82deg_16x16.h │ │ │ │ ├── wi_wind_83deg_16x16.h │ │ │ │ ├── wi_wind_84deg_16x16.h │ │ │ │ ├── wi_wind_85deg_16x16.h │ │ │ │ ├── wi_wind_86deg_16x16.h │ │ │ │ ├── wi_wind_87deg_16x16.h │ │ │ │ ├── wi_wind_88deg_16x16.h │ │ │ │ ├── wi_wind_89deg_16x16.h │ │ │ │ ├── wi_wind_8deg_16x16.h │ │ │ │ ├── wi_wind_90deg_16x16.h │ │ │ │ ├── wi_wind_91deg_16x16.h │ │ │ │ ├── wi_wind_92deg_16x16.h │ │ │ │ ├── wi_wind_93deg_16x16.h │ │ │ │ ├── wi_wind_94deg_16x16.h │ │ │ │ ├── wi_wind_95deg_16x16.h │ │ │ │ ├── wi_wind_96deg_16x16.h │ │ │ │ ├── wi_wind_97deg_16x16.h │ │ │ │ ├── wi_wind_98deg_16x16.h │ │ │ │ ├── wi_wind_99deg_16x16.h │ │ │ │ ├── wi_wind_9deg_16x16.h │ │ │ │ ├── wi_wind_beaufort_0_16x16.h │ │ │ │ ├── wi_wind_beaufort_10_16x16.h │ │ │ │ ├── wi_wind_beaufort_11_16x16.h │ │ │ │ ├── wi_wind_beaufort_12_16x16.h │ │ │ │ ├── wi_wind_beaufort_1_16x16.h │ │ │ │ ├── wi_wind_beaufort_2_16x16.h │ │ │ │ ├── wi_wind_beaufort_3_16x16.h │ │ │ │ ├── wi_wind_beaufort_4_16x16.h │ │ │ │ ├── wi_wind_beaufort_5_16x16.h │ │ │ │ ├── wi_wind_beaufort_6_16x16.h │ │ │ │ ├── wi_wind_beaufort_7_16x16.h │ │ │ │ ├── wi_wind_beaufort_8_16x16.h │ │ │ │ ├── wi_wind_beaufort_9_16x16.h │ │ │ │ ├── wi_windy_16x16.h │ │ │ │ ├── wifi_16x16.h │ │ │ │ ├── wifi_1_bar_16x16.h │ │ │ │ ├── wifi_2_bar_16x16.h │ │ │ │ ├── wifi_3_bar_16x16.h │ │ │ │ ├── wifi_off_16x16.h │ │ │ │ ├── wifi_x_16x16.h │ │ │ │ ├── wind_direction_meteorological_0deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_100deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_101deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_102deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_103deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_104deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_105deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_106deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_107deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_108deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_109deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_10deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_110deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_111deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_112deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_113deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_114deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_115deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_116deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_117deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_118deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_119deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_11deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_120deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_121deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_122deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_123deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_124deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_125deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_126deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_127deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_128deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_129deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_12deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_130deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_131deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_132deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_133deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_134deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_135deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_136deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_137deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_138deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_139deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_13deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_140deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_141deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_142deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_143deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_144deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_145deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_146deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_147deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_148deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_149deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_14deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_150deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_151deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_152deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_153deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_154deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_155deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_156deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_157deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_158deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_159deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_15deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_160deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_161deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_162deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_163deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_164deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_165deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_166deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_167deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_168deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_169deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_16deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_170deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_171deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_172deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_173deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_174deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_175deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_176deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_177deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_178deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_179deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_17deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_180deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_181deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_182deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_183deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_184deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_185deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_186deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_187deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_188deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_189deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_18deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_190deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_191deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_192deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_193deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_194deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_195deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_196deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_197deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_198deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_199deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_19deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_1deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_200deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_201deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_202deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_203deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_204deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_205deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_206deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_207deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_208deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_209deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_20deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_210deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_211deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_212deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_213deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_214deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_215deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_216deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_217deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_218deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_219deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_21deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_220deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_221deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_222deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_223deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_224deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_225deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_226deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_227deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_228deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_229deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_22deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_230deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_231deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_232deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_233deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_234deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_235deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_236deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_237deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_238deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_239deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_23deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_240deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_241deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_242deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_243deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_244deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_245deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_246deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_247deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_248deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_249deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_24deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_250deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_251deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_252deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_253deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_254deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_255deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_256deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_257deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_258deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_259deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_260deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_261deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_262deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_263deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_264deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_265deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_266deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_267deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_268deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_269deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_26deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_270deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_271deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_272deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_273deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_274deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_275deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_276deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_277deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_278deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_279deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_27deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_280deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_281deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_282deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_283deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_284deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_285deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_286deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_287deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_288deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_289deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_28deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_290deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_291deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_292deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_293deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_294deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_295deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_296deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_297deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_298deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_299deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_29deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_2deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_300deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_301deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_302deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_303deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_304deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_305deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_306deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_307deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_308deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_309deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_30deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_310deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_311deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_312deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_313deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_314deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_315deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_316deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_317deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_318deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_319deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_31deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_320deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_321deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_322deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_323deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_324deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_325deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_326deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_327deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_328deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_329deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_32deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_330deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_331deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_332deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_333deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_334deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_335deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_336deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_337deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_338deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_339deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_33deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_340deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_341deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_342deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_343deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_344deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_345deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_346deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_347deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_348deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_349deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_34deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_350deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_351deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_352deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_353deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_354deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_355deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_356deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_357deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_358deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_359deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_35deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_36deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_37deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_38deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_39deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_3deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_40deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_41deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_42deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_43deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_44deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_45deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_46deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_47deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_48deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_49deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_4deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_50deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_51deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_52deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_53deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_54deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_55deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_56deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_57deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_58deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_59deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_60deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_61deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_62deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_63deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_64deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_65deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_66deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_67deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_68deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_69deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_6deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_70deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_71deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_72deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_73deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_74deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_76deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_77deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_78deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_79deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_7deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_80deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_81deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_82deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_83deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_84deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_85deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_86deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_87deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_88deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_89deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_8deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_90deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_91deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_92deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_93deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_94deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_95deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_96deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_97deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_98deg_16x16.h │ │ │ │ ├── wind_direction_meteorological_99deg_16x16.h │ │ │ │ └── wind_direction_meteorological_9deg_16x16.h │ │ │ ├── 196x196 │ │ │ │ ├── air_filter_196x196.h │ │ │ │ ├── battery_0_bar_0deg_196x196.h │ │ │ │ ├── battery_0_bar_180deg_196x196.h │ │ │ │ ├── battery_0_bar_270deg_196x196.h │ │ │ │ ├── battery_0_bar_90deg_196x196.h │ │ │ │ ├── battery_1_bar_0deg_196x196.h │ │ │ │ ├── battery_1_bar_180deg_196x196.h │ │ │ │ ├── battery_1_bar_270deg_196x196.h │ │ │ │ ├── battery_1_bar_90deg_196x196.h │ │ │ │ ├── battery_2_bar_0deg_196x196.h │ │ │ │ ├── battery_2_bar_180deg_196x196.h │ │ │ │ ├── battery_2_bar_270deg_196x196.h │ │ │ │ ├── battery_2_bar_90deg_196x196.h │ │ │ │ ├── battery_3_bar_0deg_196x196.h │ │ │ │ ├── battery_3_bar_180deg_196x196.h │ │ │ │ ├── battery_3_bar_270deg_196x196.h │ │ │ │ ├── battery_3_bar_90deg_196x196.h │ │ │ │ ├── battery_4_bar_0deg_196x196.h │ │ │ │ ├── battery_4_bar_180deg_196x196.h │ │ │ │ ├── battery_4_bar_270deg_196x196.h │ │ │ │ ├── battery_4_bar_90deg_196x196.h │ │ │ │ ├── battery_5_bar_0deg_196x196.h │ │ │ │ ├── battery_5_bar_180deg_196x196.h │ │ │ │ ├── battery_5_bar_270deg_196x196.h │ │ │ │ ├── battery_5_bar_90deg_196x196.h │ │ │ │ ├── battery_6_bar_0deg_196x196.h │ │ │ │ ├── battery_6_bar_180deg_196x196.h │ │ │ │ ├── battery_6_bar_270deg_196x196.h │ │ │ │ ├── battery_6_bar_90deg_196x196.h │ │ │ │ ├── battery_alert_0deg_196x196.h │ │ │ │ ├── battery_alert_180deg_196x196.h │ │ │ │ ├── battery_alert_270deg_196x196.h │ │ │ │ ├── battery_alert_90deg_196x196.h │ │ │ │ ├── battery_charging_full_0deg_196x196.h │ │ │ │ ├── battery_charging_full_180deg_196x196.h │ │ │ │ ├── battery_charging_full_270deg_196x196.h │ │ │ │ ├── battery_charging_full_90deg_196x196.h │ │ │ │ ├── battery_full_0deg_196x196.h │ │ │ │ ├── battery_full_180deg_196x196.h │ │ │ │ ├── battery_full_270deg_196x196.h │ │ │ │ ├── battery_full_90deg_196x196.h │ │ │ │ ├── biological_hazard_symbol_196x196.h │ │ │ │ ├── error_icon_196x196.h │ │ │ │ ├── house_196x196.h │ │ │ │ ├── house_humidity_196x196.h │ │ │ │ ├── house_raindrops_196x196.h │ │ │ │ ├── house_thermometer_196x196.h │ │ │ │ ├── ionizing_radiation_symbol_196x196.h │ │ │ │ ├── visibility_icon_196x196.h │ │ │ │ ├── warning_icon_196x196.h │ │ │ │ ├── wi_alien_196x196.h │ │ │ │ ├── wi_barometer_196x196.h │ │ │ │ ├── wi_celsius_196x196.h │ │ │ │ ├── wi_cloud_196x196.h │ │ │ │ ├── wi_cloud_down_196x196.h │ │ │ │ ├── wi_cloud_refresh_196x196.h │ │ │ │ ├── wi_cloud_up_196x196.h │ │ │ │ ├── wi_cloudy_196x196.h │ │ │ │ ├── wi_cloudy_gusts_196x196.h │ │ │ │ ├── wi_cloudy_windy_196x196.h │ │ │ │ ├── wi_day_cloudy_196x196.h │ │ │ │ ├── wi_day_cloudy_gusts_196x196.h │ │ │ │ ├── wi_day_cloudy_high_196x196.h │ │ │ │ ├── wi_day_cloudy_windy_196x196.h │ │ │ │ ├── wi_day_fog_196x196.h │ │ │ │ ├── wi_day_hail_196x196.h │ │ │ │ ├── wi_day_haze_196x196.h │ │ │ │ ├── wi_day_light_wind_196x196.h │ │ │ │ ├── wi_day_lightning_196x196.h │ │ │ │ ├── wi_day_rain_196x196.h │ │ │ │ ├── wi_day_rain_mix_196x196.h │ │ │ │ ├── wi_day_rain_wind_196x196.h │ │ │ │ ├── wi_day_showers_196x196.h │ │ │ │ ├── wi_day_sleet_196x196.h │ │ │ │ ├── wi_day_sleet_storm_196x196.h │ │ │ │ ├── wi_day_snow_196x196.h │ │ │ │ ├── wi_day_snow_thunderstorm_196x196.h │ │ │ │ ├── wi_day_snow_wind_196x196.h │ │ │ │ ├── wi_day_sprinkle_196x196.h │ │ │ │ ├── wi_day_storm_showers_196x196.h │ │ │ │ ├── wi_day_sunny_196x196.h │ │ │ │ ├── wi_day_sunny_overcast_196x196.h │ │ │ │ ├── wi_day_thunderstorm_196x196.h │ │ │ │ ├── wi_day_windy_196x196.h │ │ │ │ ├── wi_degrees_196x196.h │ │ │ │ ├── wi_direction_down_196x196.h │ │ │ │ ├── wi_direction_down_left_196x196.h │ │ │ │ ├── wi_direction_down_right_196x196.h │ │ │ │ ├── wi_direction_left_196x196.h │ │ │ │ ├── wi_direction_right_196x196.h │ │ │ │ ├── wi_direction_up_196x196.h │ │ │ │ ├── wi_direction_up_left_196x196.h │ │ │ │ ├── wi_direction_up_right_196x196.h │ │ │ │ ├── wi_dust_196x196.h │ │ │ │ ├── wi_earthquake_196x196.h │ │ │ │ ├── wi_fahrenheit_196x196.h │ │ │ │ ├── wi_fire_196x196.h │ │ │ │ ├── wi_flood_196x196.h │ │ │ │ ├── wi_fog_196x196.h │ │ │ │ ├── wi_gale_warning_196x196.h │ │ │ │ ├── wi_hail_196x196.h │ │ │ │ ├── wi_horizon_196x196.h │ │ │ │ ├── wi_horizon_alt_196x196.h │ │ │ │ ├── wi_hot_196x196.h │ │ │ │ ├── wi_humidity_196x196.h │ │ │ │ ├── wi_hurricane_196x196.h │ │ │ │ ├── wi_hurricane_warning_196x196.h │ │ │ │ ├── wi_lightning_196x196.h │ │ │ │ ├── wi_lunar_eclipse_196x196.h │ │ │ │ ├── wi_meteor_196x196.h │ │ │ │ ├── wi_moon_alt_first_quarter_196x196.h │ │ │ │ ├── wi_moon_alt_full_196x196.h │ │ │ │ ├── wi_moon_alt_new_196x196.h │ │ │ │ ├── wi_moon_alt_third_quarter_196x196.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_196x196.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_196x196.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_196x196.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_196x196.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_196x196.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_196x196.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_196x196.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_196x196.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_196x196.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_196x196.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_196x196.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_196x196.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_196x196.h │ │ │ │ ├── wi_moon_first_quarter_196x196.h │ │ │ │ ├── wi_moon_full_196x196.h │ │ │ │ ├── wi_moon_new_196x196.h │ │ │ │ ├── wi_moon_third_quarter_196x196.h │ │ │ │ ├── wi_moon_waning_crescent_1_196x196.h │ │ │ │ ├── wi_moon_waning_crescent_2_196x196.h │ │ │ │ ├── wi_moon_waning_crescent_3_196x196.h │ │ │ │ ├── wi_moon_waning_crescent_4_196x196.h │ │ │ │ ├── wi_moon_waning_crescent_5_196x196.h │ │ │ │ ├── wi_moon_waning_crescent_6_196x196.h │ │ │ │ ├── wi_moon_waning_gibbous_1_196x196.h │ │ │ │ ├── wi_moon_waning_gibbous_2_196x196.h │ │ │ │ ├── wi_moon_waning_gibbous_3_196x196.h │ │ │ │ ├── wi_moon_waning_gibbous_4_196x196.h │ │ │ │ ├── wi_moon_waning_gibbous_5_196x196.h │ │ │ │ ├── wi_moon_waning_gibbous_6_196x196.h │ │ │ │ ├── wi_moon_waxing_6_196x196.h │ │ │ │ ├── wi_moon_waxing_crescent_1_196x196.h │ │ │ │ ├── wi_moon_waxing_crescent_2_196x196.h │ │ │ │ ├── wi_moon_waxing_crescent_3_196x196.h │ │ │ │ ├── wi_moon_waxing_crescent_4_196x196.h │ │ │ │ ├── wi_moon_waxing_crescent_5_196x196.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_196x196.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_196x196.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_196x196.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_196x196.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_196x196.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_196x196.h │ │ │ │ ├── wi_moonrise_196x196.h │ │ │ │ ├── wi_moonset_196x196.h │ │ │ │ ├── wi_na_196x196.h │ │ │ │ ├── wi_night_alt_cloudy_196x196.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_196x196.h │ │ │ │ ├── wi_night_alt_cloudy_high_196x196.h │ │ │ │ ├── wi_night_alt_cloudy_windy_196x196.h │ │ │ │ ├── wi_night_alt_hail_196x196.h │ │ │ │ ├── wi_night_alt_lightning_196x196.h │ │ │ │ ├── wi_night_alt_partly_cloudy_196x196.h │ │ │ │ ├── wi_night_alt_rain_196x196.h │ │ │ │ ├── wi_night_alt_rain_mix_196x196.h │ │ │ │ ├── wi_night_alt_rain_wind_196x196.h │ │ │ │ ├── wi_night_alt_showers_196x196.h │ │ │ │ ├── wi_night_alt_sleet_196x196.h │ │ │ │ ├── wi_night_alt_sleet_storm_196x196.h │ │ │ │ ├── wi_night_alt_snow_196x196.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_196x196.h │ │ │ │ ├── wi_night_alt_snow_wind_196x196.h │ │ │ │ ├── wi_night_alt_sprinkle_196x196.h │ │ │ │ ├── wi_night_alt_storm_showers_196x196.h │ │ │ │ ├── wi_night_alt_thunderstorm_196x196.h │ │ │ │ ├── wi_night_clear_196x196.h │ │ │ │ ├── wi_night_cloudy_196x196.h │ │ │ │ ├── wi_night_cloudy_gusts_196x196.h │ │ │ │ ├── wi_night_cloudy_high_196x196.h │ │ │ │ ├── wi_night_cloudy_windy_196x196.h │ │ │ │ ├── wi_night_fog_196x196.h │ │ │ │ ├── wi_night_hail_196x196.h │ │ │ │ ├── wi_night_lightning_196x196.h │ │ │ │ ├── wi_night_partly_cloudy_196x196.h │ │ │ │ ├── wi_night_rain_196x196.h │ │ │ │ ├── wi_night_rain_mix_196x196.h │ │ │ │ ├── wi_night_rain_wind_196x196.h │ │ │ │ ├── wi_night_showers_196x196.h │ │ │ │ ├── wi_night_sleet_196x196.h │ │ │ │ ├── wi_night_sleet_storm_196x196.h │ │ │ │ ├── wi_night_snow_196x196.h │ │ │ │ ├── wi_night_snow_thunderstorm_196x196.h │ │ │ │ ├── wi_night_snow_wind_196x196.h │ │ │ │ ├── wi_night_sprinkle_196x196.h │ │ │ │ ├── wi_night_storm_showers_196x196.h │ │ │ │ ├── wi_night_thunderstorm_196x196.h │ │ │ │ ├── wi_rain_196x196.h │ │ │ │ ├── wi_rain_mix_196x196.h │ │ │ │ ├── wi_rain_wind_196x196.h │ │ │ │ ├── wi_raindrop_196x196.h │ │ │ │ ├── wi_raindrops_196x196.h │ │ │ │ ├── wi_refresh_196x196.h │ │ │ │ ├── wi_refresh_alt_196x196.h │ │ │ │ ├── wi_sandstorm_196x196.h │ │ │ │ ├── wi_showers_196x196.h │ │ │ │ ├── wi_sleet_196x196.h │ │ │ │ ├── wi_small_craft_advisory_196x196.h │ │ │ │ ├── wi_smog_196x196.h │ │ │ │ ├── wi_smoke_196x196.h │ │ │ │ ├── wi_snow_196x196.h │ │ │ │ ├── wi_snow_wind_196x196.h │ │ │ │ ├── wi_snowflake_cold_196x196.h │ │ │ │ ├── wi_solar_eclipse_196x196.h │ │ │ │ ├── wi_sprinkle_196x196.h │ │ │ │ ├── wi_stars_196x196.h │ │ │ │ ├── wi_storm_showers_196x196.h │ │ │ │ ├── wi_storm_warning_196x196.h │ │ │ │ ├── wi_strong_wind_196x196.h │ │ │ │ ├── wi_sunrise_196x196.h │ │ │ │ ├── wi_sunset_196x196.h │ │ │ │ ├── wi_thermometer_196x196.h │ │ │ │ ├── wi_thermometer_exterior_196x196.h │ │ │ │ ├── wi_thermometer_internal_196x196.h │ │ │ │ ├── wi_thunderstorm_196x196.h │ │ │ │ ├── wi_time_10_196x196.h │ │ │ │ ├── wi_time_11_196x196.h │ │ │ │ ├── wi_time_12_196x196.h │ │ │ │ ├── wi_time_1_196x196.h │ │ │ │ ├── wi_time_2_196x196.h │ │ │ │ ├── wi_time_3_196x196.h │ │ │ │ ├── wi_time_4_196x196.h │ │ │ │ ├── wi_time_5_196x196.h │ │ │ │ ├── wi_time_6_196x196.h │ │ │ │ ├── wi_time_7_196x196.h │ │ │ │ ├── wi_time_8_196x196.h │ │ │ │ ├── wi_time_9_196x196.h │ │ │ │ ├── wi_tornado_196x196.h │ │ │ │ ├── wi_train_196x196.h │ │ │ │ ├── wi_tsunami_196x196.h │ │ │ │ ├── wi_umbrella_196x196.h │ │ │ │ ├── wi_volcano_196x196.h │ │ │ │ ├── wi_wind_0deg_196x196.h │ │ │ │ ├── wi_wind_100deg_196x196.h │ │ │ │ ├── wi_wind_101_25deg_196x196.h │ │ │ │ ├── wi_wind_101deg_196x196.h │ │ │ │ ├── wi_wind_102deg_196x196.h │ │ │ │ ├── wi_wind_103deg_196x196.h │ │ │ │ ├── wi_wind_104deg_196x196.h │ │ │ │ ├── wi_wind_105deg_196x196.h │ │ │ │ ├── wi_wind_106deg_196x196.h │ │ │ │ ├── wi_wind_107deg_196x196.h │ │ │ │ ├── wi_wind_108deg_196x196.h │ │ │ │ ├── wi_wind_109deg_196x196.h │ │ │ │ ├── wi_wind_10deg_196x196.h │ │ │ │ ├── wi_wind_110deg_196x196.h │ │ │ │ ├── wi_wind_111deg_196x196.h │ │ │ │ ├── wi_wind_112_5deg_196x196.h │ │ │ │ ├── wi_wind_112deg_196x196.h │ │ │ │ ├── wi_wind_113deg_196x196.h │ │ │ │ ├── wi_wind_114deg_196x196.h │ │ │ │ ├── wi_wind_115deg_196x196.h │ │ │ │ ├── wi_wind_116deg_196x196.h │ │ │ │ ├── wi_wind_117deg_196x196.h │ │ │ │ ├── wi_wind_118deg_196x196.h │ │ │ │ ├── wi_wind_119deg_196x196.h │ │ │ │ ├── wi_wind_11_25deg_196x196.h │ │ │ │ ├── wi_wind_11deg_196x196.h │ │ │ │ ├── wi_wind_120deg_196x196.h │ │ │ │ ├── wi_wind_121deg_196x196.h │ │ │ │ ├── wi_wind_122deg_196x196.h │ │ │ │ ├── wi_wind_123_75deg_196x196.h │ │ │ │ ├── wi_wind_123deg_196x196.h │ │ │ │ ├── wi_wind_124deg_196x196.h │ │ │ │ ├── wi_wind_125deg_196x196.h │ │ │ │ ├── wi_wind_126deg_196x196.h │ │ │ │ ├── wi_wind_127deg_196x196.h │ │ │ │ ├── wi_wind_128deg_196x196.h │ │ │ │ ├── wi_wind_129deg_196x196.h │ │ │ │ ├── wi_wind_12deg_196x196.h │ │ │ │ ├── wi_wind_130deg_196x196.h │ │ │ │ ├── wi_wind_131deg_196x196.h │ │ │ │ ├── wi_wind_132deg_196x196.h │ │ │ │ ├── wi_wind_133deg_196x196.h │ │ │ │ ├── wi_wind_134deg_196x196.h │ │ │ │ ├── wi_wind_135deg_196x196.h │ │ │ │ ├── wi_wind_136deg_196x196.h │ │ │ │ ├── wi_wind_137deg_196x196.h │ │ │ │ ├── wi_wind_138deg_196x196.h │ │ │ │ ├── wi_wind_139deg_196x196.h │ │ │ │ ├── wi_wind_13deg_196x196.h │ │ │ │ ├── wi_wind_140deg_196x196.h │ │ │ │ ├── wi_wind_141deg_196x196.h │ │ │ │ ├── wi_wind_142deg_196x196.h │ │ │ │ ├── wi_wind_143deg_196x196.h │ │ │ │ ├── wi_wind_144deg_196x196.h │ │ │ │ ├── wi_wind_145deg_196x196.h │ │ │ │ ├── wi_wind_146_25deg_196x196.h │ │ │ │ ├── wi_wind_146deg_196x196.h │ │ │ │ ├── wi_wind_147deg_196x196.h │ │ │ │ ├── wi_wind_148deg_196x196.h │ │ │ │ ├── wi_wind_149deg_196x196.h │ │ │ │ ├── wi_wind_14deg_196x196.h │ │ │ │ ├── wi_wind_150deg_196x196.h │ │ │ │ ├── wi_wind_151deg_196x196.h │ │ │ │ ├── wi_wind_152deg_196x196.h │ │ │ │ ├── wi_wind_153deg_196x196.h │ │ │ │ ├── wi_wind_154deg_196x196.h │ │ │ │ ├── wi_wind_155deg_196x196.h │ │ │ │ ├── wi_wind_156deg_196x196.h │ │ │ │ ├── wi_wind_157_5deg_196x196.h │ │ │ │ ├── wi_wind_157deg_196x196.h │ │ │ │ ├── wi_wind_158deg_196x196.h │ │ │ │ ├── wi_wind_159deg_196x196.h │ │ │ │ ├── wi_wind_15deg_196x196.h │ │ │ │ ├── wi_wind_160deg_196x196.h │ │ │ │ ├── wi_wind_161deg_196x196.h │ │ │ │ ├── wi_wind_162deg_196x196.h │ │ │ │ ├── wi_wind_163deg_196x196.h │ │ │ │ ├── wi_wind_164deg_196x196.h │ │ │ │ ├── wi_wind_165deg_196x196.h │ │ │ │ ├── wi_wind_166deg_196x196.h │ │ │ │ ├── wi_wind_167deg_196x196.h │ │ │ │ ├── wi_wind_168_75deg_196x196.h │ │ │ │ ├── wi_wind_168deg_196x196.h │ │ │ │ ├── wi_wind_169deg_196x196.h │ │ │ │ ├── wi_wind_16deg_196x196.h │ │ │ │ ├── wi_wind_170deg_196x196.h │ │ │ │ ├── wi_wind_171deg_196x196.h │ │ │ │ ├── wi_wind_172deg_196x196.h │ │ │ │ ├── wi_wind_173deg_196x196.h │ │ │ │ ├── wi_wind_174deg_196x196.h │ │ │ │ ├── wi_wind_175deg_196x196.h │ │ │ │ ├── wi_wind_176deg_196x196.h │ │ │ │ ├── wi_wind_177deg_196x196.h │ │ │ │ ├── wi_wind_178deg_196x196.h │ │ │ │ ├── wi_wind_179deg_196x196.h │ │ │ │ ├── wi_wind_17deg_196x196.h │ │ │ │ ├── wi_wind_180deg_196x196.h │ │ │ │ ├── wi_wind_181deg_196x196.h │ │ │ │ ├── wi_wind_182deg_196x196.h │ │ │ │ ├── wi_wind_183deg_196x196.h │ │ │ │ ├── wi_wind_184deg_196x196.h │ │ │ │ ├── wi_wind_185deg_196x196.h │ │ │ │ ├── wi_wind_186deg_196x196.h │ │ │ │ ├── wi_wind_187deg_196x196.h │ │ │ │ ├── wi_wind_188deg_196x196.h │ │ │ │ ├── wi_wind_189deg_196x196.h │ │ │ │ ├── wi_wind_18deg_196x196.h │ │ │ │ ├── wi_wind_190deg_196x196.h │ │ │ │ ├── wi_wind_191_25deg_196x196.h │ │ │ │ ├── wi_wind_191deg_196x196.h │ │ │ │ ├── wi_wind_192deg_196x196.h │ │ │ │ ├── wi_wind_193deg_196x196.h │ │ │ │ ├── wi_wind_194deg_196x196.h │ │ │ │ ├── wi_wind_195deg_196x196.h │ │ │ │ ├── wi_wind_196deg_196x196.h │ │ │ │ ├── wi_wind_197deg_196x196.h │ │ │ │ ├── wi_wind_198deg_196x196.h │ │ │ │ ├── wi_wind_199deg_196x196.h │ │ │ │ ├── wi_wind_19deg_196x196.h │ │ │ │ ├── wi_wind_1deg_196x196.h │ │ │ │ ├── wi_wind_200deg_196x196.h │ │ │ │ ├── wi_wind_201deg_196x196.h │ │ │ │ ├── wi_wind_202_5deg_196x196.h │ │ │ │ ├── wi_wind_202deg_196x196.h │ │ │ │ ├── wi_wind_203deg_196x196.h │ │ │ │ ├── wi_wind_204deg_196x196.h │ │ │ │ ├── wi_wind_205deg_196x196.h │ │ │ │ ├── wi_wind_206deg_196x196.h │ │ │ │ ├── wi_wind_207deg_196x196.h │ │ │ │ ├── wi_wind_208deg_196x196.h │ │ │ │ ├── wi_wind_209deg_196x196.h │ │ │ │ ├── wi_wind_20deg_196x196.h │ │ │ │ ├── wi_wind_210deg_196x196.h │ │ │ │ ├── wi_wind_211deg_196x196.h │ │ │ │ ├── wi_wind_212deg_196x196.h │ │ │ │ ├── wi_wind_213_75deg_196x196.h │ │ │ │ ├── wi_wind_213deg_196x196.h │ │ │ │ ├── wi_wind_214deg_196x196.h │ │ │ │ ├── wi_wind_215deg_196x196.h │ │ │ │ ├── wi_wind_216deg_196x196.h │ │ │ │ ├── wi_wind_217deg_196x196.h │ │ │ │ ├── wi_wind_218deg_196x196.h │ │ │ │ ├── wi_wind_219deg_196x196.h │ │ │ │ ├── wi_wind_21deg_196x196.h │ │ │ │ ├── wi_wind_220deg_196x196.h │ │ │ │ ├── wi_wind_221deg_196x196.h │ │ │ │ ├── wi_wind_222deg_196x196.h │ │ │ │ ├── wi_wind_223deg_196x196.h │ │ │ │ ├── wi_wind_224deg_196x196.h │ │ │ │ ├── wi_wind_225deg_196x196.h │ │ │ │ ├── wi_wind_226deg_196x196.h │ │ │ │ ├── wi_wind_227deg_196x196.h │ │ │ │ ├── wi_wind_228deg_196x196.h │ │ │ │ ├── wi_wind_229deg_196x196.h │ │ │ │ ├── wi_wind_22_5deg_196x196.h │ │ │ │ ├── wi_wind_22deg_196x196.h │ │ │ │ ├── wi_wind_230deg_196x196.h │ │ │ │ ├── wi_wind_231deg_196x196.h │ │ │ │ ├── wi_wind_232deg_196x196.h │ │ │ │ ├── wi_wind_233deg_196x196.h │ │ │ │ ├── wi_wind_234deg_196x196.h │ │ │ │ ├── wi_wind_235deg_196x196.h │ │ │ │ ├── wi_wind_236_25deg_196x196.h │ │ │ │ ├── wi_wind_236deg_196x196.h │ │ │ │ ├── wi_wind_237deg_196x196.h │ │ │ │ ├── wi_wind_238deg_196x196.h │ │ │ │ ├── wi_wind_239deg_196x196.h │ │ │ │ ├── wi_wind_23deg_196x196.h │ │ │ │ ├── wi_wind_240deg_196x196.h │ │ │ │ ├── wi_wind_241deg_196x196.h │ │ │ │ ├── wi_wind_242deg_196x196.h │ │ │ │ ├── wi_wind_243deg_196x196.h │ │ │ │ ├── wi_wind_244deg_196x196.h │ │ │ │ ├── wi_wind_245deg_196x196.h │ │ │ │ ├── wi_wind_246deg_196x196.h │ │ │ │ ├── wi_wind_247_5deg_196x196.h │ │ │ │ ├── wi_wind_247deg_196x196.h │ │ │ │ ├── wi_wind_248deg_196x196.h │ │ │ │ ├── wi_wind_249deg_196x196.h │ │ │ │ ├── wi_wind_24deg_196x196.h │ │ │ │ ├── wi_wind_250deg_196x196.h │ │ │ │ ├── wi_wind_251deg_196x196.h │ │ │ │ ├── wi_wind_252deg_196x196.h │ │ │ │ ├── wi_wind_253deg_196x196.h │ │ │ │ ├── wi_wind_254deg_196x196.h │ │ │ │ ├── wi_wind_255deg_196x196.h │ │ │ │ ├── wi_wind_256deg_196x196.h │ │ │ │ ├── wi_wind_257deg_196x196.h │ │ │ │ ├── wi_wind_258_75deg_196x196.h │ │ │ │ ├── wi_wind_258deg_196x196.h │ │ │ │ ├── wi_wind_259deg_196x196.h │ │ │ │ ├── wi_wind_25deg_196x196.h │ │ │ │ ├── wi_wind_260deg_196x196.h │ │ │ │ ├── wi_wind_261deg_196x196.h │ │ │ │ ├── wi_wind_262deg_196x196.h │ │ │ │ ├── wi_wind_263deg_196x196.h │ │ │ │ ├── wi_wind_264deg_196x196.h │ │ │ │ ├── wi_wind_265deg_196x196.h │ │ │ │ ├── wi_wind_266deg_196x196.h │ │ │ │ ├── wi_wind_267deg_196x196.h │ │ │ │ ├── wi_wind_268deg_196x196.h │ │ │ │ ├── wi_wind_269deg_196x196.h │ │ │ │ ├── wi_wind_26deg_196x196.h │ │ │ │ ├── wi_wind_270deg_196x196.h │ │ │ │ ├── wi_wind_271deg_196x196.h │ │ │ │ ├── wi_wind_272deg_196x196.h │ │ │ │ ├── wi_wind_273deg_196x196.h │ │ │ │ ├── wi_wind_274deg_196x196.h │ │ │ │ ├── wi_wind_275deg_196x196.h │ │ │ │ ├── wi_wind_276deg_196x196.h │ │ │ │ ├── wi_wind_277deg_196x196.h │ │ │ │ ├── wi_wind_278deg_196x196.h │ │ │ │ ├── wi_wind_279deg_196x196.h │ │ │ │ ├── wi_wind_27deg_196x196.h │ │ │ │ ├── wi_wind_280deg_196x196.h │ │ │ │ ├── wi_wind_281_25deg_196x196.h │ │ │ │ ├── wi_wind_281deg_196x196.h │ │ │ │ ├── wi_wind_282deg_196x196.h │ │ │ │ ├── wi_wind_283deg_196x196.h │ │ │ │ ├── wi_wind_284deg_196x196.h │ │ │ │ ├── wi_wind_285deg_196x196.h │ │ │ │ ├── wi_wind_286deg_196x196.h │ │ │ │ ├── wi_wind_287deg_196x196.h │ │ │ │ ├── wi_wind_288deg_196x196.h │ │ │ │ ├── wi_wind_289deg_196x196.h │ │ │ │ ├── wi_wind_28deg_196x196.h │ │ │ │ ├── wi_wind_290deg_196x196.h │ │ │ │ ├── wi_wind_291deg_196x196.h │ │ │ │ ├── wi_wind_292_5deg_196x196.h │ │ │ │ ├── wi_wind_292deg_196x196.h │ │ │ │ ├── wi_wind_293deg_196x196.h │ │ │ │ ├── wi_wind_294deg_196x196.h │ │ │ │ ├── wi_wind_295deg_196x196.h │ │ │ │ ├── wi_wind_296deg_196x196.h │ │ │ │ ├── wi_wind_297deg_196x196.h │ │ │ │ ├── wi_wind_298deg_196x196.h │ │ │ │ ├── wi_wind_299deg_196x196.h │ │ │ │ ├── wi_wind_29deg_196x196.h │ │ │ │ ├── wi_wind_2deg_196x196.h │ │ │ │ ├── wi_wind_300deg_196x196.h │ │ │ │ ├── wi_wind_301deg_196x196.h │ │ │ │ ├── wi_wind_302deg_196x196.h │ │ │ │ ├── wi_wind_303_75deg_196x196.h │ │ │ │ ├── wi_wind_303deg_196x196.h │ │ │ │ ├── wi_wind_304deg_196x196.h │ │ │ │ ├── wi_wind_305deg_196x196.h │ │ │ │ ├── wi_wind_306deg_196x196.h │ │ │ │ ├── wi_wind_307deg_196x196.h │ │ │ │ ├── wi_wind_308deg_196x196.h │ │ │ │ ├── wi_wind_309deg_196x196.h │ │ │ │ ├── wi_wind_30deg_196x196.h │ │ │ │ ├── wi_wind_310deg_196x196.h │ │ │ │ ├── wi_wind_311deg_196x196.h │ │ │ │ ├── wi_wind_312deg_196x196.h │ │ │ │ ├── wi_wind_313deg_196x196.h │ │ │ │ ├── wi_wind_314deg_196x196.h │ │ │ │ ├── wi_wind_315deg_196x196.h │ │ │ │ ├── wi_wind_316deg_196x196.h │ │ │ │ ├── wi_wind_317deg_196x196.h │ │ │ │ ├── wi_wind_318deg_196x196.h │ │ │ │ ├── wi_wind_319deg_196x196.h │ │ │ │ ├── wi_wind_31deg_196x196.h │ │ │ │ ├── wi_wind_320deg_196x196.h │ │ │ │ ├── wi_wind_321deg_196x196.h │ │ │ │ ├── wi_wind_322deg_196x196.h │ │ │ │ ├── wi_wind_323deg_196x196.h │ │ │ │ ├── wi_wind_324deg_196x196.h │ │ │ │ ├── wi_wind_325deg_196x196.h │ │ │ │ ├── wi_wind_326_25deg_196x196.h │ │ │ │ ├── wi_wind_326deg_196x196.h │ │ │ │ ├── wi_wind_327deg_196x196.h │ │ │ │ ├── wi_wind_328deg_196x196.h │ │ │ │ ├── wi_wind_329deg_196x196.h │ │ │ │ ├── wi_wind_32deg_196x196.h │ │ │ │ ├── wi_wind_330deg_196x196.h │ │ │ │ ├── wi_wind_331deg_196x196.h │ │ │ │ ├── wi_wind_332deg_196x196.h │ │ │ │ ├── wi_wind_333deg_196x196.h │ │ │ │ ├── wi_wind_334deg_196x196.h │ │ │ │ ├── wi_wind_335deg_196x196.h │ │ │ │ ├── wi_wind_336deg_196x196.h │ │ │ │ ├── wi_wind_337_5deg_196x196.h │ │ │ │ ├── wi_wind_337deg_196x196.h │ │ │ │ ├── wi_wind_338deg_196x196.h │ │ │ │ ├── wi_wind_339deg_196x196.h │ │ │ │ ├── wi_wind_33_75deg_196x196.h │ │ │ │ ├── wi_wind_33deg_196x196.h │ │ │ │ ├── wi_wind_340deg_196x196.h │ │ │ │ ├── wi_wind_341deg_196x196.h │ │ │ │ ├── wi_wind_342deg_196x196.h │ │ │ │ ├── wi_wind_343deg_196x196.h │ │ │ │ ├── wi_wind_344deg_196x196.h │ │ │ │ ├── wi_wind_345deg_196x196.h │ │ │ │ ├── wi_wind_346deg_196x196.h │ │ │ │ ├── wi_wind_347deg_196x196.h │ │ │ │ ├── wi_wind_348_75deg_196x196.h │ │ │ │ ├── wi_wind_348deg_196x196.h │ │ │ │ ├── wi_wind_349deg_196x196.h │ │ │ │ ├── wi_wind_34deg_196x196.h │ │ │ │ ├── wi_wind_350deg_196x196.h │ │ │ │ ├── wi_wind_351deg_196x196.h │ │ │ │ ├── wi_wind_352deg_196x196.h │ │ │ │ ├── wi_wind_353deg_196x196.h │ │ │ │ ├── wi_wind_354deg_196x196.h │ │ │ │ ├── wi_wind_355deg_196x196.h │ │ │ │ ├── wi_wind_356deg_196x196.h │ │ │ │ ├── wi_wind_357deg_196x196.h │ │ │ │ ├── wi_wind_358deg_196x196.h │ │ │ │ ├── wi_wind_359deg_196x196.h │ │ │ │ ├── wi_wind_35deg_196x196.h │ │ │ │ ├── wi_wind_36deg_196x196.h │ │ │ │ ├── wi_wind_37deg_196x196.h │ │ │ │ ├── wi_wind_38deg_196x196.h │ │ │ │ ├── wi_wind_39deg_196x196.h │ │ │ │ ├── wi_wind_3deg_196x196.h │ │ │ │ ├── wi_wind_40deg_196x196.h │ │ │ │ ├── wi_wind_41deg_196x196.h │ │ │ │ ├── wi_wind_42deg_196x196.h │ │ │ │ ├── wi_wind_43deg_196x196.h │ │ │ │ ├── wi_wind_44deg_196x196.h │ │ │ │ ├── wi_wind_45deg_196x196.h │ │ │ │ ├── wi_wind_46deg_196x196.h │ │ │ │ ├── wi_wind_47deg_196x196.h │ │ │ │ ├── wi_wind_48deg_196x196.h │ │ │ │ ├── wi_wind_49deg_196x196.h │ │ │ │ ├── wi_wind_4deg_196x196.h │ │ │ │ ├── wi_wind_50deg_196x196.h │ │ │ │ ├── wi_wind_51deg_196x196.h │ │ │ │ ├── wi_wind_52deg_196x196.h │ │ │ │ ├── wi_wind_53deg_196x196.h │ │ │ │ ├── wi_wind_54deg_196x196.h │ │ │ │ ├── wi_wind_55deg_196x196.h │ │ │ │ ├── wi_wind_56_25deg_196x196.h │ │ │ │ ├── wi_wind_56deg_196x196.h │ │ │ │ ├── wi_wind_57deg_196x196.h │ │ │ │ ├── wi_wind_58deg_196x196.h │ │ │ │ ├── wi_wind_59deg_196x196.h │ │ │ │ ├── wi_wind_5deg_196x196.h │ │ │ │ ├── wi_wind_60deg_196x196.h │ │ │ │ ├── wi_wind_61deg_196x196.h │ │ │ │ ├── wi_wind_62deg_196x196.h │ │ │ │ ├── wi_wind_63deg_196x196.h │ │ │ │ ├── wi_wind_64deg_196x196.h │ │ │ │ ├── wi_wind_65deg_196x196.h │ │ │ │ ├── wi_wind_66deg_196x196.h │ │ │ │ ├── wi_wind_67_5deg_196x196.h │ │ │ │ ├── wi_wind_67deg_196x196.h │ │ │ │ ├── wi_wind_68deg_196x196.h │ │ │ │ ├── wi_wind_69deg_196x196.h │ │ │ │ ├── wi_wind_6deg_196x196.h │ │ │ │ ├── wi_wind_70deg_196x196.h │ │ │ │ ├── wi_wind_71deg_196x196.h │ │ │ │ ├── wi_wind_72deg_196x196.h │ │ │ │ ├── wi_wind_73deg_196x196.h │ │ │ │ ├── wi_wind_74deg_196x196.h │ │ │ │ ├── wi_wind_75deg_196x196.h │ │ │ │ ├── wi_wind_76deg_196x196.h │ │ │ │ ├── wi_wind_77deg_196x196.h │ │ │ │ ├── wi_wind_78_75deg_196x196.h │ │ │ │ ├── wi_wind_78deg_196x196.h │ │ │ │ ├── wi_wind_79deg_196x196.h │ │ │ │ ├── wi_wind_7deg_196x196.h │ │ │ │ ├── wi_wind_80deg_196x196.h │ │ │ │ ├── wi_wind_81deg_196x196.h │ │ │ │ ├── wi_wind_82deg_196x196.h │ │ │ │ ├── wi_wind_83deg_196x196.h │ │ │ │ ├── wi_wind_84deg_196x196.h │ │ │ │ ├── wi_wind_85deg_196x196.h │ │ │ │ ├── wi_wind_86deg_196x196.h │ │ │ │ ├── wi_wind_87deg_196x196.h │ │ │ │ ├── wi_wind_88deg_196x196.h │ │ │ │ ├── wi_wind_89deg_196x196.h │ │ │ │ ├── wi_wind_8deg_196x196.h │ │ │ │ ├── wi_wind_90deg_196x196.h │ │ │ │ ├── wi_wind_91deg_196x196.h │ │ │ │ ├── wi_wind_92deg_196x196.h │ │ │ │ ├── wi_wind_93deg_196x196.h │ │ │ │ ├── wi_wind_94deg_196x196.h │ │ │ │ ├── wi_wind_95deg_196x196.h │ │ │ │ ├── wi_wind_96deg_196x196.h │ │ │ │ ├── wi_wind_97deg_196x196.h │ │ │ │ ├── wi_wind_98deg_196x196.h │ │ │ │ ├── wi_wind_99deg_196x196.h │ │ │ │ ├── wi_wind_9deg_196x196.h │ │ │ │ ├── wi_wind_beaufort_0_196x196.h │ │ │ │ ├── wi_wind_beaufort_10_196x196.h │ │ │ │ ├── wi_wind_beaufort_11_196x196.h │ │ │ │ ├── wi_wind_beaufort_12_196x196.h │ │ │ │ ├── wi_wind_beaufort_1_196x196.h │ │ │ │ ├── wi_wind_beaufort_2_196x196.h │ │ │ │ ├── wi_wind_beaufort_3_196x196.h │ │ │ │ ├── wi_wind_beaufort_4_196x196.h │ │ │ │ ├── wi_wind_beaufort_5_196x196.h │ │ │ │ ├── wi_wind_beaufort_6_196x196.h │ │ │ │ ├── wi_wind_beaufort_7_196x196.h │ │ │ │ ├── wi_wind_beaufort_8_196x196.h │ │ │ │ ├── wi_wind_beaufort_9_196x196.h │ │ │ │ ├── wi_windy_196x196.h │ │ │ │ ├── wifi_196x196.h │ │ │ │ ├── wifi_1_bar_196x196.h │ │ │ │ ├── wifi_2_bar_196x196.h │ │ │ │ ├── wifi_3_bar_196x196.h │ │ │ │ ├── wifi_off_196x196.h │ │ │ │ ├── wifi_x_196x196.h │ │ │ │ ├── wind_direction_meteorological_0deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_100deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_101deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_102deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_103deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_104deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_105deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_106deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_107deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_108deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_109deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_10deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_110deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_111deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_112deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_113deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_114deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_115deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_116deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_117deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_118deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_119deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_11deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_120deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_121deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_122deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_123deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_124deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_125deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_126deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_127deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_128deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_129deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_12deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_130deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_131deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_132deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_133deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_134deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_135deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_136deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_137deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_138deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_139deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_13deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_140deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_141deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_142deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_143deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_144deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_145deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_146deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_147deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_148deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_149deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_14deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_150deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_151deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_152deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_153deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_154deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_155deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_156deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_157deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_158deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_159deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_15deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_160deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_161deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_162deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_163deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_164deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_165deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_166deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_167deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_168deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_169deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_16deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_170deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_171deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_172deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_173deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_174deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_175deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_176deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_177deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_178deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_179deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_17deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_180deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_181deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_182deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_183deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_184deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_185deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_186deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_187deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_188deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_189deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_18deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_190deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_191deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_192deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_193deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_194deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_195deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_196deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_197deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_198deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_199deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_19deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_1deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_200deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_201deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_202deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_203deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_204deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_205deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_206deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_207deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_208deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_209deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_20deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_210deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_211deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_212deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_213deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_214deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_215deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_216deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_217deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_218deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_219deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_21deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_220deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_221deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_222deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_223deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_224deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_225deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_226deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_227deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_228deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_229deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_22deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_230deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_231deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_232deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_233deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_234deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_235deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_236deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_237deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_238deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_239deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_23deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_240deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_241deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_242deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_243deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_244deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_245deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_246deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_247deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_248deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_249deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_24deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_250deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_251deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_252deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_253deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_254deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_255deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_256deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_257deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_258deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_259deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_260deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_261deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_262deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_263deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_264deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_265deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_266deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_267deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_268deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_269deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_26deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_270deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_271deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_272deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_273deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_274deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_275deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_276deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_277deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_278deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_279deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_27deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_280deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_281deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_282deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_283deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_284deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_285deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_286deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_287deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_288deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_289deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_28deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_290deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_291deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_292deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_293deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_294deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_295deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_296deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_297deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_298deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_299deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_29deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_2deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_300deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_301deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_302deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_303deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_304deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_305deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_306deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_307deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_308deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_309deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_30deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_310deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_311deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_312deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_313deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_314deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_315deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_316deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_317deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_318deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_319deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_31deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_320deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_321deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_322deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_323deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_324deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_325deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_326deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_327deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_328deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_329deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_32deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_330deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_331deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_332deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_333deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_334deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_335deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_336deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_337deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_338deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_339deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_33deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_340deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_341deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_342deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_343deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_344deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_345deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_346deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_347deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_348deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_349deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_34deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_350deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_351deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_352deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_353deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_354deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_355deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_356deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_357deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_358deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_359deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_35deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_36deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_37deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_38deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_39deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_3deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_40deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_41deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_42deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_43deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_44deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_45deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_46deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_47deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_48deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_49deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_4deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_50deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_51deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_52deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_53deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_54deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_55deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_56deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_57deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_58deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_59deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_60deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_61deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_62deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_63deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_64deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_65deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_66deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_67deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_68deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_69deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_6deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_70deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_71deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_72deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_73deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_74deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_76deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_77deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_78deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_79deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_7deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_80deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_81deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_82deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_83deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_84deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_85deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_86deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_87deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_88deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_89deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_8deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_90deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_91deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_92deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_93deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_94deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_95deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_96deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_97deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_98deg_196x196.h │ │ │ │ ├── wind_direction_meteorological_99deg_196x196.h │ │ │ │ └── wind_direction_meteorological_9deg_196x196.h │ │ │ ├── 24x24 │ │ │ │ ├── air_filter_24x24.h │ │ │ │ ├── battery_0_bar_0deg_24x24.h │ │ │ │ ├── battery_0_bar_180deg_24x24.h │ │ │ │ ├── battery_0_bar_270deg_24x24.h │ │ │ │ ├── battery_0_bar_90deg_24x24.h │ │ │ │ ├── battery_1_bar_0deg_24x24.h │ │ │ │ ├── battery_1_bar_180deg_24x24.h │ │ │ │ ├── battery_1_bar_270deg_24x24.h │ │ │ │ ├── battery_1_bar_90deg_24x24.h │ │ │ │ ├── battery_2_bar_0deg_24x24.h │ │ │ │ ├── battery_2_bar_180deg_24x24.h │ │ │ │ ├── battery_2_bar_270deg_24x24.h │ │ │ │ ├── battery_2_bar_90deg_24x24.h │ │ │ │ ├── battery_3_bar_0deg_24x24.h │ │ │ │ ├── battery_3_bar_180deg_24x24.h │ │ │ │ ├── battery_3_bar_270deg_24x24.h │ │ │ │ ├── battery_3_bar_90deg_24x24.h │ │ │ │ ├── battery_4_bar_0deg_24x24.h │ │ │ │ ├── battery_4_bar_180deg_24x24.h │ │ │ │ ├── battery_4_bar_270deg_24x24.h │ │ │ │ ├── battery_4_bar_90deg_24x24.h │ │ │ │ ├── battery_5_bar_0deg_24x24.h │ │ │ │ ├── battery_5_bar_180deg_24x24.h │ │ │ │ ├── battery_5_bar_270deg_24x24.h │ │ │ │ ├── battery_5_bar_90deg_24x24.h │ │ │ │ ├── battery_6_bar_0deg_24x24.h │ │ │ │ ├── battery_6_bar_180deg_24x24.h │ │ │ │ ├── battery_6_bar_270deg_24x24.h │ │ │ │ ├── battery_6_bar_90deg_24x24.h │ │ │ │ ├── battery_alert_0deg_24x24.h │ │ │ │ ├── battery_alert_180deg_24x24.h │ │ │ │ ├── battery_alert_270deg_24x24.h │ │ │ │ ├── battery_alert_90deg_24x24.h │ │ │ │ ├── battery_charging_full_0deg_24x24.h │ │ │ │ ├── battery_charging_full_180deg_24x24.h │ │ │ │ ├── battery_charging_full_270deg_24x24.h │ │ │ │ ├── battery_charging_full_90deg_24x24.h │ │ │ │ ├── battery_full_0deg_24x24.h │ │ │ │ ├── battery_full_180deg_24x24.h │ │ │ │ ├── battery_full_270deg_24x24.h │ │ │ │ ├── battery_full_90deg_24x24.h │ │ │ │ ├── biological_hazard_symbol_24x24.h │ │ │ │ ├── error_icon_24x24.h │ │ │ │ ├── house_24x24.h │ │ │ │ ├── house_humidity_24x24.h │ │ │ │ ├── house_raindrops_24x24.h │ │ │ │ ├── house_thermometer_24x24.h │ │ │ │ ├── ionizing_radiation_symbol_24x24.h │ │ │ │ ├── visibility_icon_24x24.h │ │ │ │ ├── warning_icon_24x24.h │ │ │ │ ├── wi_alien_24x24.h │ │ │ │ ├── wi_barometer_24x24.h │ │ │ │ ├── wi_celsius_24x24.h │ │ │ │ ├── wi_cloud_24x24.h │ │ │ │ ├── wi_cloud_down_24x24.h │ │ │ │ ├── wi_cloud_refresh_24x24.h │ │ │ │ ├── wi_cloud_up_24x24.h │ │ │ │ ├── wi_cloudy_24x24.h │ │ │ │ ├── wi_cloudy_gusts_24x24.h │ │ │ │ ├── wi_cloudy_windy_24x24.h │ │ │ │ ├── wi_day_cloudy_24x24.h │ │ │ │ ├── wi_day_cloudy_gusts_24x24.h │ │ │ │ ├── wi_day_cloudy_high_24x24.h │ │ │ │ ├── wi_day_cloudy_windy_24x24.h │ │ │ │ ├── wi_day_fog_24x24.h │ │ │ │ ├── wi_day_hail_24x24.h │ │ │ │ ├── wi_day_haze_24x24.h │ │ │ │ ├── wi_day_light_wind_24x24.h │ │ │ │ ├── wi_day_lightning_24x24.h │ │ │ │ ├── wi_day_rain_24x24.h │ │ │ │ ├── wi_day_rain_mix_24x24.h │ │ │ │ ├── wi_day_rain_wind_24x24.h │ │ │ │ ├── wi_day_showers_24x24.h │ │ │ │ ├── wi_day_sleet_24x24.h │ │ │ │ ├── wi_day_sleet_storm_24x24.h │ │ │ │ ├── wi_day_snow_24x24.h │ │ │ │ ├── wi_day_snow_thunderstorm_24x24.h │ │ │ │ ├── wi_day_snow_wind_24x24.h │ │ │ │ ├── wi_day_sprinkle_24x24.h │ │ │ │ ├── wi_day_storm_showers_24x24.h │ │ │ │ ├── wi_day_sunny_24x24.h │ │ │ │ ├── wi_day_sunny_overcast_24x24.h │ │ │ │ ├── wi_day_thunderstorm_24x24.h │ │ │ │ ├── wi_day_windy_24x24.h │ │ │ │ ├── wi_degrees_24x24.h │ │ │ │ ├── wi_direction_down_24x24.h │ │ │ │ ├── wi_direction_down_left_24x24.h │ │ │ │ ├── wi_direction_down_right_24x24.h │ │ │ │ ├── wi_direction_left_24x24.h │ │ │ │ ├── wi_direction_right_24x24.h │ │ │ │ ├── wi_direction_up_24x24.h │ │ │ │ ├── wi_direction_up_left_24x24.h │ │ │ │ ├── wi_direction_up_right_24x24.h │ │ │ │ ├── wi_dust_24x24.h │ │ │ │ ├── wi_earthquake_24x24.h │ │ │ │ ├── wi_fahrenheit_24x24.h │ │ │ │ ├── wi_fire_24x24.h │ │ │ │ ├── wi_flood_24x24.h │ │ │ │ ├── wi_fog_24x24.h │ │ │ │ ├── wi_gale_warning_24x24.h │ │ │ │ ├── wi_hail_24x24.h │ │ │ │ ├── wi_horizon_24x24.h │ │ │ │ ├── wi_horizon_alt_24x24.h │ │ │ │ ├── wi_hot_24x24.h │ │ │ │ ├── wi_humidity_24x24.h │ │ │ │ ├── wi_hurricane_24x24.h │ │ │ │ ├── wi_hurricane_warning_24x24.h │ │ │ │ ├── wi_lightning_24x24.h │ │ │ │ ├── wi_lunar_eclipse_24x24.h │ │ │ │ ├── wi_meteor_24x24.h │ │ │ │ ├── wi_moon_alt_first_quarter_24x24.h │ │ │ │ ├── wi_moon_alt_full_24x24.h │ │ │ │ ├── wi_moon_alt_new_24x24.h │ │ │ │ ├── wi_moon_alt_third_quarter_24x24.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_24x24.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_24x24.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_24x24.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_24x24.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_24x24.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_24x24.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_24x24.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_24x24.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_24x24.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_24x24.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_24x24.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_24x24.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_24x24.h │ │ │ │ ├── wi_moon_first_quarter_24x24.h │ │ │ │ ├── wi_moon_full_24x24.h │ │ │ │ ├── wi_moon_new_24x24.h │ │ │ │ ├── wi_moon_third_quarter_24x24.h │ │ │ │ ├── wi_moon_waning_crescent_1_24x24.h │ │ │ │ ├── wi_moon_waning_crescent_2_24x24.h │ │ │ │ ├── wi_moon_waning_crescent_3_24x24.h │ │ │ │ ├── wi_moon_waning_crescent_4_24x24.h │ │ │ │ ├── wi_moon_waning_crescent_5_24x24.h │ │ │ │ ├── wi_moon_waning_crescent_6_24x24.h │ │ │ │ ├── wi_moon_waning_gibbous_1_24x24.h │ │ │ │ ├── wi_moon_waning_gibbous_2_24x24.h │ │ │ │ ├── wi_moon_waning_gibbous_3_24x24.h │ │ │ │ ├── wi_moon_waning_gibbous_4_24x24.h │ │ │ │ ├── wi_moon_waning_gibbous_5_24x24.h │ │ │ │ ├── wi_moon_waning_gibbous_6_24x24.h │ │ │ │ ├── wi_moon_waxing_6_24x24.h │ │ │ │ ├── wi_moon_waxing_crescent_1_24x24.h │ │ │ │ ├── wi_moon_waxing_crescent_2_24x24.h │ │ │ │ ├── wi_moon_waxing_crescent_3_24x24.h │ │ │ │ ├── wi_moon_waxing_crescent_4_24x24.h │ │ │ │ ├── wi_moon_waxing_crescent_5_24x24.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_24x24.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_24x24.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_24x24.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_24x24.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_24x24.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_24x24.h │ │ │ │ ├── wi_moonrise_24x24.h │ │ │ │ ├── wi_moonset_24x24.h │ │ │ │ ├── wi_na_24x24.h │ │ │ │ ├── wi_night_alt_cloudy_24x24.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_24x24.h │ │ │ │ ├── wi_night_alt_cloudy_high_24x24.h │ │ │ │ ├── wi_night_alt_cloudy_windy_24x24.h │ │ │ │ ├── wi_night_alt_hail_24x24.h │ │ │ │ ├── wi_night_alt_lightning_24x24.h │ │ │ │ ├── wi_night_alt_partly_cloudy_24x24.h │ │ │ │ ├── wi_night_alt_rain_24x24.h │ │ │ │ ├── wi_night_alt_rain_mix_24x24.h │ │ │ │ ├── wi_night_alt_rain_wind_24x24.h │ │ │ │ ├── wi_night_alt_showers_24x24.h │ │ │ │ ├── wi_night_alt_sleet_24x24.h │ │ │ │ ├── wi_night_alt_sleet_storm_24x24.h │ │ │ │ ├── wi_night_alt_snow_24x24.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_24x24.h │ │ │ │ ├── wi_night_alt_snow_wind_24x24.h │ │ │ │ ├── wi_night_alt_sprinkle_24x24.h │ │ │ │ ├── wi_night_alt_storm_showers_24x24.h │ │ │ │ ├── wi_night_alt_thunderstorm_24x24.h │ │ │ │ ├── wi_night_clear_24x24.h │ │ │ │ ├── wi_night_cloudy_24x24.h │ │ │ │ ├── wi_night_cloudy_gusts_24x24.h │ │ │ │ ├── wi_night_cloudy_high_24x24.h │ │ │ │ ├── wi_night_cloudy_windy_24x24.h │ │ │ │ ├── wi_night_fog_24x24.h │ │ │ │ ├── wi_night_hail_24x24.h │ │ │ │ ├── wi_night_lightning_24x24.h │ │ │ │ ├── wi_night_partly_cloudy_24x24.h │ │ │ │ ├── wi_night_rain_24x24.h │ │ │ │ ├── wi_night_rain_mix_24x24.h │ │ │ │ ├── wi_night_rain_wind_24x24.h │ │ │ │ ├── wi_night_showers_24x24.h │ │ │ │ ├── wi_night_sleet_24x24.h │ │ │ │ ├── wi_night_sleet_storm_24x24.h │ │ │ │ ├── wi_night_snow_24x24.h │ │ │ │ ├── wi_night_snow_thunderstorm_24x24.h │ │ │ │ ├── wi_night_snow_wind_24x24.h │ │ │ │ ├── wi_night_sprinkle_24x24.h │ │ │ │ ├── wi_night_storm_showers_24x24.h │ │ │ │ ├── wi_night_thunderstorm_24x24.h │ │ │ │ ├── wi_rain_24x24.h │ │ │ │ ├── wi_rain_mix_24x24.h │ │ │ │ ├── wi_rain_wind_24x24.h │ │ │ │ ├── wi_raindrop_24x24.h │ │ │ │ ├── wi_raindrops_24x24.h │ │ │ │ ├── wi_refresh_24x24.h │ │ │ │ ├── wi_refresh_alt_24x24.h │ │ │ │ ├── wi_sandstorm_24x24.h │ │ │ │ ├── wi_showers_24x24.h │ │ │ │ ├── wi_sleet_24x24.h │ │ │ │ ├── wi_small_craft_advisory_24x24.h │ │ │ │ ├── wi_smog_24x24.h │ │ │ │ ├── wi_smoke_24x24.h │ │ │ │ ├── wi_snow_24x24.h │ │ │ │ ├── wi_snow_wind_24x24.h │ │ │ │ ├── wi_snowflake_cold_24x24.h │ │ │ │ ├── wi_solar_eclipse_24x24.h │ │ │ │ ├── wi_sprinkle_24x24.h │ │ │ │ ├── wi_stars_24x24.h │ │ │ │ ├── wi_storm_showers_24x24.h │ │ │ │ ├── wi_storm_warning_24x24.h │ │ │ │ ├── wi_strong_wind_24x24.h │ │ │ │ ├── wi_sunrise_24x24.h │ │ │ │ ├── wi_sunset_24x24.h │ │ │ │ ├── wi_thermometer_24x24.h │ │ │ │ ├── wi_thermometer_exterior_24x24.h │ │ │ │ ├── wi_thermometer_internal_24x24.h │ │ │ │ ├── wi_thunderstorm_24x24.h │ │ │ │ ├── wi_time_10_24x24.h │ │ │ │ ├── wi_time_11_24x24.h │ │ │ │ ├── wi_time_12_24x24.h │ │ │ │ ├── wi_time_1_24x24.h │ │ │ │ ├── wi_time_2_24x24.h │ │ │ │ ├── wi_time_3_24x24.h │ │ │ │ ├── wi_time_4_24x24.h │ │ │ │ ├── wi_time_5_24x24.h │ │ │ │ ├── wi_time_6_24x24.h │ │ │ │ ├── wi_time_7_24x24.h │ │ │ │ ├── wi_time_8_24x24.h │ │ │ │ ├── wi_time_9_24x24.h │ │ │ │ ├── wi_tornado_24x24.h │ │ │ │ ├── wi_train_24x24.h │ │ │ │ ├── wi_tsunami_24x24.h │ │ │ │ ├── wi_umbrella_24x24.h │ │ │ │ ├── wi_volcano_24x24.h │ │ │ │ ├── wi_wind_0deg_24x24.h │ │ │ │ ├── wi_wind_100deg_24x24.h │ │ │ │ ├── wi_wind_101_25deg_24x24.h │ │ │ │ ├── wi_wind_101deg_24x24.h │ │ │ │ ├── wi_wind_102deg_24x24.h │ │ │ │ ├── wi_wind_103deg_24x24.h │ │ │ │ ├── wi_wind_104deg_24x24.h │ │ │ │ ├── wi_wind_105deg_24x24.h │ │ │ │ ├── wi_wind_106deg_24x24.h │ │ │ │ ├── wi_wind_107deg_24x24.h │ │ │ │ ├── wi_wind_108deg_24x24.h │ │ │ │ ├── wi_wind_109deg_24x24.h │ │ │ │ ├── wi_wind_10deg_24x24.h │ │ │ │ ├── wi_wind_110deg_24x24.h │ │ │ │ ├── wi_wind_111deg_24x24.h │ │ │ │ ├── wi_wind_112_5deg_24x24.h │ │ │ │ ├── wi_wind_112deg_24x24.h │ │ │ │ ├── wi_wind_113deg_24x24.h │ │ │ │ ├── wi_wind_114deg_24x24.h │ │ │ │ ├── wi_wind_115deg_24x24.h │ │ │ │ ├── wi_wind_116deg_24x24.h │ │ │ │ ├── wi_wind_117deg_24x24.h │ │ │ │ ├── wi_wind_118deg_24x24.h │ │ │ │ ├── wi_wind_119deg_24x24.h │ │ │ │ ├── wi_wind_11_25deg_24x24.h │ │ │ │ ├── wi_wind_11deg_24x24.h │ │ │ │ ├── wi_wind_120deg_24x24.h │ │ │ │ ├── wi_wind_121deg_24x24.h │ │ │ │ ├── wi_wind_122deg_24x24.h │ │ │ │ ├── wi_wind_123_75deg_24x24.h │ │ │ │ ├── wi_wind_123deg_24x24.h │ │ │ │ ├── wi_wind_124deg_24x24.h │ │ │ │ ├── wi_wind_125deg_24x24.h │ │ │ │ ├── wi_wind_126deg_24x24.h │ │ │ │ ├── wi_wind_127deg_24x24.h │ │ │ │ ├── wi_wind_128deg_24x24.h │ │ │ │ ├── wi_wind_129deg_24x24.h │ │ │ │ ├── wi_wind_12deg_24x24.h │ │ │ │ ├── wi_wind_130deg_24x24.h │ │ │ │ ├── wi_wind_131deg_24x24.h │ │ │ │ ├── wi_wind_132deg_24x24.h │ │ │ │ ├── wi_wind_133deg_24x24.h │ │ │ │ ├── wi_wind_134deg_24x24.h │ │ │ │ ├── wi_wind_135deg_24x24.h │ │ │ │ ├── wi_wind_136deg_24x24.h │ │ │ │ ├── wi_wind_137deg_24x24.h │ │ │ │ ├── wi_wind_138deg_24x24.h │ │ │ │ ├── wi_wind_139deg_24x24.h │ │ │ │ ├── wi_wind_13deg_24x24.h │ │ │ │ ├── wi_wind_140deg_24x24.h │ │ │ │ ├── wi_wind_141deg_24x24.h │ │ │ │ ├── wi_wind_142deg_24x24.h │ │ │ │ ├── wi_wind_143deg_24x24.h │ │ │ │ ├── wi_wind_144deg_24x24.h │ │ │ │ ├── wi_wind_145deg_24x24.h │ │ │ │ ├── wi_wind_146_25deg_24x24.h │ │ │ │ ├── wi_wind_146deg_24x24.h │ │ │ │ ├── wi_wind_147deg_24x24.h │ │ │ │ ├── wi_wind_148deg_24x24.h │ │ │ │ ├── wi_wind_149deg_24x24.h │ │ │ │ ├── wi_wind_14deg_24x24.h │ │ │ │ ├── wi_wind_150deg_24x24.h │ │ │ │ ├── wi_wind_151deg_24x24.h │ │ │ │ ├── wi_wind_152deg_24x24.h │ │ │ │ ├── wi_wind_153deg_24x24.h │ │ │ │ ├── wi_wind_154deg_24x24.h │ │ │ │ ├── wi_wind_155deg_24x24.h │ │ │ │ ├── wi_wind_156deg_24x24.h │ │ │ │ ├── wi_wind_157_5deg_24x24.h │ │ │ │ ├── wi_wind_157deg_24x24.h │ │ │ │ ├── wi_wind_158deg_24x24.h │ │ │ │ ├── wi_wind_159deg_24x24.h │ │ │ │ ├── wi_wind_15deg_24x24.h │ │ │ │ ├── wi_wind_160deg_24x24.h │ │ │ │ ├── wi_wind_161deg_24x24.h │ │ │ │ ├── wi_wind_162deg_24x24.h │ │ │ │ ├── wi_wind_163deg_24x24.h │ │ │ │ ├── wi_wind_164deg_24x24.h │ │ │ │ ├── wi_wind_165deg_24x24.h │ │ │ │ ├── wi_wind_166deg_24x24.h │ │ │ │ ├── wi_wind_167deg_24x24.h │ │ │ │ ├── wi_wind_168_75deg_24x24.h │ │ │ │ ├── wi_wind_168deg_24x24.h │ │ │ │ ├── wi_wind_169deg_24x24.h │ │ │ │ ├── wi_wind_16deg_24x24.h │ │ │ │ ├── wi_wind_170deg_24x24.h │ │ │ │ ├── wi_wind_171deg_24x24.h │ │ │ │ ├── wi_wind_172deg_24x24.h │ │ │ │ ├── wi_wind_173deg_24x24.h │ │ │ │ ├── wi_wind_174deg_24x24.h │ │ │ │ ├── wi_wind_175deg_24x24.h │ │ │ │ ├── wi_wind_176deg_24x24.h │ │ │ │ ├── wi_wind_177deg_24x24.h │ │ │ │ ├── wi_wind_178deg_24x24.h │ │ │ │ ├── wi_wind_179deg_24x24.h │ │ │ │ ├── wi_wind_17deg_24x24.h │ │ │ │ ├── wi_wind_180deg_24x24.h │ │ │ │ ├── wi_wind_181deg_24x24.h │ │ │ │ ├── wi_wind_182deg_24x24.h │ │ │ │ ├── wi_wind_183deg_24x24.h │ │ │ │ ├── wi_wind_184deg_24x24.h │ │ │ │ ├── wi_wind_185deg_24x24.h │ │ │ │ ├── wi_wind_186deg_24x24.h │ │ │ │ ├── wi_wind_187deg_24x24.h │ │ │ │ ├── wi_wind_188deg_24x24.h │ │ │ │ ├── wi_wind_189deg_24x24.h │ │ │ │ ├── wi_wind_18deg_24x24.h │ │ │ │ ├── wi_wind_190deg_24x24.h │ │ │ │ ├── wi_wind_191_25deg_24x24.h │ │ │ │ ├── wi_wind_191deg_24x24.h │ │ │ │ ├── wi_wind_192deg_24x24.h │ │ │ │ ├── wi_wind_193deg_24x24.h │ │ │ │ ├── wi_wind_194deg_24x24.h │ │ │ │ ├── wi_wind_195deg_24x24.h │ │ │ │ ├── wi_wind_196deg_24x24.h │ │ │ │ ├── wi_wind_197deg_24x24.h │ │ │ │ ├── wi_wind_198deg_24x24.h │ │ │ │ ├── wi_wind_199deg_24x24.h │ │ │ │ ├── wi_wind_19deg_24x24.h │ │ │ │ ├── wi_wind_1deg_24x24.h │ │ │ │ ├── wi_wind_200deg_24x24.h │ │ │ │ ├── wi_wind_201deg_24x24.h │ │ │ │ ├── wi_wind_202_5deg_24x24.h │ │ │ │ ├── wi_wind_202deg_24x24.h │ │ │ │ ├── wi_wind_203deg_24x24.h │ │ │ │ ├── wi_wind_204deg_24x24.h │ │ │ │ ├── wi_wind_205deg_24x24.h │ │ │ │ ├── wi_wind_206deg_24x24.h │ │ │ │ ├── wi_wind_207deg_24x24.h │ │ │ │ ├── wi_wind_208deg_24x24.h │ │ │ │ ├── wi_wind_209deg_24x24.h │ │ │ │ ├── wi_wind_20deg_24x24.h │ │ │ │ ├── wi_wind_210deg_24x24.h │ │ │ │ ├── wi_wind_211deg_24x24.h │ │ │ │ ├── wi_wind_212deg_24x24.h │ │ │ │ ├── wi_wind_213_75deg_24x24.h │ │ │ │ ├── wi_wind_213deg_24x24.h │ │ │ │ ├── wi_wind_214deg_24x24.h │ │ │ │ ├── wi_wind_215deg_24x24.h │ │ │ │ ├── wi_wind_216deg_24x24.h │ │ │ │ ├── wi_wind_217deg_24x24.h │ │ │ │ ├── wi_wind_218deg_24x24.h │ │ │ │ ├── wi_wind_219deg_24x24.h │ │ │ │ ├── wi_wind_21deg_24x24.h │ │ │ │ ├── wi_wind_220deg_24x24.h │ │ │ │ ├── wi_wind_221deg_24x24.h │ │ │ │ ├── wi_wind_222deg_24x24.h │ │ │ │ ├── wi_wind_223deg_24x24.h │ │ │ │ ├── wi_wind_224deg_24x24.h │ │ │ │ ├── wi_wind_225deg_24x24.h │ │ │ │ ├── wi_wind_226deg_24x24.h │ │ │ │ ├── wi_wind_227deg_24x24.h │ │ │ │ ├── wi_wind_228deg_24x24.h │ │ │ │ ├── wi_wind_229deg_24x24.h │ │ │ │ ├── wi_wind_22_5deg_24x24.h │ │ │ │ ├── wi_wind_22deg_24x24.h │ │ │ │ ├── wi_wind_230deg_24x24.h │ │ │ │ ├── wi_wind_231deg_24x24.h │ │ │ │ ├── wi_wind_232deg_24x24.h │ │ │ │ ├── wi_wind_233deg_24x24.h │ │ │ │ ├── wi_wind_234deg_24x24.h │ │ │ │ ├── wi_wind_235deg_24x24.h │ │ │ │ ├── wi_wind_236_25deg_24x24.h │ │ │ │ ├── wi_wind_236deg_24x24.h │ │ │ │ ├── wi_wind_237deg_24x24.h │ │ │ │ ├── wi_wind_238deg_24x24.h │ │ │ │ ├── wi_wind_239deg_24x24.h │ │ │ │ ├── wi_wind_23deg_24x24.h │ │ │ │ ├── wi_wind_240deg_24x24.h │ │ │ │ ├── wi_wind_241deg_24x24.h │ │ │ │ ├── wi_wind_242deg_24x24.h │ │ │ │ ├── wi_wind_243deg_24x24.h │ │ │ │ ├── wi_wind_244deg_24x24.h │ │ │ │ ├── wi_wind_245deg_24x24.h │ │ │ │ ├── wi_wind_246deg_24x24.h │ │ │ │ ├── wi_wind_247_5deg_24x24.h │ │ │ │ ├── wi_wind_247deg_24x24.h │ │ │ │ ├── wi_wind_248deg_24x24.h │ │ │ │ ├── wi_wind_249deg_24x24.h │ │ │ │ ├── wi_wind_24deg_24x24.h │ │ │ │ ├── wi_wind_250deg_24x24.h │ │ │ │ ├── wi_wind_251deg_24x24.h │ │ │ │ ├── wi_wind_252deg_24x24.h │ │ │ │ ├── wi_wind_253deg_24x24.h │ │ │ │ ├── wi_wind_254deg_24x24.h │ │ │ │ ├── wi_wind_255deg_24x24.h │ │ │ │ ├── wi_wind_256deg_24x24.h │ │ │ │ ├── wi_wind_257deg_24x24.h │ │ │ │ ├── wi_wind_258_75deg_24x24.h │ │ │ │ ├── wi_wind_258deg_24x24.h │ │ │ │ ├── wi_wind_259deg_24x24.h │ │ │ │ ├── wi_wind_25deg_24x24.h │ │ │ │ ├── wi_wind_260deg_24x24.h │ │ │ │ ├── wi_wind_261deg_24x24.h │ │ │ │ ├── wi_wind_262deg_24x24.h │ │ │ │ ├── wi_wind_263deg_24x24.h │ │ │ │ ├── wi_wind_264deg_24x24.h │ │ │ │ ├── wi_wind_265deg_24x24.h │ │ │ │ ├── wi_wind_266deg_24x24.h │ │ │ │ ├── wi_wind_267deg_24x24.h │ │ │ │ ├── wi_wind_268deg_24x24.h │ │ │ │ ├── wi_wind_269deg_24x24.h │ │ │ │ ├── wi_wind_26deg_24x24.h │ │ │ │ ├── wi_wind_270deg_24x24.h │ │ │ │ ├── wi_wind_271deg_24x24.h │ │ │ │ ├── wi_wind_272deg_24x24.h │ │ │ │ ├── wi_wind_273deg_24x24.h │ │ │ │ ├── wi_wind_274deg_24x24.h │ │ │ │ ├── wi_wind_275deg_24x24.h │ │ │ │ ├── wi_wind_276deg_24x24.h │ │ │ │ ├── wi_wind_277deg_24x24.h │ │ │ │ ├── wi_wind_278deg_24x24.h │ │ │ │ ├── wi_wind_279deg_24x24.h │ │ │ │ ├── wi_wind_27deg_24x24.h │ │ │ │ ├── wi_wind_280deg_24x24.h │ │ │ │ ├── wi_wind_281_25deg_24x24.h │ │ │ │ ├── wi_wind_281deg_24x24.h │ │ │ │ ├── wi_wind_282deg_24x24.h │ │ │ │ ├── wi_wind_283deg_24x24.h │ │ │ │ ├── wi_wind_284deg_24x24.h │ │ │ │ ├── wi_wind_285deg_24x24.h │ │ │ │ ├── wi_wind_286deg_24x24.h │ │ │ │ ├── wi_wind_287deg_24x24.h │ │ │ │ ├── wi_wind_288deg_24x24.h │ │ │ │ ├── wi_wind_289deg_24x24.h │ │ │ │ ├── wi_wind_28deg_24x24.h │ │ │ │ ├── wi_wind_290deg_24x24.h │ │ │ │ ├── wi_wind_291deg_24x24.h │ │ │ │ ├── wi_wind_292_5deg_24x24.h │ │ │ │ ├── wi_wind_292deg_24x24.h │ │ │ │ ├── wi_wind_293deg_24x24.h │ │ │ │ ├── wi_wind_294deg_24x24.h │ │ │ │ ├── wi_wind_295deg_24x24.h │ │ │ │ ├── wi_wind_296deg_24x24.h │ │ │ │ ├── wi_wind_297deg_24x24.h │ │ │ │ ├── wi_wind_298deg_24x24.h │ │ │ │ ├── wi_wind_299deg_24x24.h │ │ │ │ ├── wi_wind_29deg_24x24.h │ │ │ │ ├── wi_wind_2deg_24x24.h │ │ │ │ ├── wi_wind_300deg_24x24.h │ │ │ │ ├── wi_wind_301deg_24x24.h │ │ │ │ ├── wi_wind_302deg_24x24.h │ │ │ │ ├── wi_wind_303_75deg_24x24.h │ │ │ │ ├── wi_wind_303deg_24x24.h │ │ │ │ ├── wi_wind_304deg_24x24.h │ │ │ │ ├── wi_wind_305deg_24x24.h │ │ │ │ ├── wi_wind_306deg_24x24.h │ │ │ │ ├── wi_wind_307deg_24x24.h │ │ │ │ ├── wi_wind_308deg_24x24.h │ │ │ │ ├── wi_wind_309deg_24x24.h │ │ │ │ ├── wi_wind_30deg_24x24.h │ │ │ │ ├── wi_wind_310deg_24x24.h │ │ │ │ ├── wi_wind_311deg_24x24.h │ │ │ │ ├── wi_wind_312deg_24x24.h │ │ │ │ ├── wi_wind_313deg_24x24.h │ │ │ │ ├── wi_wind_314deg_24x24.h │ │ │ │ ├── wi_wind_315deg_24x24.h │ │ │ │ ├── wi_wind_316deg_24x24.h │ │ │ │ ├── wi_wind_317deg_24x24.h │ │ │ │ ├── wi_wind_318deg_24x24.h │ │ │ │ ├── wi_wind_319deg_24x24.h │ │ │ │ ├── wi_wind_31deg_24x24.h │ │ │ │ ├── wi_wind_320deg_24x24.h │ │ │ │ ├── wi_wind_321deg_24x24.h │ │ │ │ ├── wi_wind_322deg_24x24.h │ │ │ │ ├── wi_wind_323deg_24x24.h │ │ │ │ ├── wi_wind_324deg_24x24.h │ │ │ │ ├── wi_wind_325deg_24x24.h │ │ │ │ ├── wi_wind_326_25deg_24x24.h │ │ │ │ ├── wi_wind_326deg_24x24.h │ │ │ │ ├── wi_wind_327deg_24x24.h │ │ │ │ ├── wi_wind_328deg_24x24.h │ │ │ │ ├── wi_wind_329deg_24x24.h │ │ │ │ ├── wi_wind_32deg_24x24.h │ │ │ │ ├── wi_wind_330deg_24x24.h │ │ │ │ ├── wi_wind_331deg_24x24.h │ │ │ │ ├── wi_wind_332deg_24x24.h │ │ │ │ ├── wi_wind_333deg_24x24.h │ │ │ │ ├── wi_wind_334deg_24x24.h │ │ │ │ ├── wi_wind_335deg_24x24.h │ │ │ │ ├── wi_wind_336deg_24x24.h │ │ │ │ ├── wi_wind_337_5deg_24x24.h │ │ │ │ ├── wi_wind_337deg_24x24.h │ │ │ │ ├── wi_wind_338deg_24x24.h │ │ │ │ ├── wi_wind_339deg_24x24.h │ │ │ │ ├── wi_wind_33_75deg_24x24.h │ │ │ │ ├── wi_wind_33deg_24x24.h │ │ │ │ ├── wi_wind_340deg_24x24.h │ │ │ │ ├── wi_wind_341deg_24x24.h │ │ │ │ ├── wi_wind_342deg_24x24.h │ │ │ │ ├── wi_wind_343deg_24x24.h │ │ │ │ ├── wi_wind_344deg_24x24.h │ │ │ │ ├── wi_wind_345deg_24x24.h │ │ │ │ ├── wi_wind_346deg_24x24.h │ │ │ │ ├── wi_wind_347deg_24x24.h │ │ │ │ ├── wi_wind_348_75deg_24x24.h │ │ │ │ ├── wi_wind_348deg_24x24.h │ │ │ │ ├── wi_wind_349deg_24x24.h │ │ │ │ ├── wi_wind_34deg_24x24.h │ │ │ │ ├── wi_wind_350deg_24x24.h │ │ │ │ ├── wi_wind_351deg_24x24.h │ │ │ │ ├── wi_wind_352deg_24x24.h │ │ │ │ ├── wi_wind_353deg_24x24.h │ │ │ │ ├── wi_wind_354deg_24x24.h │ │ │ │ ├── wi_wind_355deg_24x24.h │ │ │ │ ├── wi_wind_356deg_24x24.h │ │ │ │ ├── wi_wind_357deg_24x24.h │ │ │ │ ├── wi_wind_358deg_24x24.h │ │ │ │ ├── wi_wind_359deg_24x24.h │ │ │ │ ├── wi_wind_35deg_24x24.h │ │ │ │ ├── wi_wind_36deg_24x24.h │ │ │ │ ├── wi_wind_37deg_24x24.h │ │ │ │ ├── wi_wind_38deg_24x24.h │ │ │ │ ├── wi_wind_39deg_24x24.h │ │ │ │ ├── wi_wind_3deg_24x24.h │ │ │ │ ├── wi_wind_40deg_24x24.h │ │ │ │ ├── wi_wind_41deg_24x24.h │ │ │ │ ├── wi_wind_42deg_24x24.h │ │ │ │ ├── wi_wind_43deg_24x24.h │ │ │ │ ├── wi_wind_44deg_24x24.h │ │ │ │ ├── wi_wind_45deg_24x24.h │ │ │ │ ├── wi_wind_46deg_24x24.h │ │ │ │ ├── wi_wind_47deg_24x24.h │ │ │ │ ├── wi_wind_48deg_24x24.h │ │ │ │ ├── wi_wind_49deg_24x24.h │ │ │ │ ├── wi_wind_4deg_24x24.h │ │ │ │ ├── wi_wind_50deg_24x24.h │ │ │ │ ├── wi_wind_51deg_24x24.h │ │ │ │ ├── wi_wind_52deg_24x24.h │ │ │ │ ├── wi_wind_53deg_24x24.h │ │ │ │ ├── wi_wind_54deg_24x24.h │ │ │ │ ├── wi_wind_55deg_24x24.h │ │ │ │ ├── wi_wind_56_25deg_24x24.h │ │ │ │ ├── wi_wind_56deg_24x24.h │ │ │ │ ├── wi_wind_57deg_24x24.h │ │ │ │ ├── wi_wind_58deg_24x24.h │ │ │ │ ├── wi_wind_59deg_24x24.h │ │ │ │ ├── wi_wind_5deg_24x24.h │ │ │ │ ├── wi_wind_60deg_24x24.h │ │ │ │ ├── wi_wind_61deg_24x24.h │ │ │ │ ├── wi_wind_62deg_24x24.h │ │ │ │ ├── wi_wind_63deg_24x24.h │ │ │ │ ├── wi_wind_64deg_24x24.h │ │ │ │ ├── wi_wind_65deg_24x24.h │ │ │ │ ├── wi_wind_66deg_24x24.h │ │ │ │ ├── wi_wind_67_5deg_24x24.h │ │ │ │ ├── wi_wind_67deg_24x24.h │ │ │ │ ├── wi_wind_68deg_24x24.h │ │ │ │ ├── wi_wind_69deg_24x24.h │ │ │ │ ├── wi_wind_6deg_24x24.h │ │ │ │ ├── wi_wind_70deg_24x24.h │ │ │ │ ├── wi_wind_71deg_24x24.h │ │ │ │ ├── wi_wind_72deg_24x24.h │ │ │ │ ├── wi_wind_73deg_24x24.h │ │ │ │ ├── wi_wind_74deg_24x24.h │ │ │ │ ├── wi_wind_75deg_24x24.h │ │ │ │ ├── wi_wind_76deg_24x24.h │ │ │ │ ├── wi_wind_77deg_24x24.h │ │ │ │ ├── wi_wind_78_75deg_24x24.h │ │ │ │ ├── wi_wind_78deg_24x24.h │ │ │ │ ├── wi_wind_79deg_24x24.h │ │ │ │ ├── wi_wind_7deg_24x24.h │ │ │ │ ├── wi_wind_80deg_24x24.h │ │ │ │ ├── wi_wind_81deg_24x24.h │ │ │ │ ├── wi_wind_82deg_24x24.h │ │ │ │ ├── wi_wind_83deg_24x24.h │ │ │ │ ├── wi_wind_84deg_24x24.h │ │ │ │ ├── wi_wind_85deg_24x24.h │ │ │ │ ├── wi_wind_86deg_24x24.h │ │ │ │ ├── wi_wind_87deg_24x24.h │ │ │ │ ├── wi_wind_88deg_24x24.h │ │ │ │ ├── wi_wind_89deg_24x24.h │ │ │ │ ├── wi_wind_8deg_24x24.h │ │ │ │ ├── wi_wind_90deg_24x24.h │ │ │ │ ├── wi_wind_91deg_24x24.h │ │ │ │ ├── wi_wind_92deg_24x24.h │ │ │ │ ├── wi_wind_93deg_24x24.h │ │ │ │ ├── wi_wind_94deg_24x24.h │ │ │ │ ├── wi_wind_95deg_24x24.h │ │ │ │ ├── wi_wind_96deg_24x24.h │ │ │ │ ├── wi_wind_97deg_24x24.h │ │ │ │ ├── wi_wind_98deg_24x24.h │ │ │ │ ├── wi_wind_99deg_24x24.h │ │ │ │ ├── wi_wind_9deg_24x24.h │ │ │ │ ├── wi_wind_beaufort_0_24x24.h │ │ │ │ ├── wi_wind_beaufort_10_24x24.h │ │ │ │ ├── wi_wind_beaufort_11_24x24.h │ │ │ │ ├── wi_wind_beaufort_12_24x24.h │ │ │ │ ├── wi_wind_beaufort_1_24x24.h │ │ │ │ ├── wi_wind_beaufort_2_24x24.h │ │ │ │ ├── wi_wind_beaufort_3_24x24.h │ │ │ │ ├── wi_wind_beaufort_4_24x24.h │ │ │ │ ├── wi_wind_beaufort_5_24x24.h │ │ │ │ ├── wi_wind_beaufort_6_24x24.h │ │ │ │ ├── wi_wind_beaufort_7_24x24.h │ │ │ │ ├── wi_wind_beaufort_8_24x24.h │ │ │ │ ├── wi_wind_beaufort_9_24x24.h │ │ │ │ ├── wi_windy_24x24.h │ │ │ │ ├── wifi_1_bar_24x24.h │ │ │ │ ├── wifi_24x24.h │ │ │ │ ├── wifi_2_bar_24x24.h │ │ │ │ ├── wifi_3_bar_24x24.h │ │ │ │ ├── wifi_off_24x24.h │ │ │ │ ├── wifi_x_24x24.h │ │ │ │ ├── wind_direction_meteorological_0deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_100deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_101deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_102deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_103deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_104deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_105deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_106deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_107deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_108deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_109deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_10deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_110deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_111deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_112deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_113deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_114deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_115deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_116deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_117deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_118deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_119deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_11deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_120deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_121deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_122deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_123deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_124deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_125deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_126deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_127deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_128deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_129deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_12deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_130deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_131deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_132deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_133deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_134deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_135deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_136deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_137deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_138deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_139deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_13deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_140deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_141deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_142deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_143deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_144deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_145deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_146deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_147deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_148deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_149deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_14deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_150deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_151deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_152deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_153deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_154deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_155deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_156deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_157deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_158deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_159deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_15deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_160deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_161deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_162deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_163deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_164deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_165deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_166deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_167deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_168deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_169deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_16deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_170deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_171deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_172deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_173deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_174deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_175deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_176deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_177deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_178deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_179deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_17deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_180deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_181deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_182deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_183deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_184deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_185deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_186deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_187deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_188deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_189deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_18deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_190deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_191deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_192deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_193deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_194deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_195deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_196deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_197deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_198deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_199deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_19deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_1deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_200deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_201deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_202deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_203deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_204deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_205deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_206deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_207deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_208deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_209deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_20deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_210deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_211deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_212deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_213deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_214deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_215deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_216deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_217deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_218deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_219deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_21deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_220deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_221deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_222deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_223deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_224deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_225deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_226deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_227deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_228deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_229deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_22deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_230deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_231deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_232deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_233deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_234deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_235deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_236deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_237deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_238deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_239deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_23deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_240deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_241deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_242deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_243deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_244deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_245deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_246deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_247deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_248deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_249deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_24deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_250deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_251deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_252deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_253deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_254deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_255deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_256deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_257deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_258deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_259deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_260deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_261deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_262deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_263deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_264deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_265deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_266deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_267deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_268deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_269deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_26deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_270deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_271deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_272deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_273deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_274deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_275deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_276deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_277deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_278deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_279deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_27deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_280deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_281deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_282deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_283deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_284deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_285deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_286deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_287deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_288deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_289deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_28deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_290deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_291deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_292deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_293deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_294deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_295deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_296deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_297deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_298deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_299deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_29deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_2deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_300deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_301deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_302deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_303deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_304deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_305deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_306deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_307deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_308deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_309deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_30deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_310deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_311deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_312deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_313deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_314deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_315deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_316deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_317deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_318deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_319deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_31deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_320deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_321deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_322deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_323deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_324deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_325deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_326deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_327deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_328deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_329deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_32deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_330deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_331deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_332deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_333deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_334deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_335deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_336deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_337deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_338deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_339deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_33deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_340deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_341deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_342deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_343deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_344deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_345deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_346deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_347deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_348deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_349deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_34deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_350deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_351deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_352deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_353deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_354deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_355deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_356deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_357deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_358deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_359deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_35deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_36deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_37deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_38deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_39deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_3deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_40deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_41deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_42deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_43deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_44deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_45deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_46deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_47deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_48deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_49deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_4deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_50deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_51deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_52deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_53deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_54deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_55deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_56deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_57deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_58deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_59deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_60deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_61deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_62deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_63deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_64deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_65deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_66deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_67deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_68deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_69deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_6deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_70deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_71deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_72deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_73deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_74deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_76deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_77deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_78deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_79deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_7deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_80deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_81deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_82deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_83deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_84deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_85deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_86deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_87deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_88deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_89deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_8deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_90deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_91deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_92deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_93deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_94deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_95deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_96deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_97deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_98deg_24x24.h │ │ │ │ ├── wind_direction_meteorological_99deg_24x24.h │ │ │ │ └── wind_direction_meteorological_9deg_24x24.h │ │ │ ├── 32x32 │ │ │ │ ├── air_filter_32x32.h │ │ │ │ ├── battery_0_bar_0deg_32x32.h │ │ │ │ ├── battery_0_bar_180deg_32x32.h │ │ │ │ ├── battery_0_bar_270deg_32x32.h │ │ │ │ ├── battery_0_bar_90deg_32x32.h │ │ │ │ ├── battery_1_bar_0deg_32x32.h │ │ │ │ ├── battery_1_bar_180deg_32x32.h │ │ │ │ ├── battery_1_bar_270deg_32x32.h │ │ │ │ ├── battery_1_bar_90deg_32x32.h │ │ │ │ ├── battery_2_bar_0deg_32x32.h │ │ │ │ ├── battery_2_bar_180deg_32x32.h │ │ │ │ ├── battery_2_bar_270deg_32x32.h │ │ │ │ ├── battery_2_bar_90deg_32x32.h │ │ │ │ ├── battery_3_bar_0deg_32x32.h │ │ │ │ ├── battery_3_bar_180deg_32x32.h │ │ │ │ ├── battery_3_bar_270deg_32x32.h │ │ │ │ ├── battery_3_bar_90deg_32x32.h │ │ │ │ ├── battery_4_bar_0deg_32x32.h │ │ │ │ ├── battery_4_bar_180deg_32x32.h │ │ │ │ ├── battery_4_bar_270deg_32x32.h │ │ │ │ ├── battery_4_bar_90deg_32x32.h │ │ │ │ ├── battery_5_bar_0deg_32x32.h │ │ │ │ ├── battery_5_bar_180deg_32x32.h │ │ │ │ ├── battery_5_bar_270deg_32x32.h │ │ │ │ ├── battery_5_bar_90deg_32x32.h │ │ │ │ ├── battery_6_bar_0deg_32x32.h │ │ │ │ ├── battery_6_bar_180deg_32x32.h │ │ │ │ ├── battery_6_bar_270deg_32x32.h │ │ │ │ ├── battery_6_bar_90deg_32x32.h │ │ │ │ ├── battery_alert_0deg_32x32.h │ │ │ │ ├── battery_alert_180deg_32x32.h │ │ │ │ ├── battery_alert_270deg_32x32.h │ │ │ │ ├── battery_alert_90deg_32x32.h │ │ │ │ ├── battery_charging_full_0deg_32x32.h │ │ │ │ ├── battery_charging_full_180deg_32x32.h │ │ │ │ ├── battery_charging_full_270deg_32x32.h │ │ │ │ ├── battery_charging_full_90deg_32x32.h │ │ │ │ ├── battery_full_0deg_32x32.h │ │ │ │ ├── battery_full_180deg_32x32.h │ │ │ │ ├── battery_full_270deg_32x32.h │ │ │ │ ├── battery_full_90deg_32x32.h │ │ │ │ ├── biological_hazard_symbol_32x32.h │ │ │ │ ├── error_icon_32x32.h │ │ │ │ ├── house_32x32.h │ │ │ │ ├── house_humidity_32x32.h │ │ │ │ ├── house_raindrops_32x32.h │ │ │ │ ├── house_thermometer_32x32.h │ │ │ │ ├── ionizing_radiation_symbol_32x32.h │ │ │ │ ├── visibility_icon_32x32.h │ │ │ │ ├── warning_icon_32x32.h │ │ │ │ ├── wi_alien_32x32.h │ │ │ │ ├── wi_barometer_32x32.h │ │ │ │ ├── wi_celsius_32x32.h │ │ │ │ ├── wi_cloud_32x32.h │ │ │ │ ├── wi_cloud_down_32x32.h │ │ │ │ ├── wi_cloud_refresh_32x32.h │ │ │ │ ├── wi_cloud_up_32x32.h │ │ │ │ ├── wi_cloudy_32x32.h │ │ │ │ ├── wi_cloudy_gusts_32x32.h │ │ │ │ ├── wi_cloudy_windy_32x32.h │ │ │ │ ├── wi_day_cloudy_32x32.h │ │ │ │ ├── wi_day_cloudy_gusts_32x32.h │ │ │ │ ├── wi_day_cloudy_high_32x32.h │ │ │ │ ├── wi_day_cloudy_windy_32x32.h │ │ │ │ ├── wi_day_fog_32x32.h │ │ │ │ ├── wi_day_hail_32x32.h │ │ │ │ ├── wi_day_haze_32x32.h │ │ │ │ ├── wi_day_light_wind_32x32.h │ │ │ │ ├── wi_day_lightning_32x32.h │ │ │ │ ├── wi_day_rain_32x32.h │ │ │ │ ├── wi_day_rain_mix_32x32.h │ │ │ │ ├── wi_day_rain_wind_32x32.h │ │ │ │ ├── wi_day_showers_32x32.h │ │ │ │ ├── wi_day_sleet_32x32.h │ │ │ │ ├── wi_day_sleet_storm_32x32.h │ │ │ │ ├── wi_day_snow_32x32.h │ │ │ │ ├── wi_day_snow_thunderstorm_32x32.h │ │ │ │ ├── wi_day_snow_wind_32x32.h │ │ │ │ ├── wi_day_sprinkle_32x32.h │ │ │ │ ├── wi_day_storm_showers_32x32.h │ │ │ │ ├── wi_day_sunny_32x32.h │ │ │ │ ├── wi_day_sunny_overcast_32x32.h │ │ │ │ ├── wi_day_thunderstorm_32x32.h │ │ │ │ ├── wi_day_windy_32x32.h │ │ │ │ ├── wi_degrees_32x32.h │ │ │ │ ├── wi_direction_down_32x32.h │ │ │ │ ├── wi_direction_down_left_32x32.h │ │ │ │ ├── wi_direction_down_right_32x32.h │ │ │ │ ├── wi_direction_left_32x32.h │ │ │ │ ├── wi_direction_right_32x32.h │ │ │ │ ├── wi_direction_up_32x32.h │ │ │ │ ├── wi_direction_up_left_32x32.h │ │ │ │ ├── wi_direction_up_right_32x32.h │ │ │ │ ├── wi_dust_32x32.h │ │ │ │ ├── wi_earthquake_32x32.h │ │ │ │ ├── wi_fahrenheit_32x32.h │ │ │ │ ├── wi_fire_32x32.h │ │ │ │ ├── wi_flood_32x32.h │ │ │ │ ├── wi_fog_32x32.h │ │ │ │ ├── wi_gale_warning_32x32.h │ │ │ │ ├── wi_hail_32x32.h │ │ │ │ ├── wi_horizon_32x32.h │ │ │ │ ├── wi_horizon_alt_32x32.h │ │ │ │ ├── wi_hot_32x32.h │ │ │ │ ├── wi_humidity_32x32.h │ │ │ │ ├── wi_hurricane_32x32.h │ │ │ │ ├── wi_hurricane_warning_32x32.h │ │ │ │ ├── wi_lightning_32x32.h │ │ │ │ ├── wi_lunar_eclipse_32x32.h │ │ │ │ ├── wi_meteor_32x32.h │ │ │ │ ├── wi_moon_alt_first_quarter_32x32.h │ │ │ │ ├── wi_moon_alt_full_32x32.h │ │ │ │ ├── wi_moon_alt_new_32x32.h │ │ │ │ ├── wi_moon_alt_third_quarter_32x32.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_32x32.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_32x32.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_32x32.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_32x32.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_32x32.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_32x32.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_32x32.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_32x32.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_32x32.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_32x32.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_32x32.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_32x32.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_32x32.h │ │ │ │ ├── wi_moon_first_quarter_32x32.h │ │ │ │ ├── wi_moon_full_32x32.h │ │ │ │ ├── wi_moon_new_32x32.h │ │ │ │ ├── wi_moon_third_quarter_32x32.h │ │ │ │ ├── wi_moon_waning_crescent_1_32x32.h │ │ │ │ ├── wi_moon_waning_crescent_2_32x32.h │ │ │ │ ├── wi_moon_waning_crescent_3_32x32.h │ │ │ │ ├── wi_moon_waning_crescent_4_32x32.h │ │ │ │ ├── wi_moon_waning_crescent_5_32x32.h │ │ │ │ ├── wi_moon_waning_crescent_6_32x32.h │ │ │ │ ├── wi_moon_waning_gibbous_1_32x32.h │ │ │ │ ├── wi_moon_waning_gibbous_2_32x32.h │ │ │ │ ├── wi_moon_waning_gibbous_3_32x32.h │ │ │ │ ├── wi_moon_waning_gibbous_4_32x32.h │ │ │ │ ├── wi_moon_waning_gibbous_5_32x32.h │ │ │ │ ├── wi_moon_waning_gibbous_6_32x32.h │ │ │ │ ├── wi_moon_waxing_6_32x32.h │ │ │ │ ├── wi_moon_waxing_crescent_1_32x32.h │ │ │ │ ├── wi_moon_waxing_crescent_2_32x32.h │ │ │ │ ├── wi_moon_waxing_crescent_3_32x32.h │ │ │ │ ├── wi_moon_waxing_crescent_4_32x32.h │ │ │ │ ├── wi_moon_waxing_crescent_5_32x32.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_32x32.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_32x32.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_32x32.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_32x32.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_32x32.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_32x32.h │ │ │ │ ├── wi_moonrise_32x32.h │ │ │ │ ├── wi_moonset_32x32.h │ │ │ │ ├── wi_na_32x32.h │ │ │ │ ├── wi_night_alt_cloudy_32x32.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_32x32.h │ │ │ │ ├── wi_night_alt_cloudy_high_32x32.h │ │ │ │ ├── wi_night_alt_cloudy_windy_32x32.h │ │ │ │ ├── wi_night_alt_hail_32x32.h │ │ │ │ ├── wi_night_alt_lightning_32x32.h │ │ │ │ ├── wi_night_alt_partly_cloudy_32x32.h │ │ │ │ ├── wi_night_alt_rain_32x32.h │ │ │ │ ├── wi_night_alt_rain_mix_32x32.h │ │ │ │ ├── wi_night_alt_rain_wind_32x32.h │ │ │ │ ├── wi_night_alt_showers_32x32.h │ │ │ │ ├── wi_night_alt_sleet_32x32.h │ │ │ │ ├── wi_night_alt_sleet_storm_32x32.h │ │ │ │ ├── wi_night_alt_snow_32x32.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_32x32.h │ │ │ │ ├── wi_night_alt_snow_wind_32x32.h │ │ │ │ ├── wi_night_alt_sprinkle_32x32.h │ │ │ │ ├── wi_night_alt_storm_showers_32x32.h │ │ │ │ ├── wi_night_alt_thunderstorm_32x32.h │ │ │ │ ├── wi_night_clear_32x32.h │ │ │ │ ├── wi_night_cloudy_32x32.h │ │ │ │ ├── wi_night_cloudy_gusts_32x32.h │ │ │ │ ├── wi_night_cloudy_high_32x32.h │ │ │ │ ├── wi_night_cloudy_windy_32x32.h │ │ │ │ ├── wi_night_fog_32x32.h │ │ │ │ ├── wi_night_hail_32x32.h │ │ │ │ ├── wi_night_lightning_32x32.h │ │ │ │ ├── wi_night_partly_cloudy_32x32.h │ │ │ │ ├── wi_night_rain_32x32.h │ │ │ │ ├── wi_night_rain_mix_32x32.h │ │ │ │ ├── wi_night_rain_wind_32x32.h │ │ │ │ ├── wi_night_showers_32x32.h │ │ │ │ ├── wi_night_sleet_32x32.h │ │ │ │ ├── wi_night_sleet_storm_32x32.h │ │ │ │ ├── wi_night_snow_32x32.h │ │ │ │ ├── wi_night_snow_thunderstorm_32x32.h │ │ │ │ ├── wi_night_snow_wind_32x32.h │ │ │ │ ├── wi_night_sprinkle_32x32.h │ │ │ │ ├── wi_night_storm_showers_32x32.h │ │ │ │ ├── wi_night_thunderstorm_32x32.h │ │ │ │ ├── wi_rain_32x32.h │ │ │ │ ├── wi_rain_mix_32x32.h │ │ │ │ ├── wi_rain_wind_32x32.h │ │ │ │ ├── wi_raindrop_32x32.h │ │ │ │ ├── wi_raindrops_32x32.h │ │ │ │ ├── wi_refresh_32x32.h │ │ │ │ ├── wi_refresh_alt_32x32.h │ │ │ │ ├── wi_sandstorm_32x32.h │ │ │ │ ├── wi_showers_32x32.h │ │ │ │ ├── wi_sleet_32x32.h │ │ │ │ ├── wi_small_craft_advisory_32x32.h │ │ │ │ ├── wi_smog_32x32.h │ │ │ │ ├── wi_smoke_32x32.h │ │ │ │ ├── wi_snow_32x32.h │ │ │ │ ├── wi_snow_wind_32x32.h │ │ │ │ ├── wi_snowflake_cold_32x32.h │ │ │ │ ├── wi_solar_eclipse_32x32.h │ │ │ │ ├── wi_sprinkle_32x32.h │ │ │ │ ├── wi_stars_32x32.h │ │ │ │ ├── wi_storm_showers_32x32.h │ │ │ │ ├── wi_storm_warning_32x32.h │ │ │ │ ├── wi_strong_wind_32x32.h │ │ │ │ ├── wi_sunrise_32x32.h │ │ │ │ ├── wi_sunset_32x32.h │ │ │ │ ├── wi_thermometer_32x32.h │ │ │ │ ├── wi_thermometer_exterior_32x32.h │ │ │ │ ├── wi_thermometer_internal_32x32.h │ │ │ │ ├── wi_thunderstorm_32x32.h │ │ │ │ ├── wi_time_10_32x32.h │ │ │ │ ├── wi_time_11_32x32.h │ │ │ │ ├── wi_time_12_32x32.h │ │ │ │ ├── wi_time_1_32x32.h │ │ │ │ ├── wi_time_2_32x32.h │ │ │ │ ├── wi_time_3_32x32.h │ │ │ │ ├── wi_time_4_32x32.h │ │ │ │ ├── wi_time_5_32x32.h │ │ │ │ ├── wi_time_6_32x32.h │ │ │ │ ├── wi_time_7_32x32.h │ │ │ │ ├── wi_time_8_32x32.h │ │ │ │ ├── wi_time_9_32x32.h │ │ │ │ ├── wi_tornado_32x32.h │ │ │ │ ├── wi_train_32x32.h │ │ │ │ ├── wi_tsunami_32x32.h │ │ │ │ ├── wi_umbrella_32x32.h │ │ │ │ ├── wi_volcano_32x32.h │ │ │ │ ├── wi_wind_0deg_32x32.h │ │ │ │ ├── wi_wind_100deg_32x32.h │ │ │ │ ├── wi_wind_101_25deg_32x32.h │ │ │ │ ├── wi_wind_101deg_32x32.h │ │ │ │ ├── wi_wind_102deg_32x32.h │ │ │ │ ├── wi_wind_103deg_32x32.h │ │ │ │ ├── wi_wind_104deg_32x32.h │ │ │ │ ├── wi_wind_105deg_32x32.h │ │ │ │ ├── wi_wind_106deg_32x32.h │ │ │ │ ├── wi_wind_107deg_32x32.h │ │ │ │ ├── wi_wind_108deg_32x32.h │ │ │ │ ├── wi_wind_109deg_32x32.h │ │ │ │ ├── wi_wind_10deg_32x32.h │ │ │ │ ├── wi_wind_110deg_32x32.h │ │ │ │ ├── wi_wind_111deg_32x32.h │ │ │ │ ├── wi_wind_112_5deg_32x32.h │ │ │ │ ├── wi_wind_112deg_32x32.h │ │ │ │ ├── wi_wind_113deg_32x32.h │ │ │ │ ├── wi_wind_114deg_32x32.h │ │ │ │ ├── wi_wind_115deg_32x32.h │ │ │ │ ├── wi_wind_116deg_32x32.h │ │ │ │ ├── wi_wind_117deg_32x32.h │ │ │ │ ├── wi_wind_118deg_32x32.h │ │ │ │ ├── wi_wind_119deg_32x32.h │ │ │ │ ├── wi_wind_11_25deg_32x32.h │ │ │ │ ├── wi_wind_11deg_32x32.h │ │ │ │ ├── wi_wind_120deg_32x32.h │ │ │ │ ├── wi_wind_121deg_32x32.h │ │ │ │ ├── wi_wind_122deg_32x32.h │ │ │ │ ├── wi_wind_123_75deg_32x32.h │ │ │ │ ├── wi_wind_123deg_32x32.h │ │ │ │ ├── wi_wind_124deg_32x32.h │ │ │ │ ├── wi_wind_125deg_32x32.h │ │ │ │ ├── wi_wind_126deg_32x32.h │ │ │ │ ├── wi_wind_127deg_32x32.h │ │ │ │ ├── wi_wind_128deg_32x32.h │ │ │ │ ├── wi_wind_129deg_32x32.h │ │ │ │ ├── wi_wind_12deg_32x32.h │ │ │ │ ├── wi_wind_130deg_32x32.h │ │ │ │ ├── wi_wind_131deg_32x32.h │ │ │ │ ├── wi_wind_132deg_32x32.h │ │ │ │ ├── wi_wind_133deg_32x32.h │ │ │ │ ├── wi_wind_134deg_32x32.h │ │ │ │ ├── wi_wind_135deg_32x32.h │ │ │ │ ├── wi_wind_136deg_32x32.h │ │ │ │ ├── wi_wind_137deg_32x32.h │ │ │ │ ├── wi_wind_138deg_32x32.h │ │ │ │ ├── wi_wind_139deg_32x32.h │ │ │ │ ├── wi_wind_13deg_32x32.h │ │ │ │ ├── wi_wind_140deg_32x32.h │ │ │ │ ├── wi_wind_141deg_32x32.h │ │ │ │ ├── wi_wind_142deg_32x32.h │ │ │ │ ├── wi_wind_143deg_32x32.h │ │ │ │ ├── wi_wind_144deg_32x32.h │ │ │ │ ├── wi_wind_145deg_32x32.h │ │ │ │ ├── wi_wind_146_25deg_32x32.h │ │ │ │ ├── wi_wind_146deg_32x32.h │ │ │ │ ├── wi_wind_147deg_32x32.h │ │ │ │ ├── wi_wind_148deg_32x32.h │ │ │ │ ├── wi_wind_149deg_32x32.h │ │ │ │ ├── wi_wind_14deg_32x32.h │ │ │ │ ├── wi_wind_150deg_32x32.h │ │ │ │ ├── wi_wind_151deg_32x32.h │ │ │ │ ├── wi_wind_152deg_32x32.h │ │ │ │ ├── wi_wind_153deg_32x32.h │ │ │ │ ├── wi_wind_154deg_32x32.h │ │ │ │ ├── wi_wind_155deg_32x32.h │ │ │ │ ├── wi_wind_156deg_32x32.h │ │ │ │ ├── wi_wind_157_5deg_32x32.h │ │ │ │ ├── wi_wind_157deg_32x32.h │ │ │ │ ├── wi_wind_158deg_32x32.h │ │ │ │ ├── wi_wind_159deg_32x32.h │ │ │ │ ├── wi_wind_15deg_32x32.h │ │ │ │ ├── wi_wind_160deg_32x32.h │ │ │ │ ├── wi_wind_161deg_32x32.h │ │ │ │ ├── wi_wind_162deg_32x32.h │ │ │ │ ├── wi_wind_163deg_32x32.h │ │ │ │ ├── wi_wind_164deg_32x32.h │ │ │ │ ├── wi_wind_165deg_32x32.h │ │ │ │ ├── wi_wind_166deg_32x32.h │ │ │ │ ├── wi_wind_167deg_32x32.h │ │ │ │ ├── wi_wind_168_75deg_32x32.h │ │ │ │ ├── wi_wind_168deg_32x32.h │ │ │ │ ├── wi_wind_169deg_32x32.h │ │ │ │ ├── wi_wind_16deg_32x32.h │ │ │ │ ├── wi_wind_170deg_32x32.h │ │ │ │ ├── wi_wind_171deg_32x32.h │ │ │ │ ├── wi_wind_172deg_32x32.h │ │ │ │ ├── wi_wind_173deg_32x32.h │ │ │ │ ├── wi_wind_174deg_32x32.h │ │ │ │ ├── wi_wind_175deg_32x32.h │ │ │ │ ├── wi_wind_176deg_32x32.h │ │ │ │ ├── wi_wind_177deg_32x32.h │ │ │ │ ├── wi_wind_178deg_32x32.h │ │ │ │ ├── wi_wind_179deg_32x32.h │ │ │ │ ├── wi_wind_17deg_32x32.h │ │ │ │ ├── wi_wind_180deg_32x32.h │ │ │ │ ├── wi_wind_181deg_32x32.h │ │ │ │ ├── wi_wind_182deg_32x32.h │ │ │ │ ├── wi_wind_183deg_32x32.h │ │ │ │ ├── wi_wind_184deg_32x32.h │ │ │ │ ├── wi_wind_185deg_32x32.h │ │ │ │ ├── wi_wind_186deg_32x32.h │ │ │ │ ├── wi_wind_187deg_32x32.h │ │ │ │ ├── wi_wind_188deg_32x32.h │ │ │ │ ├── wi_wind_189deg_32x32.h │ │ │ │ ├── wi_wind_18deg_32x32.h │ │ │ │ ├── wi_wind_190deg_32x32.h │ │ │ │ ├── wi_wind_191_25deg_32x32.h │ │ │ │ ├── wi_wind_191deg_32x32.h │ │ │ │ ├── wi_wind_192deg_32x32.h │ │ │ │ ├── wi_wind_193deg_32x32.h │ │ │ │ ├── wi_wind_194deg_32x32.h │ │ │ │ ├── wi_wind_195deg_32x32.h │ │ │ │ ├── wi_wind_196deg_32x32.h │ │ │ │ ├── wi_wind_197deg_32x32.h │ │ │ │ ├── wi_wind_198deg_32x32.h │ │ │ │ ├── wi_wind_199deg_32x32.h │ │ │ │ ├── wi_wind_19deg_32x32.h │ │ │ │ ├── wi_wind_1deg_32x32.h │ │ │ │ ├── wi_wind_200deg_32x32.h │ │ │ │ ├── wi_wind_201deg_32x32.h │ │ │ │ ├── wi_wind_202_5deg_32x32.h │ │ │ │ ├── wi_wind_202deg_32x32.h │ │ │ │ ├── wi_wind_203deg_32x32.h │ │ │ │ ├── wi_wind_204deg_32x32.h │ │ │ │ ├── wi_wind_205deg_32x32.h │ │ │ │ ├── wi_wind_206deg_32x32.h │ │ │ │ ├── wi_wind_207deg_32x32.h │ │ │ │ ├── wi_wind_208deg_32x32.h │ │ │ │ ├── wi_wind_209deg_32x32.h │ │ │ │ ├── wi_wind_20deg_32x32.h │ │ │ │ ├── wi_wind_210deg_32x32.h │ │ │ │ ├── wi_wind_211deg_32x32.h │ │ │ │ ├── wi_wind_212deg_32x32.h │ │ │ │ ├── wi_wind_213_75deg_32x32.h │ │ │ │ ├── wi_wind_213deg_32x32.h │ │ │ │ ├── wi_wind_214deg_32x32.h │ │ │ │ ├── wi_wind_215deg_32x32.h │ │ │ │ ├── wi_wind_216deg_32x32.h │ │ │ │ ├── wi_wind_217deg_32x32.h │ │ │ │ ├── wi_wind_218deg_32x32.h │ │ │ │ ├── wi_wind_219deg_32x32.h │ │ │ │ ├── wi_wind_21deg_32x32.h │ │ │ │ ├── wi_wind_220deg_32x32.h │ │ │ │ ├── wi_wind_221deg_32x32.h │ │ │ │ ├── wi_wind_222deg_32x32.h │ │ │ │ ├── wi_wind_223deg_32x32.h │ │ │ │ ├── wi_wind_224deg_32x32.h │ │ │ │ ├── wi_wind_225deg_32x32.h │ │ │ │ ├── wi_wind_226deg_32x32.h │ │ │ │ ├── wi_wind_227deg_32x32.h │ │ │ │ ├── wi_wind_228deg_32x32.h │ │ │ │ ├── wi_wind_229deg_32x32.h │ │ │ │ ├── wi_wind_22_5deg_32x32.h │ │ │ │ ├── wi_wind_22deg_32x32.h │ │ │ │ ├── wi_wind_230deg_32x32.h │ │ │ │ ├── wi_wind_231deg_32x32.h │ │ │ │ ├── wi_wind_232deg_32x32.h │ │ │ │ ├── wi_wind_233deg_32x32.h │ │ │ │ ├── wi_wind_234deg_32x32.h │ │ │ │ ├── wi_wind_235deg_32x32.h │ │ │ │ ├── wi_wind_236_25deg_32x32.h │ │ │ │ ├── wi_wind_236deg_32x32.h │ │ │ │ ├── wi_wind_237deg_32x32.h │ │ │ │ ├── wi_wind_238deg_32x32.h │ │ │ │ ├── wi_wind_239deg_32x32.h │ │ │ │ ├── wi_wind_23deg_32x32.h │ │ │ │ ├── wi_wind_240deg_32x32.h │ │ │ │ ├── wi_wind_241deg_32x32.h │ │ │ │ ├── wi_wind_242deg_32x32.h │ │ │ │ ├── wi_wind_243deg_32x32.h │ │ │ │ ├── wi_wind_244deg_32x32.h │ │ │ │ ├── wi_wind_245deg_32x32.h │ │ │ │ ├── wi_wind_246deg_32x32.h │ │ │ │ ├── wi_wind_247_5deg_32x32.h │ │ │ │ ├── wi_wind_247deg_32x32.h │ │ │ │ ├── wi_wind_248deg_32x32.h │ │ │ │ ├── wi_wind_249deg_32x32.h │ │ │ │ ├── wi_wind_24deg_32x32.h │ │ │ │ ├── wi_wind_250deg_32x32.h │ │ │ │ ├── wi_wind_251deg_32x32.h │ │ │ │ ├── wi_wind_252deg_32x32.h │ │ │ │ ├── wi_wind_253deg_32x32.h │ │ │ │ ├── wi_wind_254deg_32x32.h │ │ │ │ ├── wi_wind_255deg_32x32.h │ │ │ │ ├── wi_wind_256deg_32x32.h │ │ │ │ ├── wi_wind_257deg_32x32.h │ │ │ │ ├── wi_wind_258_75deg_32x32.h │ │ │ │ ├── wi_wind_258deg_32x32.h │ │ │ │ ├── wi_wind_259deg_32x32.h │ │ │ │ ├── wi_wind_25deg_32x32.h │ │ │ │ ├── wi_wind_260deg_32x32.h │ │ │ │ ├── wi_wind_261deg_32x32.h │ │ │ │ ├── wi_wind_262deg_32x32.h │ │ │ │ ├── wi_wind_263deg_32x32.h │ │ │ │ ├── wi_wind_264deg_32x32.h │ │ │ │ ├── wi_wind_265deg_32x32.h │ │ │ │ ├── wi_wind_266deg_32x32.h │ │ │ │ ├── wi_wind_267deg_32x32.h │ │ │ │ ├── wi_wind_268deg_32x32.h │ │ │ │ ├── wi_wind_269deg_32x32.h │ │ │ │ ├── wi_wind_26deg_32x32.h │ │ │ │ ├── wi_wind_270deg_32x32.h │ │ │ │ ├── wi_wind_271deg_32x32.h │ │ │ │ ├── wi_wind_272deg_32x32.h │ │ │ │ ├── wi_wind_273deg_32x32.h │ │ │ │ ├── wi_wind_274deg_32x32.h │ │ │ │ ├── wi_wind_275deg_32x32.h │ │ │ │ ├── wi_wind_276deg_32x32.h │ │ │ │ ├── wi_wind_277deg_32x32.h │ │ │ │ ├── wi_wind_278deg_32x32.h │ │ │ │ ├── wi_wind_279deg_32x32.h │ │ │ │ ├── wi_wind_27deg_32x32.h │ │ │ │ ├── wi_wind_280deg_32x32.h │ │ │ │ ├── wi_wind_281_25deg_32x32.h │ │ │ │ ├── wi_wind_281deg_32x32.h │ │ │ │ ├── wi_wind_282deg_32x32.h │ │ │ │ ├── wi_wind_283deg_32x32.h │ │ │ │ ├── wi_wind_284deg_32x32.h │ │ │ │ ├── wi_wind_285deg_32x32.h │ │ │ │ ├── wi_wind_286deg_32x32.h │ │ │ │ ├── wi_wind_287deg_32x32.h │ │ │ │ ├── wi_wind_288deg_32x32.h │ │ │ │ ├── wi_wind_289deg_32x32.h │ │ │ │ ├── wi_wind_28deg_32x32.h │ │ │ │ ├── wi_wind_290deg_32x32.h │ │ │ │ ├── wi_wind_291deg_32x32.h │ │ │ │ ├── wi_wind_292_5deg_32x32.h │ │ │ │ ├── wi_wind_292deg_32x32.h │ │ │ │ ├── wi_wind_293deg_32x32.h │ │ │ │ ├── wi_wind_294deg_32x32.h │ │ │ │ ├── wi_wind_295deg_32x32.h │ │ │ │ ├── wi_wind_296deg_32x32.h │ │ │ │ ├── wi_wind_297deg_32x32.h │ │ │ │ ├── wi_wind_298deg_32x32.h │ │ │ │ ├── wi_wind_299deg_32x32.h │ │ │ │ ├── wi_wind_29deg_32x32.h │ │ │ │ ├── wi_wind_2deg_32x32.h │ │ │ │ ├── wi_wind_300deg_32x32.h │ │ │ │ ├── wi_wind_301deg_32x32.h │ │ │ │ ├── wi_wind_302deg_32x32.h │ │ │ │ ├── wi_wind_303_75deg_32x32.h │ │ │ │ ├── wi_wind_303deg_32x32.h │ │ │ │ ├── wi_wind_304deg_32x32.h │ │ │ │ ├── wi_wind_305deg_32x32.h │ │ │ │ ├── wi_wind_306deg_32x32.h │ │ │ │ ├── wi_wind_307deg_32x32.h │ │ │ │ ├── wi_wind_308deg_32x32.h │ │ │ │ ├── wi_wind_309deg_32x32.h │ │ │ │ ├── wi_wind_30deg_32x32.h │ │ │ │ ├── wi_wind_310deg_32x32.h │ │ │ │ ├── wi_wind_311deg_32x32.h │ │ │ │ ├── wi_wind_312deg_32x32.h │ │ │ │ ├── wi_wind_313deg_32x32.h │ │ │ │ ├── wi_wind_314deg_32x32.h │ │ │ │ ├── wi_wind_315deg_32x32.h │ │ │ │ ├── wi_wind_316deg_32x32.h │ │ │ │ ├── wi_wind_317deg_32x32.h │ │ │ │ ├── wi_wind_318deg_32x32.h │ │ │ │ ├── wi_wind_319deg_32x32.h │ │ │ │ ├── wi_wind_31deg_32x32.h │ │ │ │ ├── wi_wind_320deg_32x32.h │ │ │ │ ├── wi_wind_321deg_32x32.h │ │ │ │ ├── wi_wind_322deg_32x32.h │ │ │ │ ├── wi_wind_323deg_32x32.h │ │ │ │ ├── wi_wind_324deg_32x32.h │ │ │ │ ├── wi_wind_325deg_32x32.h │ │ │ │ ├── wi_wind_326_25deg_32x32.h │ │ │ │ ├── wi_wind_326deg_32x32.h │ │ │ │ ├── wi_wind_327deg_32x32.h │ │ │ │ ├── wi_wind_328deg_32x32.h │ │ │ │ ├── wi_wind_329deg_32x32.h │ │ │ │ ├── wi_wind_32deg_32x32.h │ │ │ │ ├── wi_wind_330deg_32x32.h │ │ │ │ ├── wi_wind_331deg_32x32.h │ │ │ │ ├── wi_wind_332deg_32x32.h │ │ │ │ ├── wi_wind_333deg_32x32.h │ │ │ │ ├── wi_wind_334deg_32x32.h │ │ │ │ ├── wi_wind_335deg_32x32.h │ │ │ │ ├── wi_wind_336deg_32x32.h │ │ │ │ ├── wi_wind_337_5deg_32x32.h │ │ │ │ ├── wi_wind_337deg_32x32.h │ │ │ │ ├── wi_wind_338deg_32x32.h │ │ │ │ ├── wi_wind_339deg_32x32.h │ │ │ │ ├── wi_wind_33_75deg_32x32.h │ │ │ │ ├── wi_wind_33deg_32x32.h │ │ │ │ ├── wi_wind_340deg_32x32.h │ │ │ │ ├── wi_wind_341deg_32x32.h │ │ │ │ ├── wi_wind_342deg_32x32.h │ │ │ │ ├── wi_wind_343deg_32x32.h │ │ │ │ ├── wi_wind_344deg_32x32.h │ │ │ │ ├── wi_wind_345deg_32x32.h │ │ │ │ ├── wi_wind_346deg_32x32.h │ │ │ │ ├── wi_wind_347deg_32x32.h │ │ │ │ ├── wi_wind_348_75deg_32x32.h │ │ │ │ ├── wi_wind_348deg_32x32.h │ │ │ │ ├── wi_wind_349deg_32x32.h │ │ │ │ ├── wi_wind_34deg_32x32.h │ │ │ │ ├── wi_wind_350deg_32x32.h │ │ │ │ ├── wi_wind_351deg_32x32.h │ │ │ │ ├── wi_wind_352deg_32x32.h │ │ │ │ ├── wi_wind_353deg_32x32.h │ │ │ │ ├── wi_wind_354deg_32x32.h │ │ │ │ ├── wi_wind_355deg_32x32.h │ │ │ │ ├── wi_wind_356deg_32x32.h │ │ │ │ ├── wi_wind_357deg_32x32.h │ │ │ │ ├── wi_wind_358deg_32x32.h │ │ │ │ ├── wi_wind_359deg_32x32.h │ │ │ │ ├── wi_wind_35deg_32x32.h │ │ │ │ ├── wi_wind_36deg_32x32.h │ │ │ │ ├── wi_wind_37deg_32x32.h │ │ │ │ ├── wi_wind_38deg_32x32.h │ │ │ │ ├── wi_wind_39deg_32x32.h │ │ │ │ ├── wi_wind_3deg_32x32.h │ │ │ │ ├── wi_wind_40deg_32x32.h │ │ │ │ ├── wi_wind_41deg_32x32.h │ │ │ │ ├── wi_wind_42deg_32x32.h │ │ │ │ ├── wi_wind_43deg_32x32.h │ │ │ │ ├── wi_wind_44deg_32x32.h │ │ │ │ ├── wi_wind_45deg_32x32.h │ │ │ │ ├── wi_wind_46deg_32x32.h │ │ │ │ ├── wi_wind_47deg_32x32.h │ │ │ │ ├── wi_wind_48deg_32x32.h │ │ │ │ ├── wi_wind_49deg_32x32.h │ │ │ │ ├── wi_wind_4deg_32x32.h │ │ │ │ ├── wi_wind_50deg_32x32.h │ │ │ │ ├── wi_wind_51deg_32x32.h │ │ │ │ ├── wi_wind_52deg_32x32.h │ │ │ │ ├── wi_wind_53deg_32x32.h │ │ │ │ ├── wi_wind_54deg_32x32.h │ │ │ │ ├── wi_wind_55deg_32x32.h │ │ │ │ ├── wi_wind_56_25deg_32x32.h │ │ │ │ ├── wi_wind_56deg_32x32.h │ │ │ │ ├── wi_wind_57deg_32x32.h │ │ │ │ ├── wi_wind_58deg_32x32.h │ │ │ │ ├── wi_wind_59deg_32x32.h │ │ │ │ ├── wi_wind_5deg_32x32.h │ │ │ │ ├── wi_wind_60deg_32x32.h │ │ │ │ ├── wi_wind_61deg_32x32.h │ │ │ │ ├── wi_wind_62deg_32x32.h │ │ │ │ ├── wi_wind_63deg_32x32.h │ │ │ │ ├── wi_wind_64deg_32x32.h │ │ │ │ ├── wi_wind_65deg_32x32.h │ │ │ │ ├── wi_wind_66deg_32x32.h │ │ │ │ ├── wi_wind_67_5deg_32x32.h │ │ │ │ ├── wi_wind_67deg_32x32.h │ │ │ │ ├── wi_wind_68deg_32x32.h │ │ │ │ ├── wi_wind_69deg_32x32.h │ │ │ │ ├── wi_wind_6deg_32x32.h │ │ │ │ ├── wi_wind_70deg_32x32.h │ │ │ │ ├── wi_wind_71deg_32x32.h │ │ │ │ ├── wi_wind_72deg_32x32.h │ │ │ │ ├── wi_wind_73deg_32x32.h │ │ │ │ ├── wi_wind_74deg_32x32.h │ │ │ │ ├── wi_wind_75deg_32x32.h │ │ │ │ ├── wi_wind_76deg_32x32.h │ │ │ │ ├── wi_wind_77deg_32x32.h │ │ │ │ ├── wi_wind_78_75deg_32x32.h │ │ │ │ ├── wi_wind_78deg_32x32.h │ │ │ │ ├── wi_wind_79deg_32x32.h │ │ │ │ ├── wi_wind_7deg_32x32.h │ │ │ │ ├── wi_wind_80deg_32x32.h │ │ │ │ ├── wi_wind_81deg_32x32.h │ │ │ │ ├── wi_wind_82deg_32x32.h │ │ │ │ ├── wi_wind_83deg_32x32.h │ │ │ │ ├── wi_wind_84deg_32x32.h │ │ │ │ ├── wi_wind_85deg_32x32.h │ │ │ │ ├── wi_wind_86deg_32x32.h │ │ │ │ ├── wi_wind_87deg_32x32.h │ │ │ │ ├── wi_wind_88deg_32x32.h │ │ │ │ ├── wi_wind_89deg_32x32.h │ │ │ │ ├── wi_wind_8deg_32x32.h │ │ │ │ ├── wi_wind_90deg_32x32.h │ │ │ │ ├── wi_wind_91deg_32x32.h │ │ │ │ ├── wi_wind_92deg_32x32.h │ │ │ │ ├── wi_wind_93deg_32x32.h │ │ │ │ ├── wi_wind_94deg_32x32.h │ │ │ │ ├── wi_wind_95deg_32x32.h │ │ │ │ ├── wi_wind_96deg_32x32.h │ │ │ │ ├── wi_wind_97deg_32x32.h │ │ │ │ ├── wi_wind_98deg_32x32.h │ │ │ │ ├── wi_wind_99deg_32x32.h │ │ │ │ ├── wi_wind_9deg_32x32.h │ │ │ │ ├── wi_wind_beaufort_0_32x32.h │ │ │ │ ├── wi_wind_beaufort_10_32x32.h │ │ │ │ ├── wi_wind_beaufort_11_32x32.h │ │ │ │ ├── wi_wind_beaufort_12_32x32.h │ │ │ │ ├── wi_wind_beaufort_1_32x32.h │ │ │ │ ├── wi_wind_beaufort_2_32x32.h │ │ │ │ ├── wi_wind_beaufort_3_32x32.h │ │ │ │ ├── wi_wind_beaufort_4_32x32.h │ │ │ │ ├── wi_wind_beaufort_5_32x32.h │ │ │ │ ├── wi_wind_beaufort_6_32x32.h │ │ │ │ ├── wi_wind_beaufort_7_32x32.h │ │ │ │ ├── wi_wind_beaufort_8_32x32.h │ │ │ │ ├── wi_wind_beaufort_9_32x32.h │ │ │ │ ├── wi_windy_32x32.h │ │ │ │ ├── wifi_1_bar_32x32.h │ │ │ │ ├── wifi_2_bar_32x32.h │ │ │ │ ├── wifi_32x32.h │ │ │ │ ├── wifi_3_bar_32x32.h │ │ │ │ ├── wifi_off_32x32.h │ │ │ │ ├── wifi_x_32x32.h │ │ │ │ ├── wind_direction_meteorological_0deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_100deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_101deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_102deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_103deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_104deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_105deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_106deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_107deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_108deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_109deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_10deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_110deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_111deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_112deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_113deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_114deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_115deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_116deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_117deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_118deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_119deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_11deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_120deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_121deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_122deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_123deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_124deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_125deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_126deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_127deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_128deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_129deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_12deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_130deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_131deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_132deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_133deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_134deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_135deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_136deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_137deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_138deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_139deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_13deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_140deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_141deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_142deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_143deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_144deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_145deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_146deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_147deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_148deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_149deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_14deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_150deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_151deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_152deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_153deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_154deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_155deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_156deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_157deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_158deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_159deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_15deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_160deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_161deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_162deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_163deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_164deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_165deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_166deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_167deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_168deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_169deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_16deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_170deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_171deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_172deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_173deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_174deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_175deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_176deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_177deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_178deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_179deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_17deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_180deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_181deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_182deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_183deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_184deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_185deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_186deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_187deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_188deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_189deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_18deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_190deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_191deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_192deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_193deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_194deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_195deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_196deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_197deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_198deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_199deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_19deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_1deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_200deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_201deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_202deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_203deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_204deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_205deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_206deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_207deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_208deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_209deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_20deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_210deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_211deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_212deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_213deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_214deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_215deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_216deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_217deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_218deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_219deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_21deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_220deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_221deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_222deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_223deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_224deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_225deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_226deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_227deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_228deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_229deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_22deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_230deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_231deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_232deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_233deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_234deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_235deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_236deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_237deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_238deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_239deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_23deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_240deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_241deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_242deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_243deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_244deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_245deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_246deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_247deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_248deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_249deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_24deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_250deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_251deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_252deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_253deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_254deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_255deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_256deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_257deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_258deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_259deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_260deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_261deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_262deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_263deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_264deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_265deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_266deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_267deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_268deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_269deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_26deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_270deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_271deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_272deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_273deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_274deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_275deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_276deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_277deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_278deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_279deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_27deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_280deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_281deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_282deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_283deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_284deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_285deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_286deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_287deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_288deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_289deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_28deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_290deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_291deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_292deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_293deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_294deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_295deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_296deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_297deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_298deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_299deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_29deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_2deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_300deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_301deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_302deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_303deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_304deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_305deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_306deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_307deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_308deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_309deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_30deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_310deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_311deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_312deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_313deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_314deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_315deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_316deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_317deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_318deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_319deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_31deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_320deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_321deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_322deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_323deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_324deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_325deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_326deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_327deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_328deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_329deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_32deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_330deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_331deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_332deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_333deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_334deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_335deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_336deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_337deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_338deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_339deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_33deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_340deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_341deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_342deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_343deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_344deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_345deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_346deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_347deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_348deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_349deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_34deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_350deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_351deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_352deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_353deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_354deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_355deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_356deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_357deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_358deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_359deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_35deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_36deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_37deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_38deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_39deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_3deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_40deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_41deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_42deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_43deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_44deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_45deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_46deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_47deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_48deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_49deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_4deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_50deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_51deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_52deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_53deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_54deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_55deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_56deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_57deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_58deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_59deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_60deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_61deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_62deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_63deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_64deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_65deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_66deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_67deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_68deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_69deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_6deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_70deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_71deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_72deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_73deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_74deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_76deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_77deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_78deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_79deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_7deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_80deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_81deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_82deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_83deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_84deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_85deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_86deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_87deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_88deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_89deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_8deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_90deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_91deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_92deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_93deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_94deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_95deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_96deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_97deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_98deg_32x32.h │ │ │ │ ├── wind_direction_meteorological_99deg_32x32.h │ │ │ │ └── wind_direction_meteorological_9deg_32x32.h │ │ │ ├── 48x48 │ │ │ │ ├── air_filter_48x48.h │ │ │ │ ├── battery_0_bar_0deg_48x48.h │ │ │ │ ├── battery_0_bar_180deg_48x48.h │ │ │ │ ├── battery_0_bar_270deg_48x48.h │ │ │ │ ├── battery_0_bar_90deg_48x48.h │ │ │ │ ├── battery_1_bar_0deg_48x48.h │ │ │ │ ├── battery_1_bar_180deg_48x48.h │ │ │ │ ├── battery_1_bar_270deg_48x48.h │ │ │ │ ├── battery_1_bar_90deg_48x48.h │ │ │ │ ├── battery_2_bar_0deg_48x48.h │ │ │ │ ├── battery_2_bar_180deg_48x48.h │ │ │ │ ├── battery_2_bar_270deg_48x48.h │ │ │ │ ├── battery_2_bar_90deg_48x48.h │ │ │ │ ├── battery_3_bar_0deg_48x48.h │ │ │ │ ├── battery_3_bar_180deg_48x48.h │ │ │ │ ├── battery_3_bar_270deg_48x48.h │ │ │ │ ├── battery_3_bar_90deg_48x48.h │ │ │ │ ├── battery_4_bar_0deg_48x48.h │ │ │ │ ├── battery_4_bar_180deg_48x48.h │ │ │ │ ├── battery_4_bar_270deg_48x48.h │ │ │ │ ├── battery_4_bar_90deg_48x48.h │ │ │ │ ├── battery_5_bar_0deg_48x48.h │ │ │ │ ├── battery_5_bar_180deg_48x48.h │ │ │ │ ├── battery_5_bar_270deg_48x48.h │ │ │ │ ├── battery_5_bar_90deg_48x48.h │ │ │ │ ├── battery_6_bar_0deg_48x48.h │ │ │ │ ├── battery_6_bar_180deg_48x48.h │ │ │ │ ├── battery_6_bar_270deg_48x48.h │ │ │ │ ├── battery_6_bar_90deg_48x48.h │ │ │ │ ├── battery_alert_0deg_48x48.h │ │ │ │ ├── battery_alert_180deg_48x48.h │ │ │ │ ├── battery_alert_270deg_48x48.h │ │ │ │ ├── battery_alert_90deg_48x48.h │ │ │ │ ├── battery_charging_full_0deg_48x48.h │ │ │ │ ├── battery_charging_full_180deg_48x48.h │ │ │ │ ├── battery_charging_full_270deg_48x48.h │ │ │ │ ├── battery_charging_full_90deg_48x48.h │ │ │ │ ├── battery_full_0deg_48x48.h │ │ │ │ ├── battery_full_180deg_48x48.h │ │ │ │ ├── battery_full_270deg_48x48.h │ │ │ │ ├── battery_full_90deg_48x48.h │ │ │ │ ├── biological_hazard_symbol_48x48.h │ │ │ │ ├── error_icon_48x48.h │ │ │ │ ├── house_48x48.h │ │ │ │ ├── house_humidity_48x48.h │ │ │ │ ├── house_raindrops_48x48.h │ │ │ │ ├── house_thermometer_48x48.h │ │ │ │ ├── ionizing_radiation_symbol_48x48.h │ │ │ │ ├── visibility_icon_48x48.h │ │ │ │ ├── warning_icon_48x48.h │ │ │ │ ├── wi_alien_48x48.h │ │ │ │ ├── wi_barometer_48x48.h │ │ │ │ ├── wi_celsius_48x48.h │ │ │ │ ├── wi_cloud_48x48.h │ │ │ │ ├── wi_cloud_down_48x48.h │ │ │ │ ├── wi_cloud_refresh_48x48.h │ │ │ │ ├── wi_cloud_up_48x48.h │ │ │ │ ├── wi_cloudy_48x48.h │ │ │ │ ├── wi_cloudy_gusts_48x48.h │ │ │ │ ├── wi_cloudy_windy_48x48.h │ │ │ │ ├── wi_day_cloudy_48x48.h │ │ │ │ ├── wi_day_cloudy_gusts_48x48.h │ │ │ │ ├── wi_day_cloudy_high_48x48.h │ │ │ │ ├── wi_day_cloudy_windy_48x48.h │ │ │ │ ├── wi_day_fog_48x48.h │ │ │ │ ├── wi_day_hail_48x48.h │ │ │ │ ├── wi_day_haze_48x48.h │ │ │ │ ├── wi_day_light_wind_48x48.h │ │ │ │ ├── wi_day_lightning_48x48.h │ │ │ │ ├── wi_day_rain_48x48.h │ │ │ │ ├── wi_day_rain_mix_48x48.h │ │ │ │ ├── wi_day_rain_wind_48x48.h │ │ │ │ ├── wi_day_showers_48x48.h │ │ │ │ ├── wi_day_sleet_48x48.h │ │ │ │ ├── wi_day_sleet_storm_48x48.h │ │ │ │ ├── wi_day_snow_48x48.h │ │ │ │ ├── wi_day_snow_thunderstorm_48x48.h │ │ │ │ ├── wi_day_snow_wind_48x48.h │ │ │ │ ├── wi_day_sprinkle_48x48.h │ │ │ │ ├── wi_day_storm_showers_48x48.h │ │ │ │ ├── wi_day_sunny_48x48.h │ │ │ │ ├── wi_day_sunny_overcast_48x48.h │ │ │ │ ├── wi_day_thunderstorm_48x48.h │ │ │ │ ├── wi_day_windy_48x48.h │ │ │ │ ├── wi_degrees_48x48.h │ │ │ │ ├── wi_direction_down_48x48.h │ │ │ │ ├── wi_direction_down_left_48x48.h │ │ │ │ ├── wi_direction_down_right_48x48.h │ │ │ │ ├── wi_direction_left_48x48.h │ │ │ │ ├── wi_direction_right_48x48.h │ │ │ │ ├── wi_direction_up_48x48.h │ │ │ │ ├── wi_direction_up_left_48x48.h │ │ │ │ ├── wi_direction_up_right_48x48.h │ │ │ │ ├── wi_dust_48x48.h │ │ │ │ ├── wi_earthquake_48x48.h │ │ │ │ ├── wi_fahrenheit_48x48.h │ │ │ │ ├── wi_fire_48x48.h │ │ │ │ ├── wi_flood_48x48.h │ │ │ │ ├── wi_fog_48x48.h │ │ │ │ ├── wi_gale_warning_48x48.h │ │ │ │ ├── wi_hail_48x48.h │ │ │ │ ├── wi_horizon_48x48.h │ │ │ │ ├── wi_horizon_alt_48x48.h │ │ │ │ ├── wi_hot_48x48.h │ │ │ │ ├── wi_humidity_48x48.h │ │ │ │ ├── wi_hurricane_48x48.h │ │ │ │ ├── wi_hurricane_warning_48x48.h │ │ │ │ ├── wi_lightning_48x48.h │ │ │ │ ├── wi_lunar_eclipse_48x48.h │ │ │ │ ├── wi_meteor_48x48.h │ │ │ │ ├── wi_moon_alt_first_quarter_48x48.h │ │ │ │ ├── wi_moon_alt_full_48x48.h │ │ │ │ ├── wi_moon_alt_new_48x48.h │ │ │ │ ├── wi_moon_alt_third_quarter_48x48.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_48x48.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_48x48.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_48x48.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_48x48.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_48x48.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_48x48.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_48x48.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_48x48.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_48x48.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_48x48.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_48x48.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_48x48.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_48x48.h │ │ │ │ ├── wi_moon_first_quarter_48x48.h │ │ │ │ ├── wi_moon_full_48x48.h │ │ │ │ ├── wi_moon_new_48x48.h │ │ │ │ ├── wi_moon_third_quarter_48x48.h │ │ │ │ ├── wi_moon_waning_crescent_1_48x48.h │ │ │ │ ├── wi_moon_waning_crescent_2_48x48.h │ │ │ │ ├── wi_moon_waning_crescent_3_48x48.h │ │ │ │ ├── wi_moon_waning_crescent_4_48x48.h │ │ │ │ ├── wi_moon_waning_crescent_5_48x48.h │ │ │ │ ├── wi_moon_waning_crescent_6_48x48.h │ │ │ │ ├── wi_moon_waning_gibbous_1_48x48.h │ │ │ │ ├── wi_moon_waning_gibbous_2_48x48.h │ │ │ │ ├── wi_moon_waning_gibbous_3_48x48.h │ │ │ │ ├── wi_moon_waning_gibbous_4_48x48.h │ │ │ │ ├── wi_moon_waning_gibbous_5_48x48.h │ │ │ │ ├── wi_moon_waning_gibbous_6_48x48.h │ │ │ │ ├── wi_moon_waxing_6_48x48.h │ │ │ │ ├── wi_moon_waxing_crescent_1_48x48.h │ │ │ │ ├── wi_moon_waxing_crescent_2_48x48.h │ │ │ │ ├── wi_moon_waxing_crescent_3_48x48.h │ │ │ │ ├── wi_moon_waxing_crescent_4_48x48.h │ │ │ │ ├── wi_moon_waxing_crescent_5_48x48.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_48x48.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_48x48.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_48x48.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_48x48.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_48x48.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_48x48.h │ │ │ │ ├── wi_moonrise_48x48.h │ │ │ │ ├── wi_moonset_48x48.h │ │ │ │ ├── wi_na_48x48.h │ │ │ │ ├── wi_night_alt_cloudy_48x48.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_48x48.h │ │ │ │ ├── wi_night_alt_cloudy_high_48x48.h │ │ │ │ ├── wi_night_alt_cloudy_windy_48x48.h │ │ │ │ ├── wi_night_alt_hail_48x48.h │ │ │ │ ├── wi_night_alt_lightning_48x48.h │ │ │ │ ├── wi_night_alt_partly_cloudy_48x48.h │ │ │ │ ├── wi_night_alt_rain_48x48.h │ │ │ │ ├── wi_night_alt_rain_mix_48x48.h │ │ │ │ ├── wi_night_alt_rain_wind_48x48.h │ │ │ │ ├── wi_night_alt_showers_48x48.h │ │ │ │ ├── wi_night_alt_sleet_48x48.h │ │ │ │ ├── wi_night_alt_sleet_storm_48x48.h │ │ │ │ ├── wi_night_alt_snow_48x48.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_48x48.h │ │ │ │ ├── wi_night_alt_snow_wind_48x48.h │ │ │ │ ├── wi_night_alt_sprinkle_48x48.h │ │ │ │ ├── wi_night_alt_storm_showers_48x48.h │ │ │ │ ├── wi_night_alt_thunderstorm_48x48.h │ │ │ │ ├── wi_night_clear_48x48.h │ │ │ │ ├── wi_night_cloudy_48x48.h │ │ │ │ ├── wi_night_cloudy_gusts_48x48.h │ │ │ │ ├── wi_night_cloudy_high_48x48.h │ │ │ │ ├── wi_night_cloudy_windy_48x48.h │ │ │ │ ├── wi_night_fog_48x48.h │ │ │ │ ├── wi_night_hail_48x48.h │ │ │ │ ├── wi_night_lightning_48x48.h │ │ │ │ ├── wi_night_partly_cloudy_48x48.h │ │ │ │ ├── wi_night_rain_48x48.h │ │ │ │ ├── wi_night_rain_mix_48x48.h │ │ │ │ ├── wi_night_rain_wind_48x48.h │ │ │ │ ├── wi_night_showers_48x48.h │ │ │ │ ├── wi_night_sleet_48x48.h │ │ │ │ ├── wi_night_sleet_storm_48x48.h │ │ │ │ ├── wi_night_snow_48x48.h │ │ │ │ ├── wi_night_snow_thunderstorm_48x48.h │ │ │ │ ├── wi_night_snow_wind_48x48.h │ │ │ │ ├── wi_night_sprinkle_48x48.h │ │ │ │ ├── wi_night_storm_showers_48x48.h │ │ │ │ ├── wi_night_thunderstorm_48x48.h │ │ │ │ ├── wi_rain_48x48.h │ │ │ │ ├── wi_rain_mix_48x48.h │ │ │ │ ├── wi_rain_wind_48x48.h │ │ │ │ ├── wi_raindrop_48x48.h │ │ │ │ ├── wi_raindrops_48x48.h │ │ │ │ ├── wi_refresh_48x48.h │ │ │ │ ├── wi_refresh_alt_48x48.h │ │ │ │ ├── wi_sandstorm_48x48.h │ │ │ │ ├── wi_showers_48x48.h │ │ │ │ ├── wi_sleet_48x48.h │ │ │ │ ├── wi_small_craft_advisory_48x48.h │ │ │ │ ├── wi_smog_48x48.h │ │ │ │ ├── wi_smoke_48x48.h │ │ │ │ ├── wi_snow_48x48.h │ │ │ │ ├── wi_snow_wind_48x48.h │ │ │ │ ├── wi_snowflake_cold_48x48.h │ │ │ │ ├── wi_solar_eclipse_48x48.h │ │ │ │ ├── wi_sprinkle_48x48.h │ │ │ │ ├── wi_stars_48x48.h │ │ │ │ ├── wi_storm_showers_48x48.h │ │ │ │ ├── wi_storm_warning_48x48.h │ │ │ │ ├── wi_strong_wind_48x48.h │ │ │ │ ├── wi_sunrise_48x48.h │ │ │ │ ├── wi_sunset_48x48.h │ │ │ │ ├── wi_thermometer_48x48.h │ │ │ │ ├── wi_thermometer_exterior_48x48.h │ │ │ │ ├── wi_thermometer_internal_48x48.h │ │ │ │ ├── wi_thunderstorm_48x48.h │ │ │ │ ├── wi_time_10_48x48.h │ │ │ │ ├── wi_time_11_48x48.h │ │ │ │ ├── wi_time_12_48x48.h │ │ │ │ ├── wi_time_1_48x48.h │ │ │ │ ├── wi_time_2_48x48.h │ │ │ │ ├── wi_time_3_48x48.h │ │ │ │ ├── wi_time_4_48x48.h │ │ │ │ ├── wi_time_5_48x48.h │ │ │ │ ├── wi_time_6_48x48.h │ │ │ │ ├── wi_time_7_48x48.h │ │ │ │ ├── wi_time_8_48x48.h │ │ │ │ ├── wi_time_9_48x48.h │ │ │ │ ├── wi_tornado_48x48.h │ │ │ │ ├── wi_train_48x48.h │ │ │ │ ├── wi_tsunami_48x48.h │ │ │ │ ├── wi_umbrella_48x48.h │ │ │ │ ├── wi_volcano_48x48.h │ │ │ │ ├── wi_wind_0deg_48x48.h │ │ │ │ ├── wi_wind_100deg_48x48.h │ │ │ │ ├── wi_wind_101_25deg_48x48.h │ │ │ │ ├── wi_wind_101deg_48x48.h │ │ │ │ ├── wi_wind_102deg_48x48.h │ │ │ │ ├── wi_wind_103deg_48x48.h │ │ │ │ ├── wi_wind_104deg_48x48.h │ │ │ │ ├── wi_wind_105deg_48x48.h │ │ │ │ ├── wi_wind_106deg_48x48.h │ │ │ │ ├── wi_wind_107deg_48x48.h │ │ │ │ ├── wi_wind_108deg_48x48.h │ │ │ │ ├── wi_wind_109deg_48x48.h │ │ │ │ ├── wi_wind_10deg_48x48.h │ │ │ │ ├── wi_wind_110deg_48x48.h │ │ │ │ ├── wi_wind_111deg_48x48.h │ │ │ │ ├── wi_wind_112_5deg_48x48.h │ │ │ │ ├── wi_wind_112deg_48x48.h │ │ │ │ ├── wi_wind_113deg_48x48.h │ │ │ │ ├── wi_wind_114deg_48x48.h │ │ │ │ ├── wi_wind_115deg_48x48.h │ │ │ │ ├── wi_wind_116deg_48x48.h │ │ │ │ ├── wi_wind_117deg_48x48.h │ │ │ │ ├── wi_wind_118deg_48x48.h │ │ │ │ ├── wi_wind_119deg_48x48.h │ │ │ │ ├── wi_wind_11_25deg_48x48.h │ │ │ │ ├── wi_wind_11deg_48x48.h │ │ │ │ ├── wi_wind_120deg_48x48.h │ │ │ │ ├── wi_wind_121deg_48x48.h │ │ │ │ ├── wi_wind_122deg_48x48.h │ │ │ │ ├── wi_wind_123_75deg_48x48.h │ │ │ │ ├── wi_wind_123deg_48x48.h │ │ │ │ ├── wi_wind_124deg_48x48.h │ │ │ │ ├── wi_wind_125deg_48x48.h │ │ │ │ ├── wi_wind_126deg_48x48.h │ │ │ │ ├── wi_wind_127deg_48x48.h │ │ │ │ ├── wi_wind_128deg_48x48.h │ │ │ │ ├── wi_wind_129deg_48x48.h │ │ │ │ ├── wi_wind_12deg_48x48.h │ │ │ │ ├── wi_wind_130deg_48x48.h │ │ │ │ ├── wi_wind_131deg_48x48.h │ │ │ │ ├── wi_wind_132deg_48x48.h │ │ │ │ ├── wi_wind_133deg_48x48.h │ │ │ │ ├── wi_wind_134deg_48x48.h │ │ │ │ ├── wi_wind_135deg_48x48.h │ │ │ │ ├── wi_wind_136deg_48x48.h │ │ │ │ ├── wi_wind_137deg_48x48.h │ │ │ │ ├── wi_wind_138deg_48x48.h │ │ │ │ ├── wi_wind_139deg_48x48.h │ │ │ │ ├── wi_wind_13deg_48x48.h │ │ │ │ ├── wi_wind_140deg_48x48.h │ │ │ │ ├── wi_wind_141deg_48x48.h │ │ │ │ ├── wi_wind_142deg_48x48.h │ │ │ │ ├── wi_wind_143deg_48x48.h │ │ │ │ ├── wi_wind_144deg_48x48.h │ │ │ │ ├── wi_wind_145deg_48x48.h │ │ │ │ ├── wi_wind_146_25deg_48x48.h │ │ │ │ ├── wi_wind_146deg_48x48.h │ │ │ │ ├── wi_wind_147deg_48x48.h │ │ │ │ ├── wi_wind_148deg_48x48.h │ │ │ │ ├── wi_wind_149deg_48x48.h │ │ │ │ ├── wi_wind_14deg_48x48.h │ │ │ │ ├── wi_wind_150deg_48x48.h │ │ │ │ ├── wi_wind_151deg_48x48.h │ │ │ │ ├── wi_wind_152deg_48x48.h │ │ │ │ ├── wi_wind_153deg_48x48.h │ │ │ │ ├── wi_wind_154deg_48x48.h │ │ │ │ ├── wi_wind_155deg_48x48.h │ │ │ │ ├── wi_wind_156deg_48x48.h │ │ │ │ ├── wi_wind_157_5deg_48x48.h │ │ │ │ ├── wi_wind_157deg_48x48.h │ │ │ │ ├── wi_wind_158deg_48x48.h │ │ │ │ ├── wi_wind_159deg_48x48.h │ │ │ │ ├── wi_wind_15deg_48x48.h │ │ │ │ ├── wi_wind_160deg_48x48.h │ │ │ │ ├── wi_wind_161deg_48x48.h │ │ │ │ ├── wi_wind_162deg_48x48.h │ │ │ │ ├── wi_wind_163deg_48x48.h │ │ │ │ ├── wi_wind_164deg_48x48.h │ │ │ │ ├── wi_wind_165deg_48x48.h │ │ │ │ ├── wi_wind_166deg_48x48.h │ │ │ │ ├── wi_wind_167deg_48x48.h │ │ │ │ ├── wi_wind_168_75deg_48x48.h │ │ │ │ ├── wi_wind_168deg_48x48.h │ │ │ │ ├── wi_wind_169deg_48x48.h │ │ │ │ ├── wi_wind_16deg_48x48.h │ │ │ │ ├── wi_wind_170deg_48x48.h │ │ │ │ ├── wi_wind_171deg_48x48.h │ │ │ │ ├── wi_wind_172deg_48x48.h │ │ │ │ ├── wi_wind_173deg_48x48.h │ │ │ │ ├── wi_wind_174deg_48x48.h │ │ │ │ ├── wi_wind_175deg_48x48.h │ │ │ │ ├── wi_wind_176deg_48x48.h │ │ │ │ ├── wi_wind_177deg_48x48.h │ │ │ │ ├── wi_wind_178deg_48x48.h │ │ │ │ ├── wi_wind_179deg_48x48.h │ │ │ │ ├── wi_wind_17deg_48x48.h │ │ │ │ ├── wi_wind_180deg_48x48.h │ │ │ │ ├── wi_wind_181deg_48x48.h │ │ │ │ ├── wi_wind_182deg_48x48.h │ │ │ │ ├── wi_wind_183deg_48x48.h │ │ │ │ ├── wi_wind_184deg_48x48.h │ │ │ │ ├── wi_wind_185deg_48x48.h │ │ │ │ ├── wi_wind_186deg_48x48.h │ │ │ │ ├── wi_wind_187deg_48x48.h │ │ │ │ ├── wi_wind_188deg_48x48.h │ │ │ │ ├── wi_wind_189deg_48x48.h │ │ │ │ ├── wi_wind_18deg_48x48.h │ │ │ │ ├── wi_wind_190deg_48x48.h │ │ │ │ ├── wi_wind_191_25deg_48x48.h │ │ │ │ ├── wi_wind_191deg_48x48.h │ │ │ │ ├── wi_wind_192deg_48x48.h │ │ │ │ ├── wi_wind_193deg_48x48.h │ │ │ │ ├── wi_wind_194deg_48x48.h │ │ │ │ ├── wi_wind_195deg_48x48.h │ │ │ │ ├── wi_wind_196deg_48x48.h │ │ │ │ ├── wi_wind_197deg_48x48.h │ │ │ │ ├── wi_wind_198deg_48x48.h │ │ │ │ ├── wi_wind_199deg_48x48.h │ │ │ │ ├── wi_wind_19deg_48x48.h │ │ │ │ ├── wi_wind_1deg_48x48.h │ │ │ │ ├── wi_wind_200deg_48x48.h │ │ │ │ ├── wi_wind_201deg_48x48.h │ │ │ │ ├── wi_wind_202_5deg_48x48.h │ │ │ │ ├── wi_wind_202deg_48x48.h │ │ │ │ ├── wi_wind_203deg_48x48.h │ │ │ │ ├── wi_wind_204deg_48x48.h │ │ │ │ ├── wi_wind_205deg_48x48.h │ │ │ │ ├── wi_wind_206deg_48x48.h │ │ │ │ ├── wi_wind_207deg_48x48.h │ │ │ │ ├── wi_wind_208deg_48x48.h │ │ │ │ ├── wi_wind_209deg_48x48.h │ │ │ │ ├── wi_wind_20deg_48x48.h │ │ │ │ ├── wi_wind_210deg_48x48.h │ │ │ │ ├── wi_wind_211deg_48x48.h │ │ │ │ ├── wi_wind_212deg_48x48.h │ │ │ │ ├── wi_wind_213_75deg_48x48.h │ │ │ │ ├── wi_wind_213deg_48x48.h │ │ │ │ ├── wi_wind_214deg_48x48.h │ │ │ │ ├── wi_wind_215deg_48x48.h │ │ │ │ ├── wi_wind_216deg_48x48.h │ │ │ │ ├── wi_wind_217deg_48x48.h │ │ │ │ ├── wi_wind_218deg_48x48.h │ │ │ │ ├── wi_wind_219deg_48x48.h │ │ │ │ ├── wi_wind_21deg_48x48.h │ │ │ │ ├── wi_wind_220deg_48x48.h │ │ │ │ ├── wi_wind_221deg_48x48.h │ │ │ │ ├── wi_wind_222deg_48x48.h │ │ │ │ ├── wi_wind_223deg_48x48.h │ │ │ │ ├── wi_wind_224deg_48x48.h │ │ │ │ ├── wi_wind_225deg_48x48.h │ │ │ │ ├── wi_wind_226deg_48x48.h │ │ │ │ ├── wi_wind_227deg_48x48.h │ │ │ │ ├── wi_wind_228deg_48x48.h │ │ │ │ ├── wi_wind_229deg_48x48.h │ │ │ │ ├── wi_wind_22_5deg_48x48.h │ │ │ │ ├── wi_wind_22deg_48x48.h │ │ │ │ ├── wi_wind_230deg_48x48.h │ │ │ │ ├── wi_wind_231deg_48x48.h │ │ │ │ ├── wi_wind_232deg_48x48.h │ │ │ │ ├── wi_wind_233deg_48x48.h │ │ │ │ ├── wi_wind_234deg_48x48.h │ │ │ │ ├── wi_wind_235deg_48x48.h │ │ │ │ ├── wi_wind_236_25deg_48x48.h │ │ │ │ ├── wi_wind_236deg_48x48.h │ │ │ │ ├── wi_wind_237deg_48x48.h │ │ │ │ ├── wi_wind_238deg_48x48.h │ │ │ │ ├── wi_wind_239deg_48x48.h │ │ │ │ ├── wi_wind_23deg_48x48.h │ │ │ │ ├── wi_wind_240deg_48x48.h │ │ │ │ ├── wi_wind_241deg_48x48.h │ │ │ │ ├── wi_wind_242deg_48x48.h │ │ │ │ ├── wi_wind_243deg_48x48.h │ │ │ │ ├── wi_wind_244deg_48x48.h │ │ │ │ ├── wi_wind_245deg_48x48.h │ │ │ │ ├── wi_wind_246deg_48x48.h │ │ │ │ ├── wi_wind_247_5deg_48x48.h │ │ │ │ ├── wi_wind_247deg_48x48.h │ │ │ │ ├── wi_wind_248deg_48x48.h │ │ │ │ ├── wi_wind_249deg_48x48.h │ │ │ │ ├── wi_wind_24deg_48x48.h │ │ │ │ ├── wi_wind_250deg_48x48.h │ │ │ │ ├── wi_wind_251deg_48x48.h │ │ │ │ ├── wi_wind_252deg_48x48.h │ │ │ │ ├── wi_wind_253deg_48x48.h │ │ │ │ ├── wi_wind_254deg_48x48.h │ │ │ │ ├── wi_wind_255deg_48x48.h │ │ │ │ ├── wi_wind_256deg_48x48.h │ │ │ │ ├── wi_wind_257deg_48x48.h │ │ │ │ ├── wi_wind_258_75deg_48x48.h │ │ │ │ ├── wi_wind_258deg_48x48.h │ │ │ │ ├── wi_wind_259deg_48x48.h │ │ │ │ ├── wi_wind_25deg_48x48.h │ │ │ │ ├── wi_wind_260deg_48x48.h │ │ │ │ ├── wi_wind_261deg_48x48.h │ │ │ │ ├── wi_wind_262deg_48x48.h │ │ │ │ ├── wi_wind_263deg_48x48.h │ │ │ │ ├── wi_wind_264deg_48x48.h │ │ │ │ ├── wi_wind_265deg_48x48.h │ │ │ │ ├── wi_wind_266deg_48x48.h │ │ │ │ ├── wi_wind_267deg_48x48.h │ │ │ │ ├── wi_wind_268deg_48x48.h │ │ │ │ ├── wi_wind_269deg_48x48.h │ │ │ │ ├── wi_wind_26deg_48x48.h │ │ │ │ ├── wi_wind_270deg_48x48.h │ │ │ │ ├── wi_wind_271deg_48x48.h │ │ │ │ ├── wi_wind_272deg_48x48.h │ │ │ │ ├── wi_wind_273deg_48x48.h │ │ │ │ ├── wi_wind_274deg_48x48.h │ │ │ │ ├── wi_wind_275deg_48x48.h │ │ │ │ ├── wi_wind_276deg_48x48.h │ │ │ │ ├── wi_wind_277deg_48x48.h │ │ │ │ ├── wi_wind_278deg_48x48.h │ │ │ │ ├── wi_wind_279deg_48x48.h │ │ │ │ ├── wi_wind_27deg_48x48.h │ │ │ │ ├── wi_wind_280deg_48x48.h │ │ │ │ ├── wi_wind_281_25deg_48x48.h │ │ │ │ ├── wi_wind_281deg_48x48.h │ │ │ │ ├── wi_wind_282deg_48x48.h │ │ │ │ ├── wi_wind_283deg_48x48.h │ │ │ │ ├── wi_wind_284deg_48x48.h │ │ │ │ ├── wi_wind_285deg_48x48.h │ │ │ │ ├── wi_wind_286deg_48x48.h │ │ │ │ ├── wi_wind_287deg_48x48.h │ │ │ │ ├── wi_wind_288deg_48x48.h │ │ │ │ ├── wi_wind_289deg_48x48.h │ │ │ │ ├── wi_wind_28deg_48x48.h │ │ │ │ ├── wi_wind_290deg_48x48.h │ │ │ │ ├── wi_wind_291deg_48x48.h │ │ │ │ ├── wi_wind_292_5deg_48x48.h │ │ │ │ ├── wi_wind_292deg_48x48.h │ │ │ │ ├── wi_wind_293deg_48x48.h │ │ │ │ ├── wi_wind_294deg_48x48.h │ │ │ │ ├── wi_wind_295deg_48x48.h │ │ │ │ ├── wi_wind_296deg_48x48.h │ │ │ │ ├── wi_wind_297deg_48x48.h │ │ │ │ ├── wi_wind_298deg_48x48.h │ │ │ │ ├── wi_wind_299deg_48x48.h │ │ │ │ ├── wi_wind_29deg_48x48.h │ │ │ │ ├── wi_wind_2deg_48x48.h │ │ │ │ ├── wi_wind_300deg_48x48.h │ │ │ │ ├── wi_wind_301deg_48x48.h │ │ │ │ ├── wi_wind_302deg_48x48.h │ │ │ │ ├── wi_wind_303_75deg_48x48.h │ │ │ │ ├── wi_wind_303deg_48x48.h │ │ │ │ ├── wi_wind_304deg_48x48.h │ │ │ │ ├── wi_wind_305deg_48x48.h │ │ │ │ ├── wi_wind_306deg_48x48.h │ │ │ │ ├── wi_wind_307deg_48x48.h │ │ │ │ ├── wi_wind_308deg_48x48.h │ │ │ │ ├── wi_wind_309deg_48x48.h │ │ │ │ ├── wi_wind_30deg_48x48.h │ │ │ │ ├── wi_wind_310deg_48x48.h │ │ │ │ ├── wi_wind_311deg_48x48.h │ │ │ │ ├── wi_wind_312deg_48x48.h │ │ │ │ ├── wi_wind_313deg_48x48.h │ │ │ │ ├── wi_wind_314deg_48x48.h │ │ │ │ ├── wi_wind_315deg_48x48.h │ │ │ │ ├── wi_wind_316deg_48x48.h │ │ │ │ ├── wi_wind_317deg_48x48.h │ │ │ │ ├── wi_wind_318deg_48x48.h │ │ │ │ ├── wi_wind_319deg_48x48.h │ │ │ │ ├── wi_wind_31deg_48x48.h │ │ │ │ ├── wi_wind_320deg_48x48.h │ │ │ │ ├── wi_wind_321deg_48x48.h │ │ │ │ ├── wi_wind_322deg_48x48.h │ │ │ │ ├── wi_wind_323deg_48x48.h │ │ │ │ ├── wi_wind_324deg_48x48.h │ │ │ │ ├── wi_wind_325deg_48x48.h │ │ │ │ ├── wi_wind_326_25deg_48x48.h │ │ │ │ ├── wi_wind_326deg_48x48.h │ │ │ │ ├── wi_wind_327deg_48x48.h │ │ │ │ ├── wi_wind_328deg_48x48.h │ │ │ │ ├── wi_wind_329deg_48x48.h │ │ │ │ ├── wi_wind_32deg_48x48.h │ │ │ │ ├── wi_wind_330deg_48x48.h │ │ │ │ ├── wi_wind_331deg_48x48.h │ │ │ │ ├── wi_wind_332deg_48x48.h │ │ │ │ ├── wi_wind_333deg_48x48.h │ │ │ │ ├── wi_wind_334deg_48x48.h │ │ │ │ ├── wi_wind_335deg_48x48.h │ │ │ │ ├── wi_wind_336deg_48x48.h │ │ │ │ ├── wi_wind_337_5deg_48x48.h │ │ │ │ ├── wi_wind_337deg_48x48.h │ │ │ │ ├── wi_wind_338deg_48x48.h │ │ │ │ ├── wi_wind_339deg_48x48.h │ │ │ │ ├── wi_wind_33_75deg_48x48.h │ │ │ │ ├── wi_wind_33deg_48x48.h │ │ │ │ ├── wi_wind_340deg_48x48.h │ │ │ │ ├── wi_wind_341deg_48x48.h │ │ │ │ ├── wi_wind_342deg_48x48.h │ │ │ │ ├── wi_wind_343deg_48x48.h │ │ │ │ ├── wi_wind_344deg_48x48.h │ │ │ │ ├── wi_wind_345deg_48x48.h │ │ │ │ ├── wi_wind_346deg_48x48.h │ │ │ │ ├── wi_wind_347deg_48x48.h │ │ │ │ ├── wi_wind_348_75deg_48x48.h │ │ │ │ ├── wi_wind_348deg_48x48.h │ │ │ │ ├── wi_wind_349deg_48x48.h │ │ │ │ ├── wi_wind_34deg_48x48.h │ │ │ │ ├── wi_wind_350deg_48x48.h │ │ │ │ ├── wi_wind_351deg_48x48.h │ │ │ │ ├── wi_wind_352deg_48x48.h │ │ │ │ ├── wi_wind_353deg_48x48.h │ │ │ │ ├── wi_wind_354deg_48x48.h │ │ │ │ ├── wi_wind_355deg_48x48.h │ │ │ │ ├── wi_wind_356deg_48x48.h │ │ │ │ ├── wi_wind_357deg_48x48.h │ │ │ │ ├── wi_wind_358deg_48x48.h │ │ │ │ ├── wi_wind_359deg_48x48.h │ │ │ │ ├── wi_wind_35deg_48x48.h │ │ │ │ ├── wi_wind_36deg_48x48.h │ │ │ │ ├── wi_wind_37deg_48x48.h │ │ │ │ ├── wi_wind_38deg_48x48.h │ │ │ │ ├── wi_wind_39deg_48x48.h │ │ │ │ ├── wi_wind_3deg_48x48.h │ │ │ │ ├── wi_wind_40deg_48x48.h │ │ │ │ ├── wi_wind_41deg_48x48.h │ │ │ │ ├── wi_wind_42deg_48x48.h │ │ │ │ ├── wi_wind_43deg_48x48.h │ │ │ │ ├── wi_wind_44deg_48x48.h │ │ │ │ ├── wi_wind_45deg_48x48.h │ │ │ │ ├── wi_wind_46deg_48x48.h │ │ │ │ ├── wi_wind_47deg_48x48.h │ │ │ │ ├── wi_wind_48deg_48x48.h │ │ │ │ ├── wi_wind_49deg_48x48.h │ │ │ │ ├── wi_wind_4deg_48x48.h │ │ │ │ ├── wi_wind_50deg_48x48.h │ │ │ │ ├── wi_wind_51deg_48x48.h │ │ │ │ ├── wi_wind_52deg_48x48.h │ │ │ │ ├── wi_wind_53deg_48x48.h │ │ │ │ ├── wi_wind_54deg_48x48.h │ │ │ │ ├── wi_wind_55deg_48x48.h │ │ │ │ ├── wi_wind_56_25deg_48x48.h │ │ │ │ ├── wi_wind_56deg_48x48.h │ │ │ │ ├── wi_wind_57deg_48x48.h │ │ │ │ ├── wi_wind_58deg_48x48.h │ │ │ │ ├── wi_wind_59deg_48x48.h │ │ │ │ ├── wi_wind_5deg_48x48.h │ │ │ │ ├── wi_wind_60deg_48x48.h │ │ │ │ ├── wi_wind_61deg_48x48.h │ │ │ │ ├── wi_wind_62deg_48x48.h │ │ │ │ ├── wi_wind_63deg_48x48.h │ │ │ │ ├── wi_wind_64deg_48x48.h │ │ │ │ ├── wi_wind_65deg_48x48.h │ │ │ │ ├── wi_wind_66deg_48x48.h │ │ │ │ ├── wi_wind_67_5deg_48x48.h │ │ │ │ ├── wi_wind_67deg_48x48.h │ │ │ │ ├── wi_wind_68deg_48x48.h │ │ │ │ ├── wi_wind_69deg_48x48.h │ │ │ │ ├── wi_wind_6deg_48x48.h │ │ │ │ ├── wi_wind_70deg_48x48.h │ │ │ │ ├── wi_wind_71deg_48x48.h │ │ │ │ ├── wi_wind_72deg_48x48.h │ │ │ │ ├── wi_wind_73deg_48x48.h │ │ │ │ ├── wi_wind_74deg_48x48.h │ │ │ │ ├── wi_wind_75deg_48x48.h │ │ │ │ ├── wi_wind_76deg_48x48.h │ │ │ │ ├── wi_wind_77deg_48x48.h │ │ │ │ ├── wi_wind_78_75deg_48x48.h │ │ │ │ ├── wi_wind_78deg_48x48.h │ │ │ │ ├── wi_wind_79deg_48x48.h │ │ │ │ ├── wi_wind_7deg_48x48.h │ │ │ │ ├── wi_wind_80deg_48x48.h │ │ │ │ ├── wi_wind_81deg_48x48.h │ │ │ │ ├── wi_wind_82deg_48x48.h │ │ │ │ ├── wi_wind_83deg_48x48.h │ │ │ │ ├── wi_wind_84deg_48x48.h │ │ │ │ ├── wi_wind_85deg_48x48.h │ │ │ │ ├── wi_wind_86deg_48x48.h │ │ │ │ ├── wi_wind_87deg_48x48.h │ │ │ │ ├── wi_wind_88deg_48x48.h │ │ │ │ ├── wi_wind_89deg_48x48.h │ │ │ │ ├── wi_wind_8deg_48x48.h │ │ │ │ ├── wi_wind_90deg_48x48.h │ │ │ │ ├── wi_wind_91deg_48x48.h │ │ │ │ ├── wi_wind_92deg_48x48.h │ │ │ │ ├── wi_wind_93deg_48x48.h │ │ │ │ ├── wi_wind_94deg_48x48.h │ │ │ │ ├── wi_wind_95deg_48x48.h │ │ │ │ ├── wi_wind_96deg_48x48.h │ │ │ │ ├── wi_wind_97deg_48x48.h │ │ │ │ ├── wi_wind_98deg_48x48.h │ │ │ │ ├── wi_wind_99deg_48x48.h │ │ │ │ ├── wi_wind_9deg_48x48.h │ │ │ │ ├── wi_wind_beaufort_0_48x48.h │ │ │ │ ├── wi_wind_beaufort_10_48x48.h │ │ │ │ ├── wi_wind_beaufort_11_48x48.h │ │ │ │ ├── wi_wind_beaufort_12_48x48.h │ │ │ │ ├── wi_wind_beaufort_1_48x48.h │ │ │ │ ├── wi_wind_beaufort_2_48x48.h │ │ │ │ ├── wi_wind_beaufort_3_48x48.h │ │ │ │ ├── wi_wind_beaufort_4_48x48.h │ │ │ │ ├── wi_wind_beaufort_5_48x48.h │ │ │ │ ├── wi_wind_beaufort_6_48x48.h │ │ │ │ ├── wi_wind_beaufort_7_48x48.h │ │ │ │ ├── wi_wind_beaufort_8_48x48.h │ │ │ │ ├── wi_wind_beaufort_9_48x48.h │ │ │ │ ├── wi_windy_48x48.h │ │ │ │ ├── wifi_1_bar_48x48.h │ │ │ │ ├── wifi_2_bar_48x48.h │ │ │ │ ├── wifi_3_bar_48x48.h │ │ │ │ ├── wifi_48x48.h │ │ │ │ ├── wifi_off_48x48.h │ │ │ │ ├── wifi_x_48x48.h │ │ │ │ ├── wind_direction_meteorological_0deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_100deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_101deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_102deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_103deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_104deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_105deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_106deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_107deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_108deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_109deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_10deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_110deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_111deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_112deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_113deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_114deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_115deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_116deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_117deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_118deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_119deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_11deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_120deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_121deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_122deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_123deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_124deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_125deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_126deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_127deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_128deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_129deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_12deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_130deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_131deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_132deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_133deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_134deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_135deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_136deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_137deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_138deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_139deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_13deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_140deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_141deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_142deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_143deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_144deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_145deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_146deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_147deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_148deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_149deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_14deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_150deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_151deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_152deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_153deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_154deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_155deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_156deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_157deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_158deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_159deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_15deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_160deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_161deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_162deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_163deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_164deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_165deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_166deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_167deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_168deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_169deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_16deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_170deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_171deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_172deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_173deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_174deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_175deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_176deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_177deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_178deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_179deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_17deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_180deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_181deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_182deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_183deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_184deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_185deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_186deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_187deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_188deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_189deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_18deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_190deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_191deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_192deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_193deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_194deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_195deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_196deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_197deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_198deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_199deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_19deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_1deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_200deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_201deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_202deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_203deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_204deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_205deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_206deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_207deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_208deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_209deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_20deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_210deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_211deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_212deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_213deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_214deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_215deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_216deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_217deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_218deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_219deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_21deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_220deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_221deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_222deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_223deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_224deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_225deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_226deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_227deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_228deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_229deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_22deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_230deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_231deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_232deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_233deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_234deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_235deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_236deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_237deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_238deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_239deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_23deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_240deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_241deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_242deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_243deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_244deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_245deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_246deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_247deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_248deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_249deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_24deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_250deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_251deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_252deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_253deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_254deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_255deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_256deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_257deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_258deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_259deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_260deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_261deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_262deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_263deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_264deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_265deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_266deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_267deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_268deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_269deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_26deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_270deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_271deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_272deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_273deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_274deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_275deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_276deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_277deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_278deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_279deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_27deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_280deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_281deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_282deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_283deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_284deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_285deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_286deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_287deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_288deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_289deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_28deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_290deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_291deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_292deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_293deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_294deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_295deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_296deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_297deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_298deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_299deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_29deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_2deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_300deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_301deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_302deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_303deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_304deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_305deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_306deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_307deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_308deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_309deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_30deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_310deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_311deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_312deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_313deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_314deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_315deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_316deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_317deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_318deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_319deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_31deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_320deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_321deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_322deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_323deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_324deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_325deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_326deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_327deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_328deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_329deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_32deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_330deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_331deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_332deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_333deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_334deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_335deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_336deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_337deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_338deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_339deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_33deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_340deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_341deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_342deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_343deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_344deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_345deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_346deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_347deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_348deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_349deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_34deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_350deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_351deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_352deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_353deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_354deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_355deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_356deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_357deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_358deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_359deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_35deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_36deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_37deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_38deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_39deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_3deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_40deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_41deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_42deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_43deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_44deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_45deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_46deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_47deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_48deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_49deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_4deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_50deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_51deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_52deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_53deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_54deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_55deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_56deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_57deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_58deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_59deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_60deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_61deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_62deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_63deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_64deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_65deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_66deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_67deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_68deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_69deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_6deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_70deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_71deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_72deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_73deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_74deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_76deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_77deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_78deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_79deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_7deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_80deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_81deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_82deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_83deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_84deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_85deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_86deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_87deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_88deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_89deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_8deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_90deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_91deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_92deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_93deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_94deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_95deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_96deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_97deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_98deg_48x48.h │ │ │ │ ├── wind_direction_meteorological_99deg_48x48.h │ │ │ │ └── wind_direction_meteorological_9deg_48x48.h │ │ │ ├── 64x64 │ │ │ │ ├── air_filter_64x64.h │ │ │ │ ├── battery_0_bar_0deg_64x64.h │ │ │ │ ├── battery_0_bar_180deg_64x64.h │ │ │ │ ├── battery_0_bar_270deg_64x64.h │ │ │ │ ├── battery_0_bar_90deg_64x64.h │ │ │ │ ├── battery_1_bar_0deg_64x64.h │ │ │ │ ├── battery_1_bar_180deg_64x64.h │ │ │ │ ├── battery_1_bar_270deg_64x64.h │ │ │ │ ├── battery_1_bar_90deg_64x64.h │ │ │ │ ├── battery_2_bar_0deg_64x64.h │ │ │ │ ├── battery_2_bar_180deg_64x64.h │ │ │ │ ├── battery_2_bar_270deg_64x64.h │ │ │ │ ├── battery_2_bar_90deg_64x64.h │ │ │ │ ├── battery_3_bar_0deg_64x64.h │ │ │ │ ├── battery_3_bar_180deg_64x64.h │ │ │ │ ├── battery_3_bar_270deg_64x64.h │ │ │ │ ├── battery_3_bar_90deg_64x64.h │ │ │ │ ├── battery_4_bar_0deg_64x64.h │ │ │ │ ├── battery_4_bar_180deg_64x64.h │ │ │ │ ├── battery_4_bar_270deg_64x64.h │ │ │ │ ├── battery_4_bar_90deg_64x64.h │ │ │ │ ├── battery_5_bar_0deg_64x64.h │ │ │ │ ├── battery_5_bar_180deg_64x64.h │ │ │ │ ├── battery_5_bar_270deg_64x64.h │ │ │ │ ├── battery_5_bar_90deg_64x64.h │ │ │ │ ├── battery_6_bar_0deg_64x64.h │ │ │ │ ├── battery_6_bar_180deg_64x64.h │ │ │ │ ├── battery_6_bar_270deg_64x64.h │ │ │ │ ├── battery_6_bar_90deg_64x64.h │ │ │ │ ├── battery_alert_0deg_64x64.h │ │ │ │ ├── battery_alert_180deg_64x64.h │ │ │ │ ├── battery_alert_270deg_64x64.h │ │ │ │ ├── battery_alert_90deg_64x64.h │ │ │ │ ├── battery_charging_full_0deg_64x64.h │ │ │ │ ├── battery_charging_full_180deg_64x64.h │ │ │ │ ├── battery_charging_full_270deg_64x64.h │ │ │ │ ├── battery_charging_full_90deg_64x64.h │ │ │ │ ├── battery_full_0deg_64x64.h │ │ │ │ ├── battery_full_180deg_64x64.h │ │ │ │ ├── battery_full_270deg_64x64.h │ │ │ │ ├── battery_full_90deg_64x64.h │ │ │ │ ├── biological_hazard_symbol_64x64.h │ │ │ │ ├── error_icon_64x64.h │ │ │ │ ├── house_64x64.h │ │ │ │ ├── house_humidity_64x64.h │ │ │ │ ├── house_raindrops_64x64.h │ │ │ │ ├── house_thermometer_64x64.h │ │ │ │ ├── ionizing_radiation_symbol_64x64.h │ │ │ │ ├── visibility_icon_64x64.h │ │ │ │ ├── warning_icon_64x64.h │ │ │ │ ├── wi_alien_64x64.h │ │ │ │ ├── wi_barometer_64x64.h │ │ │ │ ├── wi_celsius_64x64.h │ │ │ │ ├── wi_cloud_64x64.h │ │ │ │ ├── wi_cloud_down_64x64.h │ │ │ │ ├── wi_cloud_refresh_64x64.h │ │ │ │ ├── wi_cloud_up_64x64.h │ │ │ │ ├── wi_cloudy_64x64.h │ │ │ │ ├── wi_cloudy_gusts_64x64.h │ │ │ │ ├── wi_cloudy_windy_64x64.h │ │ │ │ ├── wi_day_cloudy_64x64.h │ │ │ │ ├── wi_day_cloudy_gusts_64x64.h │ │ │ │ ├── wi_day_cloudy_high_64x64.h │ │ │ │ ├── wi_day_cloudy_windy_64x64.h │ │ │ │ ├── wi_day_fog_64x64.h │ │ │ │ ├── wi_day_hail_64x64.h │ │ │ │ ├── wi_day_haze_64x64.h │ │ │ │ ├── wi_day_light_wind_64x64.h │ │ │ │ ├── wi_day_lightning_64x64.h │ │ │ │ ├── wi_day_rain_64x64.h │ │ │ │ ├── wi_day_rain_mix_64x64.h │ │ │ │ ├── wi_day_rain_wind_64x64.h │ │ │ │ ├── wi_day_showers_64x64.h │ │ │ │ ├── wi_day_sleet_64x64.h │ │ │ │ ├── wi_day_sleet_storm_64x64.h │ │ │ │ ├── wi_day_snow_64x64.h │ │ │ │ ├── wi_day_snow_thunderstorm_64x64.h │ │ │ │ ├── wi_day_snow_wind_64x64.h │ │ │ │ ├── wi_day_sprinkle_64x64.h │ │ │ │ ├── wi_day_storm_showers_64x64.h │ │ │ │ ├── wi_day_sunny_64x64.h │ │ │ │ ├── wi_day_sunny_overcast_64x64.h │ │ │ │ ├── wi_day_thunderstorm_64x64.h │ │ │ │ ├── wi_day_windy_64x64.h │ │ │ │ ├── wi_degrees_64x64.h │ │ │ │ ├── wi_direction_down_64x64.h │ │ │ │ ├── wi_direction_down_left_64x64.h │ │ │ │ ├── wi_direction_down_right_64x64.h │ │ │ │ ├── wi_direction_left_64x64.h │ │ │ │ ├── wi_direction_right_64x64.h │ │ │ │ ├── wi_direction_up_64x64.h │ │ │ │ ├── wi_direction_up_left_64x64.h │ │ │ │ ├── wi_direction_up_right_64x64.h │ │ │ │ ├── wi_dust_64x64.h │ │ │ │ ├── wi_earthquake_64x64.h │ │ │ │ ├── wi_fahrenheit_64x64.h │ │ │ │ ├── wi_fire_64x64.h │ │ │ │ ├── wi_flood_64x64.h │ │ │ │ ├── wi_fog_64x64.h │ │ │ │ ├── wi_gale_warning_64x64.h │ │ │ │ ├── wi_hail_64x64.h │ │ │ │ ├── wi_horizon_64x64.h │ │ │ │ ├── wi_horizon_alt_64x64.h │ │ │ │ ├── wi_hot_64x64.h │ │ │ │ ├── wi_humidity_64x64.h │ │ │ │ ├── wi_hurricane_64x64.h │ │ │ │ ├── wi_hurricane_warning_64x64.h │ │ │ │ ├── wi_lightning_64x64.h │ │ │ │ ├── wi_lunar_eclipse_64x64.h │ │ │ │ ├── wi_meteor_64x64.h │ │ │ │ ├── wi_moon_alt_first_quarter_64x64.h │ │ │ │ ├── wi_moon_alt_full_64x64.h │ │ │ │ ├── wi_moon_alt_new_64x64.h │ │ │ │ ├── wi_moon_alt_third_quarter_64x64.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_64x64.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_64x64.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_64x64.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_64x64.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_64x64.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_64x64.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_64x64.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_64x64.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_64x64.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_64x64.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_64x64.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_64x64.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_64x64.h │ │ │ │ ├── wi_moon_first_quarter_64x64.h │ │ │ │ ├── wi_moon_full_64x64.h │ │ │ │ ├── wi_moon_new_64x64.h │ │ │ │ ├── wi_moon_third_quarter_64x64.h │ │ │ │ ├── wi_moon_waning_crescent_1_64x64.h │ │ │ │ ├── wi_moon_waning_crescent_2_64x64.h │ │ │ │ ├── wi_moon_waning_crescent_3_64x64.h │ │ │ │ ├── wi_moon_waning_crescent_4_64x64.h │ │ │ │ ├── wi_moon_waning_crescent_5_64x64.h │ │ │ │ ├── wi_moon_waning_crescent_6_64x64.h │ │ │ │ ├── wi_moon_waning_gibbous_1_64x64.h │ │ │ │ ├── wi_moon_waning_gibbous_2_64x64.h │ │ │ │ ├── wi_moon_waning_gibbous_3_64x64.h │ │ │ │ ├── wi_moon_waning_gibbous_4_64x64.h │ │ │ │ ├── wi_moon_waning_gibbous_5_64x64.h │ │ │ │ ├── wi_moon_waning_gibbous_6_64x64.h │ │ │ │ ├── wi_moon_waxing_6_64x64.h │ │ │ │ ├── wi_moon_waxing_crescent_1_64x64.h │ │ │ │ ├── wi_moon_waxing_crescent_2_64x64.h │ │ │ │ ├── wi_moon_waxing_crescent_3_64x64.h │ │ │ │ ├── wi_moon_waxing_crescent_4_64x64.h │ │ │ │ ├── wi_moon_waxing_crescent_5_64x64.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_64x64.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_64x64.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_64x64.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_64x64.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_64x64.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_64x64.h │ │ │ │ ├── wi_moonrise_64x64.h │ │ │ │ ├── wi_moonset_64x64.h │ │ │ │ ├── wi_na_64x64.h │ │ │ │ ├── wi_night_alt_cloudy_64x64.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_64x64.h │ │ │ │ ├── wi_night_alt_cloudy_high_64x64.h │ │ │ │ ├── wi_night_alt_cloudy_windy_64x64.h │ │ │ │ ├── wi_night_alt_hail_64x64.h │ │ │ │ ├── wi_night_alt_lightning_64x64.h │ │ │ │ ├── wi_night_alt_partly_cloudy_64x64.h │ │ │ │ ├── wi_night_alt_rain_64x64.h │ │ │ │ ├── wi_night_alt_rain_mix_64x64.h │ │ │ │ ├── wi_night_alt_rain_wind_64x64.h │ │ │ │ ├── wi_night_alt_showers_64x64.h │ │ │ │ ├── wi_night_alt_sleet_64x64.h │ │ │ │ ├── wi_night_alt_sleet_storm_64x64.h │ │ │ │ ├── wi_night_alt_snow_64x64.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_64x64.h │ │ │ │ ├── wi_night_alt_snow_wind_64x64.h │ │ │ │ ├── wi_night_alt_sprinkle_64x64.h │ │ │ │ ├── wi_night_alt_storm_showers_64x64.h │ │ │ │ ├── wi_night_alt_thunderstorm_64x64.h │ │ │ │ ├── wi_night_clear_64x64.h │ │ │ │ ├── wi_night_cloudy_64x64.h │ │ │ │ ├── wi_night_cloudy_gusts_64x64.h │ │ │ │ ├── wi_night_cloudy_high_64x64.h │ │ │ │ ├── wi_night_cloudy_windy_64x64.h │ │ │ │ ├── wi_night_fog_64x64.h │ │ │ │ ├── wi_night_hail_64x64.h │ │ │ │ ├── wi_night_lightning_64x64.h │ │ │ │ ├── wi_night_partly_cloudy_64x64.h │ │ │ │ ├── wi_night_rain_64x64.h │ │ │ │ ├── wi_night_rain_mix_64x64.h │ │ │ │ ├── wi_night_rain_wind_64x64.h │ │ │ │ ├── wi_night_showers_64x64.h │ │ │ │ ├── wi_night_sleet_64x64.h │ │ │ │ ├── wi_night_sleet_storm_64x64.h │ │ │ │ ├── wi_night_snow_64x64.h │ │ │ │ ├── wi_night_snow_thunderstorm_64x64.h │ │ │ │ ├── wi_night_snow_wind_64x64.h │ │ │ │ ├── wi_night_sprinkle_64x64.h │ │ │ │ ├── wi_night_storm_showers_64x64.h │ │ │ │ ├── wi_night_thunderstorm_64x64.h │ │ │ │ ├── wi_rain_64x64.h │ │ │ │ ├── wi_rain_mix_64x64.h │ │ │ │ ├── wi_rain_wind_64x64.h │ │ │ │ ├── wi_raindrop_64x64.h │ │ │ │ ├── wi_raindrops_64x64.h │ │ │ │ ├── wi_refresh_64x64.h │ │ │ │ ├── wi_refresh_alt_64x64.h │ │ │ │ ├── wi_sandstorm_64x64.h │ │ │ │ ├── wi_showers_64x64.h │ │ │ │ ├── wi_sleet_64x64.h │ │ │ │ ├── wi_small_craft_advisory_64x64.h │ │ │ │ ├── wi_smog_64x64.h │ │ │ │ ├── wi_smoke_64x64.h │ │ │ │ ├── wi_snow_64x64.h │ │ │ │ ├── wi_snow_wind_64x64.h │ │ │ │ ├── wi_snowflake_cold_64x64.h │ │ │ │ ├── wi_solar_eclipse_64x64.h │ │ │ │ ├── wi_sprinkle_64x64.h │ │ │ │ ├── wi_stars_64x64.h │ │ │ │ ├── wi_storm_showers_64x64.h │ │ │ │ ├── wi_storm_warning_64x64.h │ │ │ │ ├── wi_strong_wind_64x64.h │ │ │ │ ├── wi_sunrise_64x64.h │ │ │ │ ├── wi_sunset_64x64.h │ │ │ │ ├── wi_thermometer_64x64.h │ │ │ │ ├── wi_thermometer_exterior_64x64.h │ │ │ │ ├── wi_thermometer_internal_64x64.h │ │ │ │ ├── wi_thunderstorm_64x64.h │ │ │ │ ├── wi_time_10_64x64.h │ │ │ │ ├── wi_time_11_64x64.h │ │ │ │ ├── wi_time_12_64x64.h │ │ │ │ ├── wi_time_1_64x64.h │ │ │ │ ├── wi_time_2_64x64.h │ │ │ │ ├── wi_time_3_64x64.h │ │ │ │ ├── wi_time_4_64x64.h │ │ │ │ ├── wi_time_5_64x64.h │ │ │ │ ├── wi_time_6_64x64.h │ │ │ │ ├── wi_time_7_64x64.h │ │ │ │ ├── wi_time_8_64x64.h │ │ │ │ ├── wi_time_9_64x64.h │ │ │ │ ├── wi_tornado_64x64.h │ │ │ │ ├── wi_train_64x64.h │ │ │ │ ├── wi_tsunami_64x64.h │ │ │ │ ├── wi_umbrella_64x64.h │ │ │ │ ├── wi_volcano_64x64.h │ │ │ │ ├── wi_wind_0deg_64x64.h │ │ │ │ ├── wi_wind_100deg_64x64.h │ │ │ │ ├── wi_wind_101_25deg_64x64.h │ │ │ │ ├── wi_wind_101deg_64x64.h │ │ │ │ ├── wi_wind_102deg_64x64.h │ │ │ │ ├── wi_wind_103deg_64x64.h │ │ │ │ ├── wi_wind_104deg_64x64.h │ │ │ │ ├── wi_wind_105deg_64x64.h │ │ │ │ ├── wi_wind_106deg_64x64.h │ │ │ │ ├── wi_wind_107deg_64x64.h │ │ │ │ ├── wi_wind_108deg_64x64.h │ │ │ │ ├── wi_wind_109deg_64x64.h │ │ │ │ ├── wi_wind_10deg_64x64.h │ │ │ │ ├── wi_wind_110deg_64x64.h │ │ │ │ ├── wi_wind_111deg_64x64.h │ │ │ │ ├── wi_wind_112_5deg_64x64.h │ │ │ │ ├── wi_wind_112deg_64x64.h │ │ │ │ ├── wi_wind_113deg_64x64.h │ │ │ │ ├── wi_wind_114deg_64x64.h │ │ │ │ ├── wi_wind_115deg_64x64.h │ │ │ │ ├── wi_wind_116deg_64x64.h │ │ │ │ ├── wi_wind_117deg_64x64.h │ │ │ │ ├── wi_wind_118deg_64x64.h │ │ │ │ ├── wi_wind_119deg_64x64.h │ │ │ │ ├── wi_wind_11_25deg_64x64.h │ │ │ │ ├── wi_wind_11deg_64x64.h │ │ │ │ ├── wi_wind_120deg_64x64.h │ │ │ │ ├── wi_wind_121deg_64x64.h │ │ │ │ ├── wi_wind_122deg_64x64.h │ │ │ │ ├── wi_wind_123_75deg_64x64.h │ │ │ │ ├── wi_wind_123deg_64x64.h │ │ │ │ ├── wi_wind_124deg_64x64.h │ │ │ │ ├── wi_wind_125deg_64x64.h │ │ │ │ ├── wi_wind_126deg_64x64.h │ │ │ │ ├── wi_wind_127deg_64x64.h │ │ │ │ ├── wi_wind_128deg_64x64.h │ │ │ │ ├── wi_wind_129deg_64x64.h │ │ │ │ ├── wi_wind_12deg_64x64.h │ │ │ │ ├── wi_wind_130deg_64x64.h │ │ │ │ ├── wi_wind_131deg_64x64.h │ │ │ │ ├── wi_wind_132deg_64x64.h │ │ │ │ ├── wi_wind_133deg_64x64.h │ │ │ │ ├── wi_wind_134deg_64x64.h │ │ │ │ ├── wi_wind_135deg_64x64.h │ │ │ │ ├── wi_wind_136deg_64x64.h │ │ │ │ ├── wi_wind_137deg_64x64.h │ │ │ │ ├── wi_wind_138deg_64x64.h │ │ │ │ ├── wi_wind_139deg_64x64.h │ │ │ │ ├── wi_wind_13deg_64x64.h │ │ │ │ ├── wi_wind_140deg_64x64.h │ │ │ │ ├── wi_wind_141deg_64x64.h │ │ │ │ ├── wi_wind_142deg_64x64.h │ │ │ │ ├── wi_wind_143deg_64x64.h │ │ │ │ ├── wi_wind_144deg_64x64.h │ │ │ │ ├── wi_wind_145deg_64x64.h │ │ │ │ ├── wi_wind_146_25deg_64x64.h │ │ │ │ ├── wi_wind_146deg_64x64.h │ │ │ │ ├── wi_wind_147deg_64x64.h │ │ │ │ ├── wi_wind_148deg_64x64.h │ │ │ │ ├── wi_wind_149deg_64x64.h │ │ │ │ ├── wi_wind_14deg_64x64.h │ │ │ │ ├── wi_wind_150deg_64x64.h │ │ │ │ ├── wi_wind_151deg_64x64.h │ │ │ │ ├── wi_wind_152deg_64x64.h │ │ │ │ ├── wi_wind_153deg_64x64.h │ │ │ │ ├── wi_wind_154deg_64x64.h │ │ │ │ ├── wi_wind_155deg_64x64.h │ │ │ │ ├── wi_wind_156deg_64x64.h │ │ │ │ ├── wi_wind_157_5deg_64x64.h │ │ │ │ ├── wi_wind_157deg_64x64.h │ │ │ │ ├── wi_wind_158deg_64x64.h │ │ │ │ ├── wi_wind_159deg_64x64.h │ │ │ │ ├── wi_wind_15deg_64x64.h │ │ │ │ ├── wi_wind_160deg_64x64.h │ │ │ │ ├── wi_wind_161deg_64x64.h │ │ │ │ ├── wi_wind_162deg_64x64.h │ │ │ │ ├── wi_wind_163deg_64x64.h │ │ │ │ ├── wi_wind_164deg_64x64.h │ │ │ │ ├── wi_wind_165deg_64x64.h │ │ │ │ ├── wi_wind_166deg_64x64.h │ │ │ │ ├── wi_wind_167deg_64x64.h │ │ │ │ ├── wi_wind_168_75deg_64x64.h │ │ │ │ ├── wi_wind_168deg_64x64.h │ │ │ │ ├── wi_wind_169deg_64x64.h │ │ │ │ ├── wi_wind_16deg_64x64.h │ │ │ │ ├── wi_wind_170deg_64x64.h │ │ │ │ ├── wi_wind_171deg_64x64.h │ │ │ │ ├── wi_wind_172deg_64x64.h │ │ │ │ ├── wi_wind_173deg_64x64.h │ │ │ │ ├── wi_wind_174deg_64x64.h │ │ │ │ ├── wi_wind_175deg_64x64.h │ │ │ │ ├── wi_wind_176deg_64x64.h │ │ │ │ ├── wi_wind_177deg_64x64.h │ │ │ │ ├── wi_wind_178deg_64x64.h │ │ │ │ ├── wi_wind_179deg_64x64.h │ │ │ │ ├── wi_wind_17deg_64x64.h │ │ │ │ ├── wi_wind_180deg_64x64.h │ │ │ │ ├── wi_wind_181deg_64x64.h │ │ │ │ ├── wi_wind_182deg_64x64.h │ │ │ │ ├── wi_wind_183deg_64x64.h │ │ │ │ ├── wi_wind_184deg_64x64.h │ │ │ │ ├── wi_wind_185deg_64x64.h │ │ │ │ ├── wi_wind_186deg_64x64.h │ │ │ │ ├── wi_wind_187deg_64x64.h │ │ │ │ ├── wi_wind_188deg_64x64.h │ │ │ │ ├── wi_wind_189deg_64x64.h │ │ │ │ ├── wi_wind_18deg_64x64.h │ │ │ │ ├── wi_wind_190deg_64x64.h │ │ │ │ ├── wi_wind_191_25deg_64x64.h │ │ │ │ ├── wi_wind_191deg_64x64.h │ │ │ │ ├── wi_wind_192deg_64x64.h │ │ │ │ ├── wi_wind_193deg_64x64.h │ │ │ │ ├── wi_wind_194deg_64x64.h │ │ │ │ ├── wi_wind_195deg_64x64.h │ │ │ │ ├── wi_wind_196deg_64x64.h │ │ │ │ ├── wi_wind_197deg_64x64.h │ │ │ │ ├── wi_wind_198deg_64x64.h │ │ │ │ ├── wi_wind_199deg_64x64.h │ │ │ │ ├── wi_wind_19deg_64x64.h │ │ │ │ ├── wi_wind_1deg_64x64.h │ │ │ │ ├── wi_wind_200deg_64x64.h │ │ │ │ ├── wi_wind_201deg_64x64.h │ │ │ │ ├── wi_wind_202_5deg_64x64.h │ │ │ │ ├── wi_wind_202deg_64x64.h │ │ │ │ ├── wi_wind_203deg_64x64.h │ │ │ │ ├── wi_wind_204deg_64x64.h │ │ │ │ ├── wi_wind_205deg_64x64.h │ │ │ │ ├── wi_wind_206deg_64x64.h │ │ │ │ ├── wi_wind_207deg_64x64.h │ │ │ │ ├── wi_wind_208deg_64x64.h │ │ │ │ ├── wi_wind_209deg_64x64.h │ │ │ │ ├── wi_wind_20deg_64x64.h │ │ │ │ ├── wi_wind_210deg_64x64.h │ │ │ │ ├── wi_wind_211deg_64x64.h │ │ │ │ ├── wi_wind_212deg_64x64.h │ │ │ │ ├── wi_wind_213_75deg_64x64.h │ │ │ │ ├── wi_wind_213deg_64x64.h │ │ │ │ ├── wi_wind_214deg_64x64.h │ │ │ │ ├── wi_wind_215deg_64x64.h │ │ │ │ ├── wi_wind_216deg_64x64.h │ │ │ │ ├── wi_wind_217deg_64x64.h │ │ │ │ ├── wi_wind_218deg_64x64.h │ │ │ │ ├── wi_wind_219deg_64x64.h │ │ │ │ ├── wi_wind_21deg_64x64.h │ │ │ │ ├── wi_wind_220deg_64x64.h │ │ │ │ ├── wi_wind_221deg_64x64.h │ │ │ │ ├── wi_wind_222deg_64x64.h │ │ │ │ ├── wi_wind_223deg_64x64.h │ │ │ │ ├── wi_wind_224deg_64x64.h │ │ │ │ ├── wi_wind_225deg_64x64.h │ │ │ │ ├── wi_wind_226deg_64x64.h │ │ │ │ ├── wi_wind_227deg_64x64.h │ │ │ │ ├── wi_wind_228deg_64x64.h │ │ │ │ ├── wi_wind_229deg_64x64.h │ │ │ │ ├── wi_wind_22_5deg_64x64.h │ │ │ │ ├── wi_wind_22deg_64x64.h │ │ │ │ ├── wi_wind_230deg_64x64.h │ │ │ │ ├── wi_wind_231deg_64x64.h │ │ │ │ ├── wi_wind_232deg_64x64.h │ │ │ │ ├── wi_wind_233deg_64x64.h │ │ │ │ ├── wi_wind_234deg_64x64.h │ │ │ │ ├── wi_wind_235deg_64x64.h │ │ │ │ ├── wi_wind_236_25deg_64x64.h │ │ │ │ ├── wi_wind_236deg_64x64.h │ │ │ │ ├── wi_wind_237deg_64x64.h │ │ │ │ ├── wi_wind_238deg_64x64.h │ │ │ │ ├── wi_wind_239deg_64x64.h │ │ │ │ ├── wi_wind_23deg_64x64.h │ │ │ │ ├── wi_wind_240deg_64x64.h │ │ │ │ ├── wi_wind_241deg_64x64.h │ │ │ │ ├── wi_wind_242deg_64x64.h │ │ │ │ ├── wi_wind_243deg_64x64.h │ │ │ │ ├── wi_wind_244deg_64x64.h │ │ │ │ ├── wi_wind_245deg_64x64.h │ │ │ │ ├── wi_wind_246deg_64x64.h │ │ │ │ ├── wi_wind_247_5deg_64x64.h │ │ │ │ ├── wi_wind_247deg_64x64.h │ │ │ │ ├── wi_wind_248deg_64x64.h │ │ │ │ ├── wi_wind_249deg_64x64.h │ │ │ │ ├── wi_wind_24deg_64x64.h │ │ │ │ ├── wi_wind_250deg_64x64.h │ │ │ │ ├── wi_wind_251deg_64x64.h │ │ │ │ ├── wi_wind_252deg_64x64.h │ │ │ │ ├── wi_wind_253deg_64x64.h │ │ │ │ ├── wi_wind_254deg_64x64.h │ │ │ │ ├── wi_wind_255deg_64x64.h │ │ │ │ ├── wi_wind_256deg_64x64.h │ │ │ │ ├── wi_wind_257deg_64x64.h │ │ │ │ ├── wi_wind_258_75deg_64x64.h │ │ │ │ ├── wi_wind_258deg_64x64.h │ │ │ │ ├── wi_wind_259deg_64x64.h │ │ │ │ ├── wi_wind_25deg_64x64.h │ │ │ │ ├── wi_wind_260deg_64x64.h │ │ │ │ ├── wi_wind_261deg_64x64.h │ │ │ │ ├── wi_wind_262deg_64x64.h │ │ │ │ ├── wi_wind_263deg_64x64.h │ │ │ │ ├── wi_wind_264deg_64x64.h │ │ │ │ ├── wi_wind_265deg_64x64.h │ │ │ │ ├── wi_wind_266deg_64x64.h │ │ │ │ ├── wi_wind_267deg_64x64.h │ │ │ │ ├── wi_wind_268deg_64x64.h │ │ │ │ ├── wi_wind_269deg_64x64.h │ │ │ │ ├── wi_wind_26deg_64x64.h │ │ │ │ ├── wi_wind_270deg_64x64.h │ │ │ │ ├── wi_wind_271deg_64x64.h │ │ │ │ ├── wi_wind_272deg_64x64.h │ │ │ │ ├── wi_wind_273deg_64x64.h │ │ │ │ ├── wi_wind_274deg_64x64.h │ │ │ │ ├── wi_wind_275deg_64x64.h │ │ │ │ ├── wi_wind_276deg_64x64.h │ │ │ │ ├── wi_wind_277deg_64x64.h │ │ │ │ ├── wi_wind_278deg_64x64.h │ │ │ │ ├── wi_wind_279deg_64x64.h │ │ │ │ ├── wi_wind_27deg_64x64.h │ │ │ │ ├── wi_wind_280deg_64x64.h │ │ │ │ ├── wi_wind_281_25deg_64x64.h │ │ │ │ ├── wi_wind_281deg_64x64.h │ │ │ │ ├── wi_wind_282deg_64x64.h │ │ │ │ ├── wi_wind_283deg_64x64.h │ │ │ │ ├── wi_wind_284deg_64x64.h │ │ │ │ ├── wi_wind_285deg_64x64.h │ │ │ │ ├── wi_wind_286deg_64x64.h │ │ │ │ ├── wi_wind_287deg_64x64.h │ │ │ │ ├── wi_wind_288deg_64x64.h │ │ │ │ ├── wi_wind_289deg_64x64.h │ │ │ │ ├── wi_wind_28deg_64x64.h │ │ │ │ ├── wi_wind_290deg_64x64.h │ │ │ │ ├── wi_wind_291deg_64x64.h │ │ │ │ ├── wi_wind_292_5deg_64x64.h │ │ │ │ ├── wi_wind_292deg_64x64.h │ │ │ │ ├── wi_wind_293deg_64x64.h │ │ │ │ ├── wi_wind_294deg_64x64.h │ │ │ │ ├── wi_wind_295deg_64x64.h │ │ │ │ ├── wi_wind_296deg_64x64.h │ │ │ │ ├── wi_wind_297deg_64x64.h │ │ │ │ ├── wi_wind_298deg_64x64.h │ │ │ │ ├── wi_wind_299deg_64x64.h │ │ │ │ ├── wi_wind_29deg_64x64.h │ │ │ │ ├── wi_wind_2deg_64x64.h │ │ │ │ ├── wi_wind_300deg_64x64.h │ │ │ │ ├── wi_wind_301deg_64x64.h │ │ │ │ ├── wi_wind_302deg_64x64.h │ │ │ │ ├── wi_wind_303_75deg_64x64.h │ │ │ │ ├── wi_wind_303deg_64x64.h │ │ │ │ ├── wi_wind_304deg_64x64.h │ │ │ │ ├── wi_wind_305deg_64x64.h │ │ │ │ ├── wi_wind_306deg_64x64.h │ │ │ │ ├── wi_wind_307deg_64x64.h │ │ │ │ ├── wi_wind_308deg_64x64.h │ │ │ │ ├── wi_wind_309deg_64x64.h │ │ │ │ ├── wi_wind_30deg_64x64.h │ │ │ │ ├── wi_wind_310deg_64x64.h │ │ │ │ ├── wi_wind_311deg_64x64.h │ │ │ │ ├── wi_wind_312deg_64x64.h │ │ │ │ ├── wi_wind_313deg_64x64.h │ │ │ │ ├── wi_wind_314deg_64x64.h │ │ │ │ ├── wi_wind_315deg_64x64.h │ │ │ │ ├── wi_wind_316deg_64x64.h │ │ │ │ ├── wi_wind_317deg_64x64.h │ │ │ │ ├── wi_wind_318deg_64x64.h │ │ │ │ ├── wi_wind_319deg_64x64.h │ │ │ │ ├── wi_wind_31deg_64x64.h │ │ │ │ ├── wi_wind_320deg_64x64.h │ │ │ │ ├── wi_wind_321deg_64x64.h │ │ │ │ ├── wi_wind_322deg_64x64.h │ │ │ │ ├── wi_wind_323deg_64x64.h │ │ │ │ ├── wi_wind_324deg_64x64.h │ │ │ │ ├── wi_wind_325deg_64x64.h │ │ │ │ ├── wi_wind_326_25deg_64x64.h │ │ │ │ ├── wi_wind_326deg_64x64.h │ │ │ │ ├── wi_wind_327deg_64x64.h │ │ │ │ ├── wi_wind_328deg_64x64.h │ │ │ │ ├── wi_wind_329deg_64x64.h │ │ │ │ ├── wi_wind_32deg_64x64.h │ │ │ │ ├── wi_wind_330deg_64x64.h │ │ │ │ ├── wi_wind_331deg_64x64.h │ │ │ │ ├── wi_wind_332deg_64x64.h │ │ │ │ ├── wi_wind_333deg_64x64.h │ │ │ │ ├── wi_wind_334deg_64x64.h │ │ │ │ ├── wi_wind_335deg_64x64.h │ │ │ │ ├── wi_wind_336deg_64x64.h │ │ │ │ ├── wi_wind_337_5deg_64x64.h │ │ │ │ ├── wi_wind_337deg_64x64.h │ │ │ │ ├── wi_wind_338deg_64x64.h │ │ │ │ ├── wi_wind_339deg_64x64.h │ │ │ │ ├── wi_wind_33_75deg_64x64.h │ │ │ │ ├── wi_wind_33deg_64x64.h │ │ │ │ ├── wi_wind_340deg_64x64.h │ │ │ │ ├── wi_wind_341deg_64x64.h │ │ │ │ ├── wi_wind_342deg_64x64.h │ │ │ │ ├── wi_wind_343deg_64x64.h │ │ │ │ ├── wi_wind_344deg_64x64.h │ │ │ │ ├── wi_wind_345deg_64x64.h │ │ │ │ ├── wi_wind_346deg_64x64.h │ │ │ │ ├── wi_wind_347deg_64x64.h │ │ │ │ ├── wi_wind_348_75deg_64x64.h │ │ │ │ ├── wi_wind_348deg_64x64.h │ │ │ │ ├── wi_wind_349deg_64x64.h │ │ │ │ ├── wi_wind_34deg_64x64.h │ │ │ │ ├── wi_wind_350deg_64x64.h │ │ │ │ ├── wi_wind_351deg_64x64.h │ │ │ │ ├── wi_wind_352deg_64x64.h │ │ │ │ ├── wi_wind_353deg_64x64.h │ │ │ │ ├── wi_wind_354deg_64x64.h │ │ │ │ ├── wi_wind_355deg_64x64.h │ │ │ │ ├── wi_wind_356deg_64x64.h │ │ │ │ ├── wi_wind_357deg_64x64.h │ │ │ │ ├── wi_wind_358deg_64x64.h │ │ │ │ ├── wi_wind_359deg_64x64.h │ │ │ │ ├── wi_wind_35deg_64x64.h │ │ │ │ ├── wi_wind_36deg_64x64.h │ │ │ │ ├── wi_wind_37deg_64x64.h │ │ │ │ ├── wi_wind_38deg_64x64.h │ │ │ │ ├── wi_wind_39deg_64x64.h │ │ │ │ ├── wi_wind_3deg_64x64.h │ │ │ │ ├── wi_wind_40deg_64x64.h │ │ │ │ ├── wi_wind_41deg_64x64.h │ │ │ │ ├── wi_wind_42deg_64x64.h │ │ │ │ ├── wi_wind_43deg_64x64.h │ │ │ │ ├── wi_wind_44deg_64x64.h │ │ │ │ ├── wi_wind_45deg_64x64.h │ │ │ │ ├── wi_wind_46deg_64x64.h │ │ │ │ ├── wi_wind_47deg_64x64.h │ │ │ │ ├── wi_wind_48deg_64x64.h │ │ │ │ ├── wi_wind_49deg_64x64.h │ │ │ │ ├── wi_wind_4deg_64x64.h │ │ │ │ ├── wi_wind_50deg_64x64.h │ │ │ │ ├── wi_wind_51deg_64x64.h │ │ │ │ ├── wi_wind_52deg_64x64.h │ │ │ │ ├── wi_wind_53deg_64x64.h │ │ │ │ ├── wi_wind_54deg_64x64.h │ │ │ │ ├── wi_wind_55deg_64x64.h │ │ │ │ ├── wi_wind_56_25deg_64x64.h │ │ │ │ ├── wi_wind_56deg_64x64.h │ │ │ │ ├── wi_wind_57deg_64x64.h │ │ │ │ ├── wi_wind_58deg_64x64.h │ │ │ │ ├── wi_wind_59deg_64x64.h │ │ │ │ ├── wi_wind_5deg_64x64.h │ │ │ │ ├── wi_wind_60deg_64x64.h │ │ │ │ ├── wi_wind_61deg_64x64.h │ │ │ │ ├── wi_wind_62deg_64x64.h │ │ │ │ ├── wi_wind_63deg_64x64.h │ │ │ │ ├── wi_wind_64deg_64x64.h │ │ │ │ ├── wi_wind_65deg_64x64.h │ │ │ │ ├── wi_wind_66deg_64x64.h │ │ │ │ ├── wi_wind_67_5deg_64x64.h │ │ │ │ ├── wi_wind_67deg_64x64.h │ │ │ │ ├── wi_wind_68deg_64x64.h │ │ │ │ ├── wi_wind_69deg_64x64.h │ │ │ │ ├── wi_wind_6deg_64x64.h │ │ │ │ ├── wi_wind_70deg_64x64.h │ │ │ │ ├── wi_wind_71deg_64x64.h │ │ │ │ ├── wi_wind_72deg_64x64.h │ │ │ │ ├── wi_wind_73deg_64x64.h │ │ │ │ ├── wi_wind_74deg_64x64.h │ │ │ │ ├── wi_wind_75deg_64x64.h │ │ │ │ ├── wi_wind_76deg_64x64.h │ │ │ │ ├── wi_wind_77deg_64x64.h │ │ │ │ ├── wi_wind_78_75deg_64x64.h │ │ │ │ ├── wi_wind_78deg_64x64.h │ │ │ │ ├── wi_wind_79deg_64x64.h │ │ │ │ ├── wi_wind_7deg_64x64.h │ │ │ │ ├── wi_wind_80deg_64x64.h │ │ │ │ ├── wi_wind_81deg_64x64.h │ │ │ │ ├── wi_wind_82deg_64x64.h │ │ │ │ ├── wi_wind_83deg_64x64.h │ │ │ │ ├── wi_wind_84deg_64x64.h │ │ │ │ ├── wi_wind_85deg_64x64.h │ │ │ │ ├── wi_wind_86deg_64x64.h │ │ │ │ ├── wi_wind_87deg_64x64.h │ │ │ │ ├── wi_wind_88deg_64x64.h │ │ │ │ ├── wi_wind_89deg_64x64.h │ │ │ │ ├── wi_wind_8deg_64x64.h │ │ │ │ ├── wi_wind_90deg_64x64.h │ │ │ │ ├── wi_wind_91deg_64x64.h │ │ │ │ ├── wi_wind_92deg_64x64.h │ │ │ │ ├── wi_wind_93deg_64x64.h │ │ │ │ ├── wi_wind_94deg_64x64.h │ │ │ │ ├── wi_wind_95deg_64x64.h │ │ │ │ ├── wi_wind_96deg_64x64.h │ │ │ │ ├── wi_wind_97deg_64x64.h │ │ │ │ ├── wi_wind_98deg_64x64.h │ │ │ │ ├── wi_wind_99deg_64x64.h │ │ │ │ ├── wi_wind_9deg_64x64.h │ │ │ │ ├── wi_wind_beaufort_0_64x64.h │ │ │ │ ├── wi_wind_beaufort_10_64x64.h │ │ │ │ ├── wi_wind_beaufort_11_64x64.h │ │ │ │ ├── wi_wind_beaufort_12_64x64.h │ │ │ │ ├── wi_wind_beaufort_1_64x64.h │ │ │ │ ├── wi_wind_beaufort_2_64x64.h │ │ │ │ ├── wi_wind_beaufort_3_64x64.h │ │ │ │ ├── wi_wind_beaufort_4_64x64.h │ │ │ │ ├── wi_wind_beaufort_5_64x64.h │ │ │ │ ├── wi_wind_beaufort_6_64x64.h │ │ │ │ ├── wi_wind_beaufort_7_64x64.h │ │ │ │ ├── wi_wind_beaufort_8_64x64.h │ │ │ │ ├── wi_wind_beaufort_9_64x64.h │ │ │ │ ├── wi_windy_64x64.h │ │ │ │ ├── wifi_1_bar_64x64.h │ │ │ │ ├── wifi_2_bar_64x64.h │ │ │ │ ├── wifi_3_bar_64x64.h │ │ │ │ ├── wifi_64x64.h │ │ │ │ ├── wifi_off_64x64.h │ │ │ │ ├── wifi_x_64x64.h │ │ │ │ ├── wind_direction_meteorological_0deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_100deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_101deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_102deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_103deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_104deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_105deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_106deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_107deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_108deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_109deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_10deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_110deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_111deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_112deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_113deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_114deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_115deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_116deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_117deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_118deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_119deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_11deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_120deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_121deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_122deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_123deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_124deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_125deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_126deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_127deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_128deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_129deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_12deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_130deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_131deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_132deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_133deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_134deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_135deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_136deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_137deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_138deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_139deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_13deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_140deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_141deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_142deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_143deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_144deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_145deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_146deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_147deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_148deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_149deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_14deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_150deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_151deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_152deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_153deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_154deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_155deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_156deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_157deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_158deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_159deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_15deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_160deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_161deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_162deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_163deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_164deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_165deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_166deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_167deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_168deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_169deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_16deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_170deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_171deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_172deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_173deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_174deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_175deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_176deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_177deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_178deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_179deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_17deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_180deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_181deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_182deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_183deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_184deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_185deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_186deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_187deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_188deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_189deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_18deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_190deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_191deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_192deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_193deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_194deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_195deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_196deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_197deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_198deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_199deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_19deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_1deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_200deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_201deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_202deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_203deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_204deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_205deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_206deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_207deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_208deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_209deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_20deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_210deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_211deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_212deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_213deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_214deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_215deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_216deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_217deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_218deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_219deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_21deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_220deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_221deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_222deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_223deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_224deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_225deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_226deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_227deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_228deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_229deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_22deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_230deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_231deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_232deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_233deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_234deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_235deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_236deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_237deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_238deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_239deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_23deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_240deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_241deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_242deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_243deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_244deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_245deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_246deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_247deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_248deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_249deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_24deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_250deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_251deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_252deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_253deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_254deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_255deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_256deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_257deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_258deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_259deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_260deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_261deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_262deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_263deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_264deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_265deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_266deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_267deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_268deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_269deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_26deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_270deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_271deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_272deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_273deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_274deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_275deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_276deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_277deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_278deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_279deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_27deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_280deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_281deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_282deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_283deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_284deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_285deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_286deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_287deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_288deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_289deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_28deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_290deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_291deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_292deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_293deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_294deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_295deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_296deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_297deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_298deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_299deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_29deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_2deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_300deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_301deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_302deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_303deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_304deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_305deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_306deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_307deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_308deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_309deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_30deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_310deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_311deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_312deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_313deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_314deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_315deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_316deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_317deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_318deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_319deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_31deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_320deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_321deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_322deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_323deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_324deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_325deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_326deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_327deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_328deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_329deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_32deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_330deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_331deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_332deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_333deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_334deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_335deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_336deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_337deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_338deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_339deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_33deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_340deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_341deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_342deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_343deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_344deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_345deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_346deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_347deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_348deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_349deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_34deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_350deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_351deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_352deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_353deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_354deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_355deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_356deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_357deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_358deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_359deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_35deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_36deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_37deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_38deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_39deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_3deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_40deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_41deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_42deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_43deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_44deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_45deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_46deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_47deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_48deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_49deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_4deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_50deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_51deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_52deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_53deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_54deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_55deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_56deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_57deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_58deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_59deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_60deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_61deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_62deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_63deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_64deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_65deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_66deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_67deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_68deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_69deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_6deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_70deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_71deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_72deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_73deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_74deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_76deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_77deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_78deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_79deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_7deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_80deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_81deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_82deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_83deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_84deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_85deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_86deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_87deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_88deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_89deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_8deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_90deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_91deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_92deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_93deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_94deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_95deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_96deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_97deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_98deg_64x64.h │ │ │ │ ├── wind_direction_meteorological_99deg_64x64.h │ │ │ │ └── wind_direction_meteorological_9deg_64x64.h │ │ │ ├── 96x96 │ │ │ │ ├── air_filter_96x96.h │ │ │ │ ├── battery_0_bar_0deg_96x96.h │ │ │ │ ├── battery_0_bar_180deg_96x96.h │ │ │ │ ├── battery_0_bar_270deg_96x96.h │ │ │ │ ├── battery_0_bar_90deg_96x96.h │ │ │ │ ├── battery_1_bar_0deg_96x96.h │ │ │ │ ├── battery_1_bar_180deg_96x96.h │ │ │ │ ├── battery_1_bar_270deg_96x96.h │ │ │ │ ├── battery_1_bar_90deg_96x96.h │ │ │ │ ├── battery_2_bar_0deg_96x96.h │ │ │ │ ├── battery_2_bar_180deg_96x96.h │ │ │ │ ├── battery_2_bar_270deg_96x96.h │ │ │ │ ├── battery_2_bar_90deg_96x96.h │ │ │ │ ├── battery_3_bar_0deg_96x96.h │ │ │ │ ├── battery_3_bar_180deg_96x96.h │ │ │ │ ├── battery_3_bar_270deg_96x96.h │ │ │ │ ├── battery_3_bar_90deg_96x96.h │ │ │ │ ├── battery_4_bar_0deg_96x96.h │ │ │ │ ├── battery_4_bar_180deg_96x96.h │ │ │ │ ├── battery_4_bar_270deg_96x96.h │ │ │ │ ├── battery_4_bar_90deg_96x96.h │ │ │ │ ├── battery_5_bar_0deg_96x96.h │ │ │ │ ├── battery_5_bar_180deg_96x96.h │ │ │ │ ├── battery_5_bar_270deg_96x96.h │ │ │ │ ├── battery_5_bar_90deg_96x96.h │ │ │ │ ├── battery_6_bar_0deg_96x96.h │ │ │ │ ├── battery_6_bar_180deg_96x96.h │ │ │ │ ├── battery_6_bar_270deg_96x96.h │ │ │ │ ├── battery_6_bar_90deg_96x96.h │ │ │ │ ├── battery_alert_0deg_96x96.h │ │ │ │ ├── battery_alert_180deg_96x96.h │ │ │ │ ├── battery_alert_270deg_96x96.h │ │ │ │ ├── battery_alert_90deg_96x96.h │ │ │ │ ├── battery_charging_full_0deg_96x96.h │ │ │ │ ├── battery_charging_full_180deg_96x96.h │ │ │ │ ├── battery_charging_full_270deg_96x96.h │ │ │ │ ├── battery_charging_full_90deg_96x96.h │ │ │ │ ├── battery_full_0deg_96x96.h │ │ │ │ ├── battery_full_180deg_96x96.h │ │ │ │ ├── battery_full_270deg_96x96.h │ │ │ │ ├── battery_full_90deg_96x96.h │ │ │ │ ├── biological_hazard_symbol_96x96.h │ │ │ │ ├── error_icon_96x96.h │ │ │ │ ├── house_96x96.h │ │ │ │ ├── house_humidity_96x96.h │ │ │ │ ├── house_raindrops_96x96.h │ │ │ │ ├── house_thermometer_96x96.h │ │ │ │ ├── ionizing_radiation_symbol_96x96.h │ │ │ │ ├── visibility_icon_96x96.h │ │ │ │ ├── warning_icon_96x96.h │ │ │ │ ├── wi_alien_96x96.h │ │ │ │ ├── wi_barometer_96x96.h │ │ │ │ ├── wi_celsius_96x96.h │ │ │ │ ├── wi_cloud_96x96.h │ │ │ │ ├── wi_cloud_down_96x96.h │ │ │ │ ├── wi_cloud_refresh_96x96.h │ │ │ │ ├── wi_cloud_up_96x96.h │ │ │ │ ├── wi_cloudy_96x96.h │ │ │ │ ├── wi_cloudy_gusts_96x96.h │ │ │ │ ├── wi_cloudy_windy_96x96.h │ │ │ │ ├── wi_day_cloudy_96x96.h │ │ │ │ ├── wi_day_cloudy_gusts_96x96.h │ │ │ │ ├── wi_day_cloudy_high_96x96.h │ │ │ │ ├── wi_day_cloudy_windy_96x96.h │ │ │ │ ├── wi_day_fog_96x96.h │ │ │ │ ├── wi_day_hail_96x96.h │ │ │ │ ├── wi_day_haze_96x96.h │ │ │ │ ├── wi_day_light_wind_96x96.h │ │ │ │ ├── wi_day_lightning_96x96.h │ │ │ │ ├── wi_day_rain_96x96.h │ │ │ │ ├── wi_day_rain_mix_96x96.h │ │ │ │ ├── wi_day_rain_wind_96x96.h │ │ │ │ ├── wi_day_showers_96x96.h │ │ │ │ ├── wi_day_sleet_96x96.h │ │ │ │ ├── wi_day_sleet_storm_96x96.h │ │ │ │ ├── wi_day_snow_96x96.h │ │ │ │ ├── wi_day_snow_thunderstorm_96x96.h │ │ │ │ ├── wi_day_snow_wind_96x96.h │ │ │ │ ├── wi_day_sprinkle_96x96.h │ │ │ │ ├── wi_day_storm_showers_96x96.h │ │ │ │ ├── wi_day_sunny_96x96.h │ │ │ │ ├── wi_day_sunny_overcast_96x96.h │ │ │ │ ├── wi_day_thunderstorm_96x96.h │ │ │ │ ├── wi_day_windy_96x96.h │ │ │ │ ├── wi_degrees_96x96.h │ │ │ │ ├── wi_direction_down_96x96.h │ │ │ │ ├── wi_direction_down_left_96x96.h │ │ │ │ ├── wi_direction_down_right_96x96.h │ │ │ │ ├── wi_direction_left_96x96.h │ │ │ │ ├── wi_direction_right_96x96.h │ │ │ │ ├── wi_direction_up_96x96.h │ │ │ │ ├── wi_direction_up_left_96x96.h │ │ │ │ ├── wi_direction_up_right_96x96.h │ │ │ │ ├── wi_dust_96x96.h │ │ │ │ ├── wi_earthquake_96x96.h │ │ │ │ ├── wi_fahrenheit_96x96.h │ │ │ │ ├── wi_fire_96x96.h │ │ │ │ ├── wi_flood_96x96.h │ │ │ │ ├── wi_fog_96x96.h │ │ │ │ ├── wi_gale_warning_96x96.h │ │ │ │ ├── wi_hail_96x96.h │ │ │ │ ├── wi_horizon_96x96.h │ │ │ │ ├── wi_horizon_alt_96x96.h │ │ │ │ ├── wi_hot_96x96.h │ │ │ │ ├── wi_humidity_96x96.h │ │ │ │ ├── wi_hurricane_96x96.h │ │ │ │ ├── wi_hurricane_warning_96x96.h │ │ │ │ ├── wi_lightning_96x96.h │ │ │ │ ├── wi_lunar_eclipse_96x96.h │ │ │ │ ├── wi_meteor_96x96.h │ │ │ │ ├── wi_moon_alt_first_quarter_96x96.h │ │ │ │ ├── wi_moon_alt_full_96x96.h │ │ │ │ ├── wi_moon_alt_new_96x96.h │ │ │ │ ├── wi_moon_alt_third_quarter_96x96.h │ │ │ │ ├── wi_moon_alt_waning_crescent_1_96x96.h │ │ │ │ ├── wi_moon_alt_waning_crescent_2_96x96.h │ │ │ │ ├── wi_moon_alt_waning_crescent_3_96x96.h │ │ │ │ ├── wi_moon_alt_waning_crescent_4_96x96.h │ │ │ │ ├── wi_moon_alt_waning_crescent_5_96x96.h │ │ │ │ ├── wi_moon_alt_waning_crescent_6_96x96.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_1_96x96.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_2_96x96.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_3_96x96.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_4_96x96.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_5_96x96.h │ │ │ │ ├── wi_moon_alt_waning_gibbous_6_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_1_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_2_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_3_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_4_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_5_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_crescent_6_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_1_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_2_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_3_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_4_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_5_96x96.h │ │ │ │ ├── wi_moon_alt_waxing_gibbous_6_96x96.h │ │ │ │ ├── wi_moon_first_quarter_96x96.h │ │ │ │ ├── wi_moon_full_96x96.h │ │ │ │ ├── wi_moon_new_96x96.h │ │ │ │ ├── wi_moon_third_quarter_96x96.h │ │ │ │ ├── wi_moon_waning_crescent_1_96x96.h │ │ │ │ ├── wi_moon_waning_crescent_2_96x96.h │ │ │ │ ├── wi_moon_waning_crescent_3_96x96.h │ │ │ │ ├── wi_moon_waning_crescent_4_96x96.h │ │ │ │ ├── wi_moon_waning_crescent_5_96x96.h │ │ │ │ ├── wi_moon_waning_crescent_6_96x96.h │ │ │ │ ├── wi_moon_waning_gibbous_1_96x96.h │ │ │ │ ├── wi_moon_waning_gibbous_2_96x96.h │ │ │ │ ├── wi_moon_waning_gibbous_3_96x96.h │ │ │ │ ├── wi_moon_waning_gibbous_4_96x96.h │ │ │ │ ├── wi_moon_waning_gibbous_5_96x96.h │ │ │ │ ├── wi_moon_waning_gibbous_6_96x96.h │ │ │ │ ├── wi_moon_waxing_6_96x96.h │ │ │ │ ├── wi_moon_waxing_crescent_1_96x96.h │ │ │ │ ├── wi_moon_waxing_crescent_2_96x96.h │ │ │ │ ├── wi_moon_waxing_crescent_3_96x96.h │ │ │ │ ├── wi_moon_waxing_crescent_4_96x96.h │ │ │ │ ├── wi_moon_waxing_crescent_5_96x96.h │ │ │ │ ├── wi_moon_waxing_gibbous_1_96x96.h │ │ │ │ ├── wi_moon_waxing_gibbous_2_96x96.h │ │ │ │ ├── wi_moon_waxing_gibbous_3_96x96.h │ │ │ │ ├── wi_moon_waxing_gibbous_4_96x96.h │ │ │ │ ├── wi_moon_waxing_gibbous_5_96x96.h │ │ │ │ ├── wi_moon_waxing_gibbous_6_96x96.h │ │ │ │ ├── wi_moonrise_96x96.h │ │ │ │ ├── wi_moonset_96x96.h │ │ │ │ ├── wi_na_96x96.h │ │ │ │ ├── wi_night_alt_cloudy_96x96.h │ │ │ │ ├── wi_night_alt_cloudy_gusts_96x96.h │ │ │ │ ├── wi_night_alt_cloudy_high_96x96.h │ │ │ │ ├── wi_night_alt_cloudy_windy_96x96.h │ │ │ │ ├── wi_night_alt_hail_96x96.h │ │ │ │ ├── wi_night_alt_lightning_96x96.h │ │ │ │ ├── wi_night_alt_partly_cloudy_96x96.h │ │ │ │ ├── wi_night_alt_rain_96x96.h │ │ │ │ ├── wi_night_alt_rain_mix_96x96.h │ │ │ │ ├── wi_night_alt_rain_wind_96x96.h │ │ │ │ ├── wi_night_alt_showers_96x96.h │ │ │ │ ├── wi_night_alt_sleet_96x96.h │ │ │ │ ├── wi_night_alt_sleet_storm_96x96.h │ │ │ │ ├── wi_night_alt_snow_96x96.h │ │ │ │ ├── wi_night_alt_snow_thunderstorm_96x96.h │ │ │ │ ├── wi_night_alt_snow_wind_96x96.h │ │ │ │ ├── wi_night_alt_sprinkle_96x96.h │ │ │ │ ├── wi_night_alt_storm_showers_96x96.h │ │ │ │ ├── wi_night_alt_thunderstorm_96x96.h │ │ │ │ ├── wi_night_clear_96x96.h │ │ │ │ ├── wi_night_cloudy_96x96.h │ │ │ │ ├── wi_night_cloudy_gusts_96x96.h │ │ │ │ ├── wi_night_cloudy_high_96x96.h │ │ │ │ ├── wi_night_cloudy_windy_96x96.h │ │ │ │ ├── wi_night_fog_96x96.h │ │ │ │ ├── wi_night_hail_96x96.h │ │ │ │ ├── wi_night_lightning_96x96.h │ │ │ │ ├── wi_night_partly_cloudy_96x96.h │ │ │ │ ├── wi_night_rain_96x96.h │ │ │ │ ├── wi_night_rain_mix_96x96.h │ │ │ │ ├── wi_night_rain_wind_96x96.h │ │ │ │ ├── wi_night_showers_96x96.h │ │ │ │ ├── wi_night_sleet_96x96.h │ │ │ │ ├── wi_night_sleet_storm_96x96.h │ │ │ │ ├── wi_night_snow_96x96.h │ │ │ │ ├── wi_night_snow_thunderstorm_96x96.h │ │ │ │ ├── wi_night_snow_wind_96x96.h │ │ │ │ ├── wi_night_sprinkle_96x96.h │ │ │ │ ├── wi_night_storm_showers_96x96.h │ │ │ │ ├── wi_night_thunderstorm_96x96.h │ │ │ │ ├── wi_rain_96x96.h │ │ │ │ ├── wi_rain_mix_96x96.h │ │ │ │ ├── wi_rain_wind_96x96.h │ │ │ │ ├── wi_raindrop_96x96.h │ │ │ │ ├── wi_raindrops_96x96.h │ │ │ │ ├── wi_refresh_96x96.h │ │ │ │ ├── wi_refresh_alt_96x96.h │ │ │ │ ├── wi_sandstorm_96x96.h │ │ │ │ ├── wi_showers_96x96.h │ │ │ │ ├── wi_sleet_96x96.h │ │ │ │ ├── wi_small_craft_advisory_96x96.h │ │ │ │ ├── wi_smog_96x96.h │ │ │ │ ├── wi_smoke_96x96.h │ │ │ │ ├── wi_snow_96x96.h │ │ │ │ ├── wi_snow_wind_96x96.h │ │ │ │ ├── wi_snowflake_cold_96x96.h │ │ │ │ ├── wi_solar_eclipse_96x96.h │ │ │ │ ├── wi_sprinkle_96x96.h │ │ │ │ ├── wi_stars_96x96.h │ │ │ │ ├── wi_storm_showers_96x96.h │ │ │ │ ├── wi_storm_warning_96x96.h │ │ │ │ ├── wi_strong_wind_96x96.h │ │ │ │ ├── wi_sunrise_96x96.h │ │ │ │ ├── wi_sunset_96x96.h │ │ │ │ ├── wi_thermometer_96x96.h │ │ │ │ ├── wi_thermometer_exterior_96x96.h │ │ │ │ ├── wi_thermometer_internal_96x96.h │ │ │ │ ├── wi_thunderstorm_96x96.h │ │ │ │ ├── wi_time_10_96x96.h │ │ │ │ ├── wi_time_11_96x96.h │ │ │ │ ├── wi_time_12_96x96.h │ │ │ │ ├── wi_time_1_96x96.h │ │ │ │ ├── wi_time_2_96x96.h │ │ │ │ ├── wi_time_3_96x96.h │ │ │ │ ├── wi_time_4_96x96.h │ │ │ │ ├── wi_time_5_96x96.h │ │ │ │ ├── wi_time_6_96x96.h │ │ │ │ ├── wi_time_7_96x96.h │ │ │ │ ├── wi_time_8_96x96.h │ │ │ │ ├── wi_time_9_96x96.h │ │ │ │ ├── wi_tornado_96x96.h │ │ │ │ ├── wi_train_96x96.h │ │ │ │ ├── wi_tsunami_96x96.h │ │ │ │ ├── wi_umbrella_96x96.h │ │ │ │ ├── wi_volcano_96x96.h │ │ │ │ ├── wi_wind_0deg_96x96.h │ │ │ │ ├── wi_wind_100deg_96x96.h │ │ │ │ ├── wi_wind_101_25deg_96x96.h │ │ │ │ ├── wi_wind_101deg_96x96.h │ │ │ │ ├── wi_wind_102deg_96x96.h │ │ │ │ ├── wi_wind_103deg_96x96.h │ │ │ │ ├── wi_wind_104deg_96x96.h │ │ │ │ ├── wi_wind_105deg_96x96.h │ │ │ │ ├── wi_wind_106deg_96x96.h │ │ │ │ ├── wi_wind_107deg_96x96.h │ │ │ │ ├── wi_wind_108deg_96x96.h │ │ │ │ ├── wi_wind_109deg_96x96.h │ │ │ │ ├── wi_wind_10deg_96x96.h │ │ │ │ ├── wi_wind_110deg_96x96.h │ │ │ │ ├── wi_wind_111deg_96x96.h │ │ │ │ ├── wi_wind_112_5deg_96x96.h │ │ │ │ ├── wi_wind_112deg_96x96.h │ │ │ │ ├── wi_wind_113deg_96x96.h │ │ │ │ ├── wi_wind_114deg_96x96.h │ │ │ │ ├── wi_wind_115deg_96x96.h │ │ │ │ ├── wi_wind_116deg_96x96.h │ │ │ │ ├── wi_wind_117deg_96x96.h │ │ │ │ ├── wi_wind_118deg_96x96.h │ │ │ │ ├── wi_wind_119deg_96x96.h │ │ │ │ ├── wi_wind_11_25deg_96x96.h │ │ │ │ ├── wi_wind_11deg_96x96.h │ │ │ │ ├── wi_wind_120deg_96x96.h │ │ │ │ ├── wi_wind_121deg_96x96.h │ │ │ │ ├── wi_wind_122deg_96x96.h │ │ │ │ ├── wi_wind_123_75deg_96x96.h │ │ │ │ ├── wi_wind_123deg_96x96.h │ │ │ │ ├── wi_wind_124deg_96x96.h │ │ │ │ ├── wi_wind_125deg_96x96.h │ │ │ │ ├── wi_wind_126deg_96x96.h │ │ │ │ ├── wi_wind_127deg_96x96.h │ │ │ │ ├── wi_wind_128deg_96x96.h │ │ │ │ ├── wi_wind_129deg_96x96.h │ │ │ │ ├── wi_wind_12deg_96x96.h │ │ │ │ ├── wi_wind_130deg_96x96.h │ │ │ │ ├── wi_wind_131deg_96x96.h │ │ │ │ ├── wi_wind_132deg_96x96.h │ │ │ │ ├── wi_wind_133deg_96x96.h │ │ │ │ ├── wi_wind_134deg_96x96.h │ │ │ │ ├── wi_wind_135deg_96x96.h │ │ │ │ ├── wi_wind_136deg_96x96.h │ │ │ │ ├── wi_wind_137deg_96x96.h │ │ │ │ ├── wi_wind_138deg_96x96.h │ │ │ │ ├── wi_wind_139deg_96x96.h │ │ │ │ ├── wi_wind_13deg_96x96.h │ │ │ │ ├── wi_wind_140deg_96x96.h │ │ │ │ ├── wi_wind_141deg_96x96.h │ │ │ │ ├── wi_wind_142deg_96x96.h │ │ │ │ ├── wi_wind_143deg_96x96.h │ │ │ │ ├── wi_wind_144deg_96x96.h │ │ │ │ ├── wi_wind_145deg_96x96.h │ │ │ │ ├── wi_wind_146_25deg_96x96.h │ │ │ │ ├── wi_wind_146deg_96x96.h │ │ │ │ ├── wi_wind_147deg_96x96.h │ │ │ │ ├── wi_wind_148deg_96x96.h │ │ │ │ ├── wi_wind_149deg_96x96.h │ │ │ │ ├── wi_wind_14deg_96x96.h │ │ │ │ ├── wi_wind_150deg_96x96.h │ │ │ │ ├── wi_wind_151deg_96x96.h │ │ │ │ ├── wi_wind_152deg_96x96.h │ │ │ │ ├── wi_wind_153deg_96x96.h │ │ │ │ ├── wi_wind_154deg_96x96.h │ │ │ │ ├── wi_wind_155deg_96x96.h │ │ │ │ ├── wi_wind_156deg_96x96.h │ │ │ │ ├── wi_wind_157_5deg_96x96.h │ │ │ │ ├── wi_wind_157deg_96x96.h │ │ │ │ ├── wi_wind_158deg_96x96.h │ │ │ │ ├── wi_wind_159deg_96x96.h │ │ │ │ ├── wi_wind_15deg_96x96.h │ │ │ │ ├── wi_wind_160deg_96x96.h │ │ │ │ ├── wi_wind_161deg_96x96.h │ │ │ │ ├── wi_wind_162deg_96x96.h │ │ │ │ ├── wi_wind_163deg_96x96.h │ │ │ │ ├── wi_wind_164deg_96x96.h │ │ │ │ ├── wi_wind_165deg_96x96.h │ │ │ │ ├── wi_wind_166deg_96x96.h │ │ │ │ ├── wi_wind_167deg_96x96.h │ │ │ │ ├── wi_wind_168_75deg_96x96.h │ │ │ │ ├── wi_wind_168deg_96x96.h │ │ │ │ ├── wi_wind_169deg_96x96.h │ │ │ │ ├── wi_wind_16deg_96x96.h │ │ │ │ ├── wi_wind_170deg_96x96.h │ │ │ │ ├── wi_wind_171deg_96x96.h │ │ │ │ ├── wi_wind_172deg_96x96.h │ │ │ │ ├── wi_wind_173deg_96x96.h │ │ │ │ ├── wi_wind_174deg_96x96.h │ │ │ │ ├── wi_wind_175deg_96x96.h │ │ │ │ ├── wi_wind_176deg_96x96.h │ │ │ │ ├── wi_wind_177deg_96x96.h │ │ │ │ ├── wi_wind_178deg_96x96.h │ │ │ │ ├── wi_wind_179deg_96x96.h │ │ │ │ ├── wi_wind_17deg_96x96.h │ │ │ │ ├── wi_wind_180deg_96x96.h │ │ │ │ ├── wi_wind_181deg_96x96.h │ │ │ │ ├── wi_wind_182deg_96x96.h │ │ │ │ ├── wi_wind_183deg_96x96.h │ │ │ │ ├── wi_wind_184deg_96x96.h │ │ │ │ ├── wi_wind_185deg_96x96.h │ │ │ │ ├── wi_wind_186deg_96x96.h │ │ │ │ ├── wi_wind_187deg_96x96.h │ │ │ │ ├── wi_wind_188deg_96x96.h │ │ │ │ ├── wi_wind_189deg_96x96.h │ │ │ │ ├── wi_wind_18deg_96x96.h │ │ │ │ ├── wi_wind_190deg_96x96.h │ │ │ │ ├── wi_wind_191_25deg_96x96.h │ │ │ │ ├── wi_wind_191deg_96x96.h │ │ │ │ ├── wi_wind_192deg_96x96.h │ │ │ │ ├── wi_wind_193deg_96x96.h │ │ │ │ ├── wi_wind_194deg_96x96.h │ │ │ │ ├── wi_wind_195deg_96x96.h │ │ │ │ ├── wi_wind_196deg_96x96.h │ │ │ │ ├── wi_wind_197deg_96x96.h │ │ │ │ ├── wi_wind_198deg_96x96.h │ │ │ │ ├── wi_wind_199deg_96x96.h │ │ │ │ ├── wi_wind_19deg_96x96.h │ │ │ │ ├── wi_wind_1deg_96x96.h │ │ │ │ ├── wi_wind_200deg_96x96.h │ │ │ │ ├── wi_wind_201deg_96x96.h │ │ │ │ ├── wi_wind_202_5deg_96x96.h │ │ │ │ ├── wi_wind_202deg_96x96.h │ │ │ │ ├── wi_wind_203deg_96x96.h │ │ │ │ ├── wi_wind_204deg_96x96.h │ │ │ │ ├── wi_wind_205deg_96x96.h │ │ │ │ ├── wi_wind_206deg_96x96.h │ │ │ │ ├── wi_wind_207deg_96x96.h │ │ │ │ ├── wi_wind_208deg_96x96.h │ │ │ │ ├── wi_wind_209deg_96x96.h │ │ │ │ ├── wi_wind_20deg_96x96.h │ │ │ │ ├── wi_wind_210deg_96x96.h │ │ │ │ ├── wi_wind_211deg_96x96.h │ │ │ │ ├── wi_wind_212deg_96x96.h │ │ │ │ ├── wi_wind_213_75deg_96x96.h │ │ │ │ ├── wi_wind_213deg_96x96.h │ │ │ │ ├── wi_wind_214deg_96x96.h │ │ │ │ ├── wi_wind_215deg_96x96.h │ │ │ │ ├── wi_wind_216deg_96x96.h │ │ │ │ ├── wi_wind_217deg_96x96.h │ │ │ │ ├── wi_wind_218deg_96x96.h │ │ │ │ ├── wi_wind_219deg_96x96.h │ │ │ │ ├── wi_wind_21deg_96x96.h │ │ │ │ ├── wi_wind_220deg_96x96.h │ │ │ │ ├── wi_wind_221deg_96x96.h │ │ │ │ ├── wi_wind_222deg_96x96.h │ │ │ │ ├── wi_wind_223deg_96x96.h │ │ │ │ ├── wi_wind_224deg_96x96.h │ │ │ │ ├── wi_wind_225deg_96x96.h │ │ │ │ ├── wi_wind_226deg_96x96.h │ │ │ │ ├── wi_wind_227deg_96x96.h │ │ │ │ ├── wi_wind_228deg_96x96.h │ │ │ │ ├── wi_wind_229deg_96x96.h │ │ │ │ ├── wi_wind_22_5deg_96x96.h │ │ │ │ ├── wi_wind_22deg_96x96.h │ │ │ │ ├── wi_wind_230deg_96x96.h │ │ │ │ ├── wi_wind_231deg_96x96.h │ │ │ │ ├── wi_wind_232deg_96x96.h │ │ │ │ ├── wi_wind_233deg_96x96.h │ │ │ │ ├── wi_wind_234deg_96x96.h │ │ │ │ ├── wi_wind_235deg_96x96.h │ │ │ │ ├── wi_wind_236_25deg_96x96.h │ │ │ │ ├── wi_wind_236deg_96x96.h │ │ │ │ ├── wi_wind_237deg_96x96.h │ │ │ │ ├── wi_wind_238deg_96x96.h │ │ │ │ ├── wi_wind_239deg_96x96.h │ │ │ │ ├── wi_wind_23deg_96x96.h │ │ │ │ ├── wi_wind_240deg_96x96.h │ │ │ │ ├── wi_wind_241deg_96x96.h │ │ │ │ ├── wi_wind_242deg_96x96.h │ │ │ │ ├── wi_wind_243deg_96x96.h │ │ │ │ ├── wi_wind_244deg_96x96.h │ │ │ │ ├── wi_wind_245deg_96x96.h │ │ │ │ ├── wi_wind_246deg_96x96.h │ │ │ │ ├── wi_wind_247_5deg_96x96.h │ │ │ │ ├── wi_wind_247deg_96x96.h │ │ │ │ ├── wi_wind_248deg_96x96.h │ │ │ │ ├── wi_wind_249deg_96x96.h │ │ │ │ ├── wi_wind_24deg_96x96.h │ │ │ │ ├── wi_wind_250deg_96x96.h │ │ │ │ ├── wi_wind_251deg_96x96.h │ │ │ │ ├── wi_wind_252deg_96x96.h │ │ │ │ ├── wi_wind_253deg_96x96.h │ │ │ │ ├── wi_wind_254deg_96x96.h │ │ │ │ ├── wi_wind_255deg_96x96.h │ │ │ │ ├── wi_wind_256deg_96x96.h │ │ │ │ ├── wi_wind_257deg_96x96.h │ │ │ │ ├── wi_wind_258_75deg_96x96.h │ │ │ │ ├── wi_wind_258deg_96x96.h │ │ │ │ ├── wi_wind_259deg_96x96.h │ │ │ │ ├── wi_wind_25deg_96x96.h │ │ │ │ ├── wi_wind_260deg_96x96.h │ │ │ │ ├── wi_wind_261deg_96x96.h │ │ │ │ ├── wi_wind_262deg_96x96.h │ │ │ │ ├── wi_wind_263deg_96x96.h │ │ │ │ ├── wi_wind_264deg_96x96.h │ │ │ │ ├── wi_wind_265deg_96x96.h │ │ │ │ ├── wi_wind_266deg_96x96.h │ │ │ │ ├── wi_wind_267deg_96x96.h │ │ │ │ ├── wi_wind_268deg_96x96.h │ │ │ │ ├── wi_wind_269deg_96x96.h │ │ │ │ ├── wi_wind_26deg_96x96.h │ │ │ │ ├── wi_wind_270deg_96x96.h │ │ │ │ ├── wi_wind_271deg_96x96.h │ │ │ │ ├── wi_wind_272deg_96x96.h │ │ │ │ ├── wi_wind_273deg_96x96.h │ │ │ │ ├── wi_wind_274deg_96x96.h │ │ │ │ ├── wi_wind_275deg_96x96.h │ │ │ │ ├── wi_wind_276deg_96x96.h │ │ │ │ ├── wi_wind_277deg_96x96.h │ │ │ │ ├── wi_wind_278deg_96x96.h │ │ │ │ ├── wi_wind_279deg_96x96.h │ │ │ │ ├── wi_wind_27deg_96x96.h │ │ │ │ ├── wi_wind_280deg_96x96.h │ │ │ │ ├── wi_wind_281_25deg_96x96.h │ │ │ │ ├── wi_wind_281deg_96x96.h │ │ │ │ ├── wi_wind_282deg_96x96.h │ │ │ │ ├── wi_wind_283deg_96x96.h │ │ │ │ ├── wi_wind_284deg_96x96.h │ │ │ │ ├── wi_wind_285deg_96x96.h │ │ │ │ ├── wi_wind_286deg_96x96.h │ │ │ │ ├── wi_wind_287deg_96x96.h │ │ │ │ ├── wi_wind_288deg_96x96.h │ │ │ │ ├── wi_wind_289deg_96x96.h │ │ │ │ ├── wi_wind_28deg_96x96.h │ │ │ │ ├── wi_wind_290deg_96x96.h │ │ │ │ ├── wi_wind_291deg_96x96.h │ │ │ │ ├── wi_wind_292_5deg_96x96.h │ │ │ │ ├── wi_wind_292deg_96x96.h │ │ │ │ ├── wi_wind_293deg_96x96.h │ │ │ │ ├── wi_wind_294deg_96x96.h │ │ │ │ ├── wi_wind_295deg_96x96.h │ │ │ │ ├── wi_wind_296deg_96x96.h │ │ │ │ ├── wi_wind_297deg_96x96.h │ │ │ │ ├── wi_wind_298deg_96x96.h │ │ │ │ ├── wi_wind_299deg_96x96.h │ │ │ │ ├── wi_wind_29deg_96x96.h │ │ │ │ ├── wi_wind_2deg_96x96.h │ │ │ │ ├── wi_wind_300deg_96x96.h │ │ │ │ ├── wi_wind_301deg_96x96.h │ │ │ │ ├── wi_wind_302deg_96x96.h │ │ │ │ ├── wi_wind_303_75deg_96x96.h │ │ │ │ ├── wi_wind_303deg_96x96.h │ │ │ │ ├── wi_wind_304deg_96x96.h │ │ │ │ ├── wi_wind_305deg_96x96.h │ │ │ │ ├── wi_wind_306deg_96x96.h │ │ │ │ ├── wi_wind_307deg_96x96.h │ │ │ │ ├── wi_wind_308deg_96x96.h │ │ │ │ ├── wi_wind_309deg_96x96.h │ │ │ │ ├── wi_wind_30deg_96x96.h │ │ │ │ ├── wi_wind_310deg_96x96.h │ │ │ │ ├── wi_wind_311deg_96x96.h │ │ │ │ ├── wi_wind_312deg_96x96.h │ │ │ │ ├── wi_wind_313deg_96x96.h │ │ │ │ ├── wi_wind_314deg_96x96.h │ │ │ │ ├── wi_wind_315deg_96x96.h │ │ │ │ ├── wi_wind_316deg_96x96.h │ │ │ │ ├── wi_wind_317deg_96x96.h │ │ │ │ ├── wi_wind_318deg_96x96.h │ │ │ │ ├── wi_wind_319deg_96x96.h │ │ │ │ ├── wi_wind_31deg_96x96.h │ │ │ │ ├── wi_wind_320deg_96x96.h │ │ │ │ ├── wi_wind_321deg_96x96.h │ │ │ │ ├── wi_wind_322deg_96x96.h │ │ │ │ ├── wi_wind_323deg_96x96.h │ │ │ │ ├── wi_wind_324deg_96x96.h │ │ │ │ ├── wi_wind_325deg_96x96.h │ │ │ │ ├── wi_wind_326_25deg_96x96.h │ │ │ │ ├── wi_wind_326deg_96x96.h │ │ │ │ ├── wi_wind_327deg_96x96.h │ │ │ │ ├── wi_wind_328deg_96x96.h │ │ │ │ ├── wi_wind_329deg_96x96.h │ │ │ │ ├── wi_wind_32deg_96x96.h │ │ │ │ ├── wi_wind_330deg_96x96.h │ │ │ │ ├── wi_wind_331deg_96x96.h │ │ │ │ ├── wi_wind_332deg_96x96.h │ │ │ │ ├── wi_wind_333deg_96x96.h │ │ │ │ ├── wi_wind_334deg_96x96.h │ │ │ │ ├── wi_wind_335deg_96x96.h │ │ │ │ ├── wi_wind_336deg_96x96.h │ │ │ │ ├── wi_wind_337_5deg_96x96.h │ │ │ │ ├── wi_wind_337deg_96x96.h │ │ │ │ ├── wi_wind_338deg_96x96.h │ │ │ │ ├── wi_wind_339deg_96x96.h │ │ │ │ ├── wi_wind_33_75deg_96x96.h │ │ │ │ ├── wi_wind_33deg_96x96.h │ │ │ │ ├── wi_wind_340deg_96x96.h │ │ │ │ ├── wi_wind_341deg_96x96.h │ │ │ │ ├── wi_wind_342deg_96x96.h │ │ │ │ ├── wi_wind_343deg_96x96.h │ │ │ │ ├── wi_wind_344deg_96x96.h │ │ │ │ ├── wi_wind_345deg_96x96.h │ │ │ │ ├── wi_wind_346deg_96x96.h │ │ │ │ ├── wi_wind_347deg_96x96.h │ │ │ │ ├── wi_wind_348_75deg_96x96.h │ │ │ │ ├── wi_wind_348deg_96x96.h │ │ │ │ ├── wi_wind_349deg_96x96.h │ │ │ │ ├── wi_wind_34deg_96x96.h │ │ │ │ ├── wi_wind_350deg_96x96.h │ │ │ │ ├── wi_wind_351deg_96x96.h │ │ │ │ ├── wi_wind_352deg_96x96.h │ │ │ │ ├── wi_wind_353deg_96x96.h │ │ │ │ ├── wi_wind_354deg_96x96.h │ │ │ │ ├── wi_wind_355deg_96x96.h │ │ │ │ ├── wi_wind_356deg_96x96.h │ │ │ │ ├── wi_wind_357deg_96x96.h │ │ │ │ ├── wi_wind_358deg_96x96.h │ │ │ │ ├── wi_wind_359deg_96x96.h │ │ │ │ ├── wi_wind_35deg_96x96.h │ │ │ │ ├── wi_wind_36deg_96x96.h │ │ │ │ ├── wi_wind_37deg_96x96.h │ │ │ │ ├── wi_wind_38deg_96x96.h │ │ │ │ ├── wi_wind_39deg_96x96.h │ │ │ │ ├── wi_wind_3deg_96x96.h │ │ │ │ ├── wi_wind_40deg_96x96.h │ │ │ │ ├── wi_wind_41deg_96x96.h │ │ │ │ ├── wi_wind_42deg_96x96.h │ │ │ │ ├── wi_wind_43deg_96x96.h │ │ │ │ ├── wi_wind_44deg_96x96.h │ │ │ │ ├── wi_wind_45deg_96x96.h │ │ │ │ ├── wi_wind_46deg_96x96.h │ │ │ │ ├── wi_wind_47deg_96x96.h │ │ │ │ ├── wi_wind_48deg_96x96.h │ │ │ │ ├── wi_wind_49deg_96x96.h │ │ │ │ ├── wi_wind_4deg_96x96.h │ │ │ │ ├── wi_wind_50deg_96x96.h │ │ │ │ ├── wi_wind_51deg_96x96.h │ │ │ │ ├── wi_wind_52deg_96x96.h │ │ │ │ ├── wi_wind_53deg_96x96.h │ │ │ │ ├── wi_wind_54deg_96x96.h │ │ │ │ ├── wi_wind_55deg_96x96.h │ │ │ │ ├── wi_wind_56_25deg_96x96.h │ │ │ │ ├── wi_wind_56deg_96x96.h │ │ │ │ ├── wi_wind_57deg_96x96.h │ │ │ │ ├── wi_wind_58deg_96x96.h │ │ │ │ ├── wi_wind_59deg_96x96.h │ │ │ │ ├── wi_wind_5deg_96x96.h │ │ │ │ ├── wi_wind_60deg_96x96.h │ │ │ │ ├── wi_wind_61deg_96x96.h │ │ │ │ ├── wi_wind_62deg_96x96.h │ │ │ │ ├── wi_wind_63deg_96x96.h │ │ │ │ ├── wi_wind_64deg_96x96.h │ │ │ │ ├── wi_wind_65deg_96x96.h │ │ │ │ ├── wi_wind_66deg_96x96.h │ │ │ │ ├── wi_wind_67_5deg_96x96.h │ │ │ │ ├── wi_wind_67deg_96x96.h │ │ │ │ ├── wi_wind_68deg_96x96.h │ │ │ │ ├── wi_wind_69deg_96x96.h │ │ │ │ ├── wi_wind_6deg_96x96.h │ │ │ │ ├── wi_wind_70deg_96x96.h │ │ │ │ ├── wi_wind_71deg_96x96.h │ │ │ │ ├── wi_wind_72deg_96x96.h │ │ │ │ ├── wi_wind_73deg_96x96.h │ │ │ │ ├── wi_wind_74deg_96x96.h │ │ │ │ ├── wi_wind_75deg_96x96.h │ │ │ │ ├── wi_wind_76deg_96x96.h │ │ │ │ ├── wi_wind_77deg_96x96.h │ │ │ │ ├── wi_wind_78_75deg_96x96.h │ │ │ │ ├── wi_wind_78deg_96x96.h │ │ │ │ ├── wi_wind_79deg_96x96.h │ │ │ │ ├── wi_wind_7deg_96x96.h │ │ │ │ ├── wi_wind_80deg_96x96.h │ │ │ │ ├── wi_wind_81deg_96x96.h │ │ │ │ ├── wi_wind_82deg_96x96.h │ │ │ │ ├── wi_wind_83deg_96x96.h │ │ │ │ ├── wi_wind_84deg_96x96.h │ │ │ │ ├── wi_wind_85deg_96x96.h │ │ │ │ ├── wi_wind_86deg_96x96.h │ │ │ │ ├── wi_wind_87deg_96x96.h │ │ │ │ ├── wi_wind_88deg_96x96.h │ │ │ │ ├── wi_wind_89deg_96x96.h │ │ │ │ ├── wi_wind_8deg_96x96.h │ │ │ │ ├── wi_wind_90deg_96x96.h │ │ │ │ ├── wi_wind_91deg_96x96.h │ │ │ │ ├── wi_wind_92deg_96x96.h │ │ │ │ ├── wi_wind_93deg_96x96.h │ │ │ │ ├── wi_wind_94deg_96x96.h │ │ │ │ ├── wi_wind_95deg_96x96.h │ │ │ │ ├── wi_wind_96deg_96x96.h │ │ │ │ ├── wi_wind_97deg_96x96.h │ │ │ │ ├── wi_wind_98deg_96x96.h │ │ │ │ ├── wi_wind_99deg_96x96.h │ │ │ │ ├── wi_wind_9deg_96x96.h │ │ │ │ ├── wi_wind_beaufort_0_96x96.h │ │ │ │ ├── wi_wind_beaufort_10_96x96.h │ │ │ │ ├── wi_wind_beaufort_11_96x96.h │ │ │ │ ├── wi_wind_beaufort_12_96x96.h │ │ │ │ ├── wi_wind_beaufort_1_96x96.h │ │ │ │ ├── wi_wind_beaufort_2_96x96.h │ │ │ │ ├── wi_wind_beaufort_3_96x96.h │ │ │ │ ├── wi_wind_beaufort_4_96x96.h │ │ │ │ ├── wi_wind_beaufort_5_96x96.h │ │ │ │ ├── wi_wind_beaufort_6_96x96.h │ │ │ │ ├── wi_wind_beaufort_7_96x96.h │ │ │ │ ├── wi_wind_beaufort_8_96x96.h │ │ │ │ ├── wi_wind_beaufort_9_96x96.h │ │ │ │ ├── wi_windy_96x96.h │ │ │ │ ├── wifi_1_bar_96x96.h │ │ │ │ ├── wifi_2_bar_96x96.h │ │ │ │ ├── wifi_3_bar_96x96.h │ │ │ │ ├── wifi_96x96.h │ │ │ │ ├── wifi_off_96x96.h │ │ │ │ ├── wifi_x_96x96.h │ │ │ │ ├── wind_direction_meteorological_0deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_100deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_101_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_101deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_102deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_103deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_104deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_105deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_106deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_107deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_108deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_109deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_10deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_110deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_111deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_112_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_112deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_113deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_114deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_115deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_116deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_117deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_118deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_119deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_11_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_11deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_120deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_121deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_122deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_123_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_123deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_124deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_125deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_126deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_127deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_128deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_129deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_12deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_130deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_131deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_132deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_133deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_134deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_135deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_136deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_137deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_138deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_139deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_13deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_140deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_141deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_142deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_143deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_144deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_145deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_146_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_146deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_147deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_148deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_149deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_14deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_150deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_151deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_152deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_153deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_154deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_155deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_156deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_157_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_157deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_158deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_159deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_15deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_160deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_161deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_162deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_163deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_164deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_165deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_166deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_167deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_168_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_168deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_169deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_16deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_170deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_171deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_172deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_173deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_174deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_175deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_176deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_177deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_178deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_179deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_17deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_180deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_181deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_182deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_183deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_184deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_185deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_186deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_187deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_188deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_189deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_18deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_190deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_191_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_191deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_192deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_193deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_194deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_195deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_196deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_197deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_198deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_199deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_19deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_1deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_200deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_201deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_202_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_202deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_203deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_204deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_205deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_206deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_207deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_208deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_209deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_20deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_210deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_211deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_212deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_213_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_213deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_214deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_215deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_216deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_217deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_218deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_219deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_21deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_220deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_221deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_222deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_223deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_224deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_225deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_226deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_227deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_228deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_229deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_22_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_22deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_230deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_231deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_232deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_233deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_234deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_235deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_236_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_236deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_237deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_238deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_239deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_23deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_240deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_241deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_242deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_243deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_244deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_245deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_246deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_247_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_247deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_248deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_249deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_24deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_250deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_251deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_252deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_253deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_254deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_255deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_256deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_257deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_258_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_258deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_259deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_260deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_261deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_262deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_263deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_264deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_265deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_266deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_267deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_268deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_269deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_26deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_270deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_271deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_272deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_273deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_274deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_275deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_276deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_277deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_278deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_279deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_27deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_280deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_281_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_281deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_282deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_283deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_284deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_285deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_286deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_287deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_288deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_289deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_28deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_290deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_291deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_292_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_292deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_293deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_294deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_295deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_296deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_297deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_298deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_299deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_29deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_2deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_300deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_301deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_302deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_303_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_303deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_304deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_305deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_306deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_307deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_308deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_309deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_30deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_310deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_311deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_312deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_313deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_314deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_315deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_316deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_317deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_318deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_319deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_31deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_320deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_321deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_322deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_323deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_324deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_325deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_326_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_326deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_327deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_328deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_329deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_32deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_330deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_331deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_332deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_333deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_334deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_335deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_336deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_337_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_337deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_338deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_339deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_33_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_33deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_340deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_341deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_342deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_343deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_344deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_345deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_346deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_347deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_348_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_348deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_349deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_34deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_350deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_351deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_352deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_353deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_354deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_355deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_356deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_357deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_358deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_359deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_35deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_36deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_37deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_38deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_39deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_3deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_40deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_41deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_42deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_43deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_44deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_45deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_46deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_47deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_48deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_49deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_4deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_50deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_51deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_52deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_53deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_54deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_55deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_56_25deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_56deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_57deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_58deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_59deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_60deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_61deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_62deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_63deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_64deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_65deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_66deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_67_5deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_67deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_68deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_69deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_6deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_70deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_71deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_72deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_73deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_74deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_76deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_77deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_78_75deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_78deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_79deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_7deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_80deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_81deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_82deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_83deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_84deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_85deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_86deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_87deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_88deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_89deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_8deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_90deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_91deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_92deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_93deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_94deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_95deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_96deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_97deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_98deg_96x96.h │ │ │ │ ├── wind_direction_meteorological_99deg_96x96.h │ │ │ │ └── wind_direction_meteorological_9deg_96x96.h │ │ │ ├── icons.h │ │ │ ├── icons_128x128.h │ │ │ ├── icons_160x160.h │ │ │ ├── icons_16x16.h │ │ │ ├── icons_196x196.h │ │ │ ├── icons_24x24.h │ │ │ ├── icons_32x32.h │ │ │ ├── icons_48x48.h │ │ │ ├── icons_64x64.h │ │ │ └── icons_96x96.h │ │ └── library.json │ └── pollutant-concentration-to-aqi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aqi.c │ │ └── aqi.h ├── platformio.ini └── src │ ├── _strftime.cpp │ ├── api_response.cpp │ ├── client_utils.cpp │ ├── config.cpp │ ├── conversions.cpp │ ├── display_utils.cpp │ ├── locale.cpp │ ├── main.cpp │ └── renderer.cpp └── showcase ├── assembled-demo-bottom-cover-removed.jpg ├── assembled-demo-bottom-cover.jpg ├── assembled-demo-raleigh-back.jpg ├── assembled-demo-raleigh-front.jpg ├── assembled-demo-raleigh-side.jpg ├── demo-error-api.jpg ├── demo-error-low-battery.jpg ├── demo-error-time.jpg ├── demo-error-wifi.jpg ├── demo-london.jpg ├── demo-new-york.jpg ├── demo-tucson.jpg ├── demo-waveshare75-version1.jpg └── wiring_diagram_despi-c02.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/README.md -------------------------------------------------------------------------------- /cert/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/cert/README -------------------------------------------------------------------------------- /cert/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/cert/cert.py -------------------------------------------------------------------------------- /fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/.gitignore -------------------------------------------------------------------------------- /fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/README -------------------------------------------------------------------------------- /fonts/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/fontconvert/Makefile -------------------------------------------------------------------------------- /fonts/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /fonts/fontconvert/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/fontconvert/gfxfont.h -------------------------------------------------------------------------------- /fonts/fontconvert/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/fontconvert/license.txt -------------------------------------------------------------------------------- /fonts/ttf/FreeMono.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/FreeMono.otf -------------------------------------------------------------------------------- /fonts/ttf/FreeSans.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/FreeSans.otf -------------------------------------------------------------------------------- /fonts/ttf/FreeSerif.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/FreeSerif.otf -------------------------------------------------------------------------------- /fonts/ttf/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/Lato-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/Poppins-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/Raleway-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/Ubuntu-R.ttf -------------------------------------------------------------------------------- /fonts/ttf/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /fonts/ttf_to_adafruit_gfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/fonts/ttf_to_adafruit_gfx.sh -------------------------------------------------------------------------------- /icons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/.gitignore -------------------------------------------------------------------------------- /icons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/Makefile -------------------------------------------------------------------------------- /icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/README -------------------------------------------------------------------------------- /icons/final_generate_icons_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/final_generate_icons_h.py -------------------------------------------------------------------------------- /icons/png_to_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/png_to_header.py -------------------------------------------------------------------------------- /icons/rotate_90_svg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/README -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_0_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_0_bar.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_1_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_1_bar.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_2_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_2_bar.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_3_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_3_bar.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_4_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_4_bar.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_5_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_5_bar.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_6_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_6_bar.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_alert.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_charging_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_charging_full.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/battery_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/battery_full.svg -------------------------------------------------------------------------------- /icons/rotate_90_svg/generate_rotated_90.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_90_svg/generate_rotated_90.sh -------------------------------------------------------------------------------- /icons/rotate_wind_direction_svg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_wind_direction_svg/README -------------------------------------------------------------------------------- /icons/rotate_wind_direction_svg/wi-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/rotate_wind_direction_svg/wi-wind.svg -------------------------------------------------------------------------------- /icons/svg/air_filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/air_filter.svg -------------------------------------------------------------------------------- /icons/svg/battery_0_bar_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_0_bar_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_0_bar_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_0_bar_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_0_bar_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_0_bar_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_0_bar_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_0_bar_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_1_bar_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_1_bar_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_1_bar_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_1_bar_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_1_bar_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_1_bar_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_1_bar_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_1_bar_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_2_bar_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_2_bar_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_2_bar_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_2_bar_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_2_bar_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_2_bar_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_2_bar_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_2_bar_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_3_bar_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_3_bar_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_3_bar_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_3_bar_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_3_bar_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_3_bar_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_3_bar_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_3_bar_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_4_bar_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_4_bar_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_4_bar_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_4_bar_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_4_bar_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_4_bar_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_4_bar_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_4_bar_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_5_bar_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_5_bar_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_5_bar_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_5_bar_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_5_bar_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_5_bar_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_5_bar_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_5_bar_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_6_bar_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_6_bar_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_6_bar_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_6_bar_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_6_bar_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_6_bar_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_6_bar_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_6_bar_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_alert_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_alert_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_alert_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_alert_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_alert_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_alert_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_alert_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_alert_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_charging_full_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_charging_full_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_charging_full_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_charging_full_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_charging_full_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_charging_full_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_charging_full_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_charging_full_90deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_full_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_full_0deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_full_180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_full_180deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_full_270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_full_270deg.svg -------------------------------------------------------------------------------- /icons/svg/battery_full_90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/battery_full_90deg.svg -------------------------------------------------------------------------------- /icons/svg/biological_hazard_symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/biological_hazard_symbol.svg -------------------------------------------------------------------------------- /icons/svg/error_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/error_icon.svg -------------------------------------------------------------------------------- /icons/svg/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/house.svg -------------------------------------------------------------------------------- /icons/svg/house_humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/house_humidity.svg -------------------------------------------------------------------------------- /icons/svg/house_raindrops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/house_raindrops.svg -------------------------------------------------------------------------------- /icons/svg/house_thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/house_thermometer.svg -------------------------------------------------------------------------------- /icons/svg/ionizing_radiation_symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/ionizing_radiation_symbol.svg -------------------------------------------------------------------------------- /icons/svg/visibility_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/visibility_icon.svg -------------------------------------------------------------------------------- /icons/svg/warning_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/warning_icon.svg -------------------------------------------------------------------------------- /icons/svg/wi-alien.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-alien.svg -------------------------------------------------------------------------------- /icons/svg/wi-barometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-barometer.svg -------------------------------------------------------------------------------- /icons/svg/wi-celsius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-celsius.svg -------------------------------------------------------------------------------- /icons/svg/wi-cloud-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-cloud-down.svg -------------------------------------------------------------------------------- /icons/svg/wi-cloud-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-cloud-refresh.svg -------------------------------------------------------------------------------- /icons/svg/wi-cloud-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-cloud-up.svg -------------------------------------------------------------------------------- /icons/svg/wi-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-cloud.svg -------------------------------------------------------------------------------- /icons/svg/wi-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-cloudy-gusts.svg -------------------------------------------------------------------------------- /icons/svg/wi-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-cloudy-windy.svg -------------------------------------------------------------------------------- /icons/svg/wi-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-cloudy.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-cloudy-gusts.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-cloudy-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-cloudy-high.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-cloudy-windy.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-cloudy.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-fog.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-hail.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-haze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-haze.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-light-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-light-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-lightning.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-rain-mix.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-rain-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-rain.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-sleet-storm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-sleet-storm.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-sleet.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-snow-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-snow-thunderstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-snow-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-snow.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-sprinkle.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-storm-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-sunny-overcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-sunny-overcast.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-sunny.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-thunderstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-day-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-day-windy.svg -------------------------------------------------------------------------------- /icons/svg/wi-degrees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-degrees.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-down-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-down-left.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-down-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-down-right.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-down.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-left.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-right.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-up-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-up-left.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-up-right.svg -------------------------------------------------------------------------------- /icons/svg/wi-direction-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-direction-up.svg -------------------------------------------------------------------------------- /icons/svg/wi-dust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-dust.svg -------------------------------------------------------------------------------- /icons/svg/wi-earthquake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-earthquake.svg -------------------------------------------------------------------------------- /icons/svg/wi-fahrenheit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-fahrenheit.svg -------------------------------------------------------------------------------- /icons/svg/wi-fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-fire.svg -------------------------------------------------------------------------------- /icons/svg/wi-flood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-flood.svg -------------------------------------------------------------------------------- /icons/svg/wi-fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-fog.svg -------------------------------------------------------------------------------- /icons/svg/wi-gale-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-gale-warning.svg -------------------------------------------------------------------------------- /icons/svg/wi-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-hail.svg -------------------------------------------------------------------------------- /icons/svg/wi-horizon-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-horizon-alt.svg -------------------------------------------------------------------------------- /icons/svg/wi-horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-horizon.svg -------------------------------------------------------------------------------- /icons/svg/wi-hot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-hot.svg -------------------------------------------------------------------------------- /icons/svg/wi-humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-humidity.svg -------------------------------------------------------------------------------- /icons/svg/wi-hurricane-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-hurricane-warning.svg -------------------------------------------------------------------------------- /icons/svg/wi-hurricane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-hurricane.svg -------------------------------------------------------------------------------- /icons/svg/wi-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-lightning.svg -------------------------------------------------------------------------------- /icons/svg/wi-lunar-eclipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-lunar-eclipse.svg -------------------------------------------------------------------------------- /icons/svg/wi-meteor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-meteor.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-first-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-first-quarter.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-full.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-new.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-third-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-third-quarter.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-crescent-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-crescent-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-crescent-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-crescent-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-crescent-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-crescent-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-crescent-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-gibbous-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-gibbous-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-gibbous-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-gibbous-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-gibbous-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waning-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waning-gibbous-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-crescent-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-crescent-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-crescent-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-crescent-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-crescent-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-crescent-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-crescent-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-gibbous-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-gibbous-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-gibbous-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-gibbous-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-gibbous-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-alt-waxing-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-alt-waxing-gibbous-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-first-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-first-quarter.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-full.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-new.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-third-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-third-quarter.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-crescent-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-crescent-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-crescent-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-crescent-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-crescent-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-crescent-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-crescent-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-gibbous-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-gibbous-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-gibbous-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-gibbous-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-gibbous-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waning-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waning-gibbous-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-crescent-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-crescent-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-crescent-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-crescent-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-crescent-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-gibbous-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-gibbous-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-gibbous-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-gibbous-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-gibbous-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-moon-waxing-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moon-waxing-gibbous-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-moonrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moonrise.svg -------------------------------------------------------------------------------- /icons/svg/wi-moonset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-moonset.svg -------------------------------------------------------------------------------- /icons/svg/wi-na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-na.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-cloudy-gusts.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-cloudy-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-cloudy-high.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-cloudy-windy.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-cloudy.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-hail.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-lightning.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-partly-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-partly-cloudy.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-rain-mix.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-rain-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-rain.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-sleet-storm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-sleet-storm.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-sleet.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-snow-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-snow-thunderstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-snow-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-snow.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-sprinkle.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-storm-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-alt-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-alt-thunderstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-clear.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-cloudy-gusts.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-cloudy-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-cloudy-high.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-cloudy-windy.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-cloudy.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-fog.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-hail.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-lightning.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-partly-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-partly-cloudy.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-rain-mix.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-rain-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-rain.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-sleet-storm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-sleet-storm.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-sleet.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-snow-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-snow-thunderstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-snow-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-snow.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-sprinkle.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-storm-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-night-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-night-thunderstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-rain-mix.svg -------------------------------------------------------------------------------- /icons/svg/wi-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-rain-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-rain.svg -------------------------------------------------------------------------------- /icons/svg/wi-raindrop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-raindrop.svg -------------------------------------------------------------------------------- /icons/svg/wi-raindrops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-raindrops.svg -------------------------------------------------------------------------------- /icons/svg/wi-refresh-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-refresh-alt.svg -------------------------------------------------------------------------------- /icons/svg/wi-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-refresh.svg -------------------------------------------------------------------------------- /icons/svg/wi-sandstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-sandstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-sleet.svg -------------------------------------------------------------------------------- /icons/svg/wi-small-craft-advisory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-small-craft-advisory.svg -------------------------------------------------------------------------------- /icons/svg/wi-smog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-smog.svg -------------------------------------------------------------------------------- /icons/svg/wi-smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-smoke.svg -------------------------------------------------------------------------------- /icons/svg/wi-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-snow-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-snow.svg -------------------------------------------------------------------------------- /icons/svg/wi-snowflake-cold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-snowflake-cold.svg -------------------------------------------------------------------------------- /icons/svg/wi-solar-eclipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-solar-eclipse.svg -------------------------------------------------------------------------------- /icons/svg/wi-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-sprinkle.svg -------------------------------------------------------------------------------- /icons/svg/wi-stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-stars.svg -------------------------------------------------------------------------------- /icons/svg/wi-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-storm-showers.svg -------------------------------------------------------------------------------- /icons/svg/wi-storm-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-storm-warning.svg -------------------------------------------------------------------------------- /icons/svg/wi-strong-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-strong-wind.svg -------------------------------------------------------------------------------- /icons/svg/wi-sunrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-sunrise.svg -------------------------------------------------------------------------------- /icons/svg/wi-sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-sunset.svg -------------------------------------------------------------------------------- /icons/svg/wi-thermometer-exterior.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-thermometer-exterior.svg -------------------------------------------------------------------------------- /icons/svg/wi-thermometer-internal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-thermometer-internal.svg -------------------------------------------------------------------------------- /icons/svg/wi-thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-thermometer.svg -------------------------------------------------------------------------------- /icons/svg/wi-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-thunderstorm.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-10.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-11.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-12.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-7.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-8.svg -------------------------------------------------------------------------------- /icons/svg/wi-time-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-time-9.svg -------------------------------------------------------------------------------- /icons/svg/wi-tornado.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-tornado.svg -------------------------------------------------------------------------------- /icons/svg/wi-train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-train.svg -------------------------------------------------------------------------------- /icons/svg/wi-tsunami.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-tsunami.svg -------------------------------------------------------------------------------- /icons/svg/wi-umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-umbrella.svg -------------------------------------------------------------------------------- /icons/svg/wi-volcano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-volcano.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-0deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-100deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-100deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-101_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-101_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-101deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-101deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-102deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-102deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-103deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-103deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-104deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-104deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-105deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-105deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-106deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-106deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-107deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-107deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-108deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-108deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-109deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-109deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-10deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-10deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-110deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-110deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-111deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-111deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-112_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-112_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-112deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-112deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-113deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-113deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-114deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-114deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-115deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-115deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-116deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-116deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-117deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-117deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-118deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-118deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-119deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-119deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-11_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-11_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-11deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-11deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-120deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-120deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-121deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-121deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-122deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-122deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-123_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-123_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-123deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-123deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-124deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-124deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-125deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-125deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-126deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-126deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-127deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-127deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-128deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-128deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-129deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-129deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-12deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-12deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-130deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-130deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-131deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-131deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-132deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-132deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-133deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-133deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-134deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-134deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-135deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-135deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-136deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-136deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-137deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-137deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-138deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-138deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-139deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-139deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-13deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-13deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-140deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-140deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-141deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-141deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-142deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-142deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-143deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-143deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-144deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-144deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-145deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-145deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-146_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-146_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-146deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-146deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-147deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-147deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-148deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-148deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-149deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-149deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-14deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-14deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-150deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-150deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-151deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-151deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-152deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-152deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-153deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-153deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-154deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-154deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-155deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-155deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-156deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-156deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-157_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-157_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-157deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-157deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-158deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-158deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-159deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-159deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-15deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-15deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-160deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-160deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-161deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-161deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-162deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-162deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-163deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-163deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-164deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-164deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-165deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-165deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-166deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-166deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-167deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-167deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-168_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-168_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-168deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-168deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-169deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-169deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-16deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-16deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-170deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-170deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-171deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-171deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-172deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-172deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-173deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-173deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-174deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-174deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-175deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-175deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-176deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-176deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-177deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-177deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-178deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-178deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-179deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-179deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-17deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-17deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-180deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-180deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-181deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-181deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-182deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-182deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-183deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-183deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-184deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-184deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-185deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-185deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-186deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-186deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-187deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-187deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-188deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-188deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-189deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-189deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-18deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-18deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-190deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-190deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-191_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-191_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-191deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-191deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-192deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-192deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-193deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-193deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-194deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-194deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-195deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-195deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-196deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-196deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-197deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-197deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-198deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-198deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-199deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-199deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-19deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-19deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-1deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-1deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-200deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-200deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-201deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-201deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-202_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-202_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-202deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-202deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-203deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-203deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-204deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-204deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-205deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-205deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-206deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-206deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-207deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-207deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-208deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-208deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-209deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-209deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-20deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-20deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-210deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-210deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-211deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-211deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-212deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-212deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-213_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-213_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-213deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-213deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-214deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-214deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-215deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-215deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-216deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-216deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-217deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-217deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-218deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-218deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-219deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-219deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-21deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-21deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-220deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-220deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-221deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-221deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-222deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-222deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-223deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-223deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-224deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-224deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-225deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-225deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-226deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-226deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-227deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-227deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-228deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-228deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-229deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-229deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-22_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-22_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-22deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-22deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-230deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-230deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-231deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-231deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-232deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-232deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-233deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-233deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-234deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-234deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-235deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-235deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-236_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-236_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-236deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-236deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-237deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-237deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-238deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-238deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-239deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-239deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-23deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-23deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-240deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-240deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-241deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-241deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-242deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-242deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-243deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-243deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-244deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-244deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-245deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-245deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-246deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-246deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-247_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-247_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-247deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-247deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-248deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-248deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-249deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-249deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-24deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-24deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-250deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-250deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-251deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-251deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-252deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-252deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-253deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-253deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-254deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-254deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-255deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-255deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-256deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-256deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-257deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-257deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-258_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-258_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-258deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-258deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-259deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-259deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-260deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-260deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-261deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-261deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-262deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-262deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-263deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-263deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-264deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-264deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-265deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-265deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-266deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-266deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-267deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-267deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-268deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-268deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-269deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-269deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-26deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-26deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-270deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-270deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-271deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-271deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-272deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-272deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-273deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-273deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-274deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-274deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-275deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-275deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-276deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-276deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-277deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-277deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-278deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-278deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-279deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-279deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-27deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-27deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-280deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-280deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-281_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-281_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-281deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-281deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-282deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-282deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-283deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-283deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-284deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-284deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-285deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-285deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-286deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-286deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-287deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-287deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-288deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-288deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-289deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-289deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-28deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-28deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-290deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-290deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-291deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-291deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-292_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-292_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-292deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-292deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-293deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-293deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-294deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-294deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-295deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-295deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-296deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-296deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-297deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-297deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-298deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-298deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-299deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-299deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-29deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-29deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-2deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-2deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-300deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-300deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-301deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-301deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-302deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-302deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-303_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-303_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-303deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-303deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-304deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-304deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-305deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-305deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-306deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-306deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-307deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-307deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-308deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-308deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-309deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-309deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-30deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-30deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-310deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-310deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-311deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-311deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-312deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-312deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-313deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-313deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-314deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-314deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-315deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-315deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-316deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-316deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-317deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-317deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-318deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-318deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-319deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-319deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-31deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-31deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-320deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-320deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-321deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-321deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-322deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-322deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-323deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-323deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-324deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-324deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-325deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-325deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-326_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-326_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-326deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-326deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-327deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-327deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-328deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-328deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-329deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-329deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-32deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-32deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-330deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-330deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-331deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-331deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-332deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-332deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-333deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-333deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-334deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-334deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-335deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-335deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-336deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-336deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-337_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-337_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-337deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-337deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-338deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-338deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-339deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-339deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-33_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-33_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-33deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-33deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-340deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-340deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-341deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-341deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-342deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-342deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-343deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-343deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-344deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-344deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-345deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-345deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-346deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-346deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-347deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-347deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-348_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-348_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-348deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-348deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-349deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-349deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-34deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-34deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-350deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-350deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-351deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-351deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-352deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-352deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-353deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-353deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-354deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-354deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-355deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-355deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-356deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-356deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-357deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-357deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-358deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-358deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-359deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-359deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-35deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-35deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-36deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-36deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-37deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-37deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-38deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-38deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-39deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-39deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-3deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-3deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-40deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-40deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-41deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-41deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-42deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-42deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-43deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-43deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-44deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-44deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-45deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-45deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-46deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-46deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-47deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-47deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-48deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-48deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-49deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-49deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-4deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-4deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-50deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-50deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-51deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-51deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-52deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-52deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-53deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-53deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-54deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-54deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-55deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-55deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-56_25deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-56_25deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-56deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-56deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-57deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-57deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-58deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-58deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-59deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-59deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-60deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-60deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-61deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-61deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-62deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-62deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-63deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-63deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-64deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-64deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-65deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-65deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-66deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-66deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-67_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-67_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-67deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-67deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-68deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-68deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-69deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-69deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-6deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-6deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-70deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-70deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-71deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-71deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-72deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-72deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-73deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-73deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-74deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-74deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-76deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-76deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-77deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-77deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-78_75deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-78_75deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-78deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-78deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-79deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-79deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-7deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-7deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-80deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-80deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-81deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-81deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-82deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-82deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-83deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-83deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-84deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-84deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-85deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-85deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-86deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-86deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-87deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-87deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-88deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-88deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-89deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-89deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-8deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-8deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-90deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-90deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-91deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-91deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-92deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-92deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-93deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-93deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-94deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-94deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-95deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-95deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-96deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-96deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-97deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-97deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-98deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-98deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-99deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-99deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-9deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-9deg.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-0.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-1.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-10.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-11.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-12.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-2.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-3.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-4.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-5.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-6.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-7.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-8.svg -------------------------------------------------------------------------------- /icons/svg/wi-wind-beaufort-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-wind-beaufort-9.svg -------------------------------------------------------------------------------- /icons/svg/wi-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wi-windy.svg -------------------------------------------------------------------------------- /icons/svg/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wifi.svg -------------------------------------------------------------------------------- /icons/svg/wifi_1_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wifi_1_bar.svg -------------------------------------------------------------------------------- /icons/svg/wifi_2_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wifi_2_bar.svg -------------------------------------------------------------------------------- /icons/svg/wifi_3_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wifi_3_bar.svg -------------------------------------------------------------------------------- /icons/svg/wifi_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wifi_off.svg -------------------------------------------------------------------------------- /icons/svg/wifi_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wifi_x.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_0deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_0deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_100deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_100deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_101deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_101deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_102deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_102deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_103deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_103deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_104deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_104deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_105deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_105deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_106deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_106deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_107deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_107deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_108deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_108deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_109deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_109deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_10deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_10deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_110deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_110deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_111deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_111deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_112deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_112deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_113deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_113deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_114deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_114deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_115deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_115deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_116deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_116deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_117deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_117deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_118deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_118deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_119deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_119deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_11deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_11deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_120deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_120deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_121deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_121deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_122deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_122deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_123deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_123deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_124deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_124deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_125deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_125deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_126deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_126deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_127deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_127deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_128deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_128deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_129deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_129deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_12deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_12deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_130deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_130deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_131deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_131deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_132deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_132deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_133deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_133deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_134deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_134deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_135deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_135deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_136deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_136deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_137deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_137deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_138deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_138deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_139deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_139deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_13deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_13deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_140deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_140deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_141deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_141deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_142deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_142deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_143deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_143deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_144deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_144deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_145deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_145deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_146deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_146deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_147deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_147deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_148deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_148deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_149deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_149deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_14deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_14deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_150deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_150deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_151deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_151deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_152deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_152deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_153deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_153deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_154deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_154deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_155deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_155deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_156deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_156deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_157deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_157deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_158deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_158deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_159deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_159deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_15deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_15deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_160deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_160deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_161deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_161deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_162deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_162deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_163deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_163deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_164deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_164deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_165deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_165deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_166deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_166deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_167deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_167deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_168deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_168deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_169deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_169deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_16deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_16deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_170deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_170deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_171deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_171deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_1deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_1deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_2deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_2deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_3deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_3deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_4deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_4deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_5deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_5deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_6deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_6deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_7deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_7deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_8deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_8deg.svg -------------------------------------------------------------------------------- /icons/svg/wind_direction_meteorological_9deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg/wind_direction_meteorological_9deg.svg -------------------------------------------------------------------------------- /icons/svg_to_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/icons/svg_to_headers.sh -------------------------------------------------------------------------------- /platformio/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .vscode 3 | -------------------------------------------------------------------------------- /platformio/include/_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/_locale.h -------------------------------------------------------------------------------- /platformio/include/_strftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/_strftime.h -------------------------------------------------------------------------------- /platformio/include/api_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/api_response.h -------------------------------------------------------------------------------- /platformio/include/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/cert.h -------------------------------------------------------------------------------- /platformio/include/client_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/client_utils.h -------------------------------------------------------------------------------- /platformio/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/config.h -------------------------------------------------------------------------------- /platformio/include/conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/conversions.h -------------------------------------------------------------------------------- /platformio/include/display_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/display_utils.h -------------------------------------------------------------------------------- /platformio/include/locales/locale_de_DE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_de_DE.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_en_GB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_en_GB.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_en_US.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_en_US.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_es_ES.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_es_ES.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_et_EE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_et_EE.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_fi_FI.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_fi_FI.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_fr_FR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_fr_FR.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_it_IT.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_it_IT.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_nl_BE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_nl_BE.inc -------------------------------------------------------------------------------- /platformio/include/locales/locale_pt_BR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/locales/locale_pt_BR.inc -------------------------------------------------------------------------------- /platformio/include/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/include/renderer.h -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /platformio/src/_strftime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/_strftime.cpp -------------------------------------------------------------------------------- /platformio/src/api_response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/api_response.cpp -------------------------------------------------------------------------------- /platformio/src/client_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/client_utils.cpp -------------------------------------------------------------------------------- /platformio/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/config.cpp -------------------------------------------------------------------------------- /platformio/src/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/conversions.cpp -------------------------------------------------------------------------------- /platformio/src/display_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/display_utils.cpp -------------------------------------------------------------------------------- /platformio/src/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/locale.cpp -------------------------------------------------------------------------------- /platformio/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/main.cpp -------------------------------------------------------------------------------- /platformio/src/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/platformio/src/renderer.cpp -------------------------------------------------------------------------------- /showcase/assembled-demo-bottom-cover-removed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/assembled-demo-bottom-cover-removed.jpg -------------------------------------------------------------------------------- /showcase/assembled-demo-bottom-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/assembled-demo-bottom-cover.jpg -------------------------------------------------------------------------------- /showcase/assembled-demo-raleigh-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/assembled-demo-raleigh-back.jpg -------------------------------------------------------------------------------- /showcase/assembled-demo-raleigh-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/assembled-demo-raleigh-front.jpg -------------------------------------------------------------------------------- /showcase/assembled-demo-raleigh-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/assembled-demo-raleigh-side.jpg -------------------------------------------------------------------------------- /showcase/demo-error-api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-error-api.jpg -------------------------------------------------------------------------------- /showcase/demo-error-low-battery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-error-low-battery.jpg -------------------------------------------------------------------------------- /showcase/demo-error-time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-error-time.jpg -------------------------------------------------------------------------------- /showcase/demo-error-wifi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-error-wifi.jpg -------------------------------------------------------------------------------- /showcase/demo-london.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-london.jpg -------------------------------------------------------------------------------- /showcase/demo-new-york.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-new-york.jpg -------------------------------------------------------------------------------- /showcase/demo-tucson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-tucson.jpg -------------------------------------------------------------------------------- /showcase/demo-waveshare75-version1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/demo-waveshare75-version1.jpg -------------------------------------------------------------------------------- /showcase/wiring_diagram_despi-c02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarzen/esp32-weather-epd/HEAD/showcase/wiring_diagram_despi-c02.png --------------------------------------------------------------------------------