diff --git a/weather.openmeteo/CHANGELOG.txt b/weather.openmeteo/CHANGELOG.txt index b50c1ca44..2718ea770 100644 --- a/weather.openmeteo/CHANGELOG.txt +++ b/weather.openmeteo/CHANGELOG.txt @@ -1,3 +1,23 @@ +v1.0.14 (22/07/2025) +-------------------- +* Added pressure units: hPa, kPa, mmHg, inHg, psi +* Adjust map download timers +* Fix geolocation loop on broken KODI devices +* Added translation: Chinese (thanks @wabisabi926) + +v1.0.10 (22/05/2025) +-------------------- +* Custom location names +* Use highest weather code for condition alert +* Re-download maps & layers when changing mapzoom level +* Removing locations should now work properly +* Fix 12h/24h time for weather alerts +* Added translation: Slovak (thanks @frederik877) +* Added translation: Tamil (thanks @தமிழ்நேரம்) +* Added translation: Czech (thanks @Tomas) +* Added translation: Indonesian (thanks @Nao3Line) +* Added translation: Hungarian (thanks @frodo19) + v1.0.0 (15/12/2024) ------------------- * Official KODI repository diff --git a/weather.openmeteo/addon.xml b/weather.openmeteo/addon.xml index f867cd60a..b9f0b0171 100644 --- a/weather.openmeteo/addon.xml +++ b/weather.openmeteo/addon.xml @@ -1,5 +1,5 @@ - + @@ -10,8 +10,24 @@ + Predpoveď počasia z Open-Meteo + Počasie, mapy, kvalita vzduchu a pyľové údaje z open-meteo.com, rainviewer.com, weather.gc.ca a met.no + Wettervorhersage von Open-Meteo + Wetter, Karten, Luftqualität und Pollen Vorhersage von open-meteo.com, rainviewer.com, weather.gc.ca und met.no Weather forecast from Open-Meteo - Weather, maps, airquality and pollen data from open-meteo.com, rainviewer.com, weather.gc.ca and met.no + Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no + Időjárás-előrejelzés az Open-Meteo-ból + Időjárás, térképek, levegőminőség és pollenelőrejelzés az open-meteo.com, a rainviewer.com, a weather.gc.ca és a met.no oldalakról + Prakiraan cuaca oleh Open-Meteo + Ramalan cuaca, peta, kualitas udara, dan serbuk sari dari open-meteo.com, rainviewer.com, weather.gc.ca dan met.no + Predpoveď počasia z Open-Meteo + Počasie, mapy, kvalita vzduchu a peľové údaje z open-meteo.com, rainviewer.com, weather.gc.ca a met.no + திறந்த-மெட்டியோவிலிருந்து வானிலை முன்னறிவிப்பு + திறந்த-மெட்டியோ.காம், ரெயின்வியூவர்.காம், வானிலை. GC.CA மற்றும் MET.NO இலிருந்து வானிலை, வரைபடங்கள், காற்றோட்டம் மற்றும் மகரந்த முன்னறிவிப்பு + Прогноз погоди від Open-Meteo + Прогноз погоди, мап , якість повітря та пилку від open-meteo.com, rainviewer.com, weather.gc.ca та met.no + Open-Meteo 提供的天气预报 + 天气、地图、空气质量和花粉预报来自 open-meteo.com、rainviewer.com、weather.gc.ca 和 met.no all GPL-2.0-or-later https://forum.kodi.tv/forumdisplay.php?fid=155 diff --git a/weather.openmeteo/lib/api.py b/weather.openmeteo/lib/api.py index 04ebb98f8..9f73abe13 100644 --- a/weather.openmeteo/lib/api.py +++ b/weather.openmeteo/lib/api.py @@ -192,6 +192,22 @@ def getloc(locid): utils.setsetting(f'loc{locid}lon', str(location["longitude"])) utils.setsetting(f'loc{locid}tz', str(location["timezone"])) +# Clear location +def clearloc(locid, last=False): + if last: + utils.setsetting(f'loc{locid}data', '321318000') + utils.setsetting(f'loc{locid}map', '321318000') + utils.setsetting(f'loc{locid}rv', '321318000') + utils.setsetting(f'loc{locid}gc', '321318000') + else: + utils.setsetting(f'loc{locid}', '') + utils.setsetting(f'loc{locid}user', '') + utils.setsetting(f'loc{locid}alert', 'true') + utils.setsetting(f'loc{locid}utz', 'false') + utils.setsetting(f'loc{locid}tz', '') + utils.setsetting(f'loc{locid}lat', '0') + utils.setsetting(f'loc{locid}lon', '0') + # Set location def setloc (locid): utils.log(f'Search dialog ...') @@ -201,57 +217,70 @@ def setloc (locid): keyboard = xbmc.Keyboard(input, utils.loc(14024), False) keyboard.doModal() - if (keyboard.isConfirmed() and keyboard.getText()): + if keyboard.isConfirmed(): + search = keyboard.getText() - try: - locs = [] - search = keyboard.getText() - url = config.map_api.get('search').format(search) - data = json.loads(geturl(url))['results'] - except: - utils.log('No results found', 2) - dialog.ok('Open-meteo', utils.loc(284)) + # No changes + if search == input: + utils.log(f'[LOC{locid}] No changes') + + # Remove location + elif search == '': + check = utils.setting(f'loc{int(locid)+1}') + + if not check: + utils.log(f'[LOC{locid}] Removed') + clearloc(locid) + clearloc(locid, True) + + # Search location else: - for item in data: - li = xbmcgui.ListItem(f'{item.get("name")}, {item.get("admin1")}, {item.get("country_code")} (Lat: {item.get("latitude")}, Lon: {item.get("longitude")})') - locs.append(li) - - select = dialog.select(utils.loc(396), locs, useDetails=True) - - if select != -1: - - # Cleanup cache dir - dir = f'{config.addon_cache}/{locid}' - files = sorted(list(Path(dir).glob('*'))) - - for file in files: - os.remove(file) - - # Set location - utils.log(f'Location {locid}: {data[select].get("name")}, {data[select].get("admin1")}, {data[select].get("country_code")} {data[select].get("latitude")} {data[select].get("longitude")}') - utils.setsetting(f'loc{locid}', f'{data[select].get("name")}, {data[select].get("admin1")}, {data[select].get("country_code")}') - utils.setsetting(f'loc{locid}lat', data[select]["latitude"]) - utils.setsetting(f'loc{locid}lon', data[select]["longitude"]) - utils.setsetting(f'loc{locid}tz', data[select]["timezone"]) - - # Wait for settings dialog - while xbmcgui.getCurrentWindowDialogId() == 10140: - utils.log(f'Waiting for settings dialog ...') - utils.monitor.waitForAbort(1) - - if utils.monitor.abortRequested(): - return - - # Cleanup lastupdate - utils.setsetting(f'loc{locid}data', '321318000') - utils.setsetting(f'loc{locid}map', '321318000') - utils.setsetting(f'loc{locid}layer', '321318000') - - # Refresh - if int(utils.settingrpc("weather.currentlocation")) == int(locid): - weather.Main(str(locid), mode='download') - weather.Main(str(locid), mode='update') - else: - weather.Main(str(locid), mode='download') - weather.Main(str(locid), mode='updatelocs') + try: + locs = [] + url = config.map_api.get('search').format(search) + data = json.loads(geturl(url))['results'] + except: + utils.log('[LOC{locid}] No results') + dialog.ok('Open-meteo', utils.loc(284)) + else: + for item in data: + li = xbmcgui.ListItem(f'{item.get("name")}, {item.get("admin1")}, {item.get("country_code")} (Lat: {item.get("latitude")}, Lon: {item.get("longitude")})') + locs.append(li) + + select = dialog.select(utils.loc(396), locs, useDetails=True) + + if select != -1: + + # Cleanup cache dir + dir = f'{config.addon_cache}/{locid}' + files = sorted(list(Path(dir).glob('*'))) + + for file in files: + os.remove(file) + + # Set location + utils.log(f'Location {locid}: {data[select].get("name")}, {data[select].get("admin1")}, {data[select].get("country_code")} {data[select].get("latitude")} {data[select].get("longitude")}') + utils.setsetting(f'loc{locid}', f'{data[select].get("name")}, {data[select].get("admin1")}, {data[select].get("country_code")}') + utils.setsetting(f'loc{locid}lat', data[select]["latitude"]) + utils.setsetting(f'loc{locid}lon', data[select]["longitude"]) + utils.setsetting(f'loc{locid}tz', data[select]["timezone"]) + + # Wait for settings dialog + while xbmcgui.getCurrentWindowDialogId() == 10140: + utils.log(f'Waiting for settings dialog ...') + utils.monitor.waitForAbort(1) + + if utils.monitor.abortRequested(): + return + + # Cleanup lastupdate + clearloc(locid, True) + + # Refresh + if int(utils.settingrpc("weather.currentlocation")) == int(locid): + weather.Main(str(locid), mode='download') + weather.Main(str(locid), mode='update') + else: + weather.Main(str(locid), mode='download') + weather.Main(str(locid), mode='updatelocs') diff --git a/weather.openmeteo/lib/config.py b/weather.openmeteo/lib/config.py index 55d3c1ac4..2377ac028 100644 --- a/weather.openmeteo/lib/config.py +++ b/weather.openmeteo/lib/config.py @@ -323,8 +323,9 @@ # Mapping (Rainviewer) map_rvradar = [ 'radar', 'past' ] map_rvsatellite = [ 'satellite', 'infrared' ] -map_layers = { 'rvradar': map_rvradar, 'rvsatellite': map_rvsatellite, 'gctemp': '', 'gcwind': '' } -map_maps = { 'osm': '', **map_layers } +map_rv = { 'rvradar': map_rvradar, 'rvsatellite': map_rvsatellite } +map_gc = { 'gctemp': '', 'gcwind': '' } +map_layers = { **map_rv, **map_gc } # Mapping WMO to KODI map_wmo = { @@ -736,6 +737,7 @@ def addon(cache=False): addon.particlesdp = utils.setting('unitparticlesdp', 'str', cache) addon.pollendp = utils.setting('unitpollendp', 'str', cache) addon.uvindexdp = utils.setting('unituvindexdp', 'str', cache) + addon.pressure = utils.setting('unitpressure', 'str', cache) addon.pressuredp = utils.setting('unitpressuredp', 'str', cache) addon.radiationdp = utils.setting('unitradiationdp', 'str', cache) addon.cdefault = utils.setting('colordefault', 'str', cache) @@ -773,12 +775,13 @@ def kodi(): kodi.meri = utils.region('meridiem') kodi.speed = utils.region('speedunit') kodi.temp = utils.region('tempunit') - kodi.height = map_height.get(utils.xbmcgui.getScreenHeight(), 1080) + kodi.height = 1080 def loc(locid, cache=False): loc.id = locid loc.cid = str(utils.settingrpc("weather.currentlocation")) loc.name = utils.setting(f'loc{locid}', 'str') + loc.user = utils.setting(f'loc{locid}user', 'str') loc.lat = utils.setting(f'loc{locid}lat', 'float') loc.lon = utils.setting(f'loc{locid}lon', 'float') loc.utz = utils.setting(f'loc{locid}utz', 'bool') diff --git a/weather.openmeteo/lib/conv.py b/weather.openmeteo/lib/conv.py index 057fff8d2..bcf69e7db 100644 --- a/weather.openmeteo/lib/conv.py +++ b/weather.openmeteo/lib/conv.py @@ -291,6 +291,48 @@ def precipconv(value, unit): def precip(value=False): return precipconv(value, config.addon.precip) +# Pressure +def pressureconv(value, unit): + if value is not False: + value = float(value) + + if unit == 'kPa': + v = value * 0.1 + elif unit == 'mmHg': + v = value * 0.7500637554 + elif unit == 'inHg': + v = value * 0.02953 + elif unit == 'psi': + v = value * 0.0145037738 + else: + v = value + + if config.addon.pressuredp == '0': + return round(v) + else: + if config.addon.unitsep == ',': + return str(round(v,int(config.addon.pressuredp))).replace('.',',') + else: + return round(v,int(config.addon.pressuredp)) + + else: + + if unit == 'kPa': + v = 'kPa' + elif unit == 'mmHg': + v = 'mmHg' + elif unit == 'inHg': + v = 'inHg' + elif unit == 'psi': + v = 'psi' + else: + v = 'hPa' + + return v + +def pressure(value=False): + return pressureconv(value, config.addon.pressure) + # Decimal places def dp(value, setting): value = float(value) diff --git a/weather.openmeteo/lib/monitor.py b/weather.openmeteo/lib/monitor.py index ea7ef66d0..1e4637d7b 100644 --- a/weather.openmeteo/lib/monitor.py +++ b/weather.openmeteo/lib/monitor.py @@ -19,6 +19,16 @@ def onSettingsChanged(self): config.init() weather.Main(str(utils.settingrpc("weather.currentlocation")), mode='update') + # Map zoom + if current.get('mapzoom') != self.old.get('mapzoom'): + utils.log('Map zoom changed, re-downloading ...') + + for locid in range(1, config.addon.maxlocs): + if utils.setting(f'loc{locid}'): + utils.setsetting(f'loc{locid}map', '321318000') + utils.setsetting(f'loc{locid}rv', '321318000') + utils.setsetting(f'loc{locid}gc', '321318000') + self.old = current def waitForService(self): diff --git a/weather.openmeteo/lib/service.py b/weather.openmeteo/lib/service.py index b065360a1..3d88db8bc 100644 --- a/weather.openmeteo/lib/service.py +++ b/weather.openmeteo/lib/service.py @@ -10,15 +10,18 @@ def Main(): utils.log(f'Starting service ...') utils.log(config.addon_info, 3) + # Geolocation + if not utils.setting('geoip') and not utils.setting('loc1'): + utils.setsetting('geoip', 'true') + utils.setsetting('service', 'running') + weather.Main('1', mode='geoip') + weather.Main('1', mode='download') + utils.setsetting('service', 'idle') + # Service while not utils.monitor.abortRequested(): utils.setsetting('service', 'running') - # Geolocation - if startup and not utils.setting('geoip'): - weather.Main('1', mode='geoip') - weather.Main('1', mode='download') - # Init if utils.settingrpc('weather.addon') == 'weather.openmeteo': utils.log(f'Running service ...', 3) diff --git a/weather.openmeteo/lib/utils.py b/weather.openmeteo/lib/utils.py index e404cf9fb..019cb0e18 100644 --- a/weather.openmeteo/lib/utils.py +++ b/weather.openmeteo/lib/utils.py @@ -300,9 +300,9 @@ def getprop(data, map, idx, count): # Pressure elif unit == 'pressure': - content = conv.dp(content, config.addon.pressuredp) + content = conv.pressure(content) elif unit == 'unitpressure': - content = 'hPa' + content = conv.pressure() # Direction elif unit == 'direction': @@ -521,7 +521,7 @@ def setalert(data, map, idx, locid, curid, loc, mode): if content >= limit: code = int(alert[-1]) value = content - time = data[map[1][0]]['time'][index] + stamp = data[map[1][0]]['time'][index] elif 'low' in alert: if content <= limit: @@ -530,20 +530,22 @@ def setalert(data, map, idx, locid, curid, loc, mode): if content <= limit: code = int(alert[-1]) value = content - time = data[map[1][0]]['time'][index] + stamp = data[map[1][0]]['time'][index] elif 'wmo' in alert: for wmo in limit: if content == int(wmo): hours[f'{alert[-1]}'] += 1 - code = int(alert[-1]) - value = content - time = data[map[1][0]]['time'][index] + + if content > value: + code = int(alert[-1]) + value = content + stamp = data[map[1][0]]['time'][index] # Check alert code if code != 0: icon = f'{prop}{code}' - time = dt('stamploc', time).strftime('%H:%M') + time = conv.time('time', stamp) if prop == 'temperature': value = conv.temp(value) diff --git a/weather.openmeteo/lib/weather.py b/weather.openmeteo/lib/weather.py index 8749adc98..2783fd2a1 100644 --- a/weather.openmeteo/lib/weather.py +++ b/weather.openmeteo/lib/weather.py @@ -56,14 +56,21 @@ def __init__(self, locid, mode='kodi'): if api.network(): utils.setupdate(f'loc{locid}map') + # Rv + if utils.lastupdate(f'loc{locid}rv') >= 3600: + with ThreadPoolExecutor(2) as pool: + pool.map(self.getmap, config.map_rv) - # Layers - if utils.lastupdate(f'loc{locid}layer') >= 1800: + if api.network(): + utils.setupdate(f'loc{locid}rv') + + # Gc + if utils.lastupdate(f'loc{locid}gc') >= 10800: with ThreadPoolExecutor(2) as pool: - pool.map(self.getmap, config.map_layers) + pool.map(self.getmap, config.map_gc) if api.network(): - utils.setupdate(f'loc{locid}layer') + utils.setupdate(f'loc{locid}gc') # Update elif self.mode == 'update' or self.mode == 'kodi': @@ -209,7 +216,9 @@ def setcurrent(self, type, locid): def setlocs(self): locs = 0 for locid in range(1, config.addon.maxlocs): - loc = utils.setting(f'loc{locid}') + loc = utils.setting(f'loc{locid}') + locuser = utils.setting(f'loc{locid}user') + if loc: locs += 1 @@ -219,7 +228,10 @@ def setlocs(self): for map in config.map: self.setcurrent(map, locid) - utils.setprop(f'location{locid}', loc) + if locuser: + utils.setprop(f'location{locid}', locuser) + else: + utils.setprop(f'location{locid}', loc) else: utils.setprop(f'location{locid}', '') @@ -413,8 +425,13 @@ def setprop(self): index += 1 # Locations - utils.setprop('current.location', utils.setting(f'loc{config.loc.id}').split(',')[0]) - utils.setprop('location', utils.setting(f'loc{config.loc.id}')) + if config.loc.user: + utils.setprop('current.location', config.loc.user) + utils.setprop('location', config.loc.user) + else: + utils.setprop('current.location', config.loc.name.split(',')[0]) + utils.setprop('location', config.loc.name) + self.setlocs() # Fetched diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_0.png b/weather.openmeteo/resources/icons/graph/1440/scale100_0.png deleted file mode 100644 index ceb66f9aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_1.png b/weather.openmeteo/resources/icons/graph/1440/scale100_1.png deleted file mode 100644 index 3ee5d729b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_10.png b/weather.openmeteo/resources/icons/graph/1440/scale100_10.png deleted file mode 100644 index 6a3b628b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_100.png b/weather.openmeteo/resources/icons/graph/1440/scale100_100.png deleted file mode 100644 index a5095583c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_11.png b/weather.openmeteo/resources/icons/graph/1440/scale100_11.png deleted file mode 100644 index 4272586e5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_12.png b/weather.openmeteo/resources/icons/graph/1440/scale100_12.png deleted file mode 100644 index ec4251768..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_13.png b/weather.openmeteo/resources/icons/graph/1440/scale100_13.png deleted file mode 100644 index e54c51241..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_14.png b/weather.openmeteo/resources/icons/graph/1440/scale100_14.png deleted file mode 100644 index f197db3bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_15.png b/weather.openmeteo/resources/icons/graph/1440/scale100_15.png deleted file mode 100644 index 1ec571999..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_16.png b/weather.openmeteo/resources/icons/graph/1440/scale100_16.png deleted file mode 100644 index cb0982379..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_17.png b/weather.openmeteo/resources/icons/graph/1440/scale100_17.png deleted file mode 100644 index b4a3eb1fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_18.png b/weather.openmeteo/resources/icons/graph/1440/scale100_18.png deleted file mode 100644 index b14abad13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_19.png b/weather.openmeteo/resources/icons/graph/1440/scale100_19.png deleted file mode 100644 index b2742cea3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_2.png b/weather.openmeteo/resources/icons/graph/1440/scale100_2.png deleted file mode 100644 index e0f6b4fa8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_20.png b/weather.openmeteo/resources/icons/graph/1440/scale100_20.png deleted file mode 100644 index 94bc71366..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_21.png b/weather.openmeteo/resources/icons/graph/1440/scale100_21.png deleted file mode 100644 index c4e7c084e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_22.png b/weather.openmeteo/resources/icons/graph/1440/scale100_22.png deleted file mode 100644 index fa3f50c80..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_23.png b/weather.openmeteo/resources/icons/graph/1440/scale100_23.png deleted file mode 100644 index fa9df4a82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_24.png b/weather.openmeteo/resources/icons/graph/1440/scale100_24.png deleted file mode 100644 index effda0c15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_25.png b/weather.openmeteo/resources/icons/graph/1440/scale100_25.png deleted file mode 100644 index 004407b75..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_26.png b/weather.openmeteo/resources/icons/graph/1440/scale100_26.png deleted file mode 100644 index 9bd6121dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_27.png b/weather.openmeteo/resources/icons/graph/1440/scale100_27.png deleted file mode 100644 index 41a921d96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_28.png b/weather.openmeteo/resources/icons/graph/1440/scale100_28.png deleted file mode 100644 index 651147f7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_29.png b/weather.openmeteo/resources/icons/graph/1440/scale100_29.png deleted file mode 100644 index 51e60671d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_3.png b/weather.openmeteo/resources/icons/graph/1440/scale100_3.png deleted file mode 100644 index 26c254718..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_30.png b/weather.openmeteo/resources/icons/graph/1440/scale100_30.png deleted file mode 100644 index d4b195571..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_31.png b/weather.openmeteo/resources/icons/graph/1440/scale100_31.png deleted file mode 100644 index f643d70e1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_32.png b/weather.openmeteo/resources/icons/graph/1440/scale100_32.png deleted file mode 100644 index fc2ef2955..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_33.png b/weather.openmeteo/resources/icons/graph/1440/scale100_33.png deleted file mode 100644 index 436d05f16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_34.png b/weather.openmeteo/resources/icons/graph/1440/scale100_34.png deleted file mode 100644 index 6e2c4df16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_35.png b/weather.openmeteo/resources/icons/graph/1440/scale100_35.png deleted file mode 100644 index 6eefceb0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_36.png b/weather.openmeteo/resources/icons/graph/1440/scale100_36.png deleted file mode 100644 index 146288f79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_37.png b/weather.openmeteo/resources/icons/graph/1440/scale100_37.png deleted file mode 100644 index 44afbd29b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_38.png b/weather.openmeteo/resources/icons/graph/1440/scale100_38.png deleted file mode 100644 index 9d2939455..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_39.png b/weather.openmeteo/resources/icons/graph/1440/scale100_39.png deleted file mode 100644 index d29f0f2d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_4.png b/weather.openmeteo/resources/icons/graph/1440/scale100_4.png deleted file mode 100644 index 9f1226dc2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_40.png b/weather.openmeteo/resources/icons/graph/1440/scale100_40.png deleted file mode 100644 index 568cb7906..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_41.png b/weather.openmeteo/resources/icons/graph/1440/scale100_41.png deleted file mode 100644 index d7dd3024e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_42.png b/weather.openmeteo/resources/icons/graph/1440/scale100_42.png deleted file mode 100644 index 021b544e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_43.png b/weather.openmeteo/resources/icons/graph/1440/scale100_43.png deleted file mode 100644 index d1c486b05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_44.png b/weather.openmeteo/resources/icons/graph/1440/scale100_44.png deleted file mode 100644 index 45c7495c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_45.png b/weather.openmeteo/resources/icons/graph/1440/scale100_45.png deleted file mode 100644 index 222f75595..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_46.png b/weather.openmeteo/resources/icons/graph/1440/scale100_46.png deleted file mode 100644 index ad66a6307..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_47.png b/weather.openmeteo/resources/icons/graph/1440/scale100_47.png deleted file mode 100644 index 40fa20048..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_48.png b/weather.openmeteo/resources/icons/graph/1440/scale100_48.png deleted file mode 100644 index 15416217a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_49.png b/weather.openmeteo/resources/icons/graph/1440/scale100_49.png deleted file mode 100644 index 7a7afce51..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_5.png b/weather.openmeteo/resources/icons/graph/1440/scale100_5.png deleted file mode 100644 index 414a0562f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_50.png b/weather.openmeteo/resources/icons/graph/1440/scale100_50.png deleted file mode 100644 index d0bdb9b73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_51.png b/weather.openmeteo/resources/icons/graph/1440/scale100_51.png deleted file mode 100644 index dd062c3ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_52.png b/weather.openmeteo/resources/icons/graph/1440/scale100_52.png deleted file mode 100644 index 4a1608ef3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_53.png b/weather.openmeteo/resources/icons/graph/1440/scale100_53.png deleted file mode 100644 index 5e850a3bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_54.png b/weather.openmeteo/resources/icons/graph/1440/scale100_54.png deleted file mode 100644 index 6e18b7fda..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_55.png b/weather.openmeteo/resources/icons/graph/1440/scale100_55.png deleted file mode 100644 index e8ab82b59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_56.png b/weather.openmeteo/resources/icons/graph/1440/scale100_56.png deleted file mode 100644 index bf21835b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_57.png b/weather.openmeteo/resources/icons/graph/1440/scale100_57.png deleted file mode 100644 index 94b6b59d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_58.png b/weather.openmeteo/resources/icons/graph/1440/scale100_58.png deleted file mode 100644 index 32252385e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_59.png b/weather.openmeteo/resources/icons/graph/1440/scale100_59.png deleted file mode 100644 index e6bac3db4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_6.png b/weather.openmeteo/resources/icons/graph/1440/scale100_6.png deleted file mode 100644 index 094df6fb0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_60.png b/weather.openmeteo/resources/icons/graph/1440/scale100_60.png deleted file mode 100644 index e46a042fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_61.png b/weather.openmeteo/resources/icons/graph/1440/scale100_61.png deleted file mode 100644 index 8613e8002..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_62.png b/weather.openmeteo/resources/icons/graph/1440/scale100_62.png deleted file mode 100644 index feb3d60bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_63.png b/weather.openmeteo/resources/icons/graph/1440/scale100_63.png deleted file mode 100644 index ee7e60adb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_64.png b/weather.openmeteo/resources/icons/graph/1440/scale100_64.png deleted file mode 100644 index ce853ebfb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_65.png b/weather.openmeteo/resources/icons/graph/1440/scale100_65.png deleted file mode 100644 index c73f5a8b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_66.png b/weather.openmeteo/resources/icons/graph/1440/scale100_66.png deleted file mode 100644 index a8395fe4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_67.png b/weather.openmeteo/resources/icons/graph/1440/scale100_67.png deleted file mode 100644 index a009db250..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_68.png b/weather.openmeteo/resources/icons/graph/1440/scale100_68.png deleted file mode 100644 index f691c2aef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_69.png b/weather.openmeteo/resources/icons/graph/1440/scale100_69.png deleted file mode 100644 index 6ac0d3183..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_7.png b/weather.openmeteo/resources/icons/graph/1440/scale100_7.png deleted file mode 100644 index e2b751996..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_70.png b/weather.openmeteo/resources/icons/graph/1440/scale100_70.png deleted file mode 100644 index 86d8b4580..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_71.png b/weather.openmeteo/resources/icons/graph/1440/scale100_71.png deleted file mode 100644 index 4c9f3fada..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_72.png b/weather.openmeteo/resources/icons/graph/1440/scale100_72.png deleted file mode 100644 index 1d38981fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_73.png b/weather.openmeteo/resources/icons/graph/1440/scale100_73.png deleted file mode 100644 index 6a3c96f24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_74.png b/weather.openmeteo/resources/icons/graph/1440/scale100_74.png deleted file mode 100644 index ec399a074..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_75.png b/weather.openmeteo/resources/icons/graph/1440/scale100_75.png deleted file mode 100644 index 37e302f9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_76.png b/weather.openmeteo/resources/icons/graph/1440/scale100_76.png deleted file mode 100644 index 5532c826c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_77.png b/weather.openmeteo/resources/icons/graph/1440/scale100_77.png deleted file mode 100644 index b6cdd8a79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_78.png b/weather.openmeteo/resources/icons/graph/1440/scale100_78.png deleted file mode 100644 index 8d8d753d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_79.png b/weather.openmeteo/resources/icons/graph/1440/scale100_79.png deleted file mode 100644 index 82344c156..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_8.png b/weather.openmeteo/resources/icons/graph/1440/scale100_8.png deleted file mode 100644 index 94f1561e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_80.png b/weather.openmeteo/resources/icons/graph/1440/scale100_80.png deleted file mode 100644 index eda9d14ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_81.png b/weather.openmeteo/resources/icons/graph/1440/scale100_81.png deleted file mode 100644 index 94687dd05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_82.png b/weather.openmeteo/resources/icons/graph/1440/scale100_82.png deleted file mode 100644 index 848e12486..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_83.png b/weather.openmeteo/resources/icons/graph/1440/scale100_83.png deleted file mode 100644 index 9fe5268a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_84.png b/weather.openmeteo/resources/icons/graph/1440/scale100_84.png deleted file mode 100644 index a775ac7e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_85.png b/weather.openmeteo/resources/icons/graph/1440/scale100_85.png deleted file mode 100644 index 1ea08864b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_86.png b/weather.openmeteo/resources/icons/graph/1440/scale100_86.png deleted file mode 100644 index ea8ca08b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_87.png b/weather.openmeteo/resources/icons/graph/1440/scale100_87.png deleted file mode 100644 index 00612350c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_88.png b/weather.openmeteo/resources/icons/graph/1440/scale100_88.png deleted file mode 100644 index 998508c95..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_89.png b/weather.openmeteo/resources/icons/graph/1440/scale100_89.png deleted file mode 100644 index 0d1f386d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_9.png b/weather.openmeteo/resources/icons/graph/1440/scale100_9.png deleted file mode 100644 index 6d0ade2b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_90.png b/weather.openmeteo/resources/icons/graph/1440/scale100_90.png deleted file mode 100644 index cb4de181f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_91.png b/weather.openmeteo/resources/icons/graph/1440/scale100_91.png deleted file mode 100644 index 2bbd392af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_92.png b/weather.openmeteo/resources/icons/graph/1440/scale100_92.png deleted file mode 100644 index 4096c5b26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_93.png b/weather.openmeteo/resources/icons/graph/1440/scale100_93.png deleted file mode 100644 index 9bf38762b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_94.png b/weather.openmeteo/resources/icons/graph/1440/scale100_94.png deleted file mode 100644 index 31509935c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_95.png b/weather.openmeteo/resources/icons/graph/1440/scale100_95.png deleted file mode 100644 index 8bab01d81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_96.png b/weather.openmeteo/resources/icons/graph/1440/scale100_96.png deleted file mode 100644 index bb5107551..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_97.png b/weather.openmeteo/resources/icons/graph/1440/scale100_97.png deleted file mode 100644 index 196778f34..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_98.png b/weather.openmeteo/resources/icons/graph/1440/scale100_98.png deleted file mode 100644 index a9ad4dc8d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale100_99.png b/weather.openmeteo/resources/icons/graph/1440/scale100_99.png deleted file mode 100644 index 7861a0d76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale100_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_0.png b/weather.openmeteo/resources/icons/graph/1440/scale10_0.png deleted file mode 100644 index 3edca80f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_1.png b/weather.openmeteo/resources/icons/graph/1440/scale10_1.png deleted file mode 100644 index 572650af3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_10.png b/weather.openmeteo/resources/icons/graph/1440/scale10_10.png deleted file mode 100644 index bcaddc115..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_2.png b/weather.openmeteo/resources/icons/graph/1440/scale10_2.png deleted file mode 100644 index 6f11436f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_3.png b/weather.openmeteo/resources/icons/graph/1440/scale10_3.png deleted file mode 100644 index 7ffac7113..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_4.png b/weather.openmeteo/resources/icons/graph/1440/scale10_4.png deleted file mode 100644 index e37267bed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_5.png b/weather.openmeteo/resources/icons/graph/1440/scale10_5.png deleted file mode 100644 index 24dcef50b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_6.png b/weather.openmeteo/resources/icons/graph/1440/scale10_6.png deleted file mode 100644 index 0b58a004f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_7.png b/weather.openmeteo/resources/icons/graph/1440/scale10_7.png deleted file mode 100644 index a4f53edd1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_8.png b/weather.openmeteo/resources/icons/graph/1440/scale10_8.png deleted file mode 100644 index c28d41012..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale10_9.png b/weather.openmeteo/resources/icons/graph/1440/scale10_9.png deleted file mode 100644 index 70d61e552..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_0.png b/weather.openmeteo/resources/icons/graph/1440/scale150_0.png deleted file mode 100644 index 6f8ab7596..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_1.png b/weather.openmeteo/resources/icons/graph/1440/scale150_1.png deleted file mode 100644 index f2c63cff6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_10.png b/weather.openmeteo/resources/icons/graph/1440/scale150_10.png deleted file mode 100644 index ff4621910..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_100.png b/weather.openmeteo/resources/icons/graph/1440/scale150_100.png deleted file mode 100644 index 69adc9fed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_101.png b/weather.openmeteo/resources/icons/graph/1440/scale150_101.png deleted file mode 100644 index 5598d9f76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_102.png b/weather.openmeteo/resources/icons/graph/1440/scale150_102.png deleted file mode 100644 index 8a53a09ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_103.png b/weather.openmeteo/resources/icons/graph/1440/scale150_103.png deleted file mode 100644 index 8b8d80f03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_104.png b/weather.openmeteo/resources/icons/graph/1440/scale150_104.png deleted file mode 100644 index 8b8d80f03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_105.png b/weather.openmeteo/resources/icons/graph/1440/scale150_105.png deleted file mode 100644 index fb960e39b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_106.png b/weather.openmeteo/resources/icons/graph/1440/scale150_106.png deleted file mode 100644 index 33bc1257a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_107.png b/weather.openmeteo/resources/icons/graph/1440/scale150_107.png deleted file mode 100644 index 33bc1257a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_108.png b/weather.openmeteo/resources/icons/graph/1440/scale150_108.png deleted file mode 100644 index f7aee1987..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_109.png b/weather.openmeteo/resources/icons/graph/1440/scale150_109.png deleted file mode 100644 index 5cbb84804..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_11.png b/weather.openmeteo/resources/icons/graph/1440/scale150_11.png deleted file mode 100644 index ff4621910..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_110.png b/weather.openmeteo/resources/icons/graph/1440/scale150_110.png deleted file mode 100644 index 5cbb84804..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_111.png b/weather.openmeteo/resources/icons/graph/1440/scale150_111.png deleted file mode 100644 index 16e3a8eb5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_112.png b/weather.openmeteo/resources/icons/graph/1440/scale150_112.png deleted file mode 100644 index 363263a74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_113.png b/weather.openmeteo/resources/icons/graph/1440/scale150_113.png deleted file mode 100644 index 363263a74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_114.png b/weather.openmeteo/resources/icons/graph/1440/scale150_114.png deleted file mode 100644 index 02b5957db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_115.png b/weather.openmeteo/resources/icons/graph/1440/scale150_115.png deleted file mode 100644 index 247aa1d21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_116.png b/weather.openmeteo/resources/icons/graph/1440/scale150_116.png deleted file mode 100644 index 247aa1d21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_117.png b/weather.openmeteo/resources/icons/graph/1440/scale150_117.png deleted file mode 100644 index b7c020740..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_118.png b/weather.openmeteo/resources/icons/graph/1440/scale150_118.png deleted file mode 100644 index 7a1355e84..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_119.png b/weather.openmeteo/resources/icons/graph/1440/scale150_119.png deleted file mode 100644 index 7a1355e84..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_12.png b/weather.openmeteo/resources/icons/graph/1440/scale150_12.png deleted file mode 100644 index 73a558749..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_120.png b/weather.openmeteo/resources/icons/graph/1440/scale150_120.png deleted file mode 100644 index 953a6e895..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_121.png b/weather.openmeteo/resources/icons/graph/1440/scale150_121.png deleted file mode 100644 index 7756ab34f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_122.png b/weather.openmeteo/resources/icons/graph/1440/scale150_122.png deleted file mode 100644 index 7756ab34f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_123.png b/weather.openmeteo/resources/icons/graph/1440/scale150_123.png deleted file mode 100644 index 415fdc57a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_124.png b/weather.openmeteo/resources/icons/graph/1440/scale150_124.png deleted file mode 100644 index f010f7ef6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_125.png b/weather.openmeteo/resources/icons/graph/1440/scale150_125.png deleted file mode 100644 index f010f7ef6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_126.png b/weather.openmeteo/resources/icons/graph/1440/scale150_126.png deleted file mode 100644 index 70c9494a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_127.png b/weather.openmeteo/resources/icons/graph/1440/scale150_127.png deleted file mode 100644 index 475f755e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_128.png b/weather.openmeteo/resources/icons/graph/1440/scale150_128.png deleted file mode 100644 index 475f755e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_129.png b/weather.openmeteo/resources/icons/graph/1440/scale150_129.png deleted file mode 100644 index 21a125da2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_13.png b/weather.openmeteo/resources/icons/graph/1440/scale150_13.png deleted file mode 100644 index 393dee870..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_130.png b/weather.openmeteo/resources/icons/graph/1440/scale150_130.png deleted file mode 100644 index f8259fe74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_131.png b/weather.openmeteo/resources/icons/graph/1440/scale150_131.png deleted file mode 100644 index f8259fe74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_132.png b/weather.openmeteo/resources/icons/graph/1440/scale150_132.png deleted file mode 100644 index b3a9c040d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_133.png b/weather.openmeteo/resources/icons/graph/1440/scale150_133.png deleted file mode 100644 index cc7439bd5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_134.png b/weather.openmeteo/resources/icons/graph/1440/scale150_134.png deleted file mode 100644 index cc7439bd5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_135.png b/weather.openmeteo/resources/icons/graph/1440/scale150_135.png deleted file mode 100644 index 809cb1df1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_136.png b/weather.openmeteo/resources/icons/graph/1440/scale150_136.png deleted file mode 100644 index e1ab18a05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_137.png b/weather.openmeteo/resources/icons/graph/1440/scale150_137.png deleted file mode 100644 index e1ab18a05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_138.png b/weather.openmeteo/resources/icons/graph/1440/scale150_138.png deleted file mode 100644 index 9c1ac86d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_139.png b/weather.openmeteo/resources/icons/graph/1440/scale150_139.png deleted file mode 100644 index 27e7507c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_14.png b/weather.openmeteo/resources/icons/graph/1440/scale150_14.png deleted file mode 100644 index 393dee870..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_140.png b/weather.openmeteo/resources/icons/graph/1440/scale150_140.png deleted file mode 100644 index bf5396dd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_141.png b/weather.openmeteo/resources/icons/graph/1440/scale150_141.png deleted file mode 100644 index d31033375..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_142.png b/weather.openmeteo/resources/icons/graph/1440/scale150_142.png deleted file mode 100644 index 1c46eba82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_143.png b/weather.openmeteo/resources/icons/graph/1440/scale150_143.png deleted file mode 100644 index d1b2c81ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_144.png b/weather.openmeteo/resources/icons/graph/1440/scale150_144.png deleted file mode 100644 index 89702efe1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_145.png b/weather.openmeteo/resources/icons/graph/1440/scale150_145.png deleted file mode 100644 index 896b3bf62..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_146.png b/weather.openmeteo/resources/icons/graph/1440/scale150_146.png deleted file mode 100644 index 44e8d42ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_147.png b/weather.openmeteo/resources/icons/graph/1440/scale150_147.png deleted file mode 100644 index 5889319a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_148.png b/weather.openmeteo/resources/icons/graph/1440/scale150_148.png deleted file mode 100644 index ea0bfdb8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_149.png b/weather.openmeteo/resources/icons/graph/1440/scale150_149.png deleted file mode 100644 index 36c170a53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_15.png b/weather.openmeteo/resources/icons/graph/1440/scale150_15.png deleted file mode 100644 index 9fdd2384e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_150.png b/weather.openmeteo/resources/icons/graph/1440/scale150_150.png deleted file mode 100644 index dce7af84c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_16.png b/weather.openmeteo/resources/icons/graph/1440/scale150_16.png deleted file mode 100644 index 8eb987ac8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_17.png b/weather.openmeteo/resources/icons/graph/1440/scale150_17.png deleted file mode 100644 index 8eb987ac8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_18.png b/weather.openmeteo/resources/icons/graph/1440/scale150_18.png deleted file mode 100644 index c9212dcf2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_19.png b/weather.openmeteo/resources/icons/graph/1440/scale150_19.png deleted file mode 100644 index bd3ebec86..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_2.png b/weather.openmeteo/resources/icons/graph/1440/scale150_2.png deleted file mode 100644 index 0eb40d892..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_20.png b/weather.openmeteo/resources/icons/graph/1440/scale150_20.png deleted file mode 100644 index bd3ebec86..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_21.png b/weather.openmeteo/resources/icons/graph/1440/scale150_21.png deleted file mode 100644 index f246ab26a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_22.png b/weather.openmeteo/resources/icons/graph/1440/scale150_22.png deleted file mode 100644 index 416b20539..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_23.png b/weather.openmeteo/resources/icons/graph/1440/scale150_23.png deleted file mode 100644 index 416b20539..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_24.png b/weather.openmeteo/resources/icons/graph/1440/scale150_24.png deleted file mode 100644 index 057ac3353..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_25.png b/weather.openmeteo/resources/icons/graph/1440/scale150_25.png deleted file mode 100644 index c89437eae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_26.png b/weather.openmeteo/resources/icons/graph/1440/scale150_26.png deleted file mode 100644 index c89437eae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_27.png b/weather.openmeteo/resources/icons/graph/1440/scale150_27.png deleted file mode 100644 index 2ede18aa5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_28.png b/weather.openmeteo/resources/icons/graph/1440/scale150_28.png deleted file mode 100644 index 8df5867d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_29.png b/weather.openmeteo/resources/icons/graph/1440/scale150_29.png deleted file mode 100644 index 8df5867d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_3.png b/weather.openmeteo/resources/icons/graph/1440/scale150_3.png deleted file mode 100644 index 46eaa25e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_30.png b/weather.openmeteo/resources/icons/graph/1440/scale150_30.png deleted file mode 100644 index 18d9db20b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_31.png b/weather.openmeteo/resources/icons/graph/1440/scale150_31.png deleted file mode 100644 index 6a76e9828..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_32.png b/weather.openmeteo/resources/icons/graph/1440/scale150_32.png deleted file mode 100644 index 6a76e9828..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_33.png b/weather.openmeteo/resources/icons/graph/1440/scale150_33.png deleted file mode 100644 index 890db00f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_34.png b/weather.openmeteo/resources/icons/graph/1440/scale150_34.png deleted file mode 100644 index 9b59cfa21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_35.png b/weather.openmeteo/resources/icons/graph/1440/scale150_35.png deleted file mode 100644 index 9b59cfa21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_36.png b/weather.openmeteo/resources/icons/graph/1440/scale150_36.png deleted file mode 100644 index 349106e9d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_37.png b/weather.openmeteo/resources/icons/graph/1440/scale150_37.png deleted file mode 100644 index d0a2f1bcb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_38.png b/weather.openmeteo/resources/icons/graph/1440/scale150_38.png deleted file mode 100644 index ee0ca40b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_39.png b/weather.openmeteo/resources/icons/graph/1440/scale150_39.png deleted file mode 100644 index 68eb1c29c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_4.png b/weather.openmeteo/resources/icons/graph/1440/scale150_4.png deleted file mode 100644 index f11cc37c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_40.png b/weather.openmeteo/resources/icons/graph/1440/scale150_40.png deleted file mode 100644 index 2f65316e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_41.png b/weather.openmeteo/resources/icons/graph/1440/scale150_41.png deleted file mode 100644 index 62de8d9e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_42.png b/weather.openmeteo/resources/icons/graph/1440/scale150_42.png deleted file mode 100644 index 64c0a992f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_43.png b/weather.openmeteo/resources/icons/graph/1440/scale150_43.png deleted file mode 100644 index b6cc6b24b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_44.png b/weather.openmeteo/resources/icons/graph/1440/scale150_44.png deleted file mode 100644 index 44da2fff4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_45.png b/weather.openmeteo/resources/icons/graph/1440/scale150_45.png deleted file mode 100644 index 263a67c88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_46.png b/weather.openmeteo/resources/icons/graph/1440/scale150_46.png deleted file mode 100644 index edfe77a4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_47.png b/weather.openmeteo/resources/icons/graph/1440/scale150_47.png deleted file mode 100644 index 9df470e50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_48.png b/weather.openmeteo/resources/icons/graph/1440/scale150_48.png deleted file mode 100644 index fa8850abb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_49.png b/weather.openmeteo/resources/icons/graph/1440/scale150_49.png deleted file mode 100644 index 611ccacd0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_5.png b/weather.openmeteo/resources/icons/graph/1440/scale150_5.png deleted file mode 100644 index f11cc37c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_50.png b/weather.openmeteo/resources/icons/graph/1440/scale150_50.png deleted file mode 100644 index bfb2f8e19..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_51.png b/weather.openmeteo/resources/icons/graph/1440/scale150_51.png deleted file mode 100644 index c799f64a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_52.png b/weather.openmeteo/resources/icons/graph/1440/scale150_52.png deleted file mode 100644 index 2c500111c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_53.png b/weather.openmeteo/resources/icons/graph/1440/scale150_53.png deleted file mode 100644 index 2c500111c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_54.png b/weather.openmeteo/resources/icons/graph/1440/scale150_54.png deleted file mode 100644 index 59099bb79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_55.png b/weather.openmeteo/resources/icons/graph/1440/scale150_55.png deleted file mode 100644 index d5121a138..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_56.png b/weather.openmeteo/resources/icons/graph/1440/scale150_56.png deleted file mode 100644 index d5121a138..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_57.png b/weather.openmeteo/resources/icons/graph/1440/scale150_57.png deleted file mode 100644 index 81a8b25d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_58.png b/weather.openmeteo/resources/icons/graph/1440/scale150_58.png deleted file mode 100644 index be23c3f71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_59.png b/weather.openmeteo/resources/icons/graph/1440/scale150_59.png deleted file mode 100644 index be23c3f71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_6.png b/weather.openmeteo/resources/icons/graph/1440/scale150_6.png deleted file mode 100644 index 24b9b0a34..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_60.png b/weather.openmeteo/resources/icons/graph/1440/scale150_60.png deleted file mode 100644 index 068d8c823..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_61.png b/weather.openmeteo/resources/icons/graph/1440/scale150_61.png deleted file mode 100644 index 71e8b5aa7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_62.png b/weather.openmeteo/resources/icons/graph/1440/scale150_62.png deleted file mode 100644 index 71e8b5aa7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_63.png b/weather.openmeteo/resources/icons/graph/1440/scale150_63.png deleted file mode 100644 index 8e8f94221..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_64.png b/weather.openmeteo/resources/icons/graph/1440/scale150_64.png deleted file mode 100644 index 838b361f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_65.png b/weather.openmeteo/resources/icons/graph/1440/scale150_65.png deleted file mode 100644 index 838b361f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_66.png b/weather.openmeteo/resources/icons/graph/1440/scale150_66.png deleted file mode 100644 index ce32b882a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_67.png b/weather.openmeteo/resources/icons/graph/1440/scale150_67.png deleted file mode 100644 index 4b5cb93cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_68.png b/weather.openmeteo/resources/icons/graph/1440/scale150_68.png deleted file mode 100644 index 4b5cb93cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_69.png b/weather.openmeteo/resources/icons/graph/1440/scale150_69.png deleted file mode 100644 index a8554ecea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_7.png b/weather.openmeteo/resources/icons/graph/1440/scale150_7.png deleted file mode 100644 index 012ac1df4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_70.png b/weather.openmeteo/resources/icons/graph/1440/scale150_70.png deleted file mode 100644 index e67e2dfa2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_71.png b/weather.openmeteo/resources/icons/graph/1440/scale150_71.png deleted file mode 100644 index e67e2dfa2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_72.png b/weather.openmeteo/resources/icons/graph/1440/scale150_72.png deleted file mode 100644 index a14a45a78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_73.png b/weather.openmeteo/resources/icons/graph/1440/scale150_73.png deleted file mode 100644 index 5e0c67383..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_74.png b/weather.openmeteo/resources/icons/graph/1440/scale150_74.png deleted file mode 100644 index 5e0c67383..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_75.png b/weather.openmeteo/resources/icons/graph/1440/scale150_75.png deleted file mode 100644 index 2d2a3bd01..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_76.png b/weather.openmeteo/resources/icons/graph/1440/scale150_76.png deleted file mode 100644 index ab60556f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_77.png b/weather.openmeteo/resources/icons/graph/1440/scale150_77.png deleted file mode 100644 index ab60556f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_78.png b/weather.openmeteo/resources/icons/graph/1440/scale150_78.png deleted file mode 100644 index 49cc95bd8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_79.png b/weather.openmeteo/resources/icons/graph/1440/scale150_79.png deleted file mode 100644 index dcd94b3c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_8.png b/weather.openmeteo/resources/icons/graph/1440/scale150_8.png deleted file mode 100644 index 012ac1df4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_80.png b/weather.openmeteo/resources/icons/graph/1440/scale150_80.png deleted file mode 100644 index dcd94b3c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_81.png b/weather.openmeteo/resources/icons/graph/1440/scale150_81.png deleted file mode 100644 index 1bbf0a78c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_82.png b/weather.openmeteo/resources/icons/graph/1440/scale150_82.png deleted file mode 100644 index d4c007b0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_83.png b/weather.openmeteo/resources/icons/graph/1440/scale150_83.png deleted file mode 100644 index d4c007b0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_84.png b/weather.openmeteo/resources/icons/graph/1440/scale150_84.png deleted file mode 100644 index 67431ee3a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_85.png b/weather.openmeteo/resources/icons/graph/1440/scale150_85.png deleted file mode 100644 index ea1f9a0f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_86.png b/weather.openmeteo/resources/icons/graph/1440/scale150_86.png deleted file mode 100644 index d4aef549e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_87.png b/weather.openmeteo/resources/icons/graph/1440/scale150_87.png deleted file mode 100644 index 245eb7ab9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_88.png b/weather.openmeteo/resources/icons/graph/1440/scale150_88.png deleted file mode 100644 index 0a3175f40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_89.png b/weather.openmeteo/resources/icons/graph/1440/scale150_89.png deleted file mode 100644 index 60cf1f62a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_9.png b/weather.openmeteo/resources/icons/graph/1440/scale150_9.png deleted file mode 100644 index 28a2c2b4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_90.png b/weather.openmeteo/resources/icons/graph/1440/scale150_90.png deleted file mode 100644 index cb1d4682f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_91.png b/weather.openmeteo/resources/icons/graph/1440/scale150_91.png deleted file mode 100644 index 0f80fa50b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_92.png b/weather.openmeteo/resources/icons/graph/1440/scale150_92.png deleted file mode 100644 index 1fb7ffc14..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_93.png b/weather.openmeteo/resources/icons/graph/1440/scale150_93.png deleted file mode 100644 index 7c0b83f60..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_94.png b/weather.openmeteo/resources/icons/graph/1440/scale150_94.png deleted file mode 100644 index b341e06df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_95.png b/weather.openmeteo/resources/icons/graph/1440/scale150_95.png deleted file mode 100644 index 08c7575ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_96.png b/weather.openmeteo/resources/icons/graph/1440/scale150_96.png deleted file mode 100644 index 93e7e188a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_97.png b/weather.openmeteo/resources/icons/graph/1440/scale150_97.png deleted file mode 100644 index 4210c32e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_98.png b/weather.openmeteo/resources/icons/graph/1440/scale150_98.png deleted file mode 100644 index 5f3d90f03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale150_99.png b/weather.openmeteo/resources/icons/graph/1440/scale150_99.png deleted file mode 100644 index bca5cc7de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale150_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.0.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.0.png deleted file mode 100644 index e2ee62687..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.1.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.1.png deleted file mode 100644 index f0d4675dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.2.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.2.png deleted file mode 100644 index 9519cc628..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.3.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.3.png deleted file mode 100644 index 3d2ee4c7a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.4.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.4.png deleted file mode 100644 index c2a4d3cf8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.5.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.5.png deleted file mode 100644 index a119ca7aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.6.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.6.png deleted file mode 100644 index b3288aefb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.7.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.7.png deleted file mode 100644 index c4d6a8567..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.8.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.8.png deleted file mode 100644 index 6d6b7c00e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_0.9.png b/weather.openmeteo/resources/icons/graph/1440/scale1_0.9.png deleted file mode 100644 index 636223a43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale1_1.0.png b/weather.openmeteo/resources/icons/graph/1440/scale1_1.0.png deleted file mode 100644 index d55803f89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_0.png b/weather.openmeteo/resources/icons/graph/1440/scale200_0.png deleted file mode 100644 index bdb10124b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_1.png b/weather.openmeteo/resources/icons/graph/1440/scale200_1.png deleted file mode 100644 index d5ecb3b1c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_10.png b/weather.openmeteo/resources/icons/graph/1440/scale200_10.png deleted file mode 100644 index 2995c1067..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_100.png b/weather.openmeteo/resources/icons/graph/1440/scale200_100.png deleted file mode 100644 index 054d72c4f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_101.png b/weather.openmeteo/resources/icons/graph/1440/scale200_101.png deleted file mode 100644 index 1d95c52b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_102.png b/weather.openmeteo/resources/icons/graph/1440/scale200_102.png deleted file mode 100644 index 21320f2af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_103.png b/weather.openmeteo/resources/icons/graph/1440/scale200_103.png deleted file mode 100644 index 78997cc59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_104.png b/weather.openmeteo/resources/icons/graph/1440/scale200_104.png deleted file mode 100644 index 55ae5788a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_105.png b/weather.openmeteo/resources/icons/graph/1440/scale200_105.png deleted file mode 100644 index 55ae5788a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_106.png b/weather.openmeteo/resources/icons/graph/1440/scale200_106.png deleted file mode 100644 index 8652616a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_107.png b/weather.openmeteo/resources/icons/graph/1440/scale200_107.png deleted file mode 100644 index c9ae18914..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_108.png b/weather.openmeteo/resources/icons/graph/1440/scale200_108.png deleted file mode 100644 index c9ae18914..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_109.png b/weather.openmeteo/resources/icons/graph/1440/scale200_109.png deleted file mode 100644 index c9ae18914..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_11.png b/weather.openmeteo/resources/icons/graph/1440/scale200_11.png deleted file mode 100644 index e1b75b2dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_110.png b/weather.openmeteo/resources/icons/graph/1440/scale200_110.png deleted file mode 100644 index e5577737d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_111.png b/weather.openmeteo/resources/icons/graph/1440/scale200_111.png deleted file mode 100644 index 47f586f1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_112.png b/weather.openmeteo/resources/icons/graph/1440/scale200_112.png deleted file mode 100644 index 47f586f1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_113.png b/weather.openmeteo/resources/icons/graph/1440/scale200_113.png deleted file mode 100644 index 3db480a2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_114.png b/weather.openmeteo/resources/icons/graph/1440/scale200_114.png deleted file mode 100644 index 63d9b4238..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_115.png b/weather.openmeteo/resources/icons/graph/1440/scale200_115.png deleted file mode 100644 index 7bce790c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_116.png b/weather.openmeteo/resources/icons/graph/1440/scale200_116.png deleted file mode 100644 index d8eca4906..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_117.png b/weather.openmeteo/resources/icons/graph/1440/scale200_117.png deleted file mode 100644 index d8eca4906..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_118.png b/weather.openmeteo/resources/icons/graph/1440/scale200_118.png deleted file mode 100644 index 4e28728e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_119.png b/weather.openmeteo/resources/icons/graph/1440/scale200_119.png deleted file mode 100644 index 642824650..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_12.png b/weather.openmeteo/resources/icons/graph/1440/scale200_12.png deleted file mode 100644 index e1b75b2dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_120.png b/weather.openmeteo/resources/icons/graph/1440/scale200_120.png deleted file mode 100644 index 43f525238..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_121.png b/weather.openmeteo/resources/icons/graph/1440/scale200_121.png deleted file mode 100644 index 43f525238..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_122.png b/weather.openmeteo/resources/icons/graph/1440/scale200_122.png deleted file mode 100644 index 23472024c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_123.png b/weather.openmeteo/resources/icons/graph/1440/scale200_123.png deleted file mode 100644 index 50f20e482..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_124.png b/weather.openmeteo/resources/icons/graph/1440/scale200_124.png deleted file mode 100644 index 50f20e482..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_125.png b/weather.openmeteo/resources/icons/graph/1440/scale200_125.png deleted file mode 100644 index 50f20e482..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_126.png b/weather.openmeteo/resources/icons/graph/1440/scale200_126.png deleted file mode 100644 index 2409c4de3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_127.png b/weather.openmeteo/resources/icons/graph/1440/scale200_127.png deleted file mode 100644 index c6c8220ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_128.png b/weather.openmeteo/resources/icons/graph/1440/scale200_128.png deleted file mode 100644 index c6c8220ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_129.png b/weather.openmeteo/resources/icons/graph/1440/scale200_129.png deleted file mode 100644 index 1b0329e8b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_13.png b/weather.openmeteo/resources/icons/graph/1440/scale200_13.png deleted file mode 100644 index e1b75b2dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_130.png b/weather.openmeteo/resources/icons/graph/1440/scale200_130.png deleted file mode 100644 index acab97f7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_131.png b/weather.openmeteo/resources/icons/graph/1440/scale200_131.png deleted file mode 100644 index 60901824a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_132.png b/weather.openmeteo/resources/icons/graph/1440/scale200_132.png deleted file mode 100644 index af90bb761..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_133.png b/weather.openmeteo/resources/icons/graph/1440/scale200_133.png deleted file mode 100644 index af90bb761..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_134.png b/weather.openmeteo/resources/icons/graph/1440/scale200_134.png deleted file mode 100644 index fdae0c34c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_135.png b/weather.openmeteo/resources/icons/graph/1440/scale200_135.png deleted file mode 100644 index 2006044d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_136.png b/weather.openmeteo/resources/icons/graph/1440/scale200_136.png deleted file mode 100644 index 600684886..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_137.png b/weather.openmeteo/resources/icons/graph/1440/scale200_137.png deleted file mode 100644 index 600684886..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_138.png b/weather.openmeteo/resources/icons/graph/1440/scale200_138.png deleted file mode 100644 index a15511c26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_139.png b/weather.openmeteo/resources/icons/graph/1440/scale200_139.png deleted file mode 100644 index eb71597db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_14.png b/weather.openmeteo/resources/icons/graph/1440/scale200_14.png deleted file mode 100644 index 8491ef90f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_140.png b/weather.openmeteo/resources/icons/graph/1440/scale200_140.png deleted file mode 100644 index eb71597db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_141.png b/weather.openmeteo/resources/icons/graph/1440/scale200_141.png deleted file mode 100644 index eb71597db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_142.png b/weather.openmeteo/resources/icons/graph/1440/scale200_142.png deleted file mode 100644 index fdd95c6c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_143.png b/weather.openmeteo/resources/icons/graph/1440/scale200_143.png deleted file mode 100644 index f10efda07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_144.png b/weather.openmeteo/resources/icons/graph/1440/scale200_144.png deleted file mode 100644 index f10efda07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_145.png b/weather.openmeteo/resources/icons/graph/1440/scale200_145.png deleted file mode 100644 index 57eca91b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_146.png b/weather.openmeteo/resources/icons/graph/1440/scale200_146.png deleted file mode 100644 index 0d7637a3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_147.png b/weather.openmeteo/resources/icons/graph/1440/scale200_147.png deleted file mode 100644 index 1e8ccc2ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_148.png b/weather.openmeteo/resources/icons/graph/1440/scale200_148.png deleted file mode 100644 index a8fd2469a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_149.png b/weather.openmeteo/resources/icons/graph/1440/scale200_149.png deleted file mode 100644 index a8fd2469a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_15.png b/weather.openmeteo/resources/icons/graph/1440/scale200_15.png deleted file mode 100644 index 045c1e76f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_150.png b/weather.openmeteo/resources/icons/graph/1440/scale200_150.png deleted file mode 100644 index b68c876d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_151.png b/weather.openmeteo/resources/icons/graph/1440/scale200_151.png deleted file mode 100644 index 2e8df994b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_151.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_152.png b/weather.openmeteo/resources/icons/graph/1440/scale200_152.png deleted file mode 100644 index 15494c988..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_152.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_153.png b/weather.openmeteo/resources/icons/graph/1440/scale200_153.png deleted file mode 100644 index 15494c988..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_153.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_154.png b/weather.openmeteo/resources/icons/graph/1440/scale200_154.png deleted file mode 100644 index b8b037cad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_154.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_155.png b/weather.openmeteo/resources/icons/graph/1440/scale200_155.png deleted file mode 100644 index 974f970ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_155.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_156.png b/weather.openmeteo/resources/icons/graph/1440/scale200_156.png deleted file mode 100644 index 974f970ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_156.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_157.png b/weather.openmeteo/resources/icons/graph/1440/scale200_157.png deleted file mode 100644 index 974f970ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_157.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_158.png b/weather.openmeteo/resources/icons/graph/1440/scale200_158.png deleted file mode 100644 index 0bdf10bd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_158.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_159.png b/weather.openmeteo/resources/icons/graph/1440/scale200_159.png deleted file mode 100644 index 3ba7d5a4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_159.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_16.png b/weather.openmeteo/resources/icons/graph/1440/scale200_16.png deleted file mode 100644 index 045c1e76f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_160.png b/weather.openmeteo/resources/icons/graph/1440/scale200_160.png deleted file mode 100644 index 3ba7d5a4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_160.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_161.png b/weather.openmeteo/resources/icons/graph/1440/scale200_161.png deleted file mode 100644 index 4395c7b46..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_161.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_162.png b/weather.openmeteo/resources/icons/graph/1440/scale200_162.png deleted file mode 100644 index ff5a10b21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_162.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_163.png b/weather.openmeteo/resources/icons/graph/1440/scale200_163.png deleted file mode 100644 index 50d5d8282..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_163.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_164.png b/weather.openmeteo/resources/icons/graph/1440/scale200_164.png deleted file mode 100644 index c19003e4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_164.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_165.png b/weather.openmeteo/resources/icons/graph/1440/scale200_165.png deleted file mode 100644 index c19003e4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_165.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_166.png b/weather.openmeteo/resources/icons/graph/1440/scale200_166.png deleted file mode 100644 index ff1c07a54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_166.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_167.png b/weather.openmeteo/resources/icons/graph/1440/scale200_167.png deleted file mode 100644 index 91ada09ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_167.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_168.png b/weather.openmeteo/resources/icons/graph/1440/scale200_168.png deleted file mode 100644 index 828834256..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_168.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_169.png b/weather.openmeteo/resources/icons/graph/1440/scale200_169.png deleted file mode 100644 index 828834256..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_169.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_17.png b/weather.openmeteo/resources/icons/graph/1440/scale200_17.png deleted file mode 100644 index 562faf71d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_170.png b/weather.openmeteo/resources/icons/graph/1440/scale200_170.png deleted file mode 100644 index c5c529d7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_170.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_171.png b/weather.openmeteo/resources/icons/graph/1440/scale200_171.png deleted file mode 100644 index e21ea578c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_171.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_172.png b/weather.openmeteo/resources/icons/graph/1440/scale200_172.png deleted file mode 100644 index e21ea578c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_172.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_173.png b/weather.openmeteo/resources/icons/graph/1440/scale200_173.png deleted file mode 100644 index e21ea578c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_173.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_174.png b/weather.openmeteo/resources/icons/graph/1440/scale200_174.png deleted file mode 100644 index 162bddeb3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_174.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_175.png b/weather.openmeteo/resources/icons/graph/1440/scale200_175.png deleted file mode 100644 index 5f82253b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_175.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_176.png b/weather.openmeteo/resources/icons/graph/1440/scale200_176.png deleted file mode 100644 index 5f82253b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_176.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_177.png b/weather.openmeteo/resources/icons/graph/1440/scale200_177.png deleted file mode 100644 index 8e6ab1e8d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_177.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_178.png b/weather.openmeteo/resources/icons/graph/1440/scale200_178.png deleted file mode 100644 index 37752ddc9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_178.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_179.png b/weather.openmeteo/resources/icons/graph/1440/scale200_179.png deleted file mode 100644 index 513aed5cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_179.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_18.png b/weather.openmeteo/resources/icons/graph/1440/scale200_18.png deleted file mode 100644 index 1636d8199..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_180.png b/weather.openmeteo/resources/icons/graph/1440/scale200_180.png deleted file mode 100644 index a0cbefb56..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_180.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_181.png b/weather.openmeteo/resources/icons/graph/1440/scale200_181.png deleted file mode 100644 index a0cbefb56..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_181.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_182.png b/weather.openmeteo/resources/icons/graph/1440/scale200_182.png deleted file mode 100644 index d6548255a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_182.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_183.png b/weather.openmeteo/resources/icons/graph/1440/scale200_183.png deleted file mode 100644 index f2a1061ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_183.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_184.png b/weather.openmeteo/resources/icons/graph/1440/scale200_184.png deleted file mode 100644 index f2a1061ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_184.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_185.png b/weather.openmeteo/resources/icons/graph/1440/scale200_185.png deleted file mode 100644 index f2a1061ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_185.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_186.png b/weather.openmeteo/resources/icons/graph/1440/scale200_186.png deleted file mode 100644 index ae16eead5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_186.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_187.png b/weather.openmeteo/resources/icons/graph/1440/scale200_187.png deleted file mode 100644 index faf1f8091..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_187.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_188.png b/weather.openmeteo/resources/icons/graph/1440/scale200_188.png deleted file mode 100644 index faf1f8091..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_188.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_189.png b/weather.openmeteo/resources/icons/graph/1440/scale200_189.png deleted file mode 100644 index faf1f8091..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_189.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_19.png b/weather.openmeteo/resources/icons/graph/1440/scale200_19.png deleted file mode 100644 index 08659f788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_190.png b/weather.openmeteo/resources/icons/graph/1440/scale200_190.png deleted file mode 100644 index b23ae1dc3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_190.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_191.png b/weather.openmeteo/resources/icons/graph/1440/scale200_191.png deleted file mode 100644 index c29717cfc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_191.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_192.png b/weather.openmeteo/resources/icons/graph/1440/scale200_192.png deleted file mode 100644 index c29717cfc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_192.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_193.png b/weather.openmeteo/resources/icons/graph/1440/scale200_193.png deleted file mode 100644 index 227cf095e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_193.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_194.png b/weather.openmeteo/resources/icons/graph/1440/scale200_194.png deleted file mode 100644 index 7ca65a1a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_194.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_195.png b/weather.openmeteo/resources/icons/graph/1440/scale200_195.png deleted file mode 100644 index 8c834da1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_195.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_196.png b/weather.openmeteo/resources/icons/graph/1440/scale200_196.png deleted file mode 100644 index 9e58b566e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_196.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_197.png b/weather.openmeteo/resources/icons/graph/1440/scale200_197.png deleted file mode 100644 index 9e58b566e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_197.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_198.png b/weather.openmeteo/resources/icons/graph/1440/scale200_198.png deleted file mode 100644 index 78feb29d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_198.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_199.png b/weather.openmeteo/resources/icons/graph/1440/scale200_199.png deleted file mode 100644 index cdb6d9584..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_199.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_2.png b/weather.openmeteo/resources/icons/graph/1440/scale200_2.png deleted file mode 100644 index 098be00c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_20.png b/weather.openmeteo/resources/icons/graph/1440/scale200_20.png deleted file mode 100644 index 08659f788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_200.png b/weather.openmeteo/resources/icons/graph/1440/scale200_200.png deleted file mode 100644 index cdb6d9584..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_200.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_21.png b/weather.openmeteo/resources/icons/graph/1440/scale200_21.png deleted file mode 100644 index 00d2f590e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_22.png b/weather.openmeteo/resources/icons/graph/1440/scale200_22.png deleted file mode 100644 index e9a69c037..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_23.png b/weather.openmeteo/resources/icons/graph/1440/scale200_23.png deleted file mode 100644 index d066c18cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_24.png b/weather.openmeteo/resources/icons/graph/1440/scale200_24.png deleted file mode 100644 index adb1a16e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_25.png b/weather.openmeteo/resources/icons/graph/1440/scale200_25.png deleted file mode 100644 index adb1a16e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_26.png b/weather.openmeteo/resources/icons/graph/1440/scale200_26.png deleted file mode 100644 index 33a3602dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_27.png b/weather.openmeteo/resources/icons/graph/1440/scale200_27.png deleted file mode 100644 index 1fc660110..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_28.png b/weather.openmeteo/resources/icons/graph/1440/scale200_28.png deleted file mode 100644 index 1fc660110..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_29.png b/weather.openmeteo/resources/icons/graph/1440/scale200_29.png deleted file mode 100644 index 1fc660110..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_3.png b/weather.openmeteo/resources/icons/graph/1440/scale200_3.png deleted file mode 100644 index 0c8057bd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_30.png b/weather.openmeteo/resources/icons/graph/1440/scale200_30.png deleted file mode 100644 index 85dc0601f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_31.png b/weather.openmeteo/resources/icons/graph/1440/scale200_31.png deleted file mode 100644 index c292de136..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_32.png b/weather.openmeteo/resources/icons/graph/1440/scale200_32.png deleted file mode 100644 index c292de136..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_33.png b/weather.openmeteo/resources/icons/graph/1440/scale200_33.png deleted file mode 100644 index ca90a1a8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_34.png b/weather.openmeteo/resources/icons/graph/1440/scale200_34.png deleted file mode 100644 index ec688b245..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_35.png b/weather.openmeteo/resources/icons/graph/1440/scale200_35.png deleted file mode 100644 index 7593cc132..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_36.png b/weather.openmeteo/resources/icons/graph/1440/scale200_36.png deleted file mode 100644 index 7593cc132..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_37.png b/weather.openmeteo/resources/icons/graph/1440/scale200_37.png deleted file mode 100644 index d9d9df57d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_38.png b/weather.openmeteo/resources/icons/graph/1440/scale200_38.png deleted file mode 100644 index 674950e89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_39.png b/weather.openmeteo/resources/icons/graph/1440/scale200_39.png deleted file mode 100644 index bfacbc82b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_4.png b/weather.openmeteo/resources/icons/graph/1440/scale200_4.png deleted file mode 100644 index d52ca4cd0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_40.png b/weather.openmeteo/resources/icons/graph/1440/scale200_40.png deleted file mode 100644 index 814deef2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_41.png b/weather.openmeteo/resources/icons/graph/1440/scale200_41.png deleted file mode 100644 index 814deef2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_42.png b/weather.openmeteo/resources/icons/graph/1440/scale200_42.png deleted file mode 100644 index fce047a90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_43.png b/weather.openmeteo/resources/icons/graph/1440/scale200_43.png deleted file mode 100644 index bf01898c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_44.png b/weather.openmeteo/resources/icons/graph/1440/scale200_44.png deleted file mode 100644 index bf01898c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_45.png b/weather.openmeteo/resources/icons/graph/1440/scale200_45.png deleted file mode 100644 index bf01898c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_46.png b/weather.openmeteo/resources/icons/graph/1440/scale200_46.png deleted file mode 100644 index 4c23b5051..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_47.png b/weather.openmeteo/resources/icons/graph/1440/scale200_47.png deleted file mode 100644 index e57aa703d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_48.png b/weather.openmeteo/resources/icons/graph/1440/scale200_48.png deleted file mode 100644 index e57aa703d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_49.png b/weather.openmeteo/resources/icons/graph/1440/scale200_49.png deleted file mode 100644 index 7a8fd1ae2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_5.png b/weather.openmeteo/resources/icons/graph/1440/scale200_5.png deleted file mode 100644 index d52ca4cd0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_50.png b/weather.openmeteo/resources/icons/graph/1440/scale200_50.png deleted file mode 100644 index 58e1862b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_51.png b/weather.openmeteo/resources/icons/graph/1440/scale200_51.png deleted file mode 100644 index f569bb0da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_52.png b/weather.openmeteo/resources/icons/graph/1440/scale200_52.png deleted file mode 100644 index f569bb0da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_53.png b/weather.openmeteo/resources/icons/graph/1440/scale200_53.png deleted file mode 100644 index 3c7724343..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_54.png b/weather.openmeteo/resources/icons/graph/1440/scale200_54.png deleted file mode 100644 index f7d4618dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_55.png b/weather.openmeteo/resources/icons/graph/1440/scale200_55.png deleted file mode 100644 index fddbc21e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_56.png b/weather.openmeteo/resources/icons/graph/1440/scale200_56.png deleted file mode 100644 index 20791d551..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_57.png b/weather.openmeteo/resources/icons/graph/1440/scale200_57.png deleted file mode 100644 index 20791d551..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_58.png b/weather.openmeteo/resources/icons/graph/1440/scale200_58.png deleted file mode 100644 index b4d4c4f72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_59.png b/weather.openmeteo/resources/icons/graph/1440/scale200_59.png deleted file mode 100644 index b5e16bf90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_6.png b/weather.openmeteo/resources/icons/graph/1440/scale200_6.png deleted file mode 100644 index d5b1de2be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_60.png b/weather.openmeteo/resources/icons/graph/1440/scale200_60.png deleted file mode 100644 index b5e16bf90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_61.png b/weather.openmeteo/resources/icons/graph/1440/scale200_61.png deleted file mode 100644 index b5e16bf90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_62.png b/weather.openmeteo/resources/icons/graph/1440/scale200_62.png deleted file mode 100644 index e60d2e040..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_63.png b/weather.openmeteo/resources/icons/graph/1440/scale200_63.png deleted file mode 100644 index 901be240f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_64.png b/weather.openmeteo/resources/icons/graph/1440/scale200_64.png deleted file mode 100644 index 901be240f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_65.png b/weather.openmeteo/resources/icons/graph/1440/scale200_65.png deleted file mode 100644 index 440c3fe59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_66.png b/weather.openmeteo/resources/icons/graph/1440/scale200_66.png deleted file mode 100644 index 250fd87d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_67.png b/weather.openmeteo/resources/icons/graph/1440/scale200_67.png deleted file mode 100644 index bd6afa671..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_68.png b/weather.openmeteo/resources/icons/graph/1440/scale200_68.png deleted file mode 100644 index bd6afa671..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_69.png b/weather.openmeteo/resources/icons/graph/1440/scale200_69.png deleted file mode 100644 index e18c96405..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_7.png b/weather.openmeteo/resources/icons/graph/1440/scale200_7.png deleted file mode 100644 index 51108c8a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_70.png b/weather.openmeteo/resources/icons/graph/1440/scale200_70.png deleted file mode 100644 index 662568518..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_71.png b/weather.openmeteo/resources/icons/graph/1440/scale200_71.png deleted file mode 100644 index 9aa7967dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_72.png b/weather.openmeteo/resources/icons/graph/1440/scale200_72.png deleted file mode 100644 index ff679950f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_73.png b/weather.openmeteo/resources/icons/graph/1440/scale200_73.png deleted file mode 100644 index ff679950f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_74.png b/weather.openmeteo/resources/icons/graph/1440/scale200_74.png deleted file mode 100644 index c53456053..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_75.png b/weather.openmeteo/resources/icons/graph/1440/scale200_75.png deleted file mode 100644 index 8a7083788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_76.png b/weather.openmeteo/resources/icons/graph/1440/scale200_76.png deleted file mode 100644 index 8a7083788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_77.png b/weather.openmeteo/resources/icons/graph/1440/scale200_77.png deleted file mode 100644 index 8a7083788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_78.png b/weather.openmeteo/resources/icons/graph/1440/scale200_78.png deleted file mode 100644 index c0c22f115..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_79.png b/weather.openmeteo/resources/icons/graph/1440/scale200_79.png deleted file mode 100644 index 47eacb118..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_8.png b/weather.openmeteo/resources/icons/graph/1440/scale200_8.png deleted file mode 100644 index 9935a4e55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_80.png b/weather.openmeteo/resources/icons/graph/1440/scale200_80.png deleted file mode 100644 index 47eacb118..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_81.png b/weather.openmeteo/resources/icons/graph/1440/scale200_81.png deleted file mode 100644 index b73f00e79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_82.png b/weather.openmeteo/resources/icons/graph/1440/scale200_82.png deleted file mode 100644 index 88efbf549..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_83.png b/weather.openmeteo/resources/icons/graph/1440/scale200_83.png deleted file mode 100644 index 7c934a856..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_84.png b/weather.openmeteo/resources/icons/graph/1440/scale200_84.png deleted file mode 100644 index 7c934a856..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_85.png b/weather.openmeteo/resources/icons/graph/1440/scale200_85.png deleted file mode 100644 index 12324bbe1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_86.png b/weather.openmeteo/resources/icons/graph/1440/scale200_86.png deleted file mode 100644 index 119bbf980..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_87.png b/weather.openmeteo/resources/icons/graph/1440/scale200_87.png deleted file mode 100644 index 0edf58253..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_88.png b/weather.openmeteo/resources/icons/graph/1440/scale200_88.png deleted file mode 100644 index 2a9ec3a32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_89.png b/weather.openmeteo/resources/icons/graph/1440/scale200_89.png deleted file mode 100644 index 2a9ec3a32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_9.png b/weather.openmeteo/resources/icons/graph/1440/scale200_9.png deleted file mode 100644 index 9935a4e55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_90.png b/weather.openmeteo/resources/icons/graph/1440/scale200_90.png deleted file mode 100644 index 0c0a5ab8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_91.png b/weather.openmeteo/resources/icons/graph/1440/scale200_91.png deleted file mode 100644 index 0da86ee0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_92.png b/weather.openmeteo/resources/icons/graph/1440/scale200_92.png deleted file mode 100644 index 0da86ee0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_93.png b/weather.openmeteo/resources/icons/graph/1440/scale200_93.png deleted file mode 100644 index 0da86ee0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_94.png b/weather.openmeteo/resources/icons/graph/1440/scale200_94.png deleted file mode 100644 index 35457fe5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_95.png b/weather.openmeteo/resources/icons/graph/1440/scale200_95.png deleted file mode 100644 index c2dc2c823..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_96.png b/weather.openmeteo/resources/icons/graph/1440/scale200_96.png deleted file mode 100644 index c2dc2c823..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_97.png b/weather.openmeteo/resources/icons/graph/1440/scale200_97.png deleted file mode 100644 index bfc82d43e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_98.png b/weather.openmeteo/resources/icons/graph/1440/scale200_98.png deleted file mode 100644 index 2886a6229..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale200_99.png b/weather.openmeteo/resources/icons/graph/1440/scale200_99.png deleted file mode 100644 index 054d72c4f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale200_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_0.png b/weather.openmeteo/resources/icons/graph/1440/scale20_0.png deleted file mode 100644 index 3eb54b966..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_1.png b/weather.openmeteo/resources/icons/graph/1440/scale20_1.png deleted file mode 100644 index 886414077..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_10.png b/weather.openmeteo/resources/icons/graph/1440/scale20_10.png deleted file mode 100644 index c8ad21aca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_11.png b/weather.openmeteo/resources/icons/graph/1440/scale20_11.png deleted file mode 100644 index 3e232579f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_12.png b/weather.openmeteo/resources/icons/graph/1440/scale20_12.png deleted file mode 100644 index 324b6ac8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_13.png b/weather.openmeteo/resources/icons/graph/1440/scale20_13.png deleted file mode 100644 index e6ce9c90f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_14.png b/weather.openmeteo/resources/icons/graph/1440/scale20_14.png deleted file mode 100644 index b86764414..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_15.png b/weather.openmeteo/resources/icons/graph/1440/scale20_15.png deleted file mode 100644 index ca26fd52c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_16.png b/weather.openmeteo/resources/icons/graph/1440/scale20_16.png deleted file mode 100644 index acb40d689..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_17.png b/weather.openmeteo/resources/icons/graph/1440/scale20_17.png deleted file mode 100644 index 831b4e1e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_18.png b/weather.openmeteo/resources/icons/graph/1440/scale20_18.png deleted file mode 100644 index f187db4d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_19.png b/weather.openmeteo/resources/icons/graph/1440/scale20_19.png deleted file mode 100644 index b8bd5fa76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_2.png b/weather.openmeteo/resources/icons/graph/1440/scale20_2.png deleted file mode 100644 index 50bad6174..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_20.png b/weather.openmeteo/resources/icons/graph/1440/scale20_20.png deleted file mode 100644 index 66eba38f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_3.png b/weather.openmeteo/resources/icons/graph/1440/scale20_3.png deleted file mode 100644 index c8898370c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_4.png b/weather.openmeteo/resources/icons/graph/1440/scale20_4.png deleted file mode 100644 index a2aaf66bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_5.png b/weather.openmeteo/resources/icons/graph/1440/scale20_5.png deleted file mode 100644 index edd63b306..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_6.png b/weather.openmeteo/resources/icons/graph/1440/scale20_6.png deleted file mode 100644 index d911eeb5c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_7.png b/weather.openmeteo/resources/icons/graph/1440/scale20_7.png deleted file mode 100644 index cd62d16be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_8.png b/weather.openmeteo/resources/icons/graph/1440/scale20_8.png deleted file mode 100644 index b1de72db6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale20_9.png b/weather.openmeteo/resources/icons/graph/1440/scale20_9.png deleted file mode 100644 index b828792ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_0.png b/weather.openmeteo/resources/icons/graph/1440/scale30_0.png deleted file mode 100644 index a125fc606..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_1.png b/weather.openmeteo/resources/icons/graph/1440/scale30_1.png deleted file mode 100644 index 3e36740a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_10.png b/weather.openmeteo/resources/icons/graph/1440/scale30_10.png deleted file mode 100644 index 34aeed650..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_11.png b/weather.openmeteo/resources/icons/graph/1440/scale30_11.png deleted file mode 100644 index 04c6a24c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_12.png b/weather.openmeteo/resources/icons/graph/1440/scale30_12.png deleted file mode 100644 index 22fe4fc73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_13.png b/weather.openmeteo/resources/icons/graph/1440/scale30_13.png deleted file mode 100644 index 2be287508..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_14.png b/weather.openmeteo/resources/icons/graph/1440/scale30_14.png deleted file mode 100644 index 0698fc8ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_15.png b/weather.openmeteo/resources/icons/graph/1440/scale30_15.png deleted file mode 100644 index 451d09008..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_16.png b/weather.openmeteo/resources/icons/graph/1440/scale30_16.png deleted file mode 100644 index fc9a70703..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_17.png b/weather.openmeteo/resources/icons/graph/1440/scale30_17.png deleted file mode 100644 index 1b7412354..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_18.png b/weather.openmeteo/resources/icons/graph/1440/scale30_18.png deleted file mode 100644 index f64d5e150..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_19.png b/weather.openmeteo/resources/icons/graph/1440/scale30_19.png deleted file mode 100644 index e9afd8cd7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_2.png b/weather.openmeteo/resources/icons/graph/1440/scale30_2.png deleted file mode 100644 index 6fd63626e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_20.png b/weather.openmeteo/resources/icons/graph/1440/scale30_20.png deleted file mode 100644 index 6aace6921..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_21.png b/weather.openmeteo/resources/icons/graph/1440/scale30_21.png deleted file mode 100644 index b5746f28e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_22.png b/weather.openmeteo/resources/icons/graph/1440/scale30_22.png deleted file mode 100644 index 935560c9f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_23.png b/weather.openmeteo/resources/icons/graph/1440/scale30_23.png deleted file mode 100644 index e2dcb9335..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_24.png b/weather.openmeteo/resources/icons/graph/1440/scale30_24.png deleted file mode 100644 index dd2bb0050..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_25.png b/weather.openmeteo/resources/icons/graph/1440/scale30_25.png deleted file mode 100644 index d214bdf52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_26.png b/weather.openmeteo/resources/icons/graph/1440/scale30_26.png deleted file mode 100644 index 8334d410e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_27.png b/weather.openmeteo/resources/icons/graph/1440/scale30_27.png deleted file mode 100644 index 8f2a4bd77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_28.png b/weather.openmeteo/resources/icons/graph/1440/scale30_28.png deleted file mode 100644 index dea650b8b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_29.png b/weather.openmeteo/resources/icons/graph/1440/scale30_29.png deleted file mode 100644 index f80aad3ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_3.png b/weather.openmeteo/resources/icons/graph/1440/scale30_3.png deleted file mode 100644 index bf42e8dfa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_30.png b/weather.openmeteo/resources/icons/graph/1440/scale30_30.png deleted file mode 100644 index d8569a4e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_4.png b/weather.openmeteo/resources/icons/graph/1440/scale30_4.png deleted file mode 100644 index 75a6f62c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_5.png b/weather.openmeteo/resources/icons/graph/1440/scale30_5.png deleted file mode 100644 index 987cdead7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_6.png b/weather.openmeteo/resources/icons/graph/1440/scale30_6.png deleted file mode 100644 index 4ca2315e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_7.png b/weather.openmeteo/resources/icons/graph/1440/scale30_7.png deleted file mode 100644 index 4144c6983..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_8.png b/weather.openmeteo/resources/icons/graph/1440/scale30_8.png deleted file mode 100644 index 894283cbf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale30_9.png b/weather.openmeteo/resources/icons/graph/1440/scale30_9.png deleted file mode 100644 index de72fdf40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_0.png b/weather.openmeteo/resources/icons/graph/1440/scale40_0.png deleted file mode 100644 index aefa848fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_1.png b/weather.openmeteo/resources/icons/graph/1440/scale40_1.png deleted file mode 100644 index c7b743fee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_10.png b/weather.openmeteo/resources/icons/graph/1440/scale40_10.png deleted file mode 100644 index 05d4773a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_11.png b/weather.openmeteo/resources/icons/graph/1440/scale40_11.png deleted file mode 100644 index c62ebe43e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_12.png b/weather.openmeteo/resources/icons/graph/1440/scale40_12.png deleted file mode 100644 index c490d65b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_13.png b/weather.openmeteo/resources/icons/graph/1440/scale40_13.png deleted file mode 100644 index 369add5fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_14.png b/weather.openmeteo/resources/icons/graph/1440/scale40_14.png deleted file mode 100644 index 15129dbe5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_15.png b/weather.openmeteo/resources/icons/graph/1440/scale40_15.png deleted file mode 100644 index d0c71efe9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_16.png b/weather.openmeteo/resources/icons/graph/1440/scale40_16.png deleted file mode 100644 index bd040986e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_17.png b/weather.openmeteo/resources/icons/graph/1440/scale40_17.png deleted file mode 100644 index cec74f78a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_18.png b/weather.openmeteo/resources/icons/graph/1440/scale40_18.png deleted file mode 100644 index 9292cccb8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_19.png b/weather.openmeteo/resources/icons/graph/1440/scale40_19.png deleted file mode 100644 index 1b9ade944..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_2.png b/weather.openmeteo/resources/icons/graph/1440/scale40_2.png deleted file mode 100644 index 753e227b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_20.png b/weather.openmeteo/resources/icons/graph/1440/scale40_20.png deleted file mode 100644 index 0d0b243ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_21.png b/weather.openmeteo/resources/icons/graph/1440/scale40_21.png deleted file mode 100644 index 344e48206..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_22.png b/weather.openmeteo/resources/icons/graph/1440/scale40_22.png deleted file mode 100644 index 1f0a359fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_23.png b/weather.openmeteo/resources/icons/graph/1440/scale40_23.png deleted file mode 100644 index 13034f754..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_24.png b/weather.openmeteo/resources/icons/graph/1440/scale40_24.png deleted file mode 100644 index 57f316172..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_25.png b/weather.openmeteo/resources/icons/graph/1440/scale40_25.png deleted file mode 100644 index 8d1e6bf16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_26.png b/weather.openmeteo/resources/icons/graph/1440/scale40_26.png deleted file mode 100644 index 41529b0ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_27.png b/weather.openmeteo/resources/icons/graph/1440/scale40_27.png deleted file mode 100644 index af8051be6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_28.png b/weather.openmeteo/resources/icons/graph/1440/scale40_28.png deleted file mode 100644 index 708342527..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_29.png b/weather.openmeteo/resources/icons/graph/1440/scale40_29.png deleted file mode 100644 index cf28ae873..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_3.png b/weather.openmeteo/resources/icons/graph/1440/scale40_3.png deleted file mode 100644 index 96ec412c2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_30.png b/weather.openmeteo/resources/icons/graph/1440/scale40_30.png deleted file mode 100644 index 186c115ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_31.png b/weather.openmeteo/resources/icons/graph/1440/scale40_31.png deleted file mode 100644 index 273782e71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_32.png b/weather.openmeteo/resources/icons/graph/1440/scale40_32.png deleted file mode 100644 index d4f6e7b24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_33.png b/weather.openmeteo/resources/icons/graph/1440/scale40_33.png deleted file mode 100644 index e0af2c493..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_34.png b/weather.openmeteo/resources/icons/graph/1440/scale40_34.png deleted file mode 100644 index 7f2739bb3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_35.png b/weather.openmeteo/resources/icons/graph/1440/scale40_35.png deleted file mode 100644 index b5419c95b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_36.png b/weather.openmeteo/resources/icons/graph/1440/scale40_36.png deleted file mode 100644 index 11d4edf1c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_37.png b/weather.openmeteo/resources/icons/graph/1440/scale40_37.png deleted file mode 100644 index 84371860c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_38.png b/weather.openmeteo/resources/icons/graph/1440/scale40_38.png deleted file mode 100644 index 999084ec9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_39.png b/weather.openmeteo/resources/icons/graph/1440/scale40_39.png deleted file mode 100644 index c9af37d31..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_4.png b/weather.openmeteo/resources/icons/graph/1440/scale40_4.png deleted file mode 100644 index 4f72cb518..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_40.png b/weather.openmeteo/resources/icons/graph/1440/scale40_40.png deleted file mode 100644 index 156f12b32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_5.png b/weather.openmeteo/resources/icons/graph/1440/scale40_5.png deleted file mode 100644 index 7003d86a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_6.png b/weather.openmeteo/resources/icons/graph/1440/scale40_6.png deleted file mode 100644 index c7e40ac2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_7.png b/weather.openmeteo/resources/icons/graph/1440/scale40_7.png deleted file mode 100644 index b60461720..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_8.png b/weather.openmeteo/resources/icons/graph/1440/scale40_8.png deleted file mode 100644 index 45f71d28a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale40_9.png b/weather.openmeteo/resources/icons/graph/1440/scale40_9.png deleted file mode 100644 index 514dcc5a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_0.png b/weather.openmeteo/resources/icons/graph/1440/scale50_0.png deleted file mode 100644 index 25dc03119..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_1.png b/weather.openmeteo/resources/icons/graph/1440/scale50_1.png deleted file mode 100644 index 2beeeac04..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_10.png b/weather.openmeteo/resources/icons/graph/1440/scale50_10.png deleted file mode 100644 index d7c2f398a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_11.png b/weather.openmeteo/resources/icons/graph/1440/scale50_11.png deleted file mode 100644 index 0a7b27742..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_12.png b/weather.openmeteo/resources/icons/graph/1440/scale50_12.png deleted file mode 100644 index f3d57cc47..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_13.png b/weather.openmeteo/resources/icons/graph/1440/scale50_13.png deleted file mode 100644 index 6cfc60139..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_14.png b/weather.openmeteo/resources/icons/graph/1440/scale50_14.png deleted file mode 100644 index dbb0f2912..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_15.png b/weather.openmeteo/resources/icons/graph/1440/scale50_15.png deleted file mode 100644 index 56df1bf5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_16.png b/weather.openmeteo/resources/icons/graph/1440/scale50_16.png deleted file mode 100644 index 8bd9b7d4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_17.png b/weather.openmeteo/resources/icons/graph/1440/scale50_17.png deleted file mode 100644 index a7eee9d13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_18.png b/weather.openmeteo/resources/icons/graph/1440/scale50_18.png deleted file mode 100644 index 08d2040e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_19.png b/weather.openmeteo/resources/icons/graph/1440/scale50_19.png deleted file mode 100644 index 284ff4078..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_2.png b/weather.openmeteo/resources/icons/graph/1440/scale50_2.png deleted file mode 100644 index 3c687794c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_20.png b/weather.openmeteo/resources/icons/graph/1440/scale50_20.png deleted file mode 100644 index aee114b26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_21.png b/weather.openmeteo/resources/icons/graph/1440/scale50_21.png deleted file mode 100644 index 998cb18b7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_22.png b/weather.openmeteo/resources/icons/graph/1440/scale50_22.png deleted file mode 100644 index f7ce33f55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_23.png b/weather.openmeteo/resources/icons/graph/1440/scale50_23.png deleted file mode 100644 index ae5162833..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_24.png b/weather.openmeteo/resources/icons/graph/1440/scale50_24.png deleted file mode 100644 index 3afa2eda6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_25.png b/weather.openmeteo/resources/icons/graph/1440/scale50_25.png deleted file mode 100644 index 5c6903b57..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_26.png b/weather.openmeteo/resources/icons/graph/1440/scale50_26.png deleted file mode 100644 index 896597d07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_27.png b/weather.openmeteo/resources/icons/graph/1440/scale50_27.png deleted file mode 100644 index f5837d183..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_28.png b/weather.openmeteo/resources/icons/graph/1440/scale50_28.png deleted file mode 100644 index 876e8f26b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_29.png b/weather.openmeteo/resources/icons/graph/1440/scale50_29.png deleted file mode 100644 index 882c848d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_3.png b/weather.openmeteo/resources/icons/graph/1440/scale50_3.png deleted file mode 100644 index 142c1d941..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_30.png b/weather.openmeteo/resources/icons/graph/1440/scale50_30.png deleted file mode 100644 index 6ade2ed44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_31.png b/weather.openmeteo/resources/icons/graph/1440/scale50_31.png deleted file mode 100644 index 731741df7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_32.png b/weather.openmeteo/resources/icons/graph/1440/scale50_32.png deleted file mode 100644 index f7f8aba29..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_33.png b/weather.openmeteo/resources/icons/graph/1440/scale50_33.png deleted file mode 100644 index 8863f70da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_34.png b/weather.openmeteo/resources/icons/graph/1440/scale50_34.png deleted file mode 100644 index f54b066bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_35.png b/weather.openmeteo/resources/icons/graph/1440/scale50_35.png deleted file mode 100644 index d4207fe93..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_36.png b/weather.openmeteo/resources/icons/graph/1440/scale50_36.png deleted file mode 100644 index 3896fb411..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_37.png b/weather.openmeteo/resources/icons/graph/1440/scale50_37.png deleted file mode 100644 index 848c5686f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_38.png b/weather.openmeteo/resources/icons/graph/1440/scale50_38.png deleted file mode 100644 index 211434a33..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_39.png b/weather.openmeteo/resources/icons/graph/1440/scale50_39.png deleted file mode 100644 index 717ae90ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_4.png b/weather.openmeteo/resources/icons/graph/1440/scale50_4.png deleted file mode 100644 index 86b1555e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_40.png b/weather.openmeteo/resources/icons/graph/1440/scale50_40.png deleted file mode 100644 index 367d7cc82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_41.png b/weather.openmeteo/resources/icons/graph/1440/scale50_41.png deleted file mode 100644 index 600951f15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_42.png b/weather.openmeteo/resources/icons/graph/1440/scale50_42.png deleted file mode 100644 index 7d373e245..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_43.png b/weather.openmeteo/resources/icons/graph/1440/scale50_43.png deleted file mode 100644 index 574eaf4f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_44.png b/weather.openmeteo/resources/icons/graph/1440/scale50_44.png deleted file mode 100644 index 8919706ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_45.png b/weather.openmeteo/resources/icons/graph/1440/scale50_45.png deleted file mode 100644 index e7cdadf63..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_46.png b/weather.openmeteo/resources/icons/graph/1440/scale50_46.png deleted file mode 100644 index fa26beed7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_47.png b/weather.openmeteo/resources/icons/graph/1440/scale50_47.png deleted file mode 100644 index 24d187ea1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_48.png b/weather.openmeteo/resources/icons/graph/1440/scale50_48.png deleted file mode 100644 index 46ce2b7ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_49.png b/weather.openmeteo/resources/icons/graph/1440/scale50_49.png deleted file mode 100644 index af65063b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_5.png b/weather.openmeteo/resources/icons/graph/1440/scale50_5.png deleted file mode 100644 index 7967fc35f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_50.png b/weather.openmeteo/resources/icons/graph/1440/scale50_50.png deleted file mode 100644 index dbe3460ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_6.png b/weather.openmeteo/resources/icons/graph/1440/scale50_6.png deleted file mode 100644 index f377c1dd2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_7.png b/weather.openmeteo/resources/icons/graph/1440/scale50_7.png deleted file mode 100644 index 6d630fc61..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_8.png b/weather.openmeteo/resources/icons/graph/1440/scale50_8.png deleted file mode 100644 index 81a2e12f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale50_9.png b/weather.openmeteo/resources/icons/graph/1440/scale50_9.png deleted file mode 100644 index e9f029ada..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_0.png b/weather.openmeteo/resources/icons/graph/1440/scale60_0.png deleted file mode 100644 index 531d07617..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_1.png b/weather.openmeteo/resources/icons/graph/1440/scale60_1.png deleted file mode 100644 index a8092bdbc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_10.png b/weather.openmeteo/resources/icons/graph/1440/scale60_10.png deleted file mode 100644 index 3403d6299..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_11.png b/weather.openmeteo/resources/icons/graph/1440/scale60_11.png deleted file mode 100644 index 52295a23e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_12.png b/weather.openmeteo/resources/icons/graph/1440/scale60_12.png deleted file mode 100644 index fe3bfdc8b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_13.png b/weather.openmeteo/resources/icons/graph/1440/scale60_13.png deleted file mode 100644 index c2ae390c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_14.png b/weather.openmeteo/resources/icons/graph/1440/scale60_14.png deleted file mode 100644 index d1a281e15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_15.png b/weather.openmeteo/resources/icons/graph/1440/scale60_15.png deleted file mode 100644 index 956a8f11c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_16.png b/weather.openmeteo/resources/icons/graph/1440/scale60_16.png deleted file mode 100644 index f617ff50e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_17.png b/weather.openmeteo/resources/icons/graph/1440/scale60_17.png deleted file mode 100644 index f856a35bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_18.png b/weather.openmeteo/resources/icons/graph/1440/scale60_18.png deleted file mode 100644 index 0f97d46b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_19.png b/weather.openmeteo/resources/icons/graph/1440/scale60_19.png deleted file mode 100644 index 06362c9b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_2.png b/weather.openmeteo/resources/icons/graph/1440/scale60_2.png deleted file mode 100644 index 81ab4fccc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_20.png b/weather.openmeteo/resources/icons/graph/1440/scale60_20.png deleted file mode 100644 index b6490590b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_21.png b/weather.openmeteo/resources/icons/graph/1440/scale60_21.png deleted file mode 100644 index 3c91670fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_22.png b/weather.openmeteo/resources/icons/graph/1440/scale60_22.png deleted file mode 100644 index 17e436804..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_23.png b/weather.openmeteo/resources/icons/graph/1440/scale60_23.png deleted file mode 100644 index 7fa318d76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_24.png b/weather.openmeteo/resources/icons/graph/1440/scale60_24.png deleted file mode 100644 index 670e325b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_25.png b/weather.openmeteo/resources/icons/graph/1440/scale60_25.png deleted file mode 100644 index e0f25363e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_26.png b/weather.openmeteo/resources/icons/graph/1440/scale60_26.png deleted file mode 100644 index 914b59ad9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_27.png b/weather.openmeteo/resources/icons/graph/1440/scale60_27.png deleted file mode 100644 index b4439d70a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_28.png b/weather.openmeteo/resources/icons/graph/1440/scale60_28.png deleted file mode 100644 index 75443347e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_29.png b/weather.openmeteo/resources/icons/graph/1440/scale60_29.png deleted file mode 100644 index f1a9cfd30..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_3.png b/weather.openmeteo/resources/icons/graph/1440/scale60_3.png deleted file mode 100644 index 52b391e7f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_30.png b/weather.openmeteo/resources/icons/graph/1440/scale60_30.png deleted file mode 100644 index 4454c03e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_31.png b/weather.openmeteo/resources/icons/graph/1440/scale60_31.png deleted file mode 100644 index 691184aff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_32.png b/weather.openmeteo/resources/icons/graph/1440/scale60_32.png deleted file mode 100644 index 3590c2e76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_33.png b/weather.openmeteo/resources/icons/graph/1440/scale60_33.png deleted file mode 100644 index 92c69c987..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_34.png b/weather.openmeteo/resources/icons/graph/1440/scale60_34.png deleted file mode 100644 index dd0ec5305..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_35.png b/weather.openmeteo/resources/icons/graph/1440/scale60_35.png deleted file mode 100644 index ce3ca55f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_36.png b/weather.openmeteo/resources/icons/graph/1440/scale60_36.png deleted file mode 100644 index 854c7d10d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_37.png b/weather.openmeteo/resources/icons/graph/1440/scale60_37.png deleted file mode 100644 index 645b119a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_38.png b/weather.openmeteo/resources/icons/graph/1440/scale60_38.png deleted file mode 100644 index 8d33f0a5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_39.png b/weather.openmeteo/resources/icons/graph/1440/scale60_39.png deleted file mode 100644 index 3080ee0a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_4.png b/weather.openmeteo/resources/icons/graph/1440/scale60_4.png deleted file mode 100644 index 773e5f0be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_40.png b/weather.openmeteo/resources/icons/graph/1440/scale60_40.png deleted file mode 100644 index 88d541c97..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_41.png b/weather.openmeteo/resources/icons/graph/1440/scale60_41.png deleted file mode 100644 index 6be53ff96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_42.png b/weather.openmeteo/resources/icons/graph/1440/scale60_42.png deleted file mode 100644 index a6329e410..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_43.png b/weather.openmeteo/resources/icons/graph/1440/scale60_43.png deleted file mode 100644 index 250905365..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_44.png b/weather.openmeteo/resources/icons/graph/1440/scale60_44.png deleted file mode 100644 index 6f416a0cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_45.png b/weather.openmeteo/resources/icons/graph/1440/scale60_45.png deleted file mode 100644 index 335486544..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_46.png b/weather.openmeteo/resources/icons/graph/1440/scale60_46.png deleted file mode 100644 index 1a9f848eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_47.png b/weather.openmeteo/resources/icons/graph/1440/scale60_47.png deleted file mode 100644 index eafccb8d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_48.png b/weather.openmeteo/resources/icons/graph/1440/scale60_48.png deleted file mode 100644 index 62538102c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_49.png b/weather.openmeteo/resources/icons/graph/1440/scale60_49.png deleted file mode 100644 index e1f9d96b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_5.png b/weather.openmeteo/resources/icons/graph/1440/scale60_5.png deleted file mode 100644 index 4bd419f05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_50.png b/weather.openmeteo/resources/icons/graph/1440/scale60_50.png deleted file mode 100644 index d9ccab2b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_51.png b/weather.openmeteo/resources/icons/graph/1440/scale60_51.png deleted file mode 100644 index f81acd443..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_52.png b/weather.openmeteo/resources/icons/graph/1440/scale60_52.png deleted file mode 100644 index 23b1ce58b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_53.png b/weather.openmeteo/resources/icons/graph/1440/scale60_53.png deleted file mode 100644 index 270d45f86..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_54.png b/weather.openmeteo/resources/icons/graph/1440/scale60_54.png deleted file mode 100644 index 5a7d749ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_55.png b/weather.openmeteo/resources/icons/graph/1440/scale60_55.png deleted file mode 100644 index 999774ba0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_56.png b/weather.openmeteo/resources/icons/graph/1440/scale60_56.png deleted file mode 100644 index a78e3398a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_57.png b/weather.openmeteo/resources/icons/graph/1440/scale60_57.png deleted file mode 100644 index bdab1c905..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_58.png b/weather.openmeteo/resources/icons/graph/1440/scale60_58.png deleted file mode 100644 index 13c598faa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_59.png b/weather.openmeteo/resources/icons/graph/1440/scale60_59.png deleted file mode 100644 index 4823ff7e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_6.png b/weather.openmeteo/resources/icons/graph/1440/scale60_6.png deleted file mode 100644 index ab0580d03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_60.png b/weather.openmeteo/resources/icons/graph/1440/scale60_60.png deleted file mode 100644 index 11b30bdf3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_7.png b/weather.openmeteo/resources/icons/graph/1440/scale60_7.png deleted file mode 100644 index 0b1fc68d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_8.png b/weather.openmeteo/resources/icons/graph/1440/scale60_8.png deleted file mode 100644 index fa887f95f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale60_9.png b/weather.openmeteo/resources/icons/graph/1440/scale60_9.png deleted file mode 100644 index 3e654be40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale60_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_0.png b/weather.openmeteo/resources/icons/graph/1440/scale70_0.png deleted file mode 100644 index dbabccecf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_1.png b/weather.openmeteo/resources/icons/graph/1440/scale70_1.png deleted file mode 100644 index 6f383fe88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_10.png b/weather.openmeteo/resources/icons/graph/1440/scale70_10.png deleted file mode 100644 index 3b62576ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_11.png b/weather.openmeteo/resources/icons/graph/1440/scale70_11.png deleted file mode 100644 index 18d72267c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_12.png b/weather.openmeteo/resources/icons/graph/1440/scale70_12.png deleted file mode 100644 index 1cd61cff0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_13.png b/weather.openmeteo/resources/icons/graph/1440/scale70_13.png deleted file mode 100644 index 7e039a35c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_14.png b/weather.openmeteo/resources/icons/graph/1440/scale70_14.png deleted file mode 100644 index 922d44e62..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_15.png b/weather.openmeteo/resources/icons/graph/1440/scale70_15.png deleted file mode 100644 index ffda7f53d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_16.png b/weather.openmeteo/resources/icons/graph/1440/scale70_16.png deleted file mode 100644 index ace0aaaed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_17.png b/weather.openmeteo/resources/icons/graph/1440/scale70_17.png deleted file mode 100644 index 959c59e44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_18.png b/weather.openmeteo/resources/icons/graph/1440/scale70_18.png deleted file mode 100644 index 38d9b79d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_19.png b/weather.openmeteo/resources/icons/graph/1440/scale70_19.png deleted file mode 100644 index 611fffceb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_2.png b/weather.openmeteo/resources/icons/graph/1440/scale70_2.png deleted file mode 100644 index 289c55219..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_20.png b/weather.openmeteo/resources/icons/graph/1440/scale70_20.png deleted file mode 100644 index ca4fc9f0b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_21.png b/weather.openmeteo/resources/icons/graph/1440/scale70_21.png deleted file mode 100644 index b6c090350..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_22.png b/weather.openmeteo/resources/icons/graph/1440/scale70_22.png deleted file mode 100644 index b858f5d22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_23.png b/weather.openmeteo/resources/icons/graph/1440/scale70_23.png deleted file mode 100644 index e08eb5ed0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_24.png b/weather.openmeteo/resources/icons/graph/1440/scale70_24.png deleted file mode 100644 index 1c57d12d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_25.png b/weather.openmeteo/resources/icons/graph/1440/scale70_25.png deleted file mode 100644 index a2a022c25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_26.png b/weather.openmeteo/resources/icons/graph/1440/scale70_26.png deleted file mode 100644 index acb7279e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_27.png b/weather.openmeteo/resources/icons/graph/1440/scale70_27.png deleted file mode 100644 index 2d92e6b8e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_28.png b/weather.openmeteo/resources/icons/graph/1440/scale70_28.png deleted file mode 100644 index 8f4574528..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_29.png b/weather.openmeteo/resources/icons/graph/1440/scale70_29.png deleted file mode 100644 index 18a8c41b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_3.png b/weather.openmeteo/resources/icons/graph/1440/scale70_3.png deleted file mode 100644 index e0cdb9bd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_30.png b/weather.openmeteo/resources/icons/graph/1440/scale70_30.png deleted file mode 100644 index 03a395269..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_31.png b/weather.openmeteo/resources/icons/graph/1440/scale70_31.png deleted file mode 100644 index 5f2dfe9d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_32.png b/weather.openmeteo/resources/icons/graph/1440/scale70_32.png deleted file mode 100644 index ff91cba26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_33.png b/weather.openmeteo/resources/icons/graph/1440/scale70_33.png deleted file mode 100644 index 0b8943307..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_34.png b/weather.openmeteo/resources/icons/graph/1440/scale70_34.png deleted file mode 100644 index 7988263db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_35.png b/weather.openmeteo/resources/icons/graph/1440/scale70_35.png deleted file mode 100644 index 4b33789d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_36.png b/weather.openmeteo/resources/icons/graph/1440/scale70_36.png deleted file mode 100644 index da6b4fb25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_37.png b/weather.openmeteo/resources/icons/graph/1440/scale70_37.png deleted file mode 100644 index 6ee3cc8e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_38.png b/weather.openmeteo/resources/icons/graph/1440/scale70_38.png deleted file mode 100644 index 7b53e4a13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_39.png b/weather.openmeteo/resources/icons/graph/1440/scale70_39.png deleted file mode 100644 index 686930f9d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_4.png b/weather.openmeteo/resources/icons/graph/1440/scale70_4.png deleted file mode 100644 index fe1e19fc8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_40.png b/weather.openmeteo/resources/icons/graph/1440/scale70_40.png deleted file mode 100644 index c3e8bccf7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_41.png b/weather.openmeteo/resources/icons/graph/1440/scale70_41.png deleted file mode 100644 index 837e70050..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_42.png b/weather.openmeteo/resources/icons/graph/1440/scale70_42.png deleted file mode 100644 index 43aeb7faf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_43.png b/weather.openmeteo/resources/icons/graph/1440/scale70_43.png deleted file mode 100644 index 5f3519aa7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_44.png b/weather.openmeteo/resources/icons/graph/1440/scale70_44.png deleted file mode 100644 index 4ec4323bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_45.png b/weather.openmeteo/resources/icons/graph/1440/scale70_45.png deleted file mode 100644 index 24b3c7deb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_46.png b/weather.openmeteo/resources/icons/graph/1440/scale70_46.png deleted file mode 100644 index f75100eaa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_47.png b/weather.openmeteo/resources/icons/graph/1440/scale70_47.png deleted file mode 100644 index 04178a476..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_48.png b/weather.openmeteo/resources/icons/graph/1440/scale70_48.png deleted file mode 100644 index 10478e156..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_49.png b/weather.openmeteo/resources/icons/graph/1440/scale70_49.png deleted file mode 100644 index 92347d523..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_5.png b/weather.openmeteo/resources/icons/graph/1440/scale70_5.png deleted file mode 100644 index 5be76f7af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_50.png b/weather.openmeteo/resources/icons/graph/1440/scale70_50.png deleted file mode 100644 index aba61f027..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_51.png b/weather.openmeteo/resources/icons/graph/1440/scale70_51.png deleted file mode 100644 index b781654b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_52.png b/weather.openmeteo/resources/icons/graph/1440/scale70_52.png deleted file mode 100644 index f3dcf1453..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_53.png b/weather.openmeteo/resources/icons/graph/1440/scale70_53.png deleted file mode 100644 index f9d1451d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_54.png b/weather.openmeteo/resources/icons/graph/1440/scale70_54.png deleted file mode 100644 index c96e3cbb9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_55.png b/weather.openmeteo/resources/icons/graph/1440/scale70_55.png deleted file mode 100644 index 1c20fc5fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_56.png b/weather.openmeteo/resources/icons/graph/1440/scale70_56.png deleted file mode 100644 index 0f7ab4484..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_57.png b/weather.openmeteo/resources/icons/graph/1440/scale70_57.png deleted file mode 100644 index c2c74a4a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_58.png b/weather.openmeteo/resources/icons/graph/1440/scale70_58.png deleted file mode 100644 index e8b0c40f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_59.png b/weather.openmeteo/resources/icons/graph/1440/scale70_59.png deleted file mode 100644 index 9e1de388e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_6.png b/weather.openmeteo/resources/icons/graph/1440/scale70_6.png deleted file mode 100644 index 9b585b56b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_60.png b/weather.openmeteo/resources/icons/graph/1440/scale70_60.png deleted file mode 100644 index 617ae433a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_61.png b/weather.openmeteo/resources/icons/graph/1440/scale70_61.png deleted file mode 100644 index 196ab02f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_62.png b/weather.openmeteo/resources/icons/graph/1440/scale70_62.png deleted file mode 100644 index 3e6cacdb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_63.png b/weather.openmeteo/resources/icons/graph/1440/scale70_63.png deleted file mode 100644 index 493514ec5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_64.png b/weather.openmeteo/resources/icons/graph/1440/scale70_64.png deleted file mode 100644 index f3cb77ad3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_65.png b/weather.openmeteo/resources/icons/graph/1440/scale70_65.png deleted file mode 100644 index 93a8ddb09..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_66.png b/weather.openmeteo/resources/icons/graph/1440/scale70_66.png deleted file mode 100644 index 2914b40d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_67.png b/weather.openmeteo/resources/icons/graph/1440/scale70_67.png deleted file mode 100644 index 081c7e1e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_68.png b/weather.openmeteo/resources/icons/graph/1440/scale70_68.png deleted file mode 100644 index d91eb30b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_69.png b/weather.openmeteo/resources/icons/graph/1440/scale70_69.png deleted file mode 100644 index 7e5413dae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_7.png b/weather.openmeteo/resources/icons/graph/1440/scale70_7.png deleted file mode 100644 index e8f0bd350..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_70.png b/weather.openmeteo/resources/icons/graph/1440/scale70_70.png deleted file mode 100644 index 8e5701b02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_8.png b/weather.openmeteo/resources/icons/graph/1440/scale70_8.png deleted file mode 100644 index 867f50dfb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale70_9.png b/weather.openmeteo/resources/icons/graph/1440/scale70_9.png deleted file mode 100644 index 34852d3ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale70_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_0.png b/weather.openmeteo/resources/icons/graph/1440/scale80_0.png deleted file mode 100644 index 75b0fd551..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_1.png b/weather.openmeteo/resources/icons/graph/1440/scale80_1.png deleted file mode 100644 index 1aeed5ad9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_10.png b/weather.openmeteo/resources/icons/graph/1440/scale80_10.png deleted file mode 100644 index d3141fa24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_11.png b/weather.openmeteo/resources/icons/graph/1440/scale80_11.png deleted file mode 100644 index c4e1fa8db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_12.png b/weather.openmeteo/resources/icons/graph/1440/scale80_12.png deleted file mode 100644 index 5c270652a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_13.png b/weather.openmeteo/resources/icons/graph/1440/scale80_13.png deleted file mode 100644 index 8bb64c2ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_14.png b/weather.openmeteo/resources/icons/graph/1440/scale80_14.png deleted file mode 100644 index b52481cbd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_15.png b/weather.openmeteo/resources/icons/graph/1440/scale80_15.png deleted file mode 100644 index 649602c68..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_16.png b/weather.openmeteo/resources/icons/graph/1440/scale80_16.png deleted file mode 100644 index 607bcc5cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_17.png b/weather.openmeteo/resources/icons/graph/1440/scale80_17.png deleted file mode 100644 index 1661bd5a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_18.png b/weather.openmeteo/resources/icons/graph/1440/scale80_18.png deleted file mode 100644 index fbfc9ec71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_19.png b/weather.openmeteo/resources/icons/graph/1440/scale80_19.png deleted file mode 100644 index 02740b47a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_2.png b/weather.openmeteo/resources/icons/graph/1440/scale80_2.png deleted file mode 100644 index 9aa0265a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_20.png b/weather.openmeteo/resources/icons/graph/1440/scale80_20.png deleted file mode 100644 index 1109d71ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_21.png b/weather.openmeteo/resources/icons/graph/1440/scale80_21.png deleted file mode 100644 index 1c8dc680b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_22.png b/weather.openmeteo/resources/icons/graph/1440/scale80_22.png deleted file mode 100644 index 46e9a1329..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_23.png b/weather.openmeteo/resources/icons/graph/1440/scale80_23.png deleted file mode 100644 index b9ff88b86..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_24.png b/weather.openmeteo/resources/icons/graph/1440/scale80_24.png deleted file mode 100644 index 3c34bcd24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_25.png b/weather.openmeteo/resources/icons/graph/1440/scale80_25.png deleted file mode 100644 index 732b65603..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_26.png b/weather.openmeteo/resources/icons/graph/1440/scale80_26.png deleted file mode 100644 index 3c72a8546..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_27.png b/weather.openmeteo/resources/icons/graph/1440/scale80_27.png deleted file mode 100644 index 15370e1ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_28.png b/weather.openmeteo/resources/icons/graph/1440/scale80_28.png deleted file mode 100644 index 0f3d70213..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_29.png b/weather.openmeteo/resources/icons/graph/1440/scale80_29.png deleted file mode 100644 index 81b68a1b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_3.png b/weather.openmeteo/resources/icons/graph/1440/scale80_3.png deleted file mode 100644 index dd9571e5b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_30.png b/weather.openmeteo/resources/icons/graph/1440/scale80_30.png deleted file mode 100644 index ab9579c11..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_31.png b/weather.openmeteo/resources/icons/graph/1440/scale80_31.png deleted file mode 100644 index 675994eab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_32.png b/weather.openmeteo/resources/icons/graph/1440/scale80_32.png deleted file mode 100644 index 4d0170c0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_33.png b/weather.openmeteo/resources/icons/graph/1440/scale80_33.png deleted file mode 100644 index 2ae1e762d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_34.png b/weather.openmeteo/resources/icons/graph/1440/scale80_34.png deleted file mode 100644 index 927ae7667..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_35.png b/weather.openmeteo/resources/icons/graph/1440/scale80_35.png deleted file mode 100644 index 1d016b5d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_36.png b/weather.openmeteo/resources/icons/graph/1440/scale80_36.png deleted file mode 100644 index 6bcc367de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_37.png b/weather.openmeteo/resources/icons/graph/1440/scale80_37.png deleted file mode 100644 index 08b46f064..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_38.png b/weather.openmeteo/resources/icons/graph/1440/scale80_38.png deleted file mode 100644 index 3594d0252..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_39.png b/weather.openmeteo/resources/icons/graph/1440/scale80_39.png deleted file mode 100644 index c73ddcc8d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_4.png b/weather.openmeteo/resources/icons/graph/1440/scale80_4.png deleted file mode 100644 index 97e8490e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_40.png b/weather.openmeteo/resources/icons/graph/1440/scale80_40.png deleted file mode 100644 index 53d2cccf7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_41.png b/weather.openmeteo/resources/icons/graph/1440/scale80_41.png deleted file mode 100644 index 36f4f0004..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_42.png b/weather.openmeteo/resources/icons/graph/1440/scale80_42.png deleted file mode 100644 index a6075ca53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_43.png b/weather.openmeteo/resources/icons/graph/1440/scale80_43.png deleted file mode 100644 index 722a4e3de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_44.png b/weather.openmeteo/resources/icons/graph/1440/scale80_44.png deleted file mode 100644 index 09310b562..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_45.png b/weather.openmeteo/resources/icons/graph/1440/scale80_45.png deleted file mode 100644 index c9bd435a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_46.png b/weather.openmeteo/resources/icons/graph/1440/scale80_46.png deleted file mode 100644 index 80b12c5b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_47.png b/weather.openmeteo/resources/icons/graph/1440/scale80_47.png deleted file mode 100644 index 0ce941345..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_48.png b/weather.openmeteo/resources/icons/graph/1440/scale80_48.png deleted file mode 100644 index 528ba47a9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_49.png b/weather.openmeteo/resources/icons/graph/1440/scale80_49.png deleted file mode 100644 index 1fca0f508..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_5.png b/weather.openmeteo/resources/icons/graph/1440/scale80_5.png deleted file mode 100644 index 6bca0b62f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_50.png b/weather.openmeteo/resources/icons/graph/1440/scale80_50.png deleted file mode 100644 index f4146efb9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_51.png b/weather.openmeteo/resources/icons/graph/1440/scale80_51.png deleted file mode 100644 index 233a44b13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_52.png b/weather.openmeteo/resources/icons/graph/1440/scale80_52.png deleted file mode 100644 index c631e169d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_53.png b/weather.openmeteo/resources/icons/graph/1440/scale80_53.png deleted file mode 100644 index aac268467..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_54.png b/weather.openmeteo/resources/icons/graph/1440/scale80_54.png deleted file mode 100644 index 663201eba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_55.png b/weather.openmeteo/resources/icons/graph/1440/scale80_55.png deleted file mode 100644 index ee808131b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_56.png b/weather.openmeteo/resources/icons/graph/1440/scale80_56.png deleted file mode 100644 index dfc831732..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_57.png b/weather.openmeteo/resources/icons/graph/1440/scale80_57.png deleted file mode 100644 index e81ca0fe6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_58.png b/weather.openmeteo/resources/icons/graph/1440/scale80_58.png deleted file mode 100644 index f2ae40c5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_59.png b/weather.openmeteo/resources/icons/graph/1440/scale80_59.png deleted file mode 100644 index d38c8ff20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_6.png b/weather.openmeteo/resources/icons/graph/1440/scale80_6.png deleted file mode 100644 index cf7551771..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_60.png b/weather.openmeteo/resources/icons/graph/1440/scale80_60.png deleted file mode 100644 index 072463524..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_61.png b/weather.openmeteo/resources/icons/graph/1440/scale80_61.png deleted file mode 100644 index 2ab80aabe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_62.png b/weather.openmeteo/resources/icons/graph/1440/scale80_62.png deleted file mode 100644 index 736f2571b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_63.png b/weather.openmeteo/resources/icons/graph/1440/scale80_63.png deleted file mode 100644 index 7d0517ec5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_64.png b/weather.openmeteo/resources/icons/graph/1440/scale80_64.png deleted file mode 100644 index bc5b57588..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_65.png b/weather.openmeteo/resources/icons/graph/1440/scale80_65.png deleted file mode 100644 index 48523f36c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_66.png b/weather.openmeteo/resources/icons/graph/1440/scale80_66.png deleted file mode 100644 index a04e1a2ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_67.png b/weather.openmeteo/resources/icons/graph/1440/scale80_67.png deleted file mode 100644 index 0fcc53358..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_68.png b/weather.openmeteo/resources/icons/graph/1440/scale80_68.png deleted file mode 100644 index bafa6e8a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_69.png b/weather.openmeteo/resources/icons/graph/1440/scale80_69.png deleted file mode 100644 index b20a88889..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_7.png b/weather.openmeteo/resources/icons/graph/1440/scale80_7.png deleted file mode 100644 index 810d7f766..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_70.png b/weather.openmeteo/resources/icons/graph/1440/scale80_70.png deleted file mode 100644 index 2c6ae44f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_71.png b/weather.openmeteo/resources/icons/graph/1440/scale80_71.png deleted file mode 100644 index 13a8036ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_72.png b/weather.openmeteo/resources/icons/graph/1440/scale80_72.png deleted file mode 100644 index d71b51f1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_73.png b/weather.openmeteo/resources/icons/graph/1440/scale80_73.png deleted file mode 100644 index f7514a74b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_74.png b/weather.openmeteo/resources/icons/graph/1440/scale80_74.png deleted file mode 100644 index 4e61030fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_75.png b/weather.openmeteo/resources/icons/graph/1440/scale80_75.png deleted file mode 100644 index fc2c677b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_76.png b/weather.openmeteo/resources/icons/graph/1440/scale80_76.png deleted file mode 100644 index 2e1f13df6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_77.png b/weather.openmeteo/resources/icons/graph/1440/scale80_77.png deleted file mode 100644 index 8061b167e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_78.png b/weather.openmeteo/resources/icons/graph/1440/scale80_78.png deleted file mode 100644 index 954ffbc80..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_79.png b/weather.openmeteo/resources/icons/graph/1440/scale80_79.png deleted file mode 100644 index f7f4acfc7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_8.png b/weather.openmeteo/resources/icons/graph/1440/scale80_8.png deleted file mode 100644 index fbd2064fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_80.png b/weather.openmeteo/resources/icons/graph/1440/scale80_80.png deleted file mode 100644 index 86740d309..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale80_9.png b/weather.openmeteo/resources/icons/graph/1440/scale80_9.png deleted file mode 100644 index ba7056141..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale80_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_0.png b/weather.openmeteo/resources/icons/graph/1440/scale90_0.png deleted file mode 100644 index 1330a3b85..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_1.png b/weather.openmeteo/resources/icons/graph/1440/scale90_1.png deleted file mode 100644 index 1c14f62f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_10.png b/weather.openmeteo/resources/icons/graph/1440/scale90_10.png deleted file mode 100644 index c7ed9f80b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_11.png b/weather.openmeteo/resources/icons/graph/1440/scale90_11.png deleted file mode 100644 index 4b9fc6d15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_12.png b/weather.openmeteo/resources/icons/graph/1440/scale90_12.png deleted file mode 100644 index d0415b540..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_13.png b/weather.openmeteo/resources/icons/graph/1440/scale90_13.png deleted file mode 100644 index 008c05db4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_14.png b/weather.openmeteo/resources/icons/graph/1440/scale90_14.png deleted file mode 100644 index ee25fd1fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_15.png b/weather.openmeteo/resources/icons/graph/1440/scale90_15.png deleted file mode 100644 index d2363396c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_16.png b/weather.openmeteo/resources/icons/graph/1440/scale90_16.png deleted file mode 100644 index b3217a725..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_17.png b/weather.openmeteo/resources/icons/graph/1440/scale90_17.png deleted file mode 100644 index ca6e49382..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_18.png b/weather.openmeteo/resources/icons/graph/1440/scale90_18.png deleted file mode 100644 index e3bb7fa81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_19.png b/weather.openmeteo/resources/icons/graph/1440/scale90_19.png deleted file mode 100644 index c8d971b38..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_2.png b/weather.openmeteo/resources/icons/graph/1440/scale90_2.png deleted file mode 100644 index 04f17d4a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_20.png b/weather.openmeteo/resources/icons/graph/1440/scale90_20.png deleted file mode 100644 index 9dc486402..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_21.png b/weather.openmeteo/resources/icons/graph/1440/scale90_21.png deleted file mode 100644 index 01ce90c10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_22.png b/weather.openmeteo/resources/icons/graph/1440/scale90_22.png deleted file mode 100644 index 308b559aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_23.png b/weather.openmeteo/resources/icons/graph/1440/scale90_23.png deleted file mode 100644 index c16ecceb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_24.png b/weather.openmeteo/resources/icons/graph/1440/scale90_24.png deleted file mode 100644 index edd18e876..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_25.png b/weather.openmeteo/resources/icons/graph/1440/scale90_25.png deleted file mode 100644 index d169f3455..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_26.png b/weather.openmeteo/resources/icons/graph/1440/scale90_26.png deleted file mode 100644 index 7f7e00c70..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_27.png b/weather.openmeteo/resources/icons/graph/1440/scale90_27.png deleted file mode 100644 index df7483098..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_28.png b/weather.openmeteo/resources/icons/graph/1440/scale90_28.png deleted file mode 100644 index c10f78e0b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_29.png b/weather.openmeteo/resources/icons/graph/1440/scale90_29.png deleted file mode 100644 index 44998894c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_3.png b/weather.openmeteo/resources/icons/graph/1440/scale90_3.png deleted file mode 100644 index e681f39c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_30.png b/weather.openmeteo/resources/icons/graph/1440/scale90_30.png deleted file mode 100644 index 14a231669..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_31.png b/weather.openmeteo/resources/icons/graph/1440/scale90_31.png deleted file mode 100644 index 71a637b8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_32.png b/weather.openmeteo/resources/icons/graph/1440/scale90_32.png deleted file mode 100644 index add13ec19..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_33.png b/weather.openmeteo/resources/icons/graph/1440/scale90_33.png deleted file mode 100644 index 3aaea8381..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_34.png b/weather.openmeteo/resources/icons/graph/1440/scale90_34.png deleted file mode 100644 index c8f834d0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_35.png b/weather.openmeteo/resources/icons/graph/1440/scale90_35.png deleted file mode 100644 index cf446e749..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_36.png b/weather.openmeteo/resources/icons/graph/1440/scale90_36.png deleted file mode 100644 index 8214b4103..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_37.png b/weather.openmeteo/resources/icons/graph/1440/scale90_37.png deleted file mode 100644 index e717f2d68..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_38.png b/weather.openmeteo/resources/icons/graph/1440/scale90_38.png deleted file mode 100644 index 32521199a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_39.png b/weather.openmeteo/resources/icons/graph/1440/scale90_39.png deleted file mode 100644 index 676af6196..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_4.png b/weather.openmeteo/resources/icons/graph/1440/scale90_4.png deleted file mode 100644 index 10fb7f1f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_40.png b/weather.openmeteo/resources/icons/graph/1440/scale90_40.png deleted file mode 100644 index c33396257..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_41.png b/weather.openmeteo/resources/icons/graph/1440/scale90_41.png deleted file mode 100644 index a8db18b82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_42.png b/weather.openmeteo/resources/icons/graph/1440/scale90_42.png deleted file mode 100644 index 556a5c0f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_43.png b/weather.openmeteo/resources/icons/graph/1440/scale90_43.png deleted file mode 100644 index 480d08685..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_44.png b/weather.openmeteo/resources/icons/graph/1440/scale90_44.png deleted file mode 100644 index 5ab4ef230..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_45.png b/weather.openmeteo/resources/icons/graph/1440/scale90_45.png deleted file mode 100644 index d9df9c522..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_46.png b/weather.openmeteo/resources/icons/graph/1440/scale90_46.png deleted file mode 100644 index 854f2e026..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_47.png b/weather.openmeteo/resources/icons/graph/1440/scale90_47.png deleted file mode 100644 index 7f16b81f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_48.png b/weather.openmeteo/resources/icons/graph/1440/scale90_48.png deleted file mode 100644 index ba7b4674d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_49.png b/weather.openmeteo/resources/icons/graph/1440/scale90_49.png deleted file mode 100644 index d6436e440..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_5.png b/weather.openmeteo/resources/icons/graph/1440/scale90_5.png deleted file mode 100644 index 69912427f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_50.png b/weather.openmeteo/resources/icons/graph/1440/scale90_50.png deleted file mode 100644 index 476072a7a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_51.png b/weather.openmeteo/resources/icons/graph/1440/scale90_51.png deleted file mode 100644 index a25f97258..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_52.png b/weather.openmeteo/resources/icons/graph/1440/scale90_52.png deleted file mode 100644 index 8992cc3bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_53.png b/weather.openmeteo/resources/icons/graph/1440/scale90_53.png deleted file mode 100644 index b7c287824..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_54.png b/weather.openmeteo/resources/icons/graph/1440/scale90_54.png deleted file mode 100644 index f81babb4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_55.png b/weather.openmeteo/resources/icons/graph/1440/scale90_55.png deleted file mode 100644 index 1316ae812..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_56.png b/weather.openmeteo/resources/icons/graph/1440/scale90_56.png deleted file mode 100644 index 23902f7dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_57.png b/weather.openmeteo/resources/icons/graph/1440/scale90_57.png deleted file mode 100644 index 96646bd37..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_58.png b/weather.openmeteo/resources/icons/graph/1440/scale90_58.png deleted file mode 100644 index 26d6e908b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_59.png b/weather.openmeteo/resources/icons/graph/1440/scale90_59.png deleted file mode 100644 index 9b8b24d7c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_6.png b/weather.openmeteo/resources/icons/graph/1440/scale90_6.png deleted file mode 100644 index 344cf315a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_60.png b/weather.openmeteo/resources/icons/graph/1440/scale90_60.png deleted file mode 100644 index 1052398fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_61.png b/weather.openmeteo/resources/icons/graph/1440/scale90_61.png deleted file mode 100644 index 83aeba970..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_62.png b/weather.openmeteo/resources/icons/graph/1440/scale90_62.png deleted file mode 100644 index 8796bf711..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_63.png b/weather.openmeteo/resources/icons/graph/1440/scale90_63.png deleted file mode 100644 index 565d75f51..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_64.png b/weather.openmeteo/resources/icons/graph/1440/scale90_64.png deleted file mode 100644 index 29fdae36c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_65.png b/weather.openmeteo/resources/icons/graph/1440/scale90_65.png deleted file mode 100644 index 37844e129..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_66.png b/weather.openmeteo/resources/icons/graph/1440/scale90_66.png deleted file mode 100644 index d6f0f90da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_67.png b/weather.openmeteo/resources/icons/graph/1440/scale90_67.png deleted file mode 100644 index b0ace25e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_68.png b/weather.openmeteo/resources/icons/graph/1440/scale90_68.png deleted file mode 100644 index 00cfa99cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_69.png b/weather.openmeteo/resources/icons/graph/1440/scale90_69.png deleted file mode 100644 index 0117bcbd5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_7.png b/weather.openmeteo/resources/icons/graph/1440/scale90_7.png deleted file mode 100644 index 15e8e0951..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_70.png b/weather.openmeteo/resources/icons/graph/1440/scale90_70.png deleted file mode 100644 index 40431cc4f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_71.png b/weather.openmeteo/resources/icons/graph/1440/scale90_71.png deleted file mode 100644 index 93c095d77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_72.png b/weather.openmeteo/resources/icons/graph/1440/scale90_72.png deleted file mode 100644 index bb764633b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_73.png b/weather.openmeteo/resources/icons/graph/1440/scale90_73.png deleted file mode 100644 index 68573b622..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_74.png b/weather.openmeteo/resources/icons/graph/1440/scale90_74.png deleted file mode 100644 index e85b23581..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_75.png b/weather.openmeteo/resources/icons/graph/1440/scale90_75.png deleted file mode 100644 index eb0b1bda8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_76.png b/weather.openmeteo/resources/icons/graph/1440/scale90_76.png deleted file mode 100644 index ad54d56a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_77.png b/weather.openmeteo/resources/icons/graph/1440/scale90_77.png deleted file mode 100644 index 524afc508..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_78.png b/weather.openmeteo/resources/icons/graph/1440/scale90_78.png deleted file mode 100644 index 563af08bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_79.png b/weather.openmeteo/resources/icons/graph/1440/scale90_79.png deleted file mode 100644 index cdc5cbe8b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_8.png b/weather.openmeteo/resources/icons/graph/1440/scale90_8.png deleted file mode 100644 index 2b16bc8df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_80.png b/weather.openmeteo/resources/icons/graph/1440/scale90_80.png deleted file mode 100644 index 67f9ee769..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_81.png b/weather.openmeteo/resources/icons/graph/1440/scale90_81.png deleted file mode 100644 index 22f263eae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_82.png b/weather.openmeteo/resources/icons/graph/1440/scale90_82.png deleted file mode 100644 index 138bd0382..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_83.png b/weather.openmeteo/resources/icons/graph/1440/scale90_83.png deleted file mode 100644 index 10fb9fd98..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_84.png b/weather.openmeteo/resources/icons/graph/1440/scale90_84.png deleted file mode 100644 index e27ea9b0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_85.png b/weather.openmeteo/resources/icons/graph/1440/scale90_85.png deleted file mode 100644 index 2dcc8fa84..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_86.png b/weather.openmeteo/resources/icons/graph/1440/scale90_86.png deleted file mode 100644 index b17f81cb3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_87.png b/weather.openmeteo/resources/icons/graph/1440/scale90_87.png deleted file mode 100644 index d403623c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_88.png b/weather.openmeteo/resources/icons/graph/1440/scale90_88.png deleted file mode 100644 index 81128a7db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_89.png b/weather.openmeteo/resources/icons/graph/1440/scale90_89.png deleted file mode 100644 index 7ae4396ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_9.png b/weather.openmeteo/resources/icons/graph/1440/scale90_9.png deleted file mode 100644 index e305ed234..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scale90_90.png b/weather.openmeteo/resources/icons/graph/1440/scale90_90.png deleted file mode 100644 index c7e7eec33..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scale90_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-1.png deleted file mode 100644 index 33cfe819a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-10.png deleted file mode 100644 index 7d7d3da3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-2.png deleted file mode 100644 index 336b6692f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-3.png deleted file mode 100644 index 6af91c0f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-4.png deleted file mode 100644 index 0631a7757..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-5.png deleted file mode 100644 index f47d34fc8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-6.png deleted file mode 100644 index d75fbc4ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-7.png deleted file mode 100644 index 9292e5b0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-8.png deleted file mode 100644 index 6e03616e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-9.png deleted file mode 100644 index 0e3c0ec9c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_0.png deleted file mode 100644 index 923e073ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_1.png deleted file mode 100644 index 2a0480100..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_10.png deleted file mode 100644 index 3cf2441ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_2.png deleted file mode 100644 index c60a37c1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_3.png deleted file mode 100644 index aa1dd78f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_4.png deleted file mode 100644 index 65113f619..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_5.png deleted file mode 100644 index 95613c134..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_6.png deleted file mode 100644 index 81a6655a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_7.png deleted file mode 100644 index 92b6609f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_8.png deleted file mode 100644 index cbde2b218..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg10_9.png deleted file mode 100644 index b5f6b3368..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.0.png deleted file mode 100644 index 96365580d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.1.png deleted file mode 100644 index f09458819..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.2.png deleted file mode 100644 index 280d92eb0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.3.png deleted file mode 100644 index 45eaf434c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.4.png deleted file mode 100644 index 1b229a7b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.5.png deleted file mode 100644 index 89fcb9f96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.6.png deleted file mode 100644 index 14cf27c2f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.7.png deleted file mode 100644 index 2bcf1ef5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.8.png deleted file mode 100644 index 060e70589..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.9.png deleted file mode 100644 index 7ab0f7d2c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-1.0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-1.0.png deleted file mode 100644 index 13505b952..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_-1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.0.png deleted file mode 100644 index ca0879b52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.1.png deleted file mode 100644 index a66ac0af9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.2.png deleted file mode 100644 index e2fbe8b1c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.3.png deleted file mode 100644 index 2408b5910..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.4.png deleted file mode 100644 index d41c5a075..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.5.png deleted file mode 100644 index 99a096f78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.6.png deleted file mode 100644 index 7a0dff2d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.7.png deleted file mode 100644 index 53f6d7b5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.8.png deleted file mode 100644 index 7a9e21a7f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.9.png deleted file mode 100644 index 466791c51..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_1.0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg1_1.0.png deleted file mode 100644 index 77abba3e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-1.png deleted file mode 100644 index 8aa46f2cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-10.png deleted file mode 100644 index a9c1a5a7c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-11.png deleted file mode 100644 index bbdc18391..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-12.png deleted file mode 100644 index 5b6b51b23..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-13.png deleted file mode 100644 index 6c851509d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-14.png deleted file mode 100644 index 5a384ae90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-15.png deleted file mode 100644 index 55067a007..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-16.png deleted file mode 100644 index 938b9d5bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-17.png deleted file mode 100644 index 30fc0d2ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-18.png deleted file mode 100644 index 17a2f1ee1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-19.png deleted file mode 100644 index 9d1ecc186..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-2.png deleted file mode 100644 index 0b0024df4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-20.png deleted file mode 100644 index 82dfdb3b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-3.png deleted file mode 100644 index 097f5c9cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-4.png deleted file mode 100644 index d2bab714b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-5.png deleted file mode 100644 index e6b3ec449..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-6.png deleted file mode 100644 index 7ae200efd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-7.png deleted file mode 100644 index 9ad21c5d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-8.png deleted file mode 100644 index 4516ecff7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-9.png deleted file mode 100644 index 8f31517c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_0.png deleted file mode 100644 index cfcf452ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_1.png deleted file mode 100644 index 17868be99..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_10.png deleted file mode 100644 index 0225863ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_11.png deleted file mode 100644 index d0e84fd00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_12.png deleted file mode 100644 index 451dd74eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_13.png deleted file mode 100644 index a00ec7aaa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_14.png deleted file mode 100644 index 626120839..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_15.png deleted file mode 100644 index 26e13419e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_16.png deleted file mode 100644 index 26bbe2240..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_17.png deleted file mode 100644 index 1d7b8dc55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_18.png deleted file mode 100644 index ecab693f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_19.png deleted file mode 100644 index 919f002d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_2.png deleted file mode 100644 index 6ab5ab33c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_20.png deleted file mode 100644 index 39bef2c07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_3.png deleted file mode 100644 index 250a64404..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_4.png deleted file mode 100644 index bfee49982..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_5.png deleted file mode 100644 index 9550fe500..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_6.png deleted file mode 100644 index 34db2717a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_7.png deleted file mode 100644 index 19418f26d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_8.png deleted file mode 100644 index 757d8aa31..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg20_9.png deleted file mode 100644 index 0b76f2423..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-1.png deleted file mode 100644 index 03fee87bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-10.png deleted file mode 100644 index 48e51e7a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-11.png deleted file mode 100644 index cc0e5e5f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-12.png deleted file mode 100644 index 5775a6d10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-13.png deleted file mode 100644 index 6c615549c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-14.png deleted file mode 100644 index 163500024..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-15.png deleted file mode 100644 index 3fe0c27e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-16.png deleted file mode 100644 index b2688f134..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-17.png deleted file mode 100644 index 57f28ace1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-18.png deleted file mode 100644 index fea773f7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-19.png deleted file mode 100644 index 34cbd442b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-2.png deleted file mode 100644 index f9af9d6de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-20.png deleted file mode 100644 index 6be3bfd77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-21.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-21.png deleted file mode 100644 index a7b11a2b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-22.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-22.png deleted file mode 100644 index 2d8167cf4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-23.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-23.png deleted file mode 100644 index f400426a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-24.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-24.png deleted file mode 100644 index 98e6dd782..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-25.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-25.png deleted file mode 100644 index 10a800c25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-26.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-26.png deleted file mode 100644 index 192edfd6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-27.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-27.png deleted file mode 100644 index 7ee1af0ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-28.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-28.png deleted file mode 100644 index 837ab4aef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-29.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-29.png deleted file mode 100644 index 68e3dc71c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-3.png deleted file mode 100644 index 669a4b8d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-30.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-30.png deleted file mode 100644 index a20dd3ba3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-4.png deleted file mode 100644 index 782efe358..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-5.png deleted file mode 100644 index 91c7c86bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-6.png deleted file mode 100644 index 727b84c3a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-7.png deleted file mode 100644 index 436ded877..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-8.png deleted file mode 100644 index 1903cdc6f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-9.png deleted file mode 100644 index fa5dd4b54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_0.png deleted file mode 100644 index 3c1464b20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_1.png deleted file mode 100644 index 2e3b8786e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_10.png deleted file mode 100644 index 41ec6a516..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_11.png deleted file mode 100644 index 756335b13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_12.png deleted file mode 100644 index 8559502c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_13.png deleted file mode 100644 index ffc91edbc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_14.png deleted file mode 100644 index 42a8cdbe3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_15.png deleted file mode 100644 index 4cb656c99..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_16.png deleted file mode 100644 index 0805388b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_17.png deleted file mode 100644 index da5c1e453..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_18.png deleted file mode 100644 index 6eb8b618f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_19.png deleted file mode 100644 index 670e4693b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_2.png deleted file mode 100644 index 1b0f250a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_20.png deleted file mode 100644 index d2ad0d902..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_21.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_21.png deleted file mode 100644 index f816097b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_22.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_22.png deleted file mode 100644 index 374003960..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_23.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_23.png deleted file mode 100644 index 16c0a0952..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_24.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_24.png deleted file mode 100644 index e05590c38..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_25.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_25.png deleted file mode 100644 index 97af4c57e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_26.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_26.png deleted file mode 100644 index b9f56c043..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_27.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_27.png deleted file mode 100644 index 52f2b7f7c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_28.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_28.png deleted file mode 100644 index 29ca49a5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_29.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_29.png deleted file mode 100644 index e6c77def5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_3.png deleted file mode 100644 index 1ae9d0002..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_30.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_30.png deleted file mode 100644 index 1c0940af0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_4.png deleted file mode 100644 index 600a32a5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_5.png deleted file mode 100644 index d458bcc08..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_6.png deleted file mode 100644 index 44465dbae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_7.png deleted file mode 100644 index 69f8a5278..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_8.png deleted file mode 100644 index babca9277..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg30_9.png deleted file mode 100644 index 3d761e73e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-1.png deleted file mode 100644 index d1f77f8e5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-10.png deleted file mode 100644 index f87cca788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-11.png deleted file mode 100644 index c82245737..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-12.png deleted file mode 100644 index 962974e68..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-13.png deleted file mode 100644 index 85859bda4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-14.png deleted file mode 100644 index 5ce5c2e7c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-15.png deleted file mode 100644 index fdddcdaaa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-16.png deleted file mode 100644 index 8eee3953a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-17.png deleted file mode 100644 index 9ce5a6043..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-18.png deleted file mode 100644 index 8b0356eee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-19.png deleted file mode 100644 index 7839d5be6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-2.png deleted file mode 100644 index d431288e1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-20.png deleted file mode 100644 index db2957d10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-21.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-21.png deleted file mode 100644 index 6896f3aca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-22.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-22.png deleted file mode 100644 index b5fbf5d91..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-23.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-23.png deleted file mode 100644 index 2989817a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-24.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-24.png deleted file mode 100644 index 11d7cd15f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-25.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-25.png deleted file mode 100644 index 8356b30c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-26.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-26.png deleted file mode 100644 index cab7fba4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-27.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-27.png deleted file mode 100644 index 3987add5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-28.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-28.png deleted file mode 100644 index ec3a7eec5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-29.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-29.png deleted file mode 100644 index d6c34209a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-3.png deleted file mode 100644 index d686c5362..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-30.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-30.png deleted file mode 100644 index 6944c1b6c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-31.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-31.png deleted file mode 100644 index f70fb311a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-32.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-32.png deleted file mode 100644 index 4b57af557..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-33.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-33.png deleted file mode 100644 index df2266c4d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-34.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-34.png deleted file mode 100644 index 8cb08d4f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-35.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-35.png deleted file mode 100644 index 78773802a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-36.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-36.png deleted file mode 100644 index 5699c3511..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-37.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-37.png deleted file mode 100644 index 18947dc56..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-38.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-38.png deleted file mode 100644 index b4d15869d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-39.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-39.png deleted file mode 100644 index 2d1d62a0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-4.png deleted file mode 100644 index a09cc9a5c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-40.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-40.png deleted file mode 100644 index b566b84c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-5.png deleted file mode 100644 index dbd5e22a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-6.png deleted file mode 100644 index d0ca62396..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-7.png deleted file mode 100644 index 4219263af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-8.png deleted file mode 100644 index 9e6de59f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-9.png deleted file mode 100644 index 2052d8ed7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_0.png deleted file mode 100644 index 3b47306af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_1.png deleted file mode 100644 index 8914a0844..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_10.png deleted file mode 100644 index ca51bc064..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_11.png deleted file mode 100644 index 652cc171b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_12.png deleted file mode 100644 index a0a194141..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_13.png deleted file mode 100644 index 279eac9f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_14.png deleted file mode 100644 index 2ce0d8c5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_15.png deleted file mode 100644 index 2d3849c21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_16.png deleted file mode 100644 index 0f5c800a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_17.png deleted file mode 100644 index aa6e7f68c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_18.png deleted file mode 100644 index 34a2b962e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_19.png deleted file mode 100644 index 8342fb881..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_2.png deleted file mode 100644 index c44ec7489..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_20.png deleted file mode 100644 index b903c6215..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_21.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_21.png deleted file mode 100644 index f8159a065..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_22.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_22.png deleted file mode 100644 index b86a13930..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_23.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_23.png deleted file mode 100644 index 963cca5f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_24.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_24.png deleted file mode 100644 index 20b1a5ad3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_25.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_25.png deleted file mode 100644 index cacd79bcc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_26.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_26.png deleted file mode 100644 index b57c22657..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_27.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_27.png deleted file mode 100644 index 5c45aa782..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_28.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_28.png deleted file mode 100644 index 1ab96eea4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_29.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_29.png deleted file mode 100644 index 4d840179d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_3.png deleted file mode 100644 index 3b81f3933..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_30.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_30.png deleted file mode 100644 index d69d0f72e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_31.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_31.png deleted file mode 100644 index 47c8fbdb5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_32.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_32.png deleted file mode 100644 index a3b4e447e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_33.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_33.png deleted file mode 100644 index ba4481c26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_34.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_34.png deleted file mode 100644 index 60c33a009..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_35.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_35.png deleted file mode 100644 index b52717561..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_36.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_36.png deleted file mode 100644 index ac3a12584..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_37.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_37.png deleted file mode 100644 index 575a68852..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_38.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_38.png deleted file mode 100644 index 4db0df51c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_39.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_39.png deleted file mode 100644 index 0e6a6775f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_4.png deleted file mode 100644 index 223ac1e5d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_40.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_40.png deleted file mode 100644 index cdde4c32a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_5.png deleted file mode 100644 index ed9376ed0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_6.png deleted file mode 100644 index 7a9d1b86f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_7.png deleted file mode 100644 index 721d768b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_8.png deleted file mode 100644 index 4df730169..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg40_9.png deleted file mode 100644 index 0b8a34547..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-1.png deleted file mode 100644 index 8dbec5b01..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-10.png deleted file mode 100644 index 4827b9d66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-11.png deleted file mode 100644 index e91faacfa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-12.png deleted file mode 100644 index f269d20ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-13.png deleted file mode 100644 index 416f8a603..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-14.png deleted file mode 100644 index c7ba4fc55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-15.png deleted file mode 100644 index d08ebe58e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-16.png deleted file mode 100644 index b3652d02e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-17.png deleted file mode 100644 index 973f1043e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-18.png deleted file mode 100644 index 750bb85ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-19.png deleted file mode 100644 index 8de7cf124..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-2.png deleted file mode 100644 index fb59243b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-20.png deleted file mode 100644 index 4d2f04947..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-21.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-21.png deleted file mode 100644 index 7c01158ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-22.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-22.png deleted file mode 100644 index 1ecc1c1c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-23.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-23.png deleted file mode 100644 index 635436f83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-24.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-24.png deleted file mode 100644 index 887e0825f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-25.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-25.png deleted file mode 100644 index ccd001748..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-26.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-26.png deleted file mode 100644 index fcb04bfc7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-27.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-27.png deleted file mode 100644 index 4a1da2610..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-28.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-28.png deleted file mode 100644 index 3b834a3ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-29.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-29.png deleted file mode 100644 index c55b3a289..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-3.png deleted file mode 100644 index b0b327a1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-30.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-30.png deleted file mode 100644 index c9a4faadf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-31.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-31.png deleted file mode 100644 index 15ce3032d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-32.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-32.png deleted file mode 100644 index f2d411b1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-33.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-33.png deleted file mode 100644 index 51c485881..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-34.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-34.png deleted file mode 100644 index bcc8462f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-35.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-35.png deleted file mode 100644 index 8f3bbc5cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-36.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-36.png deleted file mode 100644 index fa419f055..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-37.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-37.png deleted file mode 100644 index 8a886bb5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-38.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-38.png deleted file mode 100644 index 08d7e50ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-39.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-39.png deleted file mode 100644 index 41744fdb9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-4.png deleted file mode 100644 index 7e5f87c49..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-40.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-40.png deleted file mode 100644 index 2ac6550e1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-41.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-41.png deleted file mode 100644 index 72afa4709..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-42.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-42.png deleted file mode 100644 index d711a00be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-43.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-43.png deleted file mode 100644 index ff8529356..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-44.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-44.png deleted file mode 100644 index 59c748594..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-45.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-45.png deleted file mode 100644 index d751bd210..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-46.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-46.png deleted file mode 100644 index b181754da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-47.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-47.png deleted file mode 100644 index bb53100d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-48.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-48.png deleted file mode 100644 index 3cb9561f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-49.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-49.png deleted file mode 100644 index ffccea613..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-5.png deleted file mode 100644 index 326040792..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-50.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-50.png deleted file mode 100644 index 6043ad5ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-6.png deleted file mode 100644 index 439469f19..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-7.png deleted file mode 100644 index 275f99ead..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-8.png deleted file mode 100644 index 6839d2566..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-9.png deleted file mode 100644 index c82b96e13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_0.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_0.png deleted file mode 100644 index 908503cea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_1.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_1.png deleted file mode 100644 index 845831301..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_10.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_10.png deleted file mode 100644 index 70977447d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_11.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_11.png deleted file mode 100644 index a50b9c986..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_12.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_12.png deleted file mode 100644 index c0b16ec40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_13.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_13.png deleted file mode 100644 index f1f6e6f7f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_14.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_14.png deleted file mode 100644 index 2be7f77c2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_15.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_15.png deleted file mode 100644 index a64aecf0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_16.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_16.png deleted file mode 100644 index 2ab2d40b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_17.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_17.png deleted file mode 100644 index 8ba855a53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_18.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_18.png deleted file mode 100644 index 4e81402f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_19.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_19.png deleted file mode 100644 index d7c38f49f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_2.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_2.png deleted file mode 100644 index 99b20383f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_20.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_20.png deleted file mode 100644 index 9f17d1b37..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_21.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_21.png deleted file mode 100644 index 5ffdb7884..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_22.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_22.png deleted file mode 100644 index 5a5dfa0dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_23.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_23.png deleted file mode 100644 index 902ca1714..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_24.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_24.png deleted file mode 100644 index 95f29b0b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_25.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_25.png deleted file mode 100644 index 7ea00661d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_26.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_26.png deleted file mode 100644 index e5245b865..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_27.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_27.png deleted file mode 100644 index 329d83945..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_28.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_28.png deleted file mode 100644 index 321821483..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_29.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_29.png deleted file mode 100644 index c25aaa45e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_3.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_3.png deleted file mode 100644 index 1c2ea813a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_30.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_30.png deleted file mode 100644 index b0cfc3254..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_31.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_31.png deleted file mode 100644 index c46e40c77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_32.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_32.png deleted file mode 100644 index add1400e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_33.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_33.png deleted file mode 100644 index a3836d46b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_34.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_34.png deleted file mode 100644 index f26ebddd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_35.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_35.png deleted file mode 100644 index c36d3948a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_36.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_36.png deleted file mode 100644 index 1d01e6fc3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_37.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_37.png deleted file mode 100644 index f4e168e7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_38.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_38.png deleted file mode 100644 index 3236b9ad6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_39.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_39.png deleted file mode 100644 index 24341cd1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_4.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_4.png deleted file mode 100644 index 151d7975c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_40.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_40.png deleted file mode 100644 index 352d95026..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_41.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_41.png deleted file mode 100644 index 412dc4070..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_42.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_42.png deleted file mode 100644 index cd36ad27d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_43.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_43.png deleted file mode 100644 index 2cab1c582..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_44.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_44.png deleted file mode 100644 index 0161c1176..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_45.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_45.png deleted file mode 100644 index 0c11ff3ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_46.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_46.png deleted file mode 100644 index 69b94282a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_47.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_47.png deleted file mode 100644 index e406504ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_48.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_48.png deleted file mode 100644 index 743fd3735..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_49.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_49.png deleted file mode 100644 index 1dcb43a55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_5.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_5.png deleted file mode 100644 index 12d2656c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_50.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_50.png deleted file mode 100644 index 5b8c17bfb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_6.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_6.png deleted file mode 100644 index b5f51ad66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_7.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_7.png deleted file mode 100644 index f4e9f93d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_8.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_8.png deleted file mode 100644 index e83bca0df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_9.png b/weather.openmeteo/resources/icons/graph/1440/scaleneg50_9.png deleted file mode 100644 index 1cdef929f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1440/scaleneg50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_0.png b/weather.openmeteo/resources/icons/graph/2160/scale100_0.png deleted file mode 100644 index b86fb43a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_1.png b/weather.openmeteo/resources/icons/graph/2160/scale100_1.png deleted file mode 100644 index 33998fe1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_10.png b/weather.openmeteo/resources/icons/graph/2160/scale100_10.png deleted file mode 100644 index 98a322a92..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_100.png b/weather.openmeteo/resources/icons/graph/2160/scale100_100.png deleted file mode 100644 index 712a8bb56..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_11.png b/weather.openmeteo/resources/icons/graph/2160/scale100_11.png deleted file mode 100644 index 5e7d6eacf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_12.png b/weather.openmeteo/resources/icons/graph/2160/scale100_12.png deleted file mode 100644 index f5d8f0a61..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_13.png b/weather.openmeteo/resources/icons/graph/2160/scale100_13.png deleted file mode 100644 index e4455e948..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_14.png b/weather.openmeteo/resources/icons/graph/2160/scale100_14.png deleted file mode 100644 index 138240ef8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_15.png b/weather.openmeteo/resources/icons/graph/2160/scale100_15.png deleted file mode 100644 index 8e8784ccb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_16.png b/weather.openmeteo/resources/icons/graph/2160/scale100_16.png deleted file mode 100644 index bee25fa8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_17.png b/weather.openmeteo/resources/icons/graph/2160/scale100_17.png deleted file mode 100644 index 3dd98bc8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_18.png b/weather.openmeteo/resources/icons/graph/2160/scale100_18.png deleted file mode 100644 index ea9b6a8e8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_19.png b/weather.openmeteo/resources/icons/graph/2160/scale100_19.png deleted file mode 100644 index b674b41bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_2.png b/weather.openmeteo/resources/icons/graph/2160/scale100_2.png deleted file mode 100644 index 52f71fbe9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_20.png b/weather.openmeteo/resources/icons/graph/2160/scale100_20.png deleted file mode 100644 index 6d103c13c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_21.png b/weather.openmeteo/resources/icons/graph/2160/scale100_21.png deleted file mode 100644 index 84ca65346..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_22.png b/weather.openmeteo/resources/icons/graph/2160/scale100_22.png deleted file mode 100644 index cb2c3cdaf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_23.png b/weather.openmeteo/resources/icons/graph/2160/scale100_23.png deleted file mode 100644 index 0cb9a0a1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_24.png b/weather.openmeteo/resources/icons/graph/2160/scale100_24.png deleted file mode 100644 index a52d7b853..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_25.png b/weather.openmeteo/resources/icons/graph/2160/scale100_25.png deleted file mode 100644 index 054b8a511..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_26.png b/weather.openmeteo/resources/icons/graph/2160/scale100_26.png deleted file mode 100644 index 76b500bc2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_27.png b/weather.openmeteo/resources/icons/graph/2160/scale100_27.png deleted file mode 100644 index bdaeff53c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_28.png b/weather.openmeteo/resources/icons/graph/2160/scale100_28.png deleted file mode 100644 index ca06c010a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_29.png b/weather.openmeteo/resources/icons/graph/2160/scale100_29.png deleted file mode 100644 index 541fea4f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_3.png b/weather.openmeteo/resources/icons/graph/2160/scale100_3.png deleted file mode 100644 index 5d65c36af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_30.png b/weather.openmeteo/resources/icons/graph/2160/scale100_30.png deleted file mode 100644 index 477d70b32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_31.png b/weather.openmeteo/resources/icons/graph/2160/scale100_31.png deleted file mode 100644 index 116fd5ef3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_32.png b/weather.openmeteo/resources/icons/graph/2160/scale100_32.png deleted file mode 100644 index 6beb97f72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_33.png b/weather.openmeteo/resources/icons/graph/2160/scale100_33.png deleted file mode 100644 index 384e0464b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_34.png b/weather.openmeteo/resources/icons/graph/2160/scale100_34.png deleted file mode 100644 index f53347f5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_35.png b/weather.openmeteo/resources/icons/graph/2160/scale100_35.png deleted file mode 100644 index e0960bb8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_36.png b/weather.openmeteo/resources/icons/graph/2160/scale100_36.png deleted file mode 100644 index 29ac847be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_37.png b/weather.openmeteo/resources/icons/graph/2160/scale100_37.png deleted file mode 100644 index f0cb0ee0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_38.png b/weather.openmeteo/resources/icons/graph/2160/scale100_38.png deleted file mode 100644 index 64a2edfce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_39.png b/weather.openmeteo/resources/icons/graph/2160/scale100_39.png deleted file mode 100644 index 6adfdb080..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_4.png b/weather.openmeteo/resources/icons/graph/2160/scale100_4.png deleted file mode 100644 index 3bcd4e9ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_40.png b/weather.openmeteo/resources/icons/graph/2160/scale100_40.png deleted file mode 100644 index ec9fcbd37..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_41.png b/weather.openmeteo/resources/icons/graph/2160/scale100_41.png deleted file mode 100644 index 0e6aa1bcf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_42.png b/weather.openmeteo/resources/icons/graph/2160/scale100_42.png deleted file mode 100644 index e92b29655..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_43.png b/weather.openmeteo/resources/icons/graph/2160/scale100_43.png deleted file mode 100644 index 4b06642a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_44.png b/weather.openmeteo/resources/icons/graph/2160/scale100_44.png deleted file mode 100644 index ce01b4f7c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_45.png b/weather.openmeteo/resources/icons/graph/2160/scale100_45.png deleted file mode 100644 index 20b3148da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_46.png b/weather.openmeteo/resources/icons/graph/2160/scale100_46.png deleted file mode 100644 index b0b9d315d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_47.png b/weather.openmeteo/resources/icons/graph/2160/scale100_47.png deleted file mode 100644 index b23fc9e7d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_48.png b/weather.openmeteo/resources/icons/graph/2160/scale100_48.png deleted file mode 100644 index 12741d259..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_49.png b/weather.openmeteo/resources/icons/graph/2160/scale100_49.png deleted file mode 100644 index 3ce8a03ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_5.png b/weather.openmeteo/resources/icons/graph/2160/scale100_5.png deleted file mode 100644 index a8605be73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_50.png b/weather.openmeteo/resources/icons/graph/2160/scale100_50.png deleted file mode 100644 index 7402e6dc5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_51.png b/weather.openmeteo/resources/icons/graph/2160/scale100_51.png deleted file mode 100644 index 7222c9cbe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_52.png b/weather.openmeteo/resources/icons/graph/2160/scale100_52.png deleted file mode 100644 index abed1c58d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_53.png b/weather.openmeteo/resources/icons/graph/2160/scale100_53.png deleted file mode 100644 index 8d860d843..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_54.png b/weather.openmeteo/resources/icons/graph/2160/scale100_54.png deleted file mode 100644 index e19cb5f9c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_55.png b/weather.openmeteo/resources/icons/graph/2160/scale100_55.png deleted file mode 100644 index ebb4c5934..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_56.png b/weather.openmeteo/resources/icons/graph/2160/scale100_56.png deleted file mode 100644 index b296de31e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_57.png b/weather.openmeteo/resources/icons/graph/2160/scale100_57.png deleted file mode 100644 index d5395c234..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_58.png b/weather.openmeteo/resources/icons/graph/2160/scale100_58.png deleted file mode 100644 index 5fa824505..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_59.png b/weather.openmeteo/resources/icons/graph/2160/scale100_59.png deleted file mode 100644 index f304bbca3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_6.png b/weather.openmeteo/resources/icons/graph/2160/scale100_6.png deleted file mode 100644 index 18095cfe0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_60.png b/weather.openmeteo/resources/icons/graph/2160/scale100_60.png deleted file mode 100644 index 9b5a08a6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_61.png b/weather.openmeteo/resources/icons/graph/2160/scale100_61.png deleted file mode 100644 index 7b25caf75..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_62.png b/weather.openmeteo/resources/icons/graph/2160/scale100_62.png deleted file mode 100644 index 28d48395f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_63.png b/weather.openmeteo/resources/icons/graph/2160/scale100_63.png deleted file mode 100644 index 78df1d729..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_64.png b/weather.openmeteo/resources/icons/graph/2160/scale100_64.png deleted file mode 100644 index f1ed62fc6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_65.png b/weather.openmeteo/resources/icons/graph/2160/scale100_65.png deleted file mode 100644 index 6d3bd1b93..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_66.png b/weather.openmeteo/resources/icons/graph/2160/scale100_66.png deleted file mode 100644 index da23564c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_67.png b/weather.openmeteo/resources/icons/graph/2160/scale100_67.png deleted file mode 100644 index 26ed98033..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_68.png b/weather.openmeteo/resources/icons/graph/2160/scale100_68.png deleted file mode 100644 index 2707d7878..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_69.png b/weather.openmeteo/resources/icons/graph/2160/scale100_69.png deleted file mode 100644 index a3c61cad4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_7.png b/weather.openmeteo/resources/icons/graph/2160/scale100_7.png deleted file mode 100644 index 71aa84e1c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_70.png b/weather.openmeteo/resources/icons/graph/2160/scale100_70.png deleted file mode 100644 index a51d847af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_71.png b/weather.openmeteo/resources/icons/graph/2160/scale100_71.png deleted file mode 100644 index 6432a142e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_72.png b/weather.openmeteo/resources/icons/graph/2160/scale100_72.png deleted file mode 100644 index 72459bc6a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_73.png b/weather.openmeteo/resources/icons/graph/2160/scale100_73.png deleted file mode 100644 index 9a8b3254e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_74.png b/weather.openmeteo/resources/icons/graph/2160/scale100_74.png deleted file mode 100644 index e08421e54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_75.png b/weather.openmeteo/resources/icons/graph/2160/scale100_75.png deleted file mode 100644 index b061a0293..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_76.png b/weather.openmeteo/resources/icons/graph/2160/scale100_76.png deleted file mode 100644 index 70397758f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_77.png b/weather.openmeteo/resources/icons/graph/2160/scale100_77.png deleted file mode 100644 index f03afb7f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_78.png b/weather.openmeteo/resources/icons/graph/2160/scale100_78.png deleted file mode 100644 index 2e6005913..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_79.png b/weather.openmeteo/resources/icons/graph/2160/scale100_79.png deleted file mode 100644 index d4ad48386..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_8.png b/weather.openmeteo/resources/icons/graph/2160/scale100_8.png deleted file mode 100644 index 2f4fc279f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_80.png b/weather.openmeteo/resources/icons/graph/2160/scale100_80.png deleted file mode 100644 index b45410ce6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_81.png b/weather.openmeteo/resources/icons/graph/2160/scale100_81.png deleted file mode 100644 index e95188a31..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_82.png b/weather.openmeteo/resources/icons/graph/2160/scale100_82.png deleted file mode 100644 index d5b6ef5ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_83.png b/weather.openmeteo/resources/icons/graph/2160/scale100_83.png deleted file mode 100644 index 8f493efd1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_84.png b/weather.openmeteo/resources/icons/graph/2160/scale100_84.png deleted file mode 100644 index 66c906582..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_85.png b/weather.openmeteo/resources/icons/graph/2160/scale100_85.png deleted file mode 100644 index 07215897d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_86.png b/weather.openmeteo/resources/icons/graph/2160/scale100_86.png deleted file mode 100644 index d76640b16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_87.png b/weather.openmeteo/resources/icons/graph/2160/scale100_87.png deleted file mode 100644 index 4f52fe305..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_88.png b/weather.openmeteo/resources/icons/graph/2160/scale100_88.png deleted file mode 100644 index e58e17ba5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_89.png b/weather.openmeteo/resources/icons/graph/2160/scale100_89.png deleted file mode 100644 index de6da8aa2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_9.png b/weather.openmeteo/resources/icons/graph/2160/scale100_9.png deleted file mode 100644 index 3aab0b795..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_90.png b/weather.openmeteo/resources/icons/graph/2160/scale100_90.png deleted file mode 100644 index 7687fe6f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_91.png b/weather.openmeteo/resources/icons/graph/2160/scale100_91.png deleted file mode 100644 index 38f3caaa5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_92.png b/weather.openmeteo/resources/icons/graph/2160/scale100_92.png deleted file mode 100644 index 5956cc69f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_93.png b/weather.openmeteo/resources/icons/graph/2160/scale100_93.png deleted file mode 100644 index 17610e440..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_94.png b/weather.openmeteo/resources/icons/graph/2160/scale100_94.png deleted file mode 100644 index 6bab3b62d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_95.png b/weather.openmeteo/resources/icons/graph/2160/scale100_95.png deleted file mode 100644 index bc1af2ea6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_96.png b/weather.openmeteo/resources/icons/graph/2160/scale100_96.png deleted file mode 100644 index e4ff9311e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_97.png b/weather.openmeteo/resources/icons/graph/2160/scale100_97.png deleted file mode 100644 index 2516dc19c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_98.png b/weather.openmeteo/resources/icons/graph/2160/scale100_98.png deleted file mode 100644 index fb4bcf2c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale100_99.png b/weather.openmeteo/resources/icons/graph/2160/scale100_99.png deleted file mode 100644 index 793b99da9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale100_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_0.png b/weather.openmeteo/resources/icons/graph/2160/scale10_0.png deleted file mode 100644 index 06fa37765..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_1.png b/weather.openmeteo/resources/icons/graph/2160/scale10_1.png deleted file mode 100644 index f758c4217..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_10.png b/weather.openmeteo/resources/icons/graph/2160/scale10_10.png deleted file mode 100644 index d31986dd6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_2.png b/weather.openmeteo/resources/icons/graph/2160/scale10_2.png deleted file mode 100644 index 1e4964484..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_3.png b/weather.openmeteo/resources/icons/graph/2160/scale10_3.png deleted file mode 100644 index b51770c7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_4.png b/weather.openmeteo/resources/icons/graph/2160/scale10_4.png deleted file mode 100644 index 73e75294a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_5.png b/weather.openmeteo/resources/icons/graph/2160/scale10_5.png deleted file mode 100644 index 2e02f322c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_6.png b/weather.openmeteo/resources/icons/graph/2160/scale10_6.png deleted file mode 100644 index 8e02b9fd5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_7.png b/weather.openmeteo/resources/icons/graph/2160/scale10_7.png deleted file mode 100644 index 4165d9be7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_8.png b/weather.openmeteo/resources/icons/graph/2160/scale10_8.png deleted file mode 100644 index 204b3a1e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale10_9.png b/weather.openmeteo/resources/icons/graph/2160/scale10_9.png deleted file mode 100644 index a41957c27..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_0.png b/weather.openmeteo/resources/icons/graph/2160/scale150_0.png deleted file mode 100644 index ee5644831..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_1.png b/weather.openmeteo/resources/icons/graph/2160/scale150_1.png deleted file mode 100644 index 80ffa0950..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_10.png b/weather.openmeteo/resources/icons/graph/2160/scale150_10.png deleted file mode 100644 index 6f4c480f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_100.png b/weather.openmeteo/resources/icons/graph/2160/scale150_100.png deleted file mode 100644 index dca4d8f09..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_101.png b/weather.openmeteo/resources/icons/graph/2160/scale150_101.png deleted file mode 100644 index 57ab2ba9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_102.png b/weather.openmeteo/resources/icons/graph/2160/scale150_102.png deleted file mode 100644 index f8dd40064..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_103.png b/weather.openmeteo/resources/icons/graph/2160/scale150_103.png deleted file mode 100644 index 3cb43fcfc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_104.png b/weather.openmeteo/resources/icons/graph/2160/scale150_104.png deleted file mode 100644 index fa779087c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_105.png b/weather.openmeteo/resources/icons/graph/2160/scale150_105.png deleted file mode 100644 index fe42e32e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_106.png b/weather.openmeteo/resources/icons/graph/2160/scale150_106.png deleted file mode 100644 index 18bc1b396..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_107.png b/weather.openmeteo/resources/icons/graph/2160/scale150_107.png deleted file mode 100644 index 18bc1b396..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_108.png b/weather.openmeteo/resources/icons/graph/2160/scale150_108.png deleted file mode 100644 index d572b5b98..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_109.png b/weather.openmeteo/resources/icons/graph/2160/scale150_109.png deleted file mode 100644 index b8b641db5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_11.png b/weather.openmeteo/resources/icons/graph/2160/scale150_11.png deleted file mode 100644 index 6f4c480f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_110.png b/weather.openmeteo/resources/icons/graph/2160/scale150_110.png deleted file mode 100644 index b8b641db5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_111.png b/weather.openmeteo/resources/icons/graph/2160/scale150_111.png deleted file mode 100644 index 1928b8f11..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_112.png b/weather.openmeteo/resources/icons/graph/2160/scale150_112.png deleted file mode 100644 index 7d93a07d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_113.png b/weather.openmeteo/resources/icons/graph/2160/scale150_113.png deleted file mode 100644 index 7d93a07d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_114.png b/weather.openmeteo/resources/icons/graph/2160/scale150_114.png deleted file mode 100644 index cb7a033db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_115.png b/weather.openmeteo/resources/icons/graph/2160/scale150_115.png deleted file mode 100644 index 245b726a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_116.png b/weather.openmeteo/resources/icons/graph/2160/scale150_116.png deleted file mode 100644 index 245b726a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_117.png b/weather.openmeteo/resources/icons/graph/2160/scale150_117.png deleted file mode 100644 index ecf1804c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_118.png b/weather.openmeteo/resources/icons/graph/2160/scale150_118.png deleted file mode 100644 index 1a597a322..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_119.png b/weather.openmeteo/resources/icons/graph/2160/scale150_119.png deleted file mode 100644 index 1a597a322..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_12.png b/weather.openmeteo/resources/icons/graph/2160/scale150_12.png deleted file mode 100644 index fd7e3331e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_120.png b/weather.openmeteo/resources/icons/graph/2160/scale150_120.png deleted file mode 100644 index 945de08e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_121.png b/weather.openmeteo/resources/icons/graph/2160/scale150_121.png deleted file mode 100644 index c3a733666..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_122.png b/weather.openmeteo/resources/icons/graph/2160/scale150_122.png deleted file mode 100644 index c3a733666..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_123.png b/weather.openmeteo/resources/icons/graph/2160/scale150_123.png deleted file mode 100644 index 0665e3a35..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_124.png b/weather.openmeteo/resources/icons/graph/2160/scale150_124.png deleted file mode 100644 index 13fe01748..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_125.png b/weather.openmeteo/resources/icons/graph/2160/scale150_125.png deleted file mode 100644 index 13fe01748..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_126.png b/weather.openmeteo/resources/icons/graph/2160/scale150_126.png deleted file mode 100644 index 28fca4853..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_127.png b/weather.openmeteo/resources/icons/graph/2160/scale150_127.png deleted file mode 100644 index 51371fac0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_128.png b/weather.openmeteo/resources/icons/graph/2160/scale150_128.png deleted file mode 100644 index 51371fac0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_129.png b/weather.openmeteo/resources/icons/graph/2160/scale150_129.png deleted file mode 100644 index a7e1650fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_13.png b/weather.openmeteo/resources/icons/graph/2160/scale150_13.png deleted file mode 100644 index a404390e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_130.png b/weather.openmeteo/resources/icons/graph/2160/scale150_130.png deleted file mode 100644 index 2a8cdd754..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_131.png b/weather.openmeteo/resources/icons/graph/2160/scale150_131.png deleted file mode 100644 index 2a8cdd754..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_132.png b/weather.openmeteo/resources/icons/graph/2160/scale150_132.png deleted file mode 100644 index 6034f441f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_133.png b/weather.openmeteo/resources/icons/graph/2160/scale150_133.png deleted file mode 100644 index bcdeaea21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_134.png b/weather.openmeteo/resources/icons/graph/2160/scale150_134.png deleted file mode 100644 index bcdeaea21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_135.png b/weather.openmeteo/resources/icons/graph/2160/scale150_135.png deleted file mode 100644 index a52df12c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_136.png b/weather.openmeteo/resources/icons/graph/2160/scale150_136.png deleted file mode 100644 index 18b9bd26c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_137.png b/weather.openmeteo/resources/icons/graph/2160/scale150_137.png deleted file mode 100644 index 18b9bd26c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_138.png b/weather.openmeteo/resources/icons/graph/2160/scale150_138.png deleted file mode 100644 index 76ef4d3dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_139.png b/weather.openmeteo/resources/icons/graph/2160/scale150_139.png deleted file mode 100644 index cecec279a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_14.png b/weather.openmeteo/resources/icons/graph/2160/scale150_14.png deleted file mode 100644 index a404390e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_140.png b/weather.openmeteo/resources/icons/graph/2160/scale150_140.png deleted file mode 100644 index cecec279a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_141.png b/weather.openmeteo/resources/icons/graph/2160/scale150_141.png deleted file mode 100644 index 280f0d92a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_142.png b/weather.openmeteo/resources/icons/graph/2160/scale150_142.png deleted file mode 100644 index eb230d062..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_143.png b/weather.openmeteo/resources/icons/graph/2160/scale150_143.png deleted file mode 100644 index eb230d062..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_144.png b/weather.openmeteo/resources/icons/graph/2160/scale150_144.png deleted file mode 100644 index d44d489e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_145.png b/weather.openmeteo/resources/icons/graph/2160/scale150_145.png deleted file mode 100644 index 13c79d9e8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_146.png b/weather.openmeteo/resources/icons/graph/2160/scale150_146.png deleted file mode 100644 index 9960abd58..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_147.png b/weather.openmeteo/resources/icons/graph/2160/scale150_147.png deleted file mode 100644 index 5ab7b7237..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_148.png b/weather.openmeteo/resources/icons/graph/2160/scale150_148.png deleted file mode 100644 index 3bfb682ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_149.png b/weather.openmeteo/resources/icons/graph/2160/scale150_149.png deleted file mode 100644 index bf358f0ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_15.png b/weather.openmeteo/resources/icons/graph/2160/scale150_15.png deleted file mode 100644 index 0842c77ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_150.png b/weather.openmeteo/resources/icons/graph/2160/scale150_150.png deleted file mode 100644 index dca2df037..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_16.png b/weather.openmeteo/resources/icons/graph/2160/scale150_16.png deleted file mode 100644 index e817c1c7d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_17.png b/weather.openmeteo/resources/icons/graph/2160/scale150_17.png deleted file mode 100644 index e817c1c7d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_18.png b/weather.openmeteo/resources/icons/graph/2160/scale150_18.png deleted file mode 100644 index 35b4be118..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_19.png b/weather.openmeteo/resources/icons/graph/2160/scale150_19.png deleted file mode 100644 index 0aa8c7d41..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_2.png b/weather.openmeteo/resources/icons/graph/2160/scale150_2.png deleted file mode 100644 index 55a6cf01b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_20.png b/weather.openmeteo/resources/icons/graph/2160/scale150_20.png deleted file mode 100644 index 0aa8c7d41..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_21.png b/weather.openmeteo/resources/icons/graph/2160/scale150_21.png deleted file mode 100644 index e937e564b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_22.png b/weather.openmeteo/resources/icons/graph/2160/scale150_22.png deleted file mode 100644 index 1ca3fdcaf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_23.png b/weather.openmeteo/resources/icons/graph/2160/scale150_23.png deleted file mode 100644 index 1ca3fdcaf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_24.png b/weather.openmeteo/resources/icons/graph/2160/scale150_24.png deleted file mode 100644 index 04ced3486..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_25.png b/weather.openmeteo/resources/icons/graph/2160/scale150_25.png deleted file mode 100644 index 48858d1a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_26.png b/weather.openmeteo/resources/icons/graph/2160/scale150_26.png deleted file mode 100644 index 48858d1a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_27.png b/weather.openmeteo/resources/icons/graph/2160/scale150_27.png deleted file mode 100644 index 182b9382f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_28.png b/weather.openmeteo/resources/icons/graph/2160/scale150_28.png deleted file mode 100644 index b98f479e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_29.png b/weather.openmeteo/resources/icons/graph/2160/scale150_29.png deleted file mode 100644 index b98f479e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_3.png b/weather.openmeteo/resources/icons/graph/2160/scale150_3.png deleted file mode 100644 index 1e7a8616a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_30.png b/weather.openmeteo/resources/icons/graph/2160/scale150_30.png deleted file mode 100644 index f629ed043..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_31.png b/weather.openmeteo/resources/icons/graph/2160/scale150_31.png deleted file mode 100644 index d3199a465..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_32.png b/weather.openmeteo/resources/icons/graph/2160/scale150_32.png deleted file mode 100644 index d3199a465..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_33.png b/weather.openmeteo/resources/icons/graph/2160/scale150_33.png deleted file mode 100644 index 4f283b0c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_34.png b/weather.openmeteo/resources/icons/graph/2160/scale150_34.png deleted file mode 100644 index 52e5d52a9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_35.png b/weather.openmeteo/resources/icons/graph/2160/scale150_35.png deleted file mode 100644 index 52e5d52a9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_36.png b/weather.openmeteo/resources/icons/graph/2160/scale150_36.png deleted file mode 100644 index f35e506fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_37.png b/weather.openmeteo/resources/icons/graph/2160/scale150_37.png deleted file mode 100644 index abb6ea974..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_38.png b/weather.openmeteo/resources/icons/graph/2160/scale150_38.png deleted file mode 100644 index abb6ea974..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_39.png b/weather.openmeteo/resources/icons/graph/2160/scale150_39.png deleted file mode 100644 index 1a521d60b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_4.png b/weather.openmeteo/resources/icons/graph/2160/scale150_4.png deleted file mode 100644 index 112e1f964..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_40.png b/weather.openmeteo/resources/icons/graph/2160/scale150_40.png deleted file mode 100644 index 4473ee770..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_41.png b/weather.openmeteo/resources/icons/graph/2160/scale150_41.png deleted file mode 100644 index 24c9c2bcc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_42.png b/weather.openmeteo/resources/icons/graph/2160/scale150_42.png deleted file mode 100644 index 99f7fad89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_43.png b/weather.openmeteo/resources/icons/graph/2160/scale150_43.png deleted file mode 100644 index f41d1aa88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_44.png b/weather.openmeteo/resources/icons/graph/2160/scale150_44.png deleted file mode 100644 index 0ec3946bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_45.png b/weather.openmeteo/resources/icons/graph/2160/scale150_45.png deleted file mode 100644 index 8b4ba427b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_46.png b/weather.openmeteo/resources/icons/graph/2160/scale150_46.png deleted file mode 100644 index a1f796925..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_47.png b/weather.openmeteo/resources/icons/graph/2160/scale150_47.png deleted file mode 100644 index 10b2abe83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_48.png b/weather.openmeteo/resources/icons/graph/2160/scale150_48.png deleted file mode 100644 index 6f5ae89f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_49.png b/weather.openmeteo/resources/icons/graph/2160/scale150_49.png deleted file mode 100644 index cb7b4a7c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_5.png b/weather.openmeteo/resources/icons/graph/2160/scale150_5.png deleted file mode 100644 index f757aeb48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_50.png b/weather.openmeteo/resources/icons/graph/2160/scale150_50.png deleted file mode 100644 index 390f56038..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_51.png b/weather.openmeteo/resources/icons/graph/2160/scale150_51.png deleted file mode 100644 index b93f68045..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_52.png b/weather.openmeteo/resources/icons/graph/2160/scale150_52.png deleted file mode 100644 index 10f47757f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_53.png b/weather.openmeteo/resources/icons/graph/2160/scale150_53.png deleted file mode 100644 index 209d2cd91..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_54.png b/weather.openmeteo/resources/icons/graph/2160/scale150_54.png deleted file mode 100644 index 13a07525a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_55.png b/weather.openmeteo/resources/icons/graph/2160/scale150_55.png deleted file mode 100644 index bbf366ef2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_56.png b/weather.openmeteo/resources/icons/graph/2160/scale150_56.png deleted file mode 100644 index a1e252cd2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_57.png b/weather.openmeteo/resources/icons/graph/2160/scale150_57.png deleted file mode 100644 index 1d7182025..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_58.png b/weather.openmeteo/resources/icons/graph/2160/scale150_58.png deleted file mode 100644 index c27a669c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_59.png b/weather.openmeteo/resources/icons/graph/2160/scale150_59.png deleted file mode 100644 index c27a669c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_6.png b/weather.openmeteo/resources/icons/graph/2160/scale150_6.png deleted file mode 100644 index b1ead32de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_60.png b/weather.openmeteo/resources/icons/graph/2160/scale150_60.png deleted file mode 100644 index 8c5506a80..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_61.png b/weather.openmeteo/resources/icons/graph/2160/scale150_61.png deleted file mode 100644 index 6b26ffd10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_62.png b/weather.openmeteo/resources/icons/graph/2160/scale150_62.png deleted file mode 100644 index 6b26ffd10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_63.png b/weather.openmeteo/resources/icons/graph/2160/scale150_63.png deleted file mode 100644 index f3f1b6052..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_64.png b/weather.openmeteo/resources/icons/graph/2160/scale150_64.png deleted file mode 100644 index 304c51b88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_65.png b/weather.openmeteo/resources/icons/graph/2160/scale150_65.png deleted file mode 100644 index 304c51b88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_66.png b/weather.openmeteo/resources/icons/graph/2160/scale150_66.png deleted file mode 100644 index 1564029e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_67.png b/weather.openmeteo/resources/icons/graph/2160/scale150_67.png deleted file mode 100644 index 34d3e8a76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_68.png b/weather.openmeteo/resources/icons/graph/2160/scale150_68.png deleted file mode 100644 index 34d3e8a76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_69.png b/weather.openmeteo/resources/icons/graph/2160/scale150_69.png deleted file mode 100644 index 61b90ffd6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_7.png b/weather.openmeteo/resources/icons/graph/2160/scale150_7.png deleted file mode 100644 index 8375a64b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_70.png b/weather.openmeteo/resources/icons/graph/2160/scale150_70.png deleted file mode 100644 index 83121f014..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_71.png b/weather.openmeteo/resources/icons/graph/2160/scale150_71.png deleted file mode 100644 index 83121f014..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_72.png b/weather.openmeteo/resources/icons/graph/2160/scale150_72.png deleted file mode 100644 index 12273be5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_73.png b/weather.openmeteo/resources/icons/graph/2160/scale150_73.png deleted file mode 100644 index 47874d34c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_74.png b/weather.openmeteo/resources/icons/graph/2160/scale150_74.png deleted file mode 100644 index 47874d34c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_75.png b/weather.openmeteo/resources/icons/graph/2160/scale150_75.png deleted file mode 100644 index d59d0b0ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_76.png b/weather.openmeteo/resources/icons/graph/2160/scale150_76.png deleted file mode 100644 index 58b6ca941..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_77.png b/weather.openmeteo/resources/icons/graph/2160/scale150_77.png deleted file mode 100644 index 58b6ca941..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_78.png b/weather.openmeteo/resources/icons/graph/2160/scale150_78.png deleted file mode 100644 index b8f0cf6d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_79.png b/weather.openmeteo/resources/icons/graph/2160/scale150_79.png deleted file mode 100644 index d792a6260..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_8.png b/weather.openmeteo/resources/icons/graph/2160/scale150_8.png deleted file mode 100644 index 8375a64b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_80.png b/weather.openmeteo/resources/icons/graph/2160/scale150_80.png deleted file mode 100644 index d792a6260..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_81.png b/weather.openmeteo/resources/icons/graph/2160/scale150_81.png deleted file mode 100644 index e94990ff6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_82.png b/weather.openmeteo/resources/icons/graph/2160/scale150_82.png deleted file mode 100644 index d221f0c02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_83.png b/weather.openmeteo/resources/icons/graph/2160/scale150_83.png deleted file mode 100644 index d221f0c02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_84.png b/weather.openmeteo/resources/icons/graph/2160/scale150_84.png deleted file mode 100644 index 15331b9b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_85.png b/weather.openmeteo/resources/icons/graph/2160/scale150_85.png deleted file mode 100644 index f9730060b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_86.png b/weather.openmeteo/resources/icons/graph/2160/scale150_86.png deleted file mode 100644 index f9730060b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_87.png b/weather.openmeteo/resources/icons/graph/2160/scale150_87.png deleted file mode 100644 index d0f9d3287..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_88.png b/weather.openmeteo/resources/icons/graph/2160/scale150_88.png deleted file mode 100644 index 04ed0a45c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_89.png b/weather.openmeteo/resources/icons/graph/2160/scale150_89.png deleted file mode 100644 index 04ed0a45c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_9.png b/weather.openmeteo/resources/icons/graph/2160/scale150_9.png deleted file mode 100644 index 99f894d4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_90.png b/weather.openmeteo/resources/icons/graph/2160/scale150_90.png deleted file mode 100644 index 5170dfec7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_91.png b/weather.openmeteo/resources/icons/graph/2160/scale150_91.png deleted file mode 100644 index 017ed7840..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_92.png b/weather.openmeteo/resources/icons/graph/2160/scale150_92.png deleted file mode 100644 index 16e5ac10a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_93.png b/weather.openmeteo/resources/icons/graph/2160/scale150_93.png deleted file mode 100644 index 6d21848a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_94.png b/weather.openmeteo/resources/icons/graph/2160/scale150_94.png deleted file mode 100644 index 0f1eb66c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_95.png b/weather.openmeteo/resources/icons/graph/2160/scale150_95.png deleted file mode 100644 index 98d61318a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_96.png b/weather.openmeteo/resources/icons/graph/2160/scale150_96.png deleted file mode 100644 index c56ef015d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_97.png b/weather.openmeteo/resources/icons/graph/2160/scale150_97.png deleted file mode 100644 index 784597a1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_98.png b/weather.openmeteo/resources/icons/graph/2160/scale150_98.png deleted file mode 100644 index 20c196300..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale150_99.png b/weather.openmeteo/resources/icons/graph/2160/scale150_99.png deleted file mode 100644 index 6cb3425cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale150_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.0.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.0.png deleted file mode 100644 index 5e0b2079d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.1.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.1.png deleted file mode 100644 index 2dd25ec21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.2.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.2.png deleted file mode 100644 index f209f0bc0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.3.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.3.png deleted file mode 100644 index 8f0a41080..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.4.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.4.png deleted file mode 100644 index b989e5f95..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.5.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.5.png deleted file mode 100644 index ec133adda..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.6.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.6.png deleted file mode 100644 index 1a6e9b5db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.7.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.7.png deleted file mode 100644 index c7f251c69..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.8.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.8.png deleted file mode 100644 index 54245359d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_0.9.png b/weather.openmeteo/resources/icons/graph/2160/scale1_0.9.png deleted file mode 100644 index 1dbb2fc28..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale1_1.0.png b/weather.openmeteo/resources/icons/graph/2160/scale1_1.0.png deleted file mode 100644 index dc7d5f0b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_0.png b/weather.openmeteo/resources/icons/graph/2160/scale200_0.png deleted file mode 100644 index 29a9bf6f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_1.png b/weather.openmeteo/resources/icons/graph/2160/scale200_1.png deleted file mode 100644 index 855537b72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_10.png b/weather.openmeteo/resources/icons/graph/2160/scale200_10.png deleted file mode 100644 index 2cb7ff698..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_100.png b/weather.openmeteo/resources/icons/graph/2160/scale200_100.png deleted file mode 100644 index 5317ee9b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_101.png b/weather.openmeteo/resources/icons/graph/2160/scale200_101.png deleted file mode 100644 index 5317ee9b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_102.png b/weather.openmeteo/resources/icons/graph/2160/scale200_102.png deleted file mode 100644 index 5b8bbbaef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_103.png b/weather.openmeteo/resources/icons/graph/2160/scale200_103.png deleted file mode 100644 index ae8e7838d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_104.png b/weather.openmeteo/resources/icons/graph/2160/scale200_104.png deleted file mode 100644 index ae8e7838d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_105.png b/weather.openmeteo/resources/icons/graph/2160/scale200_105.png deleted file mode 100644 index ae8e7838d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_106.png b/weather.openmeteo/resources/icons/graph/2160/scale200_106.png deleted file mode 100644 index 413c27309..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_107.png b/weather.openmeteo/resources/icons/graph/2160/scale200_107.png deleted file mode 100644 index 95741dfad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_108.png b/weather.openmeteo/resources/icons/graph/2160/scale200_108.png deleted file mode 100644 index 95741dfad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_109.png b/weather.openmeteo/resources/icons/graph/2160/scale200_109.png deleted file mode 100644 index 95741dfad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_11.png b/weather.openmeteo/resources/icons/graph/2160/scale200_11.png deleted file mode 100644 index 5b16b1f41..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_110.png b/weather.openmeteo/resources/icons/graph/2160/scale200_110.png deleted file mode 100644 index aaf805eaf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_111.png b/weather.openmeteo/resources/icons/graph/2160/scale200_111.png deleted file mode 100644 index 6f9fbbc22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_112.png b/weather.openmeteo/resources/icons/graph/2160/scale200_112.png deleted file mode 100644 index 6f9fbbc22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_113.png b/weather.openmeteo/resources/icons/graph/2160/scale200_113.png deleted file mode 100644 index 8252ecd27..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_114.png b/weather.openmeteo/resources/icons/graph/2160/scale200_114.png deleted file mode 100644 index b9a3596ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_115.png b/weather.openmeteo/resources/icons/graph/2160/scale200_115.png deleted file mode 100644 index 74c2f7951..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_116.png b/weather.openmeteo/resources/icons/graph/2160/scale200_116.png deleted file mode 100644 index 54547bbfa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_117.png b/weather.openmeteo/resources/icons/graph/2160/scale200_117.png deleted file mode 100644 index 54547bbfa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_118.png b/weather.openmeteo/resources/icons/graph/2160/scale200_118.png deleted file mode 100644 index e6ee442f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_119.png b/weather.openmeteo/resources/icons/graph/2160/scale200_119.png deleted file mode 100644 index a0e40cfef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_12.png b/weather.openmeteo/resources/icons/graph/2160/scale200_12.png deleted file mode 100644 index 5b16b1f41..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_120.png b/weather.openmeteo/resources/icons/graph/2160/scale200_120.png deleted file mode 100644 index a0e40cfef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_121.png b/weather.openmeteo/resources/icons/graph/2160/scale200_121.png deleted file mode 100644 index a0e40cfef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_122.png b/weather.openmeteo/resources/icons/graph/2160/scale200_122.png deleted file mode 100644 index 3f59ab4e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_123.png b/weather.openmeteo/resources/icons/graph/2160/scale200_123.png deleted file mode 100644 index 5c7e1fd00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_124.png b/weather.openmeteo/resources/icons/graph/2160/scale200_124.png deleted file mode 100644 index 5c7e1fd00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_125.png b/weather.openmeteo/resources/icons/graph/2160/scale200_125.png deleted file mode 100644 index 5c7e1fd00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_126.png b/weather.openmeteo/resources/icons/graph/2160/scale200_126.png deleted file mode 100644 index 16fa3754f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_127.png b/weather.openmeteo/resources/icons/graph/2160/scale200_127.png deleted file mode 100644 index 0d92788e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_128.png b/weather.openmeteo/resources/icons/graph/2160/scale200_128.png deleted file mode 100644 index 0d92788e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_129.png b/weather.openmeteo/resources/icons/graph/2160/scale200_129.png deleted file mode 100644 index bd5065b32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_13.png b/weather.openmeteo/resources/icons/graph/2160/scale200_13.png deleted file mode 100644 index 5b16b1f41..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_130.png b/weather.openmeteo/resources/icons/graph/2160/scale200_130.png deleted file mode 100644 index ac039d986..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_131.png b/weather.openmeteo/resources/icons/graph/2160/scale200_131.png deleted file mode 100644 index a3fb036c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_132.png b/weather.openmeteo/resources/icons/graph/2160/scale200_132.png deleted file mode 100644 index ae69e144f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_133.png b/weather.openmeteo/resources/icons/graph/2160/scale200_133.png deleted file mode 100644 index ae69e144f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_134.png b/weather.openmeteo/resources/icons/graph/2160/scale200_134.png deleted file mode 100644 index 859cbbc5d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_135.png b/weather.openmeteo/resources/icons/graph/2160/scale200_135.png deleted file mode 100644 index e7305e16f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_136.png b/weather.openmeteo/resources/icons/graph/2160/scale200_136.png deleted file mode 100644 index e7305e16f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_137.png b/weather.openmeteo/resources/icons/graph/2160/scale200_137.png deleted file mode 100644 index e7305e16f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_138.png b/weather.openmeteo/resources/icons/graph/2160/scale200_138.png deleted file mode 100644 index 19265f504..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_139.png b/weather.openmeteo/resources/icons/graph/2160/scale200_139.png deleted file mode 100644 index ce6994090..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_14.png b/weather.openmeteo/resources/icons/graph/2160/scale200_14.png deleted file mode 100644 index bdd6baea9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_140.png b/weather.openmeteo/resources/icons/graph/2160/scale200_140.png deleted file mode 100644 index ce6994090..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_141.png b/weather.openmeteo/resources/icons/graph/2160/scale200_141.png deleted file mode 100644 index ce6994090..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_142.png b/weather.openmeteo/resources/icons/graph/2160/scale200_142.png deleted file mode 100644 index 706a46b50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_143.png b/weather.openmeteo/resources/icons/graph/2160/scale200_143.png deleted file mode 100644 index ffabba008..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_144.png b/weather.openmeteo/resources/icons/graph/2160/scale200_144.png deleted file mode 100644 index ffabba008..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_145.png b/weather.openmeteo/resources/icons/graph/2160/scale200_145.png deleted file mode 100644 index 55b155298..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_146.png b/weather.openmeteo/resources/icons/graph/2160/scale200_146.png deleted file mode 100644 index 7ef7995d6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_147.png b/weather.openmeteo/resources/icons/graph/2160/scale200_147.png deleted file mode 100644 index 1e85f2d46..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_148.png b/weather.openmeteo/resources/icons/graph/2160/scale200_148.png deleted file mode 100644 index 5034f6c4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_149.png b/weather.openmeteo/resources/icons/graph/2160/scale200_149.png deleted file mode 100644 index 5034f6c4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_15.png b/weather.openmeteo/resources/icons/graph/2160/scale200_15.png deleted file mode 100644 index 5e7ac4084..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_150.png b/weather.openmeteo/resources/icons/graph/2160/scale200_150.png deleted file mode 100644 index 9606970e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_151.png b/weather.openmeteo/resources/icons/graph/2160/scale200_151.png deleted file mode 100644 index 7872143ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_151.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_152.png b/weather.openmeteo/resources/icons/graph/2160/scale200_152.png deleted file mode 100644 index 7872143ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_152.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_153.png b/weather.openmeteo/resources/icons/graph/2160/scale200_153.png deleted file mode 100644 index 7872143ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_153.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_154.png b/weather.openmeteo/resources/icons/graph/2160/scale200_154.png deleted file mode 100644 index b2939cb77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_154.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_155.png b/weather.openmeteo/resources/icons/graph/2160/scale200_155.png deleted file mode 100644 index 1eb5fd7eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_155.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_156.png b/weather.openmeteo/resources/icons/graph/2160/scale200_156.png deleted file mode 100644 index 1eb5fd7eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_156.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_157.png b/weather.openmeteo/resources/icons/graph/2160/scale200_157.png deleted file mode 100644 index 1eb5fd7eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_157.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_158.png b/weather.openmeteo/resources/icons/graph/2160/scale200_158.png deleted file mode 100644 index 891038069..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_158.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_159.png b/weather.openmeteo/resources/icons/graph/2160/scale200_159.png deleted file mode 100644 index fcbc13e30..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_159.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_16.png b/weather.openmeteo/resources/icons/graph/2160/scale200_16.png deleted file mode 100644 index 5e7ac4084..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_160.png b/weather.openmeteo/resources/icons/graph/2160/scale200_160.png deleted file mode 100644 index fcbc13e30..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_160.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_161.png b/weather.openmeteo/resources/icons/graph/2160/scale200_161.png deleted file mode 100644 index d689955ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_161.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_162.png b/weather.openmeteo/resources/icons/graph/2160/scale200_162.png deleted file mode 100644 index 30d579526..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_162.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_163.png b/weather.openmeteo/resources/icons/graph/2160/scale200_163.png deleted file mode 100644 index 5f4753fc5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_163.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_164.png b/weather.openmeteo/resources/icons/graph/2160/scale200_164.png deleted file mode 100644 index 70ce0d985..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_164.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_165.png b/weather.openmeteo/resources/icons/graph/2160/scale200_165.png deleted file mode 100644 index 70ce0d985..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_165.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_166.png b/weather.openmeteo/resources/icons/graph/2160/scale200_166.png deleted file mode 100644 index 3da543a03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_166.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_167.png b/weather.openmeteo/resources/icons/graph/2160/scale200_167.png deleted file mode 100644 index 86a8cad87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_167.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_168.png b/weather.openmeteo/resources/icons/graph/2160/scale200_168.png deleted file mode 100644 index 86a8cad87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_168.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_169.png b/weather.openmeteo/resources/icons/graph/2160/scale200_169.png deleted file mode 100644 index 86a8cad87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_169.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_17.png b/weather.openmeteo/resources/icons/graph/2160/scale200_17.png deleted file mode 100644 index f592a2799..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_170.png b/weather.openmeteo/resources/icons/graph/2160/scale200_170.png deleted file mode 100644 index c634f993c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_170.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_171.png b/weather.openmeteo/resources/icons/graph/2160/scale200_171.png deleted file mode 100644 index 18d595167..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_171.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_172.png b/weather.openmeteo/resources/icons/graph/2160/scale200_172.png deleted file mode 100644 index 18d595167..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_172.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_173.png b/weather.openmeteo/resources/icons/graph/2160/scale200_173.png deleted file mode 100644 index 18d595167..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_173.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_174.png b/weather.openmeteo/resources/icons/graph/2160/scale200_174.png deleted file mode 100644 index 47bbd9f0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_174.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_175.png b/weather.openmeteo/resources/icons/graph/2160/scale200_175.png deleted file mode 100644 index ef1336299..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_175.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_176.png b/weather.openmeteo/resources/icons/graph/2160/scale200_176.png deleted file mode 100644 index ef1336299..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_176.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_177.png b/weather.openmeteo/resources/icons/graph/2160/scale200_177.png deleted file mode 100644 index 1e31ab613..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_177.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_178.png b/weather.openmeteo/resources/icons/graph/2160/scale200_178.png deleted file mode 100644 index 0cf387aa8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_178.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_179.png b/weather.openmeteo/resources/icons/graph/2160/scale200_179.png deleted file mode 100644 index d696b5dd1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_179.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_18.png b/weather.openmeteo/resources/icons/graph/2160/scale200_18.png deleted file mode 100644 index b798cd688..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_180.png b/weather.openmeteo/resources/icons/graph/2160/scale200_180.png deleted file mode 100644 index 09e292785..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_180.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_181.png b/weather.openmeteo/resources/icons/graph/2160/scale200_181.png deleted file mode 100644 index 09e292785..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_181.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_182.png b/weather.openmeteo/resources/icons/graph/2160/scale200_182.png deleted file mode 100644 index 1ede99a28..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_182.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_183.png b/weather.openmeteo/resources/icons/graph/2160/scale200_183.png deleted file mode 100644 index 4febb7ab9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_183.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_184.png b/weather.openmeteo/resources/icons/graph/2160/scale200_184.png deleted file mode 100644 index 4febb7ab9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_184.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_185.png b/weather.openmeteo/resources/icons/graph/2160/scale200_185.png deleted file mode 100644 index 4febb7ab9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_185.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_186.png b/weather.openmeteo/resources/icons/graph/2160/scale200_186.png deleted file mode 100644 index 50626c7af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_186.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_187.png b/weather.openmeteo/resources/icons/graph/2160/scale200_187.png deleted file mode 100644 index b7ba61374..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_187.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_188.png b/weather.openmeteo/resources/icons/graph/2160/scale200_188.png deleted file mode 100644 index b7ba61374..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_188.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_189.png b/weather.openmeteo/resources/icons/graph/2160/scale200_189.png deleted file mode 100644 index b7ba61374..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_189.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_19.png b/weather.openmeteo/resources/icons/graph/2160/scale200_19.png deleted file mode 100644 index 24144b379..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_190.png b/weather.openmeteo/resources/icons/graph/2160/scale200_190.png deleted file mode 100644 index 05ea4d378..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_190.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_191.png b/weather.openmeteo/resources/icons/graph/2160/scale200_191.png deleted file mode 100644 index 50104811a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_191.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_192.png b/weather.openmeteo/resources/icons/graph/2160/scale200_192.png deleted file mode 100644 index 50104811a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_192.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_193.png b/weather.openmeteo/resources/icons/graph/2160/scale200_193.png deleted file mode 100644 index 943de04e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_193.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_194.png b/weather.openmeteo/resources/icons/graph/2160/scale200_194.png deleted file mode 100644 index f64fef3fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_194.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_195.png b/weather.openmeteo/resources/icons/graph/2160/scale200_195.png deleted file mode 100644 index 75c2e5b63..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_195.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_196.png b/weather.openmeteo/resources/icons/graph/2160/scale200_196.png deleted file mode 100644 index d3057b52a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_196.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_197.png b/weather.openmeteo/resources/icons/graph/2160/scale200_197.png deleted file mode 100644 index d3057b52a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_197.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_198.png b/weather.openmeteo/resources/icons/graph/2160/scale200_198.png deleted file mode 100644 index 1ba76e751..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_198.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_199.png b/weather.openmeteo/resources/icons/graph/2160/scale200_199.png deleted file mode 100644 index f46c53063..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_199.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_2.png b/weather.openmeteo/resources/icons/graph/2160/scale200_2.png deleted file mode 100644 index 281c1311e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_20.png b/weather.openmeteo/resources/icons/graph/2160/scale200_20.png deleted file mode 100644 index dee0a7154..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_200.png b/weather.openmeteo/resources/icons/graph/2160/scale200_200.png deleted file mode 100644 index f46c53063..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_200.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_21.png b/weather.openmeteo/resources/icons/graph/2160/scale200_21.png deleted file mode 100644 index dee0a7154..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_22.png b/weather.openmeteo/resources/icons/graph/2160/scale200_22.png deleted file mode 100644 index 5383e4c7a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_23.png b/weather.openmeteo/resources/icons/graph/2160/scale200_23.png deleted file mode 100644 index d8498ff58..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_24.png b/weather.openmeteo/resources/icons/graph/2160/scale200_24.png deleted file mode 100644 index d8498ff58..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_25.png b/weather.openmeteo/resources/icons/graph/2160/scale200_25.png deleted file mode 100644 index d8498ff58..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_26.png b/weather.openmeteo/resources/icons/graph/2160/scale200_26.png deleted file mode 100644 index 38d0b2657..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_27.png b/weather.openmeteo/resources/icons/graph/2160/scale200_27.png deleted file mode 100644 index 0e82078a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_28.png b/weather.openmeteo/resources/icons/graph/2160/scale200_28.png deleted file mode 100644 index 0e82078a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_29.png b/weather.openmeteo/resources/icons/graph/2160/scale200_29.png deleted file mode 100644 index 0e82078a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_3.png b/weather.openmeteo/resources/icons/graph/2160/scale200_3.png deleted file mode 100644 index 52bdd7f7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_30.png b/weather.openmeteo/resources/icons/graph/2160/scale200_30.png deleted file mode 100644 index 8275cd8c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_31.png b/weather.openmeteo/resources/icons/graph/2160/scale200_31.png deleted file mode 100644 index c6c6030d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_32.png b/weather.openmeteo/resources/icons/graph/2160/scale200_32.png deleted file mode 100644 index c6c6030d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_33.png b/weather.openmeteo/resources/icons/graph/2160/scale200_33.png deleted file mode 100644 index 68b084e5b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_34.png b/weather.openmeteo/resources/icons/graph/2160/scale200_34.png deleted file mode 100644 index 3ce2e1eef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_35.png b/weather.openmeteo/resources/icons/graph/2160/scale200_35.png deleted file mode 100644 index 022d4d00e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_36.png b/weather.openmeteo/resources/icons/graph/2160/scale200_36.png deleted file mode 100644 index 08f885507..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_37.png b/weather.openmeteo/resources/icons/graph/2160/scale200_37.png deleted file mode 100644 index 08f885507..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_38.png b/weather.openmeteo/resources/icons/graph/2160/scale200_38.png deleted file mode 100644 index 1805b37fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_39.png b/weather.openmeteo/resources/icons/graph/2160/scale200_39.png deleted file mode 100644 index a0de8a3c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_4.png b/weather.openmeteo/resources/icons/graph/2160/scale200_4.png deleted file mode 100644 index 69106bcbd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_40.png b/weather.openmeteo/resources/icons/graph/2160/scale200_40.png deleted file mode 100644 index a0de8a3c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_41.png b/weather.openmeteo/resources/icons/graph/2160/scale200_41.png deleted file mode 100644 index a0de8a3c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_42.png b/weather.openmeteo/resources/icons/graph/2160/scale200_42.png deleted file mode 100644 index 7c5774b9d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_43.png b/weather.openmeteo/resources/icons/graph/2160/scale200_43.png deleted file mode 100644 index 6df54fd07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_44.png b/weather.openmeteo/resources/icons/graph/2160/scale200_44.png deleted file mode 100644 index 6df54fd07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_45.png b/weather.openmeteo/resources/icons/graph/2160/scale200_45.png deleted file mode 100644 index 6df54fd07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_46.png b/weather.openmeteo/resources/icons/graph/2160/scale200_46.png deleted file mode 100644 index 458c42549..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_47.png b/weather.openmeteo/resources/icons/graph/2160/scale200_47.png deleted file mode 100644 index 93c68cb67..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_48.png b/weather.openmeteo/resources/icons/graph/2160/scale200_48.png deleted file mode 100644 index 93c68cb67..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_49.png b/weather.openmeteo/resources/icons/graph/2160/scale200_49.png deleted file mode 100644 index 17de56080..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_5.png b/weather.openmeteo/resources/icons/graph/2160/scale200_5.png deleted file mode 100644 index 69106bcbd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_50.png b/weather.openmeteo/resources/icons/graph/2160/scale200_50.png deleted file mode 100644 index b77577340..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_51.png b/weather.openmeteo/resources/icons/graph/2160/scale200_51.png deleted file mode 100644 index 6da286c3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_52.png b/weather.openmeteo/resources/icons/graph/2160/scale200_52.png deleted file mode 100644 index 766659ca9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_53.png b/weather.openmeteo/resources/icons/graph/2160/scale200_53.png deleted file mode 100644 index 766659ca9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_54.png b/weather.openmeteo/resources/icons/graph/2160/scale200_54.png deleted file mode 100644 index 1bc419a2b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_55.png b/weather.openmeteo/resources/icons/graph/2160/scale200_55.png deleted file mode 100644 index 5f02f8a93..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_56.png b/weather.openmeteo/resources/icons/graph/2160/scale200_56.png deleted file mode 100644 index 5f02f8a93..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_57.png b/weather.openmeteo/resources/icons/graph/2160/scale200_57.png deleted file mode 100644 index 5f02f8a93..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_58.png b/weather.openmeteo/resources/icons/graph/2160/scale200_58.png deleted file mode 100644 index bfacf0160..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_59.png b/weather.openmeteo/resources/icons/graph/2160/scale200_59.png deleted file mode 100644 index b51a6bedf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_6.png b/weather.openmeteo/resources/icons/graph/2160/scale200_6.png deleted file mode 100644 index 58fe9e5b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_60.png b/weather.openmeteo/resources/icons/graph/2160/scale200_60.png deleted file mode 100644 index b51a6bedf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_61.png b/weather.openmeteo/resources/icons/graph/2160/scale200_61.png deleted file mode 100644 index b51a6bedf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_62.png b/weather.openmeteo/resources/icons/graph/2160/scale200_62.png deleted file mode 100644 index d34dac04d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_63.png b/weather.openmeteo/resources/icons/graph/2160/scale200_63.png deleted file mode 100644 index c34b2445a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_64.png b/weather.openmeteo/resources/icons/graph/2160/scale200_64.png deleted file mode 100644 index c34b2445a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_65.png b/weather.openmeteo/resources/icons/graph/2160/scale200_65.png deleted file mode 100644 index 1b9529e30..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_66.png b/weather.openmeteo/resources/icons/graph/2160/scale200_66.png deleted file mode 100644 index f93197c76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_67.png b/weather.openmeteo/resources/icons/graph/2160/scale200_67.png deleted file mode 100644 index 3983111a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_68.png b/weather.openmeteo/resources/icons/graph/2160/scale200_68.png deleted file mode 100644 index ca4322926..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_69.png b/weather.openmeteo/resources/icons/graph/2160/scale200_69.png deleted file mode 100644 index ca4322926..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_7.png b/weather.openmeteo/resources/icons/graph/2160/scale200_7.png deleted file mode 100644 index 1db6fece9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_70.png b/weather.openmeteo/resources/icons/graph/2160/scale200_70.png deleted file mode 100644 index cdd88fc67..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_71.png b/weather.openmeteo/resources/icons/graph/2160/scale200_71.png deleted file mode 100644 index d4638c18e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_72.png b/weather.openmeteo/resources/icons/graph/2160/scale200_72.png deleted file mode 100644 index d4638c18e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_73.png b/weather.openmeteo/resources/icons/graph/2160/scale200_73.png deleted file mode 100644 index d4638c18e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_74.png b/weather.openmeteo/resources/icons/graph/2160/scale200_74.png deleted file mode 100644 index 9313537b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_75.png b/weather.openmeteo/resources/icons/graph/2160/scale200_75.png deleted file mode 100644 index 8f29b6733..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_76.png b/weather.openmeteo/resources/icons/graph/2160/scale200_76.png deleted file mode 100644 index 8f29b6733..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_77.png b/weather.openmeteo/resources/icons/graph/2160/scale200_77.png deleted file mode 100644 index 8f29b6733..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_78.png b/weather.openmeteo/resources/icons/graph/2160/scale200_78.png deleted file mode 100644 index 176c75230..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_79.png b/weather.openmeteo/resources/icons/graph/2160/scale200_79.png deleted file mode 100644 index ba8f2d3c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_8.png b/weather.openmeteo/resources/icons/graph/2160/scale200_8.png deleted file mode 100644 index 1db6fece9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_80.png b/weather.openmeteo/resources/icons/graph/2160/scale200_80.png deleted file mode 100644 index ba8f2d3c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_81.png b/weather.openmeteo/resources/icons/graph/2160/scale200_81.png deleted file mode 100644 index 9025f23f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_82.png b/weather.openmeteo/resources/icons/graph/2160/scale200_82.png deleted file mode 100644 index e42c72df6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_83.png b/weather.openmeteo/resources/icons/graph/2160/scale200_83.png deleted file mode 100644 index bb3a792cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_84.png b/weather.openmeteo/resources/icons/graph/2160/scale200_84.png deleted file mode 100644 index 3ad6b1839..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_85.png b/weather.openmeteo/resources/icons/graph/2160/scale200_85.png deleted file mode 100644 index 3ad6b1839..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_86.png b/weather.openmeteo/resources/icons/graph/2160/scale200_86.png deleted file mode 100644 index 25e613689..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_87.png b/weather.openmeteo/resources/icons/graph/2160/scale200_87.png deleted file mode 100644 index 14733c1d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_88.png b/weather.openmeteo/resources/icons/graph/2160/scale200_88.png deleted file mode 100644 index 14733c1d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_89.png b/weather.openmeteo/resources/icons/graph/2160/scale200_89.png deleted file mode 100644 index 14733c1d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_9.png b/weather.openmeteo/resources/icons/graph/2160/scale200_9.png deleted file mode 100644 index 1db6fece9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_90.png b/weather.openmeteo/resources/icons/graph/2160/scale200_90.png deleted file mode 100644 index dbcefc8cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_91.png b/weather.openmeteo/resources/icons/graph/2160/scale200_91.png deleted file mode 100644 index 938df0c54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_92.png b/weather.openmeteo/resources/icons/graph/2160/scale200_92.png deleted file mode 100644 index 938df0c54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_93.png b/weather.openmeteo/resources/icons/graph/2160/scale200_93.png deleted file mode 100644 index 938df0c54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_94.png b/weather.openmeteo/resources/icons/graph/2160/scale200_94.png deleted file mode 100644 index 46747d0cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_95.png b/weather.openmeteo/resources/icons/graph/2160/scale200_95.png deleted file mode 100644 index bd2b962e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_96.png b/weather.openmeteo/resources/icons/graph/2160/scale200_96.png deleted file mode 100644 index bd2b962e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_97.png b/weather.openmeteo/resources/icons/graph/2160/scale200_97.png deleted file mode 100644 index edeb0d99c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_98.png b/weather.openmeteo/resources/icons/graph/2160/scale200_98.png deleted file mode 100644 index 1fbe9616a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale200_99.png b/weather.openmeteo/resources/icons/graph/2160/scale200_99.png deleted file mode 100644 index d33a457cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale200_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_0.png b/weather.openmeteo/resources/icons/graph/2160/scale20_0.png deleted file mode 100644 index 12e7809dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_1.png b/weather.openmeteo/resources/icons/graph/2160/scale20_1.png deleted file mode 100644 index b1a2b5b52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_10.png b/weather.openmeteo/resources/icons/graph/2160/scale20_10.png deleted file mode 100644 index f56d27f50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_11.png b/weather.openmeteo/resources/icons/graph/2160/scale20_11.png deleted file mode 100644 index 8101f73c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_12.png b/weather.openmeteo/resources/icons/graph/2160/scale20_12.png deleted file mode 100644 index 883b47a3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_13.png b/weather.openmeteo/resources/icons/graph/2160/scale20_13.png deleted file mode 100644 index 084e0e01d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_14.png b/weather.openmeteo/resources/icons/graph/2160/scale20_14.png deleted file mode 100644 index afc9d9bcd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_15.png b/weather.openmeteo/resources/icons/graph/2160/scale20_15.png deleted file mode 100644 index cbe338ab8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_16.png b/weather.openmeteo/resources/icons/graph/2160/scale20_16.png deleted file mode 100644 index ee11aa28a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_17.png b/weather.openmeteo/resources/icons/graph/2160/scale20_17.png deleted file mode 100644 index e156afa89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_18.png b/weather.openmeteo/resources/icons/graph/2160/scale20_18.png deleted file mode 100644 index 6b60c320f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_19.png b/weather.openmeteo/resources/icons/graph/2160/scale20_19.png deleted file mode 100644 index 35317b592..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_2.png b/weather.openmeteo/resources/icons/graph/2160/scale20_2.png deleted file mode 100644 index b91a82ef2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_20.png b/weather.openmeteo/resources/icons/graph/2160/scale20_20.png deleted file mode 100644 index 3f356fd71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_3.png b/weather.openmeteo/resources/icons/graph/2160/scale20_3.png deleted file mode 100644 index 6884c0603..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_4.png b/weather.openmeteo/resources/icons/graph/2160/scale20_4.png deleted file mode 100644 index 97dedd72e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_5.png b/weather.openmeteo/resources/icons/graph/2160/scale20_5.png deleted file mode 100644 index 84edaa23f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_6.png b/weather.openmeteo/resources/icons/graph/2160/scale20_6.png deleted file mode 100644 index 4ac0fca5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_7.png b/weather.openmeteo/resources/icons/graph/2160/scale20_7.png deleted file mode 100644 index ddc73b158..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_8.png b/weather.openmeteo/resources/icons/graph/2160/scale20_8.png deleted file mode 100644 index a94535643..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale20_9.png b/weather.openmeteo/resources/icons/graph/2160/scale20_9.png deleted file mode 100644 index 1f15c7d52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_0.png b/weather.openmeteo/resources/icons/graph/2160/scale30_0.png deleted file mode 100644 index 9cf3d1f25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_1.png b/weather.openmeteo/resources/icons/graph/2160/scale30_1.png deleted file mode 100644 index 8fab2d3d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_10.png b/weather.openmeteo/resources/icons/graph/2160/scale30_10.png deleted file mode 100644 index 476bf71d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_11.png b/weather.openmeteo/resources/icons/graph/2160/scale30_11.png deleted file mode 100644 index f55047aa7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_12.png b/weather.openmeteo/resources/icons/graph/2160/scale30_12.png deleted file mode 100644 index efcd8a1f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_13.png b/weather.openmeteo/resources/icons/graph/2160/scale30_13.png deleted file mode 100644 index 3d3d28f54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_14.png b/weather.openmeteo/resources/icons/graph/2160/scale30_14.png deleted file mode 100644 index d73d8154f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_15.png b/weather.openmeteo/resources/icons/graph/2160/scale30_15.png deleted file mode 100644 index c10b27b94..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_16.png b/weather.openmeteo/resources/icons/graph/2160/scale30_16.png deleted file mode 100644 index 672cfdb48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_17.png b/weather.openmeteo/resources/icons/graph/2160/scale30_17.png deleted file mode 100644 index f5f9fc2c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_18.png b/weather.openmeteo/resources/icons/graph/2160/scale30_18.png deleted file mode 100644 index 749881bfe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_19.png b/weather.openmeteo/resources/icons/graph/2160/scale30_19.png deleted file mode 100644 index 7e854907e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_2.png b/weather.openmeteo/resources/icons/graph/2160/scale30_2.png deleted file mode 100644 index 593b9df25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_20.png b/weather.openmeteo/resources/icons/graph/2160/scale30_20.png deleted file mode 100644 index ee15009c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_21.png b/weather.openmeteo/resources/icons/graph/2160/scale30_21.png deleted file mode 100644 index 6a28b124b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_22.png b/weather.openmeteo/resources/icons/graph/2160/scale30_22.png deleted file mode 100644 index 143667115..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_23.png b/weather.openmeteo/resources/icons/graph/2160/scale30_23.png deleted file mode 100644 index 23c687ebe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_24.png b/weather.openmeteo/resources/icons/graph/2160/scale30_24.png deleted file mode 100644 index 46797d3ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_25.png b/weather.openmeteo/resources/icons/graph/2160/scale30_25.png deleted file mode 100644 index 4682d4212..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_26.png b/weather.openmeteo/resources/icons/graph/2160/scale30_26.png deleted file mode 100644 index ebf97f9c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_27.png b/weather.openmeteo/resources/icons/graph/2160/scale30_27.png deleted file mode 100644 index e11c67d91..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_28.png b/weather.openmeteo/resources/icons/graph/2160/scale30_28.png deleted file mode 100644 index 47a94f88c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_29.png b/weather.openmeteo/resources/icons/graph/2160/scale30_29.png deleted file mode 100644 index d49d1b93d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_3.png b/weather.openmeteo/resources/icons/graph/2160/scale30_3.png deleted file mode 100644 index 5a0ffd47b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_30.png b/weather.openmeteo/resources/icons/graph/2160/scale30_30.png deleted file mode 100644 index 1edcda9bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_4.png b/weather.openmeteo/resources/icons/graph/2160/scale30_4.png deleted file mode 100644 index 55b8cdafe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_5.png b/weather.openmeteo/resources/icons/graph/2160/scale30_5.png deleted file mode 100644 index dd8bb2ec0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_6.png b/weather.openmeteo/resources/icons/graph/2160/scale30_6.png deleted file mode 100644 index 405621dbc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_7.png b/weather.openmeteo/resources/icons/graph/2160/scale30_7.png deleted file mode 100644 index 9a20986d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_8.png b/weather.openmeteo/resources/icons/graph/2160/scale30_8.png deleted file mode 100644 index ab8e795b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale30_9.png b/weather.openmeteo/resources/icons/graph/2160/scale30_9.png deleted file mode 100644 index 4dfcabc3d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_0.png b/weather.openmeteo/resources/icons/graph/2160/scale40_0.png deleted file mode 100644 index 3f2481aa2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_1.png b/weather.openmeteo/resources/icons/graph/2160/scale40_1.png deleted file mode 100644 index dddb88125..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_10.png b/weather.openmeteo/resources/icons/graph/2160/scale40_10.png deleted file mode 100644 index 337493015..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_11.png b/weather.openmeteo/resources/icons/graph/2160/scale40_11.png deleted file mode 100644 index 5b6339814..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_12.png b/weather.openmeteo/resources/icons/graph/2160/scale40_12.png deleted file mode 100644 index 98a43bd88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_13.png b/weather.openmeteo/resources/icons/graph/2160/scale40_13.png deleted file mode 100644 index 4406ed004..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_14.png b/weather.openmeteo/resources/icons/graph/2160/scale40_14.png deleted file mode 100644 index 40bd6b69b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_15.png b/weather.openmeteo/resources/icons/graph/2160/scale40_15.png deleted file mode 100644 index 63c85803c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_16.png b/weather.openmeteo/resources/icons/graph/2160/scale40_16.png deleted file mode 100644 index c55afbaac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_17.png b/weather.openmeteo/resources/icons/graph/2160/scale40_17.png deleted file mode 100644 index c57922726..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_18.png b/weather.openmeteo/resources/icons/graph/2160/scale40_18.png deleted file mode 100644 index c72ab1640..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_19.png b/weather.openmeteo/resources/icons/graph/2160/scale40_19.png deleted file mode 100644 index ab8b0e7d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_2.png b/weather.openmeteo/resources/icons/graph/2160/scale40_2.png deleted file mode 100644 index 71032686d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_20.png b/weather.openmeteo/resources/icons/graph/2160/scale40_20.png deleted file mode 100644 index 882d40da8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_21.png b/weather.openmeteo/resources/icons/graph/2160/scale40_21.png deleted file mode 100644 index a75ac7e5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_22.png b/weather.openmeteo/resources/icons/graph/2160/scale40_22.png deleted file mode 100644 index 2613efbd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_23.png b/weather.openmeteo/resources/icons/graph/2160/scale40_23.png deleted file mode 100644 index 4ad9f095e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_24.png b/weather.openmeteo/resources/icons/graph/2160/scale40_24.png deleted file mode 100644 index f90236043..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_25.png b/weather.openmeteo/resources/icons/graph/2160/scale40_25.png deleted file mode 100644 index 863a1af4a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_26.png b/weather.openmeteo/resources/icons/graph/2160/scale40_26.png deleted file mode 100644 index f97d1779c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_27.png b/weather.openmeteo/resources/icons/graph/2160/scale40_27.png deleted file mode 100644 index 6809c939e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_28.png b/weather.openmeteo/resources/icons/graph/2160/scale40_28.png deleted file mode 100644 index ba8527984..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_29.png b/weather.openmeteo/resources/icons/graph/2160/scale40_29.png deleted file mode 100644 index c653feca2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_3.png b/weather.openmeteo/resources/icons/graph/2160/scale40_3.png deleted file mode 100644 index 91a440ed0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_30.png b/weather.openmeteo/resources/icons/graph/2160/scale40_30.png deleted file mode 100644 index a4776da3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_31.png b/weather.openmeteo/resources/icons/graph/2160/scale40_31.png deleted file mode 100644 index bda86cd55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_32.png b/weather.openmeteo/resources/icons/graph/2160/scale40_32.png deleted file mode 100644 index a9fcd32cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_33.png b/weather.openmeteo/resources/icons/graph/2160/scale40_33.png deleted file mode 100644 index 2086e45e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_34.png b/weather.openmeteo/resources/icons/graph/2160/scale40_34.png deleted file mode 100644 index 1d8c3ce3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_35.png b/weather.openmeteo/resources/icons/graph/2160/scale40_35.png deleted file mode 100644 index aaa2cd32a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_36.png b/weather.openmeteo/resources/icons/graph/2160/scale40_36.png deleted file mode 100644 index 4eeb069df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_37.png b/weather.openmeteo/resources/icons/graph/2160/scale40_37.png deleted file mode 100644 index cd5db6f87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_38.png b/weather.openmeteo/resources/icons/graph/2160/scale40_38.png deleted file mode 100644 index 0a3c58e02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_39.png b/weather.openmeteo/resources/icons/graph/2160/scale40_39.png deleted file mode 100644 index a3c68cebb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_4.png b/weather.openmeteo/resources/icons/graph/2160/scale40_4.png deleted file mode 100644 index 69072573e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_40.png b/weather.openmeteo/resources/icons/graph/2160/scale40_40.png deleted file mode 100644 index 9f25f717d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_5.png b/weather.openmeteo/resources/icons/graph/2160/scale40_5.png deleted file mode 100644 index 414dca7a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_6.png b/weather.openmeteo/resources/icons/graph/2160/scale40_6.png deleted file mode 100644 index 2d3bd234d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_7.png b/weather.openmeteo/resources/icons/graph/2160/scale40_7.png deleted file mode 100644 index 8f5433c8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_8.png b/weather.openmeteo/resources/icons/graph/2160/scale40_8.png deleted file mode 100644 index fa0c16ec8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale40_9.png b/weather.openmeteo/resources/icons/graph/2160/scale40_9.png deleted file mode 100644 index 57f44bd34..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_0.png b/weather.openmeteo/resources/icons/graph/2160/scale50_0.png deleted file mode 100644 index 629de0d20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_1.png b/weather.openmeteo/resources/icons/graph/2160/scale50_1.png deleted file mode 100644 index 80fec425e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_10.png b/weather.openmeteo/resources/icons/graph/2160/scale50_10.png deleted file mode 100644 index e3c528d43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_11.png b/weather.openmeteo/resources/icons/graph/2160/scale50_11.png deleted file mode 100644 index 72afcd3a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_12.png b/weather.openmeteo/resources/icons/graph/2160/scale50_12.png deleted file mode 100644 index 0715980b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_13.png b/weather.openmeteo/resources/icons/graph/2160/scale50_13.png deleted file mode 100644 index 08c0e44fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_14.png b/weather.openmeteo/resources/icons/graph/2160/scale50_14.png deleted file mode 100644 index 8790289b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_15.png b/weather.openmeteo/resources/icons/graph/2160/scale50_15.png deleted file mode 100644 index 01cad0ac8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_16.png b/weather.openmeteo/resources/icons/graph/2160/scale50_16.png deleted file mode 100644 index 39c8af7a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_17.png b/weather.openmeteo/resources/icons/graph/2160/scale50_17.png deleted file mode 100644 index c4fcda440..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_18.png b/weather.openmeteo/resources/icons/graph/2160/scale50_18.png deleted file mode 100644 index ea248478a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_19.png b/weather.openmeteo/resources/icons/graph/2160/scale50_19.png deleted file mode 100644 index a7870384a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_2.png b/weather.openmeteo/resources/icons/graph/2160/scale50_2.png deleted file mode 100644 index 9ae48194b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_20.png b/weather.openmeteo/resources/icons/graph/2160/scale50_20.png deleted file mode 100644 index 3c220efb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_21.png b/weather.openmeteo/resources/icons/graph/2160/scale50_21.png deleted file mode 100644 index 78b710eb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_22.png b/weather.openmeteo/resources/icons/graph/2160/scale50_22.png deleted file mode 100644 index 52dc195a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_23.png b/weather.openmeteo/resources/icons/graph/2160/scale50_23.png deleted file mode 100644 index b30eb1d02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_24.png b/weather.openmeteo/resources/icons/graph/2160/scale50_24.png deleted file mode 100644 index 3755004f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_25.png b/weather.openmeteo/resources/icons/graph/2160/scale50_25.png deleted file mode 100644 index b0d8368aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_26.png b/weather.openmeteo/resources/icons/graph/2160/scale50_26.png deleted file mode 100644 index 85f478124..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_27.png b/weather.openmeteo/resources/icons/graph/2160/scale50_27.png deleted file mode 100644 index d8676d2c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_28.png b/weather.openmeteo/resources/icons/graph/2160/scale50_28.png deleted file mode 100644 index 67e4cb405..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_29.png b/weather.openmeteo/resources/icons/graph/2160/scale50_29.png deleted file mode 100644 index 8cd9f72c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_3.png b/weather.openmeteo/resources/icons/graph/2160/scale50_3.png deleted file mode 100644 index f27ee0a6c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_30.png b/weather.openmeteo/resources/icons/graph/2160/scale50_30.png deleted file mode 100644 index 544fadda2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_31.png b/weather.openmeteo/resources/icons/graph/2160/scale50_31.png deleted file mode 100644 index d6b9a1624..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_32.png b/weather.openmeteo/resources/icons/graph/2160/scale50_32.png deleted file mode 100644 index fe69181f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_33.png b/weather.openmeteo/resources/icons/graph/2160/scale50_33.png deleted file mode 100644 index 9bf6c3fb0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_34.png b/weather.openmeteo/resources/icons/graph/2160/scale50_34.png deleted file mode 100644 index 0b53003d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_35.png b/weather.openmeteo/resources/icons/graph/2160/scale50_35.png deleted file mode 100644 index 0da3d8161..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_36.png b/weather.openmeteo/resources/icons/graph/2160/scale50_36.png deleted file mode 100644 index ba467f2cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_37.png b/weather.openmeteo/resources/icons/graph/2160/scale50_37.png deleted file mode 100644 index 9a8ad4dff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_38.png b/weather.openmeteo/resources/icons/graph/2160/scale50_38.png deleted file mode 100644 index e088b43e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_39.png b/weather.openmeteo/resources/icons/graph/2160/scale50_39.png deleted file mode 100644 index 605300fe3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_4.png b/weather.openmeteo/resources/icons/graph/2160/scale50_4.png deleted file mode 100644 index 18b685d38..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_40.png b/weather.openmeteo/resources/icons/graph/2160/scale50_40.png deleted file mode 100644 index 45d619c49..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_41.png b/weather.openmeteo/resources/icons/graph/2160/scale50_41.png deleted file mode 100644 index ab9410b4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_42.png b/weather.openmeteo/resources/icons/graph/2160/scale50_42.png deleted file mode 100644 index 41440d53a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_43.png b/weather.openmeteo/resources/icons/graph/2160/scale50_43.png deleted file mode 100644 index 08ae093e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_44.png b/weather.openmeteo/resources/icons/graph/2160/scale50_44.png deleted file mode 100644 index d214b9513..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_45.png b/weather.openmeteo/resources/icons/graph/2160/scale50_45.png deleted file mode 100644 index 812a751a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_46.png b/weather.openmeteo/resources/icons/graph/2160/scale50_46.png deleted file mode 100644 index 723526e6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_47.png b/weather.openmeteo/resources/icons/graph/2160/scale50_47.png deleted file mode 100644 index c0d97bdc3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_48.png b/weather.openmeteo/resources/icons/graph/2160/scale50_48.png deleted file mode 100644 index 7551e129f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_49.png b/weather.openmeteo/resources/icons/graph/2160/scale50_49.png deleted file mode 100644 index 8a1fdb4f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_5.png b/weather.openmeteo/resources/icons/graph/2160/scale50_5.png deleted file mode 100644 index 21f7e50ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_50.png b/weather.openmeteo/resources/icons/graph/2160/scale50_50.png deleted file mode 100644 index 18e42fdd7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_6.png b/weather.openmeteo/resources/icons/graph/2160/scale50_6.png deleted file mode 100644 index cca0128f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_7.png b/weather.openmeteo/resources/icons/graph/2160/scale50_7.png deleted file mode 100644 index 1ebde4319..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_8.png b/weather.openmeteo/resources/icons/graph/2160/scale50_8.png deleted file mode 100644 index b6de7439e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale50_9.png b/weather.openmeteo/resources/icons/graph/2160/scale50_9.png deleted file mode 100644 index c0c8de82d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_0.png b/weather.openmeteo/resources/icons/graph/2160/scale60_0.png deleted file mode 100644 index ce198f839..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_1.png b/weather.openmeteo/resources/icons/graph/2160/scale60_1.png deleted file mode 100644 index 93936af36..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_10.png b/weather.openmeteo/resources/icons/graph/2160/scale60_10.png deleted file mode 100644 index 18692f588..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_11.png b/weather.openmeteo/resources/icons/graph/2160/scale60_11.png deleted file mode 100644 index c6d19c6ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_12.png b/weather.openmeteo/resources/icons/graph/2160/scale60_12.png deleted file mode 100644 index 7f6ce0da7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_13.png b/weather.openmeteo/resources/icons/graph/2160/scale60_13.png deleted file mode 100644 index c75bffbb6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_14.png b/weather.openmeteo/resources/icons/graph/2160/scale60_14.png deleted file mode 100644 index d3c66b4ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_15.png b/weather.openmeteo/resources/icons/graph/2160/scale60_15.png deleted file mode 100644 index e3e88c82f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_16.png b/weather.openmeteo/resources/icons/graph/2160/scale60_16.png deleted file mode 100644 index 3a38ed286..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_17.png b/weather.openmeteo/resources/icons/graph/2160/scale60_17.png deleted file mode 100644 index 92c174b15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_18.png b/weather.openmeteo/resources/icons/graph/2160/scale60_18.png deleted file mode 100644 index 0700cfd44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_19.png b/weather.openmeteo/resources/icons/graph/2160/scale60_19.png deleted file mode 100644 index dbfafdadf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_2.png b/weather.openmeteo/resources/icons/graph/2160/scale60_2.png deleted file mode 100644 index 222ce0f59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_20.png b/weather.openmeteo/resources/icons/graph/2160/scale60_20.png deleted file mode 100644 index 4fc665540..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_21.png b/weather.openmeteo/resources/icons/graph/2160/scale60_21.png deleted file mode 100644 index 3622b3e8d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_22.png b/weather.openmeteo/resources/icons/graph/2160/scale60_22.png deleted file mode 100644 index fc2ebf145..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_23.png b/weather.openmeteo/resources/icons/graph/2160/scale60_23.png deleted file mode 100644 index 0190ef2f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_24.png b/weather.openmeteo/resources/icons/graph/2160/scale60_24.png deleted file mode 100644 index 6e6dd53ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_25.png b/weather.openmeteo/resources/icons/graph/2160/scale60_25.png deleted file mode 100644 index 21598fc05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_26.png b/weather.openmeteo/resources/icons/graph/2160/scale60_26.png deleted file mode 100644 index 6f0a6632c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_27.png b/weather.openmeteo/resources/icons/graph/2160/scale60_27.png deleted file mode 100644 index 2ab0f4b18..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_28.png b/weather.openmeteo/resources/icons/graph/2160/scale60_28.png deleted file mode 100644 index 85591bd43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_29.png b/weather.openmeteo/resources/icons/graph/2160/scale60_29.png deleted file mode 100644 index 7d5f2210b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_3.png b/weather.openmeteo/resources/icons/graph/2160/scale60_3.png deleted file mode 100644 index 8dbfdbca0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_30.png b/weather.openmeteo/resources/icons/graph/2160/scale60_30.png deleted file mode 100644 index 43244e3b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_31.png b/weather.openmeteo/resources/icons/graph/2160/scale60_31.png deleted file mode 100644 index 49edd3a7d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_32.png b/weather.openmeteo/resources/icons/graph/2160/scale60_32.png deleted file mode 100644 index 352f8dcbd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_33.png b/weather.openmeteo/resources/icons/graph/2160/scale60_33.png deleted file mode 100644 index 15afd2782..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_34.png b/weather.openmeteo/resources/icons/graph/2160/scale60_34.png deleted file mode 100644 index a9553558e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_35.png b/weather.openmeteo/resources/icons/graph/2160/scale60_35.png deleted file mode 100644 index 839531222..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_36.png b/weather.openmeteo/resources/icons/graph/2160/scale60_36.png deleted file mode 100644 index 07e673156..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_37.png b/weather.openmeteo/resources/icons/graph/2160/scale60_37.png deleted file mode 100644 index e0943c10b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_38.png b/weather.openmeteo/resources/icons/graph/2160/scale60_38.png deleted file mode 100644 index c1d32c0b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_39.png b/weather.openmeteo/resources/icons/graph/2160/scale60_39.png deleted file mode 100644 index 9a5efda79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_4.png b/weather.openmeteo/resources/icons/graph/2160/scale60_4.png deleted file mode 100644 index 77c736e48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_40.png b/weather.openmeteo/resources/icons/graph/2160/scale60_40.png deleted file mode 100644 index cfcfc2e4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_41.png b/weather.openmeteo/resources/icons/graph/2160/scale60_41.png deleted file mode 100644 index 30d805f9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_42.png b/weather.openmeteo/resources/icons/graph/2160/scale60_42.png deleted file mode 100644 index f0adedb2b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_43.png b/weather.openmeteo/resources/icons/graph/2160/scale60_43.png deleted file mode 100644 index 8cd8f5b97..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_44.png b/weather.openmeteo/resources/icons/graph/2160/scale60_44.png deleted file mode 100644 index 46446004f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_45.png b/weather.openmeteo/resources/icons/graph/2160/scale60_45.png deleted file mode 100644 index 159724ae9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_46.png b/weather.openmeteo/resources/icons/graph/2160/scale60_46.png deleted file mode 100644 index f249d0080..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_47.png b/weather.openmeteo/resources/icons/graph/2160/scale60_47.png deleted file mode 100644 index f68346108..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_48.png b/weather.openmeteo/resources/icons/graph/2160/scale60_48.png deleted file mode 100644 index 06b54e767..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_49.png b/weather.openmeteo/resources/icons/graph/2160/scale60_49.png deleted file mode 100644 index 2ea9e91db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_5.png b/weather.openmeteo/resources/icons/graph/2160/scale60_5.png deleted file mode 100644 index 4d9520a21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_50.png b/weather.openmeteo/resources/icons/graph/2160/scale60_50.png deleted file mode 100644 index ec4447efb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_51.png b/weather.openmeteo/resources/icons/graph/2160/scale60_51.png deleted file mode 100644 index bb17e6866..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_52.png b/weather.openmeteo/resources/icons/graph/2160/scale60_52.png deleted file mode 100644 index 431cef4e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_53.png b/weather.openmeteo/resources/icons/graph/2160/scale60_53.png deleted file mode 100644 index ea6c9c2c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_54.png b/weather.openmeteo/resources/icons/graph/2160/scale60_54.png deleted file mode 100644 index d92b830d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_55.png b/weather.openmeteo/resources/icons/graph/2160/scale60_55.png deleted file mode 100644 index f0b280013..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_56.png b/weather.openmeteo/resources/icons/graph/2160/scale60_56.png deleted file mode 100644 index c44f1d653..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_57.png b/weather.openmeteo/resources/icons/graph/2160/scale60_57.png deleted file mode 100644 index 877227c0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_58.png b/weather.openmeteo/resources/icons/graph/2160/scale60_58.png deleted file mode 100644 index 1e4ccdc95..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_59.png b/weather.openmeteo/resources/icons/graph/2160/scale60_59.png deleted file mode 100644 index 612e950e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_6.png b/weather.openmeteo/resources/icons/graph/2160/scale60_6.png deleted file mode 100644 index 42b7f6055..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_60.png b/weather.openmeteo/resources/icons/graph/2160/scale60_60.png deleted file mode 100644 index dedbb9172..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_7.png b/weather.openmeteo/resources/icons/graph/2160/scale60_7.png deleted file mode 100644 index ded6f0c2f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_8.png b/weather.openmeteo/resources/icons/graph/2160/scale60_8.png deleted file mode 100644 index 27a9ac981..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale60_9.png b/weather.openmeteo/resources/icons/graph/2160/scale60_9.png deleted file mode 100644 index a04916859..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale60_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_0.png b/weather.openmeteo/resources/icons/graph/2160/scale70_0.png deleted file mode 100644 index e043cca27..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_1.png b/weather.openmeteo/resources/icons/graph/2160/scale70_1.png deleted file mode 100644 index 110a43236..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_10.png b/weather.openmeteo/resources/icons/graph/2160/scale70_10.png deleted file mode 100644 index f8b8750ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_11.png b/weather.openmeteo/resources/icons/graph/2160/scale70_11.png deleted file mode 100644 index 5fd4a0bdf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_12.png b/weather.openmeteo/resources/icons/graph/2160/scale70_12.png deleted file mode 100644 index 07b06d847..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_13.png b/weather.openmeteo/resources/icons/graph/2160/scale70_13.png deleted file mode 100644 index f52ef34fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_14.png b/weather.openmeteo/resources/icons/graph/2160/scale70_14.png deleted file mode 100644 index adeab589e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_15.png b/weather.openmeteo/resources/icons/graph/2160/scale70_15.png deleted file mode 100644 index c3c378e94..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_16.png b/weather.openmeteo/resources/icons/graph/2160/scale70_16.png deleted file mode 100644 index 559f86d1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_17.png b/weather.openmeteo/resources/icons/graph/2160/scale70_17.png deleted file mode 100644 index 96dc29788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_18.png b/weather.openmeteo/resources/icons/graph/2160/scale70_18.png deleted file mode 100644 index 1b472d641..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_19.png b/weather.openmeteo/resources/icons/graph/2160/scale70_19.png deleted file mode 100644 index 3464ad27d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_2.png b/weather.openmeteo/resources/icons/graph/2160/scale70_2.png deleted file mode 100644 index e72e7a877..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_20.png b/weather.openmeteo/resources/icons/graph/2160/scale70_20.png deleted file mode 100644 index 5d724587e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_21.png b/weather.openmeteo/resources/icons/graph/2160/scale70_21.png deleted file mode 100644 index e1dff20f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_22.png b/weather.openmeteo/resources/icons/graph/2160/scale70_22.png deleted file mode 100644 index 1cdb14100..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_23.png b/weather.openmeteo/resources/icons/graph/2160/scale70_23.png deleted file mode 100644 index 79cc219cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_24.png b/weather.openmeteo/resources/icons/graph/2160/scale70_24.png deleted file mode 100644 index 4b136882f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_25.png b/weather.openmeteo/resources/icons/graph/2160/scale70_25.png deleted file mode 100644 index f01d9b5b7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_26.png b/weather.openmeteo/resources/icons/graph/2160/scale70_26.png deleted file mode 100644 index 9e1dcda77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_27.png b/weather.openmeteo/resources/icons/graph/2160/scale70_27.png deleted file mode 100644 index 3ac6478a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_28.png b/weather.openmeteo/resources/icons/graph/2160/scale70_28.png deleted file mode 100644 index 132c73988..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_29.png b/weather.openmeteo/resources/icons/graph/2160/scale70_29.png deleted file mode 100644 index 87f22b624..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_3.png b/weather.openmeteo/resources/icons/graph/2160/scale70_3.png deleted file mode 100644 index a89badacf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_30.png b/weather.openmeteo/resources/icons/graph/2160/scale70_30.png deleted file mode 100644 index 652ba2bd1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_31.png b/weather.openmeteo/resources/icons/graph/2160/scale70_31.png deleted file mode 100644 index 9a4c7a205..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_32.png b/weather.openmeteo/resources/icons/graph/2160/scale70_32.png deleted file mode 100644 index 655ef2deb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_33.png b/weather.openmeteo/resources/icons/graph/2160/scale70_33.png deleted file mode 100644 index 0046a2f0d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_34.png b/weather.openmeteo/resources/icons/graph/2160/scale70_34.png deleted file mode 100644 index 048ebae1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_35.png b/weather.openmeteo/resources/icons/graph/2160/scale70_35.png deleted file mode 100644 index a20159f03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_36.png b/weather.openmeteo/resources/icons/graph/2160/scale70_36.png deleted file mode 100644 index 440d39cb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_37.png b/weather.openmeteo/resources/icons/graph/2160/scale70_37.png deleted file mode 100644 index 10b6527f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_38.png b/weather.openmeteo/resources/icons/graph/2160/scale70_38.png deleted file mode 100644 index e53348b9e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_39.png b/weather.openmeteo/resources/icons/graph/2160/scale70_39.png deleted file mode 100644 index 72d9968f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_4.png b/weather.openmeteo/resources/icons/graph/2160/scale70_4.png deleted file mode 100644 index b945f2299..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_40.png b/weather.openmeteo/resources/icons/graph/2160/scale70_40.png deleted file mode 100644 index 72d3838a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_41.png b/weather.openmeteo/resources/icons/graph/2160/scale70_41.png deleted file mode 100644 index a83e8d69c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_42.png b/weather.openmeteo/resources/icons/graph/2160/scale70_42.png deleted file mode 100644 index 39cd4d352..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_43.png b/weather.openmeteo/resources/icons/graph/2160/scale70_43.png deleted file mode 100644 index 82a66c89d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_44.png b/weather.openmeteo/resources/icons/graph/2160/scale70_44.png deleted file mode 100644 index dedcba397..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_45.png b/weather.openmeteo/resources/icons/graph/2160/scale70_45.png deleted file mode 100644 index 91c075460..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_46.png b/weather.openmeteo/resources/icons/graph/2160/scale70_46.png deleted file mode 100644 index 5c5436779..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_47.png b/weather.openmeteo/resources/icons/graph/2160/scale70_47.png deleted file mode 100644 index 6bf802783..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_48.png b/weather.openmeteo/resources/icons/graph/2160/scale70_48.png deleted file mode 100644 index e795e2dbe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_49.png b/weather.openmeteo/resources/icons/graph/2160/scale70_49.png deleted file mode 100644 index e572a9512..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_5.png b/weather.openmeteo/resources/icons/graph/2160/scale70_5.png deleted file mode 100644 index b8ccf26dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_50.png b/weather.openmeteo/resources/icons/graph/2160/scale70_50.png deleted file mode 100644 index 9b8747ca6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_51.png b/weather.openmeteo/resources/icons/graph/2160/scale70_51.png deleted file mode 100644 index ca5cbc58a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_52.png b/weather.openmeteo/resources/icons/graph/2160/scale70_52.png deleted file mode 100644 index f438cd5c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_53.png b/weather.openmeteo/resources/icons/graph/2160/scale70_53.png deleted file mode 100644 index bd916de03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_54.png b/weather.openmeteo/resources/icons/graph/2160/scale70_54.png deleted file mode 100644 index 02a9ec87f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_55.png b/weather.openmeteo/resources/icons/graph/2160/scale70_55.png deleted file mode 100644 index 4a458c008..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_56.png b/weather.openmeteo/resources/icons/graph/2160/scale70_56.png deleted file mode 100644 index dc9eb1f09..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_57.png b/weather.openmeteo/resources/icons/graph/2160/scale70_57.png deleted file mode 100644 index 19e049001..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_58.png b/weather.openmeteo/resources/icons/graph/2160/scale70_58.png deleted file mode 100644 index 02b30084d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_59.png b/weather.openmeteo/resources/icons/graph/2160/scale70_59.png deleted file mode 100644 index 3966bd6f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_6.png b/weather.openmeteo/resources/icons/graph/2160/scale70_6.png deleted file mode 100644 index 49d56dfbc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_60.png b/weather.openmeteo/resources/icons/graph/2160/scale70_60.png deleted file mode 100644 index 5fadd1aa8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_61.png b/weather.openmeteo/resources/icons/graph/2160/scale70_61.png deleted file mode 100644 index d043c5f8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_62.png b/weather.openmeteo/resources/icons/graph/2160/scale70_62.png deleted file mode 100644 index 37212c52e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_63.png b/weather.openmeteo/resources/icons/graph/2160/scale70_63.png deleted file mode 100644 index 660b72d1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_64.png b/weather.openmeteo/resources/icons/graph/2160/scale70_64.png deleted file mode 100644 index d5d9eab5c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_65.png b/weather.openmeteo/resources/icons/graph/2160/scale70_65.png deleted file mode 100644 index 9a4508009..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_66.png b/weather.openmeteo/resources/icons/graph/2160/scale70_66.png deleted file mode 100644 index d7a3529da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_67.png b/weather.openmeteo/resources/icons/graph/2160/scale70_67.png deleted file mode 100644 index cdf2fa14c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_68.png b/weather.openmeteo/resources/icons/graph/2160/scale70_68.png deleted file mode 100644 index 14acb4f4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_69.png b/weather.openmeteo/resources/icons/graph/2160/scale70_69.png deleted file mode 100644 index 56a878cbe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_7.png b/weather.openmeteo/resources/icons/graph/2160/scale70_7.png deleted file mode 100644 index 4a5c7bdef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_70.png b/weather.openmeteo/resources/icons/graph/2160/scale70_70.png deleted file mode 100644 index 35c0ec068..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_8.png b/weather.openmeteo/resources/icons/graph/2160/scale70_8.png deleted file mode 100644 index 0d4273f79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale70_9.png b/weather.openmeteo/resources/icons/graph/2160/scale70_9.png deleted file mode 100644 index 2f08bc762..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale70_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_0.png b/weather.openmeteo/resources/icons/graph/2160/scale80_0.png deleted file mode 100644 index 47ebbc62a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_1.png b/weather.openmeteo/resources/icons/graph/2160/scale80_1.png deleted file mode 100644 index ea396eb81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_10.png b/weather.openmeteo/resources/icons/graph/2160/scale80_10.png deleted file mode 100644 index a09dfd43e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_11.png b/weather.openmeteo/resources/icons/graph/2160/scale80_11.png deleted file mode 100644 index 40b888e1c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_12.png b/weather.openmeteo/resources/icons/graph/2160/scale80_12.png deleted file mode 100644 index 4fac3036e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_13.png b/weather.openmeteo/resources/icons/graph/2160/scale80_13.png deleted file mode 100644 index a4d51a105..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_14.png b/weather.openmeteo/resources/icons/graph/2160/scale80_14.png deleted file mode 100644 index fa13686f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_15.png b/weather.openmeteo/resources/icons/graph/2160/scale80_15.png deleted file mode 100644 index 4828d5d9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_16.png b/weather.openmeteo/resources/icons/graph/2160/scale80_16.png deleted file mode 100644 index b1bb25819..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_17.png b/weather.openmeteo/resources/icons/graph/2160/scale80_17.png deleted file mode 100644 index 4d834aa42..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_18.png b/weather.openmeteo/resources/icons/graph/2160/scale80_18.png deleted file mode 100644 index c451c1b96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_19.png b/weather.openmeteo/resources/icons/graph/2160/scale80_19.png deleted file mode 100644 index 1bb1aeaf0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_2.png b/weather.openmeteo/resources/icons/graph/2160/scale80_2.png deleted file mode 100644 index 34cef9de4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_20.png b/weather.openmeteo/resources/icons/graph/2160/scale80_20.png deleted file mode 100644 index 1b4c24307..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_21.png b/weather.openmeteo/resources/icons/graph/2160/scale80_21.png deleted file mode 100644 index f0a09ca6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_22.png b/weather.openmeteo/resources/icons/graph/2160/scale80_22.png deleted file mode 100644 index 0fac51e96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_23.png b/weather.openmeteo/resources/icons/graph/2160/scale80_23.png deleted file mode 100644 index 407f2ad0d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_24.png b/weather.openmeteo/resources/icons/graph/2160/scale80_24.png deleted file mode 100644 index 4fc8c997f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_25.png b/weather.openmeteo/resources/icons/graph/2160/scale80_25.png deleted file mode 100644 index 8afc013ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_26.png b/weather.openmeteo/resources/icons/graph/2160/scale80_26.png deleted file mode 100644 index ddd861142..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_27.png b/weather.openmeteo/resources/icons/graph/2160/scale80_27.png deleted file mode 100644 index 3533e309a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_28.png b/weather.openmeteo/resources/icons/graph/2160/scale80_28.png deleted file mode 100644 index aa07e6102..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_29.png b/weather.openmeteo/resources/icons/graph/2160/scale80_29.png deleted file mode 100644 index 74b84692a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_3.png b/weather.openmeteo/resources/icons/graph/2160/scale80_3.png deleted file mode 100644 index 9f942e551..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_30.png b/weather.openmeteo/resources/icons/graph/2160/scale80_30.png deleted file mode 100644 index ac89ffcce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_31.png b/weather.openmeteo/resources/icons/graph/2160/scale80_31.png deleted file mode 100644 index 30c0a2711..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_32.png b/weather.openmeteo/resources/icons/graph/2160/scale80_32.png deleted file mode 100644 index 48bba52d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_33.png b/weather.openmeteo/resources/icons/graph/2160/scale80_33.png deleted file mode 100644 index 26e65eee6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_34.png b/weather.openmeteo/resources/icons/graph/2160/scale80_34.png deleted file mode 100644 index b0c31c636..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_35.png b/weather.openmeteo/resources/icons/graph/2160/scale80_35.png deleted file mode 100644 index 9c52e564d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_36.png b/weather.openmeteo/resources/icons/graph/2160/scale80_36.png deleted file mode 100644 index 6f87f0a2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_37.png b/weather.openmeteo/resources/icons/graph/2160/scale80_37.png deleted file mode 100644 index 9ecb83215..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_38.png b/weather.openmeteo/resources/icons/graph/2160/scale80_38.png deleted file mode 100644 index 7de59f43d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_39.png b/weather.openmeteo/resources/icons/graph/2160/scale80_39.png deleted file mode 100644 index 4a1147ac8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_4.png b/weather.openmeteo/resources/icons/graph/2160/scale80_4.png deleted file mode 100644 index 1998e9e7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_40.png b/weather.openmeteo/resources/icons/graph/2160/scale80_40.png deleted file mode 100644 index b69e58ad1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_41.png b/weather.openmeteo/resources/icons/graph/2160/scale80_41.png deleted file mode 100644 index bdcc6a903..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_42.png b/weather.openmeteo/resources/icons/graph/2160/scale80_42.png deleted file mode 100644 index fe81d230a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_43.png b/weather.openmeteo/resources/icons/graph/2160/scale80_43.png deleted file mode 100644 index 113321f15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_44.png b/weather.openmeteo/resources/icons/graph/2160/scale80_44.png deleted file mode 100644 index 004c98973..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_45.png b/weather.openmeteo/resources/icons/graph/2160/scale80_45.png deleted file mode 100644 index 359922539..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_46.png b/weather.openmeteo/resources/icons/graph/2160/scale80_46.png deleted file mode 100644 index 4bcff9cad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_47.png b/weather.openmeteo/resources/icons/graph/2160/scale80_47.png deleted file mode 100644 index 2dbe729dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_48.png b/weather.openmeteo/resources/icons/graph/2160/scale80_48.png deleted file mode 100644 index 18de28951..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_49.png b/weather.openmeteo/resources/icons/graph/2160/scale80_49.png deleted file mode 100644 index 3c4258b6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_5.png b/weather.openmeteo/resources/icons/graph/2160/scale80_5.png deleted file mode 100644 index 12bf97430..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_50.png b/weather.openmeteo/resources/icons/graph/2160/scale80_50.png deleted file mode 100644 index 4df6d9acb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_51.png b/weather.openmeteo/resources/icons/graph/2160/scale80_51.png deleted file mode 100644 index 924b289e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_52.png b/weather.openmeteo/resources/icons/graph/2160/scale80_52.png deleted file mode 100644 index ad5866873..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_53.png b/weather.openmeteo/resources/icons/graph/2160/scale80_53.png deleted file mode 100644 index c25e24690..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_54.png b/weather.openmeteo/resources/icons/graph/2160/scale80_54.png deleted file mode 100644 index 5bb945978..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_55.png b/weather.openmeteo/resources/icons/graph/2160/scale80_55.png deleted file mode 100644 index 76104bb73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_56.png b/weather.openmeteo/resources/icons/graph/2160/scale80_56.png deleted file mode 100644 index b57e32ee9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_57.png b/weather.openmeteo/resources/icons/graph/2160/scale80_57.png deleted file mode 100644 index 1f33beb4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_58.png b/weather.openmeteo/resources/icons/graph/2160/scale80_58.png deleted file mode 100644 index de07d9c9f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_59.png b/weather.openmeteo/resources/icons/graph/2160/scale80_59.png deleted file mode 100644 index 8d3106830..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_6.png b/weather.openmeteo/resources/icons/graph/2160/scale80_6.png deleted file mode 100644 index 46229f300..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_60.png b/weather.openmeteo/resources/icons/graph/2160/scale80_60.png deleted file mode 100644 index 1443a0944..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_61.png b/weather.openmeteo/resources/icons/graph/2160/scale80_61.png deleted file mode 100644 index 885f65249..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_62.png b/weather.openmeteo/resources/icons/graph/2160/scale80_62.png deleted file mode 100644 index 717a7cfac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_63.png b/weather.openmeteo/resources/icons/graph/2160/scale80_63.png deleted file mode 100644 index d60e8d29f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_64.png b/weather.openmeteo/resources/icons/graph/2160/scale80_64.png deleted file mode 100644 index eb91a5109..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_65.png b/weather.openmeteo/resources/icons/graph/2160/scale80_65.png deleted file mode 100644 index 0d25866ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_66.png b/weather.openmeteo/resources/icons/graph/2160/scale80_66.png deleted file mode 100644 index 4b1d5524a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_67.png b/weather.openmeteo/resources/icons/graph/2160/scale80_67.png deleted file mode 100644 index 71cda1ef2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_68.png b/weather.openmeteo/resources/icons/graph/2160/scale80_68.png deleted file mode 100644 index 42d979970..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_69.png b/weather.openmeteo/resources/icons/graph/2160/scale80_69.png deleted file mode 100644 index 3d153dd40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_7.png b/weather.openmeteo/resources/icons/graph/2160/scale80_7.png deleted file mode 100644 index feeebe662..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_70.png b/weather.openmeteo/resources/icons/graph/2160/scale80_70.png deleted file mode 100644 index d9673001c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_71.png b/weather.openmeteo/resources/icons/graph/2160/scale80_71.png deleted file mode 100644 index 9226ef1e1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_72.png b/weather.openmeteo/resources/icons/graph/2160/scale80_72.png deleted file mode 100644 index e6df89a5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_73.png b/weather.openmeteo/resources/icons/graph/2160/scale80_73.png deleted file mode 100644 index faeb718a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_74.png b/weather.openmeteo/resources/icons/graph/2160/scale80_74.png deleted file mode 100644 index 1af478787..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_75.png b/weather.openmeteo/resources/icons/graph/2160/scale80_75.png deleted file mode 100644 index 1764a7870..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_76.png b/weather.openmeteo/resources/icons/graph/2160/scale80_76.png deleted file mode 100644 index 50053cfdb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_77.png b/weather.openmeteo/resources/icons/graph/2160/scale80_77.png deleted file mode 100644 index 6499320c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_78.png b/weather.openmeteo/resources/icons/graph/2160/scale80_78.png deleted file mode 100644 index d0506104b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_79.png b/weather.openmeteo/resources/icons/graph/2160/scale80_79.png deleted file mode 100644 index ccc424222..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_8.png b/weather.openmeteo/resources/icons/graph/2160/scale80_8.png deleted file mode 100644 index a2afb4ffa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_80.png b/weather.openmeteo/resources/icons/graph/2160/scale80_80.png deleted file mode 100644 index df2dd3ac3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale80_9.png b/weather.openmeteo/resources/icons/graph/2160/scale80_9.png deleted file mode 100644 index 4942fc63a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale80_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_0.png b/weather.openmeteo/resources/icons/graph/2160/scale90_0.png deleted file mode 100644 index 82a5b14a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_1.png b/weather.openmeteo/resources/icons/graph/2160/scale90_1.png deleted file mode 100644 index 12893aa70..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_10.png b/weather.openmeteo/resources/icons/graph/2160/scale90_10.png deleted file mode 100644 index 2adcaa6de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_11.png b/weather.openmeteo/resources/icons/graph/2160/scale90_11.png deleted file mode 100644 index 6a3a4f153..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_12.png b/weather.openmeteo/resources/icons/graph/2160/scale90_12.png deleted file mode 100644 index 4e583fcf6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_13.png b/weather.openmeteo/resources/icons/graph/2160/scale90_13.png deleted file mode 100644 index d4d821971..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_14.png b/weather.openmeteo/resources/icons/graph/2160/scale90_14.png deleted file mode 100644 index 816a14e25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_15.png b/weather.openmeteo/resources/icons/graph/2160/scale90_15.png deleted file mode 100644 index 9eea9d8ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_16.png b/weather.openmeteo/resources/icons/graph/2160/scale90_16.png deleted file mode 100644 index 14c36314c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_17.png b/weather.openmeteo/resources/icons/graph/2160/scale90_17.png deleted file mode 100644 index bc3be42ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_18.png b/weather.openmeteo/resources/icons/graph/2160/scale90_18.png deleted file mode 100644 index b6591e338..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_19.png b/weather.openmeteo/resources/icons/graph/2160/scale90_19.png deleted file mode 100644 index 0b7a704cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_2.png b/weather.openmeteo/resources/icons/graph/2160/scale90_2.png deleted file mode 100644 index 1b7e099ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_20.png b/weather.openmeteo/resources/icons/graph/2160/scale90_20.png deleted file mode 100644 index d09850508..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_21.png b/weather.openmeteo/resources/icons/graph/2160/scale90_21.png deleted file mode 100644 index 05bbf9c47..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_22.png b/weather.openmeteo/resources/icons/graph/2160/scale90_22.png deleted file mode 100644 index e96f93753..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_23.png b/weather.openmeteo/resources/icons/graph/2160/scale90_23.png deleted file mode 100644 index 74d1919f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_24.png b/weather.openmeteo/resources/icons/graph/2160/scale90_24.png deleted file mode 100644 index b87478e7f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_25.png b/weather.openmeteo/resources/icons/graph/2160/scale90_25.png deleted file mode 100644 index 56927ff10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_26.png b/weather.openmeteo/resources/icons/graph/2160/scale90_26.png deleted file mode 100644 index 28d453d83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_27.png b/weather.openmeteo/resources/icons/graph/2160/scale90_27.png deleted file mode 100644 index c6cb88e32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_28.png b/weather.openmeteo/resources/icons/graph/2160/scale90_28.png deleted file mode 100644 index cdf3c6088..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_29.png b/weather.openmeteo/resources/icons/graph/2160/scale90_29.png deleted file mode 100644 index e26e98030..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_3.png b/weather.openmeteo/resources/icons/graph/2160/scale90_3.png deleted file mode 100644 index d57bf8de1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_30.png b/weather.openmeteo/resources/icons/graph/2160/scale90_30.png deleted file mode 100644 index 4f53a3c2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_31.png b/weather.openmeteo/resources/icons/graph/2160/scale90_31.png deleted file mode 100644 index 75c72ca43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_32.png b/weather.openmeteo/resources/icons/graph/2160/scale90_32.png deleted file mode 100644 index fd9ec4e2f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_33.png b/weather.openmeteo/resources/icons/graph/2160/scale90_33.png deleted file mode 100644 index a9c33b7a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_34.png b/weather.openmeteo/resources/icons/graph/2160/scale90_34.png deleted file mode 100644 index 63b5a54ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_35.png b/weather.openmeteo/resources/icons/graph/2160/scale90_35.png deleted file mode 100644 index dbec3d5ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_36.png b/weather.openmeteo/resources/icons/graph/2160/scale90_36.png deleted file mode 100644 index 9fcd1324f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_37.png b/weather.openmeteo/resources/icons/graph/2160/scale90_37.png deleted file mode 100644 index 1fd60b9ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_38.png b/weather.openmeteo/resources/icons/graph/2160/scale90_38.png deleted file mode 100644 index 78463461c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_39.png b/weather.openmeteo/resources/icons/graph/2160/scale90_39.png deleted file mode 100644 index 510ea5ac8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_4.png b/weather.openmeteo/resources/icons/graph/2160/scale90_4.png deleted file mode 100644 index a424aaace..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_40.png b/weather.openmeteo/resources/icons/graph/2160/scale90_40.png deleted file mode 100644 index 3b9c9cb13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_41.png b/weather.openmeteo/resources/icons/graph/2160/scale90_41.png deleted file mode 100644 index b3b5543d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_42.png b/weather.openmeteo/resources/icons/graph/2160/scale90_42.png deleted file mode 100644 index 76245d7f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_43.png b/weather.openmeteo/resources/icons/graph/2160/scale90_43.png deleted file mode 100644 index 3cf89a7d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_44.png b/weather.openmeteo/resources/icons/graph/2160/scale90_44.png deleted file mode 100644 index ba0982f16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_45.png b/weather.openmeteo/resources/icons/graph/2160/scale90_45.png deleted file mode 100644 index 701e32a79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_46.png b/weather.openmeteo/resources/icons/graph/2160/scale90_46.png deleted file mode 100644 index aac0daaee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_47.png b/weather.openmeteo/resources/icons/graph/2160/scale90_47.png deleted file mode 100644 index 90c7b63d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_48.png b/weather.openmeteo/resources/icons/graph/2160/scale90_48.png deleted file mode 100644 index 546255361..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_49.png b/weather.openmeteo/resources/icons/graph/2160/scale90_49.png deleted file mode 100644 index f0dcaffc7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_5.png b/weather.openmeteo/resources/icons/graph/2160/scale90_5.png deleted file mode 100644 index 52c5b0e77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_50.png b/weather.openmeteo/resources/icons/graph/2160/scale90_50.png deleted file mode 100644 index 6f21e8aaa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_51.png b/weather.openmeteo/resources/icons/graph/2160/scale90_51.png deleted file mode 100644 index 8b569f4a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_52.png b/weather.openmeteo/resources/icons/graph/2160/scale90_52.png deleted file mode 100644 index bae367d89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_53.png b/weather.openmeteo/resources/icons/graph/2160/scale90_53.png deleted file mode 100644 index c2e800ab5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_54.png b/weather.openmeteo/resources/icons/graph/2160/scale90_54.png deleted file mode 100644 index e42f7e546..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_55.png b/weather.openmeteo/resources/icons/graph/2160/scale90_55.png deleted file mode 100644 index a7296860c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_56.png b/weather.openmeteo/resources/icons/graph/2160/scale90_56.png deleted file mode 100644 index 69aa13db6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_57.png b/weather.openmeteo/resources/icons/graph/2160/scale90_57.png deleted file mode 100644 index c2bba68fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_58.png b/weather.openmeteo/resources/icons/graph/2160/scale90_58.png deleted file mode 100644 index bf17fdf17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_59.png b/weather.openmeteo/resources/icons/graph/2160/scale90_59.png deleted file mode 100644 index ef2a3abbe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_6.png b/weather.openmeteo/resources/icons/graph/2160/scale90_6.png deleted file mode 100644 index 8417a102f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_60.png b/weather.openmeteo/resources/icons/graph/2160/scale90_60.png deleted file mode 100644 index 437270535..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_61.png b/weather.openmeteo/resources/icons/graph/2160/scale90_61.png deleted file mode 100644 index fd1e76b97..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_62.png b/weather.openmeteo/resources/icons/graph/2160/scale90_62.png deleted file mode 100644 index 4719df15c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_63.png b/weather.openmeteo/resources/icons/graph/2160/scale90_63.png deleted file mode 100644 index d490c839f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_64.png b/weather.openmeteo/resources/icons/graph/2160/scale90_64.png deleted file mode 100644 index c6119987d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_65.png b/weather.openmeteo/resources/icons/graph/2160/scale90_65.png deleted file mode 100644 index 81a797c95..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_66.png b/weather.openmeteo/resources/icons/graph/2160/scale90_66.png deleted file mode 100644 index e3e62635a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_67.png b/weather.openmeteo/resources/icons/graph/2160/scale90_67.png deleted file mode 100644 index 7717ae03e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_68.png b/weather.openmeteo/resources/icons/graph/2160/scale90_68.png deleted file mode 100644 index c13858a60..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_69.png b/weather.openmeteo/resources/icons/graph/2160/scale90_69.png deleted file mode 100644 index a017a797b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_7.png b/weather.openmeteo/resources/icons/graph/2160/scale90_7.png deleted file mode 100644 index 88dc4a8dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_70.png b/weather.openmeteo/resources/icons/graph/2160/scale90_70.png deleted file mode 100644 index 2b8bdc666..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_71.png b/weather.openmeteo/resources/icons/graph/2160/scale90_71.png deleted file mode 100644 index eb4849671..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_72.png b/weather.openmeteo/resources/icons/graph/2160/scale90_72.png deleted file mode 100644 index e2ee7cf19..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_73.png b/weather.openmeteo/resources/icons/graph/2160/scale90_73.png deleted file mode 100644 index d9d67b8c0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_74.png b/weather.openmeteo/resources/icons/graph/2160/scale90_74.png deleted file mode 100644 index f86a4f4b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_75.png b/weather.openmeteo/resources/icons/graph/2160/scale90_75.png deleted file mode 100644 index f6cd7ac5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_76.png b/weather.openmeteo/resources/icons/graph/2160/scale90_76.png deleted file mode 100644 index 6da3c21c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_77.png b/weather.openmeteo/resources/icons/graph/2160/scale90_77.png deleted file mode 100644 index 8313a9a54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_78.png b/weather.openmeteo/resources/icons/graph/2160/scale90_78.png deleted file mode 100644 index 8f4f0c510..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_79.png b/weather.openmeteo/resources/icons/graph/2160/scale90_79.png deleted file mode 100644 index 62d2f7f73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_8.png b/weather.openmeteo/resources/icons/graph/2160/scale90_8.png deleted file mode 100644 index 402066e51..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_80.png b/weather.openmeteo/resources/icons/graph/2160/scale90_80.png deleted file mode 100644 index 2207d41c2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_81.png b/weather.openmeteo/resources/icons/graph/2160/scale90_81.png deleted file mode 100644 index 77756764e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_82.png b/weather.openmeteo/resources/icons/graph/2160/scale90_82.png deleted file mode 100644 index 595b889e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_83.png b/weather.openmeteo/resources/icons/graph/2160/scale90_83.png deleted file mode 100644 index 24f7dc227..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_84.png b/weather.openmeteo/resources/icons/graph/2160/scale90_84.png deleted file mode 100644 index f5be9b912..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_85.png b/weather.openmeteo/resources/icons/graph/2160/scale90_85.png deleted file mode 100644 index c54180235..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_86.png b/weather.openmeteo/resources/icons/graph/2160/scale90_86.png deleted file mode 100644 index 5c308ffcb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_87.png b/weather.openmeteo/resources/icons/graph/2160/scale90_87.png deleted file mode 100644 index 3161f855d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_88.png b/weather.openmeteo/resources/icons/graph/2160/scale90_88.png deleted file mode 100644 index 27b2094ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_89.png b/weather.openmeteo/resources/icons/graph/2160/scale90_89.png deleted file mode 100644 index 820fb9701..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_9.png b/weather.openmeteo/resources/icons/graph/2160/scale90_9.png deleted file mode 100644 index 9596f5514..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scale90_90.png b/weather.openmeteo/resources/icons/graph/2160/scale90_90.png deleted file mode 100644 index ea57fd726..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scale90_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-1.png deleted file mode 100644 index 9c76619f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-10.png deleted file mode 100644 index aad518be7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-2.png deleted file mode 100644 index 17bdaf415..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-3.png deleted file mode 100644 index d3f2a528c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-4.png deleted file mode 100644 index 10ea5c3ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-5.png deleted file mode 100644 index 29ba73041..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-6.png deleted file mode 100644 index 47028b0b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-7.png deleted file mode 100644 index 103d25e4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-8.png deleted file mode 100644 index 30af8b299..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-9.png deleted file mode 100644 index 7890e7e2e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_0.png deleted file mode 100644 index b18516a62..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_1.png deleted file mode 100644 index 031e84ad0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_10.png deleted file mode 100644 index be3311965..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_2.png deleted file mode 100644 index 743da9f7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_3.png deleted file mode 100644 index 65432a590..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_4.png deleted file mode 100644 index f1f2d0cec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_5.png deleted file mode 100644 index 2550c4c44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_6.png deleted file mode 100644 index 2da5c5def..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_7.png deleted file mode 100644 index e5a3a635d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_8.png deleted file mode 100644 index e30e71321..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg10_9.png deleted file mode 100644 index a8c5cccd3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.0.png deleted file mode 100644 index 2cc775bf6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.1.png deleted file mode 100644 index 63988ac85..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.2.png deleted file mode 100644 index d50cc8b4d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.3.png deleted file mode 100644 index d47efd653..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.4.png deleted file mode 100644 index bc5d11da6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.5.png deleted file mode 100644 index 0a3ee31ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.6.png deleted file mode 100644 index a93c61ed1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.7.png deleted file mode 100644 index 20545d1c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.8.png deleted file mode 100644 index abe3a096c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.9.png deleted file mode 100644 index 495eb66d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-1.0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-1.0.png deleted file mode 100644 index 26652780f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_-1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.0.png deleted file mode 100644 index b2de7caeb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.1.png deleted file mode 100644 index e9e28a99a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.2.png deleted file mode 100644 index d2e377438..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.3.png deleted file mode 100644 index cbc11f941..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.4.png deleted file mode 100644 index 08e6f1706..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.5.png deleted file mode 100644 index 8c8e56493..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.6.png deleted file mode 100644 index bc61c7bb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.7.png deleted file mode 100644 index fd76bc363..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.8.png deleted file mode 100644 index 6a3bd54f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.9.png deleted file mode 100644 index 9c59c6228..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_1.0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg1_1.0.png deleted file mode 100644 index 4ed2dcc4a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-1.png deleted file mode 100644 index 69cd7a8cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-10.png deleted file mode 100644 index 7b450b4e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-11.png deleted file mode 100644 index 38bc212c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-12.png deleted file mode 100644 index f4c105b9c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-13.png deleted file mode 100644 index ff0d61325..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-14.png deleted file mode 100644 index 10311dd49..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-15.png deleted file mode 100644 index 17dae5007..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-16.png deleted file mode 100644 index 548f07eda..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-17.png deleted file mode 100644 index bb742e43a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-18.png deleted file mode 100644 index 65e16b34c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-19.png deleted file mode 100644 index c161b9c62..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-2.png deleted file mode 100644 index cbea7569c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-20.png deleted file mode 100644 index 064fca1b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-3.png deleted file mode 100644 index 54c7e1524..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-4.png deleted file mode 100644 index 5fd35ffdd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-5.png deleted file mode 100644 index 9ba6f184b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-6.png deleted file mode 100644 index b05e801dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-7.png deleted file mode 100644 index bdb7b8f86..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-8.png deleted file mode 100644 index d1ec568a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-9.png deleted file mode 100644 index e9f807690..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_0.png deleted file mode 100644 index 96ab199aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_1.png deleted file mode 100644 index d9af25e53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_10.png deleted file mode 100644 index 81451ad5b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_11.png deleted file mode 100644 index 27f3dc0f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_12.png deleted file mode 100644 index 142b72359..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_13.png deleted file mode 100644 index 6ae4bdb50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_14.png deleted file mode 100644 index 55c236af4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_15.png deleted file mode 100644 index 6ac760617..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_16.png deleted file mode 100644 index 978247e36..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_17.png deleted file mode 100644 index 97f79f1e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_18.png deleted file mode 100644 index 275fbb762..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_19.png deleted file mode 100644 index 4ea550e34..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_2.png deleted file mode 100644 index e81f2a0dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_20.png deleted file mode 100644 index dbeb553bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_3.png deleted file mode 100644 index eb785cf85..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_4.png deleted file mode 100644 index 096517f8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_5.png deleted file mode 100644 index 6e0b8b728..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_6.png deleted file mode 100644 index 3d3d09636..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_7.png deleted file mode 100644 index 97326c4e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_8.png deleted file mode 100644 index ce72401fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg20_9.png deleted file mode 100644 index 8fd43e082..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-1.png deleted file mode 100644 index 71ed5955c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-10.png deleted file mode 100644 index 0cbe951bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-11.png deleted file mode 100644 index 9b411456e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-12.png deleted file mode 100644 index 7f51f864f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-13.png deleted file mode 100644 index 844e494d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-14.png deleted file mode 100644 index e7e706c01..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-15.png deleted file mode 100644 index 98c1a4450..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-16.png deleted file mode 100644 index 99253fbd6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-17.png deleted file mode 100644 index 847ee025f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-18.png deleted file mode 100644 index 7915ae1d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-19.png deleted file mode 100644 index 84857983e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-2.png deleted file mode 100644 index cb0d5fd3c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-20.png deleted file mode 100644 index 7efe0591b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-21.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-21.png deleted file mode 100644 index 9dbcfee16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-22.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-22.png deleted file mode 100644 index bffe9d159..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-23.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-23.png deleted file mode 100644 index 6e4a9d896..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-24.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-24.png deleted file mode 100644 index a4843ea0b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-25.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-25.png deleted file mode 100644 index 04cc5f480..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-26.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-26.png deleted file mode 100644 index 343872fbe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-27.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-27.png deleted file mode 100644 index 30ce34fb8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-28.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-28.png deleted file mode 100644 index 646d60372..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-29.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-29.png deleted file mode 100644 index 34c6f8df7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-3.png deleted file mode 100644 index f086569a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-30.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-30.png deleted file mode 100644 index 2ad2d108e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-4.png deleted file mode 100644 index ce4cf559e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-5.png deleted file mode 100644 index 9973ff2ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-6.png deleted file mode 100644 index 5a0ba30fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-7.png deleted file mode 100644 index d2ffa6ce2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-8.png deleted file mode 100644 index b60111bfd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-9.png deleted file mode 100644 index 9d5ded50f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_0.png deleted file mode 100644 index 226ad85fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_1.png deleted file mode 100644 index 607d303ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_10.png deleted file mode 100644 index 7ab424a20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_11.png deleted file mode 100644 index 67eca98cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_12.png deleted file mode 100644 index b73b1047b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_13.png deleted file mode 100644 index 78c84dda0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_14.png deleted file mode 100644 index de26790a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_15.png deleted file mode 100644 index 0e256a502..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_16.png deleted file mode 100644 index 2edf66052..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_17.png deleted file mode 100644 index df189a7a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_18.png deleted file mode 100644 index 8950cf0cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_19.png deleted file mode 100644 index 5e5f66af8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_2.png deleted file mode 100644 index a28a1c7b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_20.png deleted file mode 100644 index d38e30296..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_21.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_21.png deleted file mode 100644 index 5efcd77ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_22.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_22.png deleted file mode 100644 index e6151e8e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_23.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_23.png deleted file mode 100644 index 7913b091c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_24.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_24.png deleted file mode 100644 index d25c6dcb4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_25.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_25.png deleted file mode 100644 index bea433dbd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_26.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_26.png deleted file mode 100644 index d2d7c217e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_27.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_27.png deleted file mode 100644 index 2d56c667e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_28.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_28.png deleted file mode 100644 index 88b439a6c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_29.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_29.png deleted file mode 100644 index addfa0f16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_3.png deleted file mode 100644 index ffec70eba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_30.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_30.png deleted file mode 100644 index 527988ee3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_4.png deleted file mode 100644 index 9dd5782d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_5.png deleted file mode 100644 index d890ae627..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_6.png deleted file mode 100644 index 923719f16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_7.png deleted file mode 100644 index d4febc888..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_8.png deleted file mode 100644 index 560828a99..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg30_9.png deleted file mode 100644 index 257942fde..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-1.png deleted file mode 100644 index c984671d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-10.png deleted file mode 100644 index 8d0fb08b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-11.png deleted file mode 100644 index fe3e6b3bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-12.png deleted file mode 100644 index c2ec7cc83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-13.png deleted file mode 100644 index 67eb18211..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-14.png deleted file mode 100644 index 119bb52a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-15.png deleted file mode 100644 index 1a04ef354..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-16.png deleted file mode 100644 index 07214c4cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-17.png deleted file mode 100644 index f5f061fe1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-18.png deleted file mode 100644 index 5d2622b58..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-19.png deleted file mode 100644 index 8e1d7d2f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-2.png deleted file mode 100644 index 3b824b719..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-20.png deleted file mode 100644 index e2398a5c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-21.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-21.png deleted file mode 100644 index 6fbd4a298..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-22.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-22.png deleted file mode 100644 index f8e0dea55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-23.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-23.png deleted file mode 100644 index 32bfcb97e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-24.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-24.png deleted file mode 100644 index 4ef890973..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-25.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-25.png deleted file mode 100644 index 145e6aa76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-26.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-26.png deleted file mode 100644 index 9d40f685f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-27.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-27.png deleted file mode 100644 index ecfb0f5b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-28.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-28.png deleted file mode 100644 index 914c2a9d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-29.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-29.png deleted file mode 100644 index 768a4573b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-3.png deleted file mode 100644 index 95d47cb8e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-30.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-30.png deleted file mode 100644 index b18834ea5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-31.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-31.png deleted file mode 100644 index 25c637ca8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-32.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-32.png deleted file mode 100644 index 09b7c963a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-33.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-33.png deleted file mode 100644 index 0c74d368b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-34.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-34.png deleted file mode 100644 index 1c2788444..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-35.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-35.png deleted file mode 100644 index 692ff3054..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-36.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-36.png deleted file mode 100644 index 048efc255..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-37.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-37.png deleted file mode 100644 index 51c8d3e60..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-38.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-38.png deleted file mode 100644 index 083400f60..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-39.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-39.png deleted file mode 100644 index 58009a410..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-4.png deleted file mode 100644 index 38dd054e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-40.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-40.png deleted file mode 100644 index 677edf99c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-5.png deleted file mode 100644 index 4e1585106..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-6.png deleted file mode 100644 index e10e78f88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-7.png deleted file mode 100644 index fda6c6cb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-8.png deleted file mode 100644 index 31f618f20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-9.png deleted file mode 100644 index 1b85b3962..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_0.png deleted file mode 100644 index ce4051b1b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_1.png deleted file mode 100644 index 4d10ca0e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_10.png deleted file mode 100644 index 251482941..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_11.png deleted file mode 100644 index 05adcdaad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_12.png deleted file mode 100644 index 4b5ddbfe0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_13.png deleted file mode 100644 index d53dd3bd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_14.png deleted file mode 100644 index fb2332441..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_15.png deleted file mode 100644 index 1545e4033..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_16.png deleted file mode 100644 index 0d900d19f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_17.png deleted file mode 100644 index 519b88a19..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_18.png deleted file mode 100644 index acbfd4252..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_19.png deleted file mode 100644 index 847942a50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_2.png deleted file mode 100644 index cd9ce8f83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_20.png deleted file mode 100644 index 675ecf448..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_21.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_21.png deleted file mode 100644 index 1a9f9ec2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_22.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_22.png deleted file mode 100644 index 25741e108..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_23.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_23.png deleted file mode 100644 index e7a240495..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_24.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_24.png deleted file mode 100644 index 78b57ab4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_25.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_25.png deleted file mode 100644 index 48abab009..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_26.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_26.png deleted file mode 100644 index cc99277a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_27.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_27.png deleted file mode 100644 index 695803738..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_28.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_28.png deleted file mode 100644 index c2cb61603..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_29.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_29.png deleted file mode 100644 index 8cd69b432..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_3.png deleted file mode 100644 index 7168ece18..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_30.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_30.png deleted file mode 100644 index 8c6c6ca40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_31.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_31.png deleted file mode 100644 index dd31f6846..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_32.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_32.png deleted file mode 100644 index e14017e4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_33.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_33.png deleted file mode 100644 index 37fdc08f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_34.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_34.png deleted file mode 100644 index 811b5db8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_35.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_35.png deleted file mode 100644 index f3ee46975..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_36.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_36.png deleted file mode 100644 index ef98d398c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_37.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_37.png deleted file mode 100644 index 4c97363b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_38.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_38.png deleted file mode 100644 index 1c5ce5a4a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_39.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_39.png deleted file mode 100644 index 44683fa2b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_4.png deleted file mode 100644 index 9fe8c6fa7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_40.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_40.png deleted file mode 100644 index 275c21188..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_5.png deleted file mode 100644 index 017ebb7f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_6.png deleted file mode 100644 index 8f980cba3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_7.png deleted file mode 100644 index 0f38d6a6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_8.png deleted file mode 100644 index aeeff76bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg40_9.png deleted file mode 100644 index df636744e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-1.png deleted file mode 100644 index 406540b72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-10.png deleted file mode 100644 index 5669c7213..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-11.png deleted file mode 100644 index aea0f4bf6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-12.png deleted file mode 100644 index 02fff8ccf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-13.png deleted file mode 100644 index 3017658c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-14.png deleted file mode 100644 index a4c723efd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-15.png deleted file mode 100644 index 8fa90c49a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-16.png deleted file mode 100644 index 684cdd1eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-17.png deleted file mode 100644 index 4433ee841..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-18.png deleted file mode 100644 index c575aea38..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-19.png deleted file mode 100644 index b81d3a72c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-2.png deleted file mode 100644 index 4c3445eed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-20.png deleted file mode 100644 index 14d7f3c10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-21.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-21.png deleted file mode 100644 index 1171f398d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-22.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-22.png deleted file mode 100644 index de470c537..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-23.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-23.png deleted file mode 100644 index 353a1eb30..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-24.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-24.png deleted file mode 100644 index f44db91ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-25.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-25.png deleted file mode 100644 index 4a8597da8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-26.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-26.png deleted file mode 100644 index 7ef5f7ae6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-27.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-27.png deleted file mode 100644 index 5bf326dc1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-28.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-28.png deleted file mode 100644 index 3523d1c46..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-29.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-29.png deleted file mode 100644 index 152eb64f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-3.png deleted file mode 100644 index f55894633..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-30.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-30.png deleted file mode 100644 index 00c3ea6ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-31.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-31.png deleted file mode 100644 index 824f44fca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-32.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-32.png deleted file mode 100644 index 9e6fd9a52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-33.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-33.png deleted file mode 100644 index a78cd5d42..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-34.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-34.png deleted file mode 100644 index a7b3e10db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-35.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-35.png deleted file mode 100644 index 589d2e2d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-36.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-36.png deleted file mode 100644 index 67c8c8349..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-37.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-37.png deleted file mode 100644 index ee512c5a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-38.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-38.png deleted file mode 100644 index 7b9cd0043..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-39.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-39.png deleted file mode 100644 index 98c979ff7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-4.png deleted file mode 100644 index 74f128edb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-40.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-40.png deleted file mode 100644 index 0d6b3e973..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-41.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-41.png deleted file mode 100644 index f7c2d5307..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-42.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-42.png deleted file mode 100644 index 538fe8b92..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-43.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-43.png deleted file mode 100644 index 08afcbd20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-44.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-44.png deleted file mode 100644 index 84c25ea5d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-45.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-45.png deleted file mode 100644 index 0531f5345..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-46.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-46.png deleted file mode 100644 index a549b6115..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-47.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-47.png deleted file mode 100644 index 63cf94b17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-48.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-48.png deleted file mode 100644 index df1f51034..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-49.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-49.png deleted file mode 100644 index 006f2a75d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-5.png deleted file mode 100644 index b34426f12..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-50.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-50.png deleted file mode 100644 index 04f053d1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-6.png deleted file mode 100644 index 794a7f5f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-7.png deleted file mode 100644 index 04958e3fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-8.png deleted file mode 100644 index cd30b49c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-9.png deleted file mode 100644 index d90c2fa07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_0.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_0.png deleted file mode 100644 index 78834248a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_1.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_1.png deleted file mode 100644 index 4e4fb7b88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_10.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_10.png deleted file mode 100644 index bab423ecd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_11.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_11.png deleted file mode 100644 index 4a285bb14..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_12.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_12.png deleted file mode 100644 index 9f5d9f0ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_13.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_13.png deleted file mode 100644 index 779377eff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_14.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_14.png deleted file mode 100644 index bc139c858..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_15.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_15.png deleted file mode 100644 index da319c78a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_16.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_16.png deleted file mode 100644 index 136731819..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_17.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_17.png deleted file mode 100644 index 1345ca2c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_18.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_18.png deleted file mode 100644 index f947725d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_19.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_19.png deleted file mode 100644 index f46596463..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_2.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_2.png deleted file mode 100644 index ddccc6843..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_20.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_20.png deleted file mode 100644 index f1d51ec41..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_21.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_21.png deleted file mode 100644 index 745fed939..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_22.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_22.png deleted file mode 100644 index a64ecdecd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_23.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_23.png deleted file mode 100644 index 38d50fd16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_24.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_24.png deleted file mode 100644 index e10e61d80..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_25.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_25.png deleted file mode 100644 index 30e28d425..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_26.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_26.png deleted file mode 100644 index eaa67edcf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_27.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_27.png deleted file mode 100644 index 9c12249ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_28.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_28.png deleted file mode 100644 index 6b4f2c74f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_29.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_29.png deleted file mode 100644 index ed1725797..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_3.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_3.png deleted file mode 100644 index 655f8e373..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_30.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_30.png deleted file mode 100644 index fbf514100..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_31.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_31.png deleted file mode 100644 index a8a5ab1e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_32.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_32.png deleted file mode 100644 index d9f6c710c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_33.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_33.png deleted file mode 100644 index 24e493a8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_34.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_34.png deleted file mode 100644 index 94f0529f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_35.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_35.png deleted file mode 100644 index 0494a65ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_36.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_36.png deleted file mode 100644 index 0686735d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_37.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_37.png deleted file mode 100644 index c39de1cb9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_38.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_38.png deleted file mode 100644 index ed8e0f756..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_39.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_39.png deleted file mode 100644 index 240746be2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_4.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_4.png deleted file mode 100644 index 93a55707c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_40.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_40.png deleted file mode 100644 index b43ef8729..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_41.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_41.png deleted file mode 100644 index 7fcfc9874..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_42.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_42.png deleted file mode 100644 index 1f03e11f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_43.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_43.png deleted file mode 100644 index b18409554..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_44.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_44.png deleted file mode 100644 index c55c89875..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_45.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_45.png deleted file mode 100644 index d7127ea1b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_46.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_46.png deleted file mode 100644 index 484c85367..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_47.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_47.png deleted file mode 100644 index b43470298..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_48.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_48.png deleted file mode 100644 index de3ed89dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_49.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_49.png deleted file mode 100644 index 5215de134..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_5.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_5.png deleted file mode 100644 index da0c689e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_50.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_50.png deleted file mode 100644 index 7ba17be0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_6.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_6.png deleted file mode 100644 index ce244b6de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_7.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_7.png deleted file mode 100644 index 686c1c7df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_8.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_8.png deleted file mode 100644 index 42cabe2bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_9.png b/weather.openmeteo/resources/icons/graph/2160/scaleneg50_9.png deleted file mode 100644 index 324d45d63..000000000 Binary files a/weather.openmeteo/resources/icons/graph/2160/scaleneg50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_0.png b/weather.openmeteo/resources/icons/graph/720/scale100_0.png deleted file mode 100644 index 234b91373..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_1.png b/weather.openmeteo/resources/icons/graph/720/scale100_1.png deleted file mode 100644 index 234b91373..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_10.png b/weather.openmeteo/resources/icons/graph/720/scale100_10.png deleted file mode 100644 index 934155038..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_100.png b/weather.openmeteo/resources/icons/graph/720/scale100_100.png deleted file mode 100644 index f63a2625e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_11.png b/weather.openmeteo/resources/icons/graph/720/scale100_11.png deleted file mode 100644 index 98f6e3038..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_12.png b/weather.openmeteo/resources/icons/graph/720/scale100_12.png deleted file mode 100644 index 050796502..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_13.png b/weather.openmeteo/resources/icons/graph/720/scale100_13.png deleted file mode 100644 index 3eebc486b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_14.png b/weather.openmeteo/resources/icons/graph/720/scale100_14.png deleted file mode 100644 index ce9f088e1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_15.png b/weather.openmeteo/resources/icons/graph/720/scale100_15.png deleted file mode 100644 index a939697b7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_16.png b/weather.openmeteo/resources/icons/graph/720/scale100_16.png deleted file mode 100644 index 08e4ce7dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_17.png b/weather.openmeteo/resources/icons/graph/720/scale100_17.png deleted file mode 100644 index 86e3daf1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_18.png b/weather.openmeteo/resources/icons/graph/720/scale100_18.png deleted file mode 100644 index 96f6f7cf0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_19.png b/weather.openmeteo/resources/icons/graph/720/scale100_19.png deleted file mode 100644 index ae67429d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_2.png b/weather.openmeteo/resources/icons/graph/720/scale100_2.png deleted file mode 100644 index 3fccecbf7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_20.png b/weather.openmeteo/resources/icons/graph/720/scale100_20.png deleted file mode 100644 index 0ce934f7d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_21.png b/weather.openmeteo/resources/icons/graph/720/scale100_21.png deleted file mode 100644 index 2afb193dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_22.png b/weather.openmeteo/resources/icons/graph/720/scale100_22.png deleted file mode 100644 index fec9881c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_23.png b/weather.openmeteo/resources/icons/graph/720/scale100_23.png deleted file mode 100644 index f8f271bb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_24.png b/weather.openmeteo/resources/icons/graph/720/scale100_24.png deleted file mode 100644 index f81c16422..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_25.png b/weather.openmeteo/resources/icons/graph/720/scale100_25.png deleted file mode 100644 index a5ea6867c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_26.png b/weather.openmeteo/resources/icons/graph/720/scale100_26.png deleted file mode 100644 index 89ffc5017..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_27.png b/weather.openmeteo/resources/icons/graph/720/scale100_27.png deleted file mode 100644 index cf50a487f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_28.png b/weather.openmeteo/resources/icons/graph/720/scale100_28.png deleted file mode 100644 index fb47bc63b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_29.png b/weather.openmeteo/resources/icons/graph/720/scale100_29.png deleted file mode 100644 index 32bc4f6b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_3.png b/weather.openmeteo/resources/icons/graph/720/scale100_3.png deleted file mode 100644 index 2ada15ef3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_30.png b/weather.openmeteo/resources/icons/graph/720/scale100_30.png deleted file mode 100644 index 064593d03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_31.png b/weather.openmeteo/resources/icons/graph/720/scale100_31.png deleted file mode 100644 index d10101411..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_32.png b/weather.openmeteo/resources/icons/graph/720/scale100_32.png deleted file mode 100644 index a62d33f8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_33.png b/weather.openmeteo/resources/icons/graph/720/scale100_33.png deleted file mode 100644 index f1dbb9e01..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_34.png b/weather.openmeteo/resources/icons/graph/720/scale100_34.png deleted file mode 100644 index d262a4fe6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_35.png b/weather.openmeteo/resources/icons/graph/720/scale100_35.png deleted file mode 100644 index b5d069b0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_36.png b/weather.openmeteo/resources/icons/graph/720/scale100_36.png deleted file mode 100644 index 71633064a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_37.png b/weather.openmeteo/resources/icons/graph/720/scale100_37.png deleted file mode 100644 index 5a1bff85f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_38.png b/weather.openmeteo/resources/icons/graph/720/scale100_38.png deleted file mode 100644 index b5731ecb5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_39.png b/weather.openmeteo/resources/icons/graph/720/scale100_39.png deleted file mode 100644 index 927608966..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_4.png b/weather.openmeteo/resources/icons/graph/720/scale100_4.png deleted file mode 100644 index 5035383a9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_40.png b/weather.openmeteo/resources/icons/graph/720/scale100_40.png deleted file mode 100644 index ab8639c3d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_41.png b/weather.openmeteo/resources/icons/graph/720/scale100_41.png deleted file mode 100644 index c39e2bba6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_42.png b/weather.openmeteo/resources/icons/graph/720/scale100_42.png deleted file mode 100644 index c35eeba59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_43.png b/weather.openmeteo/resources/icons/graph/720/scale100_43.png deleted file mode 100644 index bf9d2355f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_44.png b/weather.openmeteo/resources/icons/graph/720/scale100_44.png deleted file mode 100644 index 1b6b756df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_45.png b/weather.openmeteo/resources/icons/graph/720/scale100_45.png deleted file mode 100644 index 603db8222..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_46.png b/weather.openmeteo/resources/icons/graph/720/scale100_46.png deleted file mode 100644 index 7fb4888b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_47.png b/weather.openmeteo/resources/icons/graph/720/scale100_47.png deleted file mode 100644 index 1160a97be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_48.png b/weather.openmeteo/resources/icons/graph/720/scale100_48.png deleted file mode 100644 index c1f20efbf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_49.png b/weather.openmeteo/resources/icons/graph/720/scale100_49.png deleted file mode 100644 index 76ba33999..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_5.png b/weather.openmeteo/resources/icons/graph/720/scale100_5.png deleted file mode 100644 index 44130a5b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_50.png b/weather.openmeteo/resources/icons/graph/720/scale100_50.png deleted file mode 100644 index f232dd756..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_51.png b/weather.openmeteo/resources/icons/graph/720/scale100_51.png deleted file mode 100644 index 9895b1bb8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_52.png b/weather.openmeteo/resources/icons/graph/720/scale100_52.png deleted file mode 100644 index c95b5fc6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_53.png b/weather.openmeteo/resources/icons/graph/720/scale100_53.png deleted file mode 100644 index df5d5fcf4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_54.png b/weather.openmeteo/resources/icons/graph/720/scale100_54.png deleted file mode 100644 index c82d54615..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_55.png b/weather.openmeteo/resources/icons/graph/720/scale100_55.png deleted file mode 100644 index da63768b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_56.png b/weather.openmeteo/resources/icons/graph/720/scale100_56.png deleted file mode 100644 index 270a6a03c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_57.png b/weather.openmeteo/resources/icons/graph/720/scale100_57.png deleted file mode 100644 index 9b1f0002a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_58.png b/weather.openmeteo/resources/icons/graph/720/scale100_58.png deleted file mode 100644 index d96d176bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_59.png b/weather.openmeteo/resources/icons/graph/720/scale100_59.png deleted file mode 100644 index 4c984a542..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_6.png b/weather.openmeteo/resources/icons/graph/720/scale100_6.png deleted file mode 100644 index cf6167442..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_60.png b/weather.openmeteo/resources/icons/graph/720/scale100_60.png deleted file mode 100644 index e50aa3110..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_61.png b/weather.openmeteo/resources/icons/graph/720/scale100_61.png deleted file mode 100644 index 2d9042ae3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_62.png b/weather.openmeteo/resources/icons/graph/720/scale100_62.png deleted file mode 100644 index 2d20b15e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_63.png b/weather.openmeteo/resources/icons/graph/720/scale100_63.png deleted file mode 100644 index d41779e54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_64.png b/weather.openmeteo/resources/icons/graph/720/scale100_64.png deleted file mode 100644 index 8ea670a52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_65.png b/weather.openmeteo/resources/icons/graph/720/scale100_65.png deleted file mode 100644 index ace57f698..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_66.png b/weather.openmeteo/resources/icons/graph/720/scale100_66.png deleted file mode 100644 index b3167eeb6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_67.png b/weather.openmeteo/resources/icons/graph/720/scale100_67.png deleted file mode 100644 index 2c5680670..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_68.png b/weather.openmeteo/resources/icons/graph/720/scale100_68.png deleted file mode 100644 index 0443ea313..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_69.png b/weather.openmeteo/resources/icons/graph/720/scale100_69.png deleted file mode 100644 index 31358d29b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_7.png b/weather.openmeteo/resources/icons/graph/720/scale100_7.png deleted file mode 100644 index 09dcc052d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_70.png b/weather.openmeteo/resources/icons/graph/720/scale100_70.png deleted file mode 100644 index 6718d514f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_71.png b/weather.openmeteo/resources/icons/graph/720/scale100_71.png deleted file mode 100644 index cf0307ba9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_72.png b/weather.openmeteo/resources/icons/graph/720/scale100_72.png deleted file mode 100644 index 6c44c296f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_73.png b/weather.openmeteo/resources/icons/graph/720/scale100_73.png deleted file mode 100644 index 893276ad7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_74.png b/weather.openmeteo/resources/icons/graph/720/scale100_74.png deleted file mode 100644 index 272a028b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_75.png b/weather.openmeteo/resources/icons/graph/720/scale100_75.png deleted file mode 100644 index 17348941f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_76.png b/weather.openmeteo/resources/icons/graph/720/scale100_76.png deleted file mode 100644 index 7e08f8ab3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_77.png b/weather.openmeteo/resources/icons/graph/720/scale100_77.png deleted file mode 100644 index e8f7a1f05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_78.png b/weather.openmeteo/resources/icons/graph/720/scale100_78.png deleted file mode 100644 index 403e0aa40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_79.png b/weather.openmeteo/resources/icons/graph/720/scale100_79.png deleted file mode 100644 index efe5a965c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_8.png b/weather.openmeteo/resources/icons/graph/720/scale100_8.png deleted file mode 100644 index 587b6632d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_80.png b/weather.openmeteo/resources/icons/graph/720/scale100_80.png deleted file mode 100644 index 59b20877a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_81.png b/weather.openmeteo/resources/icons/graph/720/scale100_81.png deleted file mode 100644 index 5c3474986..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_82.png b/weather.openmeteo/resources/icons/graph/720/scale100_82.png deleted file mode 100644 index cf3263cb6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_83.png b/weather.openmeteo/resources/icons/graph/720/scale100_83.png deleted file mode 100644 index f3b05ec01..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_84.png b/weather.openmeteo/resources/icons/graph/720/scale100_84.png deleted file mode 100644 index 762b6a15b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_85.png b/weather.openmeteo/resources/icons/graph/720/scale100_85.png deleted file mode 100644 index 0c65585ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_86.png b/weather.openmeteo/resources/icons/graph/720/scale100_86.png deleted file mode 100644 index 46933eb7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_87.png b/weather.openmeteo/resources/icons/graph/720/scale100_87.png deleted file mode 100644 index cbd3fb8e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_88.png b/weather.openmeteo/resources/icons/graph/720/scale100_88.png deleted file mode 100644 index a79bd2429..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_89.png b/weather.openmeteo/resources/icons/graph/720/scale100_89.png deleted file mode 100644 index a50556930..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_9.png b/weather.openmeteo/resources/icons/graph/720/scale100_9.png deleted file mode 100644 index f67eac4d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_90.png b/weather.openmeteo/resources/icons/graph/720/scale100_90.png deleted file mode 100644 index 09b4b12c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_91.png b/weather.openmeteo/resources/icons/graph/720/scale100_91.png deleted file mode 100644 index 994723ee7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_92.png b/weather.openmeteo/resources/icons/graph/720/scale100_92.png deleted file mode 100644 index 1ebd9b19f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_93.png b/weather.openmeteo/resources/icons/graph/720/scale100_93.png deleted file mode 100644 index 6f847b29a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_94.png b/weather.openmeteo/resources/icons/graph/720/scale100_94.png deleted file mode 100644 index 83c23da82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_95.png b/weather.openmeteo/resources/icons/graph/720/scale100_95.png deleted file mode 100644 index 28a1929a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_96.png b/weather.openmeteo/resources/icons/graph/720/scale100_96.png deleted file mode 100644 index bf3defc37..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_97.png b/weather.openmeteo/resources/icons/graph/720/scale100_97.png deleted file mode 100644 index fa6ae9c9c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_98.png b/weather.openmeteo/resources/icons/graph/720/scale100_98.png deleted file mode 100644 index ae5327563..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale100_99.png b/weather.openmeteo/resources/icons/graph/720/scale100_99.png deleted file mode 100644 index 6a132556a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale100_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_0.png b/weather.openmeteo/resources/icons/graph/720/scale10_0.png deleted file mode 100644 index 57b6f3237..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_1.png b/weather.openmeteo/resources/icons/graph/720/scale10_1.png deleted file mode 100644 index aaac33b4d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_10.png b/weather.openmeteo/resources/icons/graph/720/scale10_10.png deleted file mode 100644 index 5c589b4f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_2.png b/weather.openmeteo/resources/icons/graph/720/scale10_2.png deleted file mode 100644 index f48b05452..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_3.png b/weather.openmeteo/resources/icons/graph/720/scale10_3.png deleted file mode 100644 index fd7942c52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_4.png b/weather.openmeteo/resources/icons/graph/720/scale10_4.png deleted file mode 100644 index 8bca68bdd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_5.png b/weather.openmeteo/resources/icons/graph/720/scale10_5.png deleted file mode 100644 index f16fd5dde..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_6.png b/weather.openmeteo/resources/icons/graph/720/scale10_6.png deleted file mode 100644 index 8970f3fa4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_7.png b/weather.openmeteo/resources/icons/graph/720/scale10_7.png deleted file mode 100644 index 3a46bf69f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_8.png b/weather.openmeteo/resources/icons/graph/720/scale10_8.png deleted file mode 100644 index 43c48c53d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale10_9.png b/weather.openmeteo/resources/icons/graph/720/scale10_9.png deleted file mode 100644 index 1c650ebf0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_0.png b/weather.openmeteo/resources/icons/graph/720/scale150_0.png deleted file mode 100644 index e8099b158..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_1.png b/weather.openmeteo/resources/icons/graph/720/scale150_1.png deleted file mode 100644 index e8099b158..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_10.png b/weather.openmeteo/resources/icons/graph/720/scale150_10.png deleted file mode 100644 index 17d93e966..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_100.png b/weather.openmeteo/resources/icons/graph/720/scale150_100.png deleted file mode 100644 index e09bfad26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_101.png b/weather.openmeteo/resources/icons/graph/720/scale150_101.png deleted file mode 100644 index e09bfad26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_102.png b/weather.openmeteo/resources/icons/graph/720/scale150_102.png deleted file mode 100644 index 5ddd7038d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_103.png b/weather.openmeteo/resources/icons/graph/720/scale150_103.png deleted file mode 100644 index 0bb5bfe9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_104.png b/weather.openmeteo/resources/icons/graph/720/scale150_104.png deleted file mode 100644 index 0bb5bfe9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_105.png b/weather.openmeteo/resources/icons/graph/720/scale150_105.png deleted file mode 100644 index a92936486..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_106.png b/weather.openmeteo/resources/icons/graph/720/scale150_106.png deleted file mode 100644 index 63cb72145..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_107.png b/weather.openmeteo/resources/icons/graph/720/scale150_107.png deleted file mode 100644 index 63cb72145..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_108.png b/weather.openmeteo/resources/icons/graph/720/scale150_108.png deleted file mode 100644 index 54ee23aec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_109.png b/weather.openmeteo/resources/icons/graph/720/scale150_109.png deleted file mode 100644 index c7f76c1fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_11.png b/weather.openmeteo/resources/icons/graph/720/scale150_11.png deleted file mode 100644 index 17d93e966..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_110.png b/weather.openmeteo/resources/icons/graph/720/scale150_110.png deleted file mode 100644 index c7f76c1fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_111.png b/weather.openmeteo/resources/icons/graph/720/scale150_111.png deleted file mode 100644 index cdd3fe101..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_112.png b/weather.openmeteo/resources/icons/graph/720/scale150_112.png deleted file mode 100644 index 2ac37d59c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_113.png b/weather.openmeteo/resources/icons/graph/720/scale150_113.png deleted file mode 100644 index 2ac37d59c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_114.png b/weather.openmeteo/resources/icons/graph/720/scale150_114.png deleted file mode 100644 index 211aeaecc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_115.png b/weather.openmeteo/resources/icons/graph/720/scale150_115.png deleted file mode 100644 index 942793d3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_116.png b/weather.openmeteo/resources/icons/graph/720/scale150_116.png deleted file mode 100644 index 942793d3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_117.png b/weather.openmeteo/resources/icons/graph/720/scale150_117.png deleted file mode 100644 index 58efd201f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_118.png b/weather.openmeteo/resources/icons/graph/720/scale150_118.png deleted file mode 100644 index fc32489f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_119.png b/weather.openmeteo/resources/icons/graph/720/scale150_119.png deleted file mode 100644 index fc32489f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_12.png b/weather.openmeteo/resources/icons/graph/720/scale150_12.png deleted file mode 100644 index 1a1375def..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_120.png b/weather.openmeteo/resources/icons/graph/720/scale150_120.png deleted file mode 100644 index 16cdf7712..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_121.png b/weather.openmeteo/resources/icons/graph/720/scale150_121.png deleted file mode 100644 index 60d8547a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_122.png b/weather.openmeteo/resources/icons/graph/720/scale150_122.png deleted file mode 100644 index 60d8547a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_123.png b/weather.openmeteo/resources/icons/graph/720/scale150_123.png deleted file mode 100644 index c8de6b1a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_124.png b/weather.openmeteo/resources/icons/graph/720/scale150_124.png deleted file mode 100644 index 9f972a2ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_125.png b/weather.openmeteo/resources/icons/graph/720/scale150_125.png deleted file mode 100644 index 9f972a2ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_126.png b/weather.openmeteo/resources/icons/graph/720/scale150_126.png deleted file mode 100644 index e217a68dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_127.png b/weather.openmeteo/resources/icons/graph/720/scale150_127.png deleted file mode 100644 index 52ffef106..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_128.png b/weather.openmeteo/resources/icons/graph/720/scale150_128.png deleted file mode 100644 index 52ffef106..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_129.png b/weather.openmeteo/resources/icons/graph/720/scale150_129.png deleted file mode 100644 index ca4e505e0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_13.png b/weather.openmeteo/resources/icons/graph/720/scale150_13.png deleted file mode 100644 index 25c08c4ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_130.png b/weather.openmeteo/resources/icons/graph/720/scale150_130.png deleted file mode 100644 index 8591007e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_131.png b/weather.openmeteo/resources/icons/graph/720/scale150_131.png deleted file mode 100644 index 8591007e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_132.png b/weather.openmeteo/resources/icons/graph/720/scale150_132.png deleted file mode 100644 index 5807ddc88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_133.png b/weather.openmeteo/resources/icons/graph/720/scale150_133.png deleted file mode 100644 index 21867feb6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_134.png b/weather.openmeteo/resources/icons/graph/720/scale150_134.png deleted file mode 100644 index bf5e346a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_135.png b/weather.openmeteo/resources/icons/graph/720/scale150_135.png deleted file mode 100644 index 97a197dac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_136.png b/weather.openmeteo/resources/icons/graph/720/scale150_136.png deleted file mode 100644 index b6a8ab876..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_137.png b/weather.openmeteo/resources/icons/graph/720/scale150_137.png deleted file mode 100644 index 4f8412261..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_138.png b/weather.openmeteo/resources/icons/graph/720/scale150_138.png deleted file mode 100644 index 45f0a9de8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_139.png b/weather.openmeteo/resources/icons/graph/720/scale150_139.png deleted file mode 100644 index f1a45a1a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_14.png b/weather.openmeteo/resources/icons/graph/720/scale150_14.png deleted file mode 100644 index 25c08c4ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_140.png b/weather.openmeteo/resources/icons/graph/720/scale150_140.png deleted file mode 100644 index a952a9187..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_141.png b/weather.openmeteo/resources/icons/graph/720/scale150_141.png deleted file mode 100644 index da7776e3a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_142.png b/weather.openmeteo/resources/icons/graph/720/scale150_142.png deleted file mode 100644 index 20de550b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_143.png b/weather.openmeteo/resources/icons/graph/720/scale150_143.png deleted file mode 100644 index cf3dc3a12..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_144.png b/weather.openmeteo/resources/icons/graph/720/scale150_144.png deleted file mode 100644 index 2a644c9b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_145.png b/weather.openmeteo/resources/icons/graph/720/scale150_145.png deleted file mode 100644 index 52ab3ed5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_146.png b/weather.openmeteo/resources/icons/graph/720/scale150_146.png deleted file mode 100644 index 1c0e20f1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_147.png b/weather.openmeteo/resources/icons/graph/720/scale150_147.png deleted file mode 100644 index c32415e64..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_148.png b/weather.openmeteo/resources/icons/graph/720/scale150_148.png deleted file mode 100644 index 19275b4ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_149.png b/weather.openmeteo/resources/icons/graph/720/scale150_149.png deleted file mode 100644 index 19275b4ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_15.png b/weather.openmeteo/resources/icons/graph/720/scale150_15.png deleted file mode 100644 index 734ab14dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_150.png b/weather.openmeteo/resources/icons/graph/720/scale150_150.png deleted file mode 100644 index f94d885cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_16.png b/weather.openmeteo/resources/icons/graph/720/scale150_16.png deleted file mode 100644 index f41526e4f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_17.png b/weather.openmeteo/resources/icons/graph/720/scale150_17.png deleted file mode 100644 index f41526e4f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_18.png b/weather.openmeteo/resources/icons/graph/720/scale150_18.png deleted file mode 100644 index 8a949a063..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_19.png b/weather.openmeteo/resources/icons/graph/720/scale150_19.png deleted file mode 100644 index 28386a743..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_2.png b/weather.openmeteo/resources/icons/graph/720/scale150_2.png deleted file mode 100644 index e8099b158..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_20.png b/weather.openmeteo/resources/icons/graph/720/scale150_20.png deleted file mode 100644 index 28386a743..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_21.png b/weather.openmeteo/resources/icons/graph/720/scale150_21.png deleted file mode 100644 index 2bd41a0f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_22.png b/weather.openmeteo/resources/icons/graph/720/scale150_22.png deleted file mode 100644 index 868b2c152..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_23.png b/weather.openmeteo/resources/icons/graph/720/scale150_23.png deleted file mode 100644 index 868b2c152..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_24.png b/weather.openmeteo/resources/icons/graph/720/scale150_24.png deleted file mode 100644 index cab3eb8f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_25.png b/weather.openmeteo/resources/icons/graph/720/scale150_25.png deleted file mode 100644 index 9364b8a48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_26.png b/weather.openmeteo/resources/icons/graph/720/scale150_26.png deleted file mode 100644 index 9364b8a48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_27.png b/weather.openmeteo/resources/icons/graph/720/scale150_27.png deleted file mode 100644 index ead0406a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_28.png b/weather.openmeteo/resources/icons/graph/720/scale150_28.png deleted file mode 100644 index ca4bdc18c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_29.png b/weather.openmeteo/resources/icons/graph/720/scale150_29.png deleted file mode 100644 index ca4bdc18c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_3.png b/weather.openmeteo/resources/icons/graph/720/scale150_3.png deleted file mode 100644 index 3efd8996d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_30.png b/weather.openmeteo/resources/icons/graph/720/scale150_30.png deleted file mode 100644 index 6daaeffa5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_31.png b/weather.openmeteo/resources/icons/graph/720/scale150_31.png deleted file mode 100644 index 7adee1fad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_32.png b/weather.openmeteo/resources/icons/graph/720/scale150_32.png deleted file mode 100644 index 438484c0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_33.png b/weather.openmeteo/resources/icons/graph/720/scale150_33.png deleted file mode 100644 index 9699ea496..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_34.png b/weather.openmeteo/resources/icons/graph/720/scale150_34.png deleted file mode 100644 index 37f6ca862..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_35.png b/weather.openmeteo/resources/icons/graph/720/scale150_35.png deleted file mode 100644 index 340d5c712..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_36.png b/weather.openmeteo/resources/icons/graph/720/scale150_36.png deleted file mode 100644 index 06fb89767..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_37.png b/weather.openmeteo/resources/icons/graph/720/scale150_37.png deleted file mode 100644 index b82f9c51b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_38.png b/weather.openmeteo/resources/icons/graph/720/scale150_38.png deleted file mode 100644 index d6ca39d2c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_39.png b/weather.openmeteo/resources/icons/graph/720/scale150_39.png deleted file mode 100644 index aae5f6cb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_4.png b/weather.openmeteo/resources/icons/graph/720/scale150_4.png deleted file mode 100644 index b569dc4c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_40.png b/weather.openmeteo/resources/icons/graph/720/scale150_40.png deleted file mode 100644 index 426602423..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_41.png b/weather.openmeteo/resources/icons/graph/720/scale150_41.png deleted file mode 100644 index 3dd1e80ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_42.png b/weather.openmeteo/resources/icons/graph/720/scale150_42.png deleted file mode 100644 index 348a38304..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_43.png b/weather.openmeteo/resources/icons/graph/720/scale150_43.png deleted file mode 100644 index f75225b9e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_44.png b/weather.openmeteo/resources/icons/graph/720/scale150_44.png deleted file mode 100644 index b910dfbf6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_45.png b/weather.openmeteo/resources/icons/graph/720/scale150_45.png deleted file mode 100644 index c9c70c07c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_46.png b/weather.openmeteo/resources/icons/graph/720/scale150_46.png deleted file mode 100644 index 6dea9b771..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_47.png b/weather.openmeteo/resources/icons/graph/720/scale150_47.png deleted file mode 100644 index 6dea9b771..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_48.png b/weather.openmeteo/resources/icons/graph/720/scale150_48.png deleted file mode 100644 index 60ba8cb66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_49.png b/weather.openmeteo/resources/icons/graph/720/scale150_49.png deleted file mode 100644 index 486577793..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_5.png b/weather.openmeteo/resources/icons/graph/720/scale150_5.png deleted file mode 100644 index b569dc4c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_50.png b/weather.openmeteo/resources/icons/graph/720/scale150_50.png deleted file mode 100644 index 486577793..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_51.png b/weather.openmeteo/resources/icons/graph/720/scale150_51.png deleted file mode 100644 index aa12743f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_52.png b/weather.openmeteo/resources/icons/graph/720/scale150_52.png deleted file mode 100644 index 83f93d3ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_53.png b/weather.openmeteo/resources/icons/graph/720/scale150_53.png deleted file mode 100644 index 83f93d3ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_54.png b/weather.openmeteo/resources/icons/graph/720/scale150_54.png deleted file mode 100644 index c37d98541..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_55.png b/weather.openmeteo/resources/icons/graph/720/scale150_55.png deleted file mode 100644 index a54a7cd42..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_56.png b/weather.openmeteo/resources/icons/graph/720/scale150_56.png deleted file mode 100644 index a54a7cd42..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_57.png b/weather.openmeteo/resources/icons/graph/720/scale150_57.png deleted file mode 100644 index 6ab7c12eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_58.png b/weather.openmeteo/resources/icons/graph/720/scale150_58.png deleted file mode 100644 index 50135c89b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_59.png b/weather.openmeteo/resources/icons/graph/720/scale150_59.png deleted file mode 100644 index 50135c89b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_6.png b/weather.openmeteo/resources/icons/graph/720/scale150_6.png deleted file mode 100644 index 6335194de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_60.png b/weather.openmeteo/resources/icons/graph/720/scale150_60.png deleted file mode 100644 index 94337bbc2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_61.png b/weather.openmeteo/resources/icons/graph/720/scale150_61.png deleted file mode 100644 index c6ee0c1dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_62.png b/weather.openmeteo/resources/icons/graph/720/scale150_62.png deleted file mode 100644 index c6ee0c1dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_63.png b/weather.openmeteo/resources/icons/graph/720/scale150_63.png deleted file mode 100644 index 14734bcb0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_64.png b/weather.openmeteo/resources/icons/graph/720/scale150_64.png deleted file mode 100644 index bb75b303c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_65.png b/weather.openmeteo/resources/icons/graph/720/scale150_65.png deleted file mode 100644 index bb75b303c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_66.png b/weather.openmeteo/resources/icons/graph/720/scale150_66.png deleted file mode 100644 index 10eb7ad66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_67.png b/weather.openmeteo/resources/icons/graph/720/scale150_67.png deleted file mode 100644 index 0ab171f74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_68.png b/weather.openmeteo/resources/icons/graph/720/scale150_68.png deleted file mode 100644 index 0ab171f74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_69.png b/weather.openmeteo/resources/icons/graph/720/scale150_69.png deleted file mode 100644 index c1275cc73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_7.png b/weather.openmeteo/resources/icons/graph/720/scale150_7.png deleted file mode 100644 index 4bc044535..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_70.png b/weather.openmeteo/resources/icons/graph/720/scale150_70.png deleted file mode 100644 index d5427876a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_71.png b/weather.openmeteo/resources/icons/graph/720/scale150_71.png deleted file mode 100644 index d5427876a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_72.png b/weather.openmeteo/resources/icons/graph/720/scale150_72.png deleted file mode 100644 index 026664dd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_73.png b/weather.openmeteo/resources/icons/graph/720/scale150_73.png deleted file mode 100644 index 564781d9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_74.png b/weather.openmeteo/resources/icons/graph/720/scale150_74.png deleted file mode 100644 index 564781d9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_75.png b/weather.openmeteo/resources/icons/graph/720/scale150_75.png deleted file mode 100644 index 85e525ef5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_76.png b/weather.openmeteo/resources/icons/graph/720/scale150_76.png deleted file mode 100644 index 11436fb0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_77.png b/weather.openmeteo/resources/icons/graph/720/scale150_77.png deleted file mode 100644 index 11436fb0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_78.png b/weather.openmeteo/resources/icons/graph/720/scale150_78.png deleted file mode 100644 index 2b18d7e38..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_79.png b/weather.openmeteo/resources/icons/graph/720/scale150_79.png deleted file mode 100644 index 9d66f5f06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_8.png b/weather.openmeteo/resources/icons/graph/720/scale150_8.png deleted file mode 100644 index 4bc044535..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_80.png b/weather.openmeteo/resources/icons/graph/720/scale150_80.png deleted file mode 100644 index f50757b9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_81.png b/weather.openmeteo/resources/icons/graph/720/scale150_81.png deleted file mode 100644 index 37e79f3d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_82.png b/weather.openmeteo/resources/icons/graph/720/scale150_82.png deleted file mode 100644 index 3a9b0a15e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_83.png b/weather.openmeteo/resources/icons/graph/720/scale150_83.png deleted file mode 100644 index c95e0f9bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_84.png b/weather.openmeteo/resources/icons/graph/720/scale150_84.png deleted file mode 100644 index d74a9feac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_85.png b/weather.openmeteo/resources/icons/graph/720/scale150_85.png deleted file mode 100644 index 280446a22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_86.png b/weather.openmeteo/resources/icons/graph/720/scale150_86.png deleted file mode 100644 index bf12b2393..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_87.png b/weather.openmeteo/resources/icons/graph/720/scale150_87.png deleted file mode 100644 index 7caeaf19e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_88.png b/weather.openmeteo/resources/icons/graph/720/scale150_88.png deleted file mode 100644 index d2ce78cfb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_89.png b/weather.openmeteo/resources/icons/graph/720/scale150_89.png deleted file mode 100644 index 6e1c19b8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_9.png b/weather.openmeteo/resources/icons/graph/720/scale150_9.png deleted file mode 100644 index c753937f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_90.png b/weather.openmeteo/resources/icons/graph/720/scale150_90.png deleted file mode 100644 index 1e2efd3d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_91.png b/weather.openmeteo/resources/icons/graph/720/scale150_91.png deleted file mode 100644 index 94b35c549..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_92.png b/weather.openmeteo/resources/icons/graph/720/scale150_92.png deleted file mode 100644 index e35b094df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_93.png b/weather.openmeteo/resources/icons/graph/720/scale150_93.png deleted file mode 100644 index c7e7d8620..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_94.png b/weather.openmeteo/resources/icons/graph/720/scale150_94.png deleted file mode 100644 index e0c8859d6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_95.png b/weather.openmeteo/resources/icons/graph/720/scale150_95.png deleted file mode 100644 index e0c8859d6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_96.png b/weather.openmeteo/resources/icons/graph/720/scale150_96.png deleted file mode 100644 index 8b07975df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_97.png b/weather.openmeteo/resources/icons/graph/720/scale150_97.png deleted file mode 100644 index 7459d6fe3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_98.png b/weather.openmeteo/resources/icons/graph/720/scale150_98.png deleted file mode 100644 index 7459d6fe3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale150_99.png b/weather.openmeteo/resources/icons/graph/720/scale150_99.png deleted file mode 100644 index cf3ab8645..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale150_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.0.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.0.png deleted file mode 100644 index 05c719271..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.1.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.1.png deleted file mode 100644 index 5bef963f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.2.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.2.png deleted file mode 100644 index 2977a4880..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.3.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.3.png deleted file mode 100644 index acd7bb4b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.4.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.4.png deleted file mode 100644 index e5b7512f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.5.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.5.png deleted file mode 100644 index d424d6839..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.6.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.6.png deleted file mode 100644 index de21e2d6a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.7.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.7.png deleted file mode 100644 index 622e1c57f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.8.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.8.png deleted file mode 100644 index e62657d37..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_0.9.png b/weather.openmeteo/resources/icons/graph/720/scale1_0.9.png deleted file mode 100644 index 4e0f5600d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale1_1.0.png b/weather.openmeteo/resources/icons/graph/720/scale1_1.0.png deleted file mode 100644 index bf851e22f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_0.png b/weather.openmeteo/resources/icons/graph/720/scale200_0.png deleted file mode 100644 index ae068d0e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_1.png b/weather.openmeteo/resources/icons/graph/720/scale200_1.png deleted file mode 100644 index ae068d0e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_10.png b/weather.openmeteo/resources/icons/graph/720/scale200_10.png deleted file mode 100644 index 3337b8901..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_100.png b/weather.openmeteo/resources/icons/graph/720/scale200_100.png deleted file mode 100644 index afc3c6785..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_101.png b/weather.openmeteo/resources/icons/graph/720/scale200_101.png deleted file mode 100644 index 043b3a7ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_102.png b/weather.openmeteo/resources/icons/graph/720/scale200_102.png deleted file mode 100644 index 2ccc9782e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_103.png b/weather.openmeteo/resources/icons/graph/720/scale200_103.png deleted file mode 100644 index 40fa2652c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_104.png b/weather.openmeteo/resources/icons/graph/720/scale200_104.png deleted file mode 100644 index a1a48bc1b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_105.png b/weather.openmeteo/resources/icons/graph/720/scale200_105.png deleted file mode 100644 index a1a48bc1b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_106.png b/weather.openmeteo/resources/icons/graph/720/scale200_106.png deleted file mode 100644 index d8a0fea1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_107.png b/weather.openmeteo/resources/icons/graph/720/scale200_107.png deleted file mode 100644 index e3edf66ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_108.png b/weather.openmeteo/resources/icons/graph/720/scale200_108.png deleted file mode 100644 index e3edf66ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_109.png b/weather.openmeteo/resources/icons/graph/720/scale200_109.png deleted file mode 100644 index e3edf66ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_11.png b/weather.openmeteo/resources/icons/graph/720/scale200_11.png deleted file mode 100644 index aa45c855d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_110.png b/weather.openmeteo/resources/icons/graph/720/scale200_110.png deleted file mode 100644 index 06494b72b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_111.png b/weather.openmeteo/resources/icons/graph/720/scale200_111.png deleted file mode 100644 index 67dfb1f3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_112.png b/weather.openmeteo/resources/icons/graph/720/scale200_112.png deleted file mode 100644 index 67dfb1f3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_113.png b/weather.openmeteo/resources/icons/graph/720/scale200_113.png deleted file mode 100644 index 67dfb1f3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_114.png b/weather.openmeteo/resources/icons/graph/720/scale200_114.png deleted file mode 100644 index 176efacb4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_115.png b/weather.openmeteo/resources/icons/graph/720/scale200_115.png deleted file mode 100644 index 5900ba98f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_116.png b/weather.openmeteo/resources/icons/graph/720/scale200_116.png deleted file mode 100644 index 5900ba98f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_117.png b/weather.openmeteo/resources/icons/graph/720/scale200_117.png deleted file mode 100644 index dd772c832..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_118.png b/weather.openmeteo/resources/icons/graph/720/scale200_118.png deleted file mode 100644 index 8292a31b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_119.png b/weather.openmeteo/resources/icons/graph/720/scale200_119.png deleted file mode 100644 index aa6f65657..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_12.png b/weather.openmeteo/resources/icons/graph/720/scale200_12.png deleted file mode 100644 index aa45c855d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_120.png b/weather.openmeteo/resources/icons/graph/720/scale200_120.png deleted file mode 100644 index b1f2b2429..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_121.png b/weather.openmeteo/resources/icons/graph/720/scale200_121.png deleted file mode 100644 index b1f2b2429..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_122.png b/weather.openmeteo/resources/icons/graph/720/scale200_122.png deleted file mode 100644 index f97db1bb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_123.png b/weather.openmeteo/resources/icons/graph/720/scale200_123.png deleted file mode 100644 index 694503cd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_124.png b/weather.openmeteo/resources/icons/graph/720/scale200_124.png deleted file mode 100644 index 694503cd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_125.png b/weather.openmeteo/resources/icons/graph/720/scale200_125.png deleted file mode 100644 index 694503cd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_126.png b/weather.openmeteo/resources/icons/graph/720/scale200_126.png deleted file mode 100644 index f2bf12937..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_127.png b/weather.openmeteo/resources/icons/graph/720/scale200_127.png deleted file mode 100644 index 4b88c48eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_128.png b/weather.openmeteo/resources/icons/graph/720/scale200_128.png deleted file mode 100644 index 4b88c48eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_129.png b/weather.openmeteo/resources/icons/graph/720/scale200_129.png deleted file mode 100644 index 4b88c48eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_13.png b/weather.openmeteo/resources/icons/graph/720/scale200_13.png deleted file mode 100644 index aa45c855d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_130.png b/weather.openmeteo/resources/icons/graph/720/scale200_130.png deleted file mode 100644 index 0b34b8db4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_131.png b/weather.openmeteo/resources/icons/graph/720/scale200_131.png deleted file mode 100644 index 56e6231c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_132.png b/weather.openmeteo/resources/icons/graph/720/scale200_132.png deleted file mode 100644 index 56e6231c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_133.png b/weather.openmeteo/resources/icons/graph/720/scale200_133.png deleted file mode 100644 index b1f4687d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_134.png b/weather.openmeteo/resources/icons/graph/720/scale200_134.png deleted file mode 100644 index cfc9378a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_135.png b/weather.openmeteo/resources/icons/graph/720/scale200_135.png deleted file mode 100644 index fa2f8e91e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_136.png b/weather.openmeteo/resources/icons/graph/720/scale200_136.png deleted file mode 100644 index 0eb6f97f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_137.png b/weather.openmeteo/resources/icons/graph/720/scale200_137.png deleted file mode 100644 index 0eb6f97f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_138.png b/weather.openmeteo/resources/icons/graph/720/scale200_138.png deleted file mode 100644 index ddbc24465..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_139.png b/weather.openmeteo/resources/icons/graph/720/scale200_139.png deleted file mode 100644 index edefa33a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_14.png b/weather.openmeteo/resources/icons/graph/720/scale200_14.png deleted file mode 100644 index 0b2694fa1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_140.png b/weather.openmeteo/resources/icons/graph/720/scale200_140.png deleted file mode 100644 index edefa33a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_141.png b/weather.openmeteo/resources/icons/graph/720/scale200_141.png deleted file mode 100644 index edefa33a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_142.png b/weather.openmeteo/resources/icons/graph/720/scale200_142.png deleted file mode 100644 index 59ba49dae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_143.png b/weather.openmeteo/resources/icons/graph/720/scale200_143.png deleted file mode 100644 index 04cb49c0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_144.png b/weather.openmeteo/resources/icons/graph/720/scale200_144.png deleted file mode 100644 index 04cb49c0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_145.png b/weather.openmeteo/resources/icons/graph/720/scale200_145.png deleted file mode 100644 index 04cb49c0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_146.png b/weather.openmeteo/resources/icons/graph/720/scale200_146.png deleted file mode 100644 index 743105b37..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_147.png b/weather.openmeteo/resources/icons/graph/720/scale200_147.png deleted file mode 100644 index adc112bec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_148.png b/weather.openmeteo/resources/icons/graph/720/scale200_148.png deleted file mode 100644 index adc112bec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_149.png b/weather.openmeteo/resources/icons/graph/720/scale200_149.png deleted file mode 100644 index cdadbe9bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_15.png b/weather.openmeteo/resources/icons/graph/720/scale200_15.png deleted file mode 100644 index d1c3795d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_150.png b/weather.openmeteo/resources/icons/graph/720/scale200_150.png deleted file mode 100644 index 2ff480b22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_151.png b/weather.openmeteo/resources/icons/graph/720/scale200_151.png deleted file mode 100644 index bf90ffd8d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_151.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_152.png b/weather.openmeteo/resources/icons/graph/720/scale200_152.png deleted file mode 100644 index 72c92fb06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_152.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_153.png b/weather.openmeteo/resources/icons/graph/720/scale200_153.png deleted file mode 100644 index 72c92fb06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_153.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_154.png b/weather.openmeteo/resources/icons/graph/720/scale200_154.png deleted file mode 100644 index db8389fde..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_154.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_155.png b/weather.openmeteo/resources/icons/graph/720/scale200_155.png deleted file mode 100644 index fb8412f00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_155.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_156.png b/weather.openmeteo/resources/icons/graph/720/scale200_156.png deleted file mode 100644 index fb8412f00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_156.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_157.png b/weather.openmeteo/resources/icons/graph/720/scale200_157.png deleted file mode 100644 index fb8412f00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_157.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_158.png b/weather.openmeteo/resources/icons/graph/720/scale200_158.png deleted file mode 100644 index 0fa15ebaf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_158.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_159.png b/weather.openmeteo/resources/icons/graph/720/scale200_159.png deleted file mode 100644 index 141f38e17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_159.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_16.png b/weather.openmeteo/resources/icons/graph/720/scale200_16.png deleted file mode 100644 index d1c3795d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_160.png b/weather.openmeteo/resources/icons/graph/720/scale200_160.png deleted file mode 100644 index 141f38e17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_160.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_161.png b/weather.openmeteo/resources/icons/graph/720/scale200_161.png deleted file mode 100644 index 141f38e17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_161.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_162.png b/weather.openmeteo/resources/icons/graph/720/scale200_162.png deleted file mode 100644 index a204d1700..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_162.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_163.png b/weather.openmeteo/resources/icons/graph/720/scale200_163.png deleted file mode 100644 index 795f800fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_163.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_164.png b/weather.openmeteo/resources/icons/graph/720/scale200_164.png deleted file mode 100644 index 795f800fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_164.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_165.png b/weather.openmeteo/resources/icons/graph/720/scale200_165.png deleted file mode 100644 index 66dae07fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_165.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_166.png b/weather.openmeteo/resources/icons/graph/720/scale200_166.png deleted file mode 100644 index 1b0a274d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_166.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_167.png b/weather.openmeteo/resources/icons/graph/720/scale200_167.png deleted file mode 100644 index 08b95e771..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_167.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_168.png b/weather.openmeteo/resources/icons/graph/720/scale200_168.png deleted file mode 100644 index 8b581e3ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_168.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_169.png b/weather.openmeteo/resources/icons/graph/720/scale200_169.png deleted file mode 100644 index 8b581e3ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_169.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_17.png b/weather.openmeteo/resources/icons/graph/720/scale200_17.png deleted file mode 100644 index d1c3795d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_170.png b/weather.openmeteo/resources/icons/graph/720/scale200_170.png deleted file mode 100644 index 2b8bbcf05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_170.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_171.png b/weather.openmeteo/resources/icons/graph/720/scale200_171.png deleted file mode 100644 index b16342c0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_171.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_172.png b/weather.openmeteo/resources/icons/graph/720/scale200_172.png deleted file mode 100644 index b16342c0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_172.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_173.png b/weather.openmeteo/resources/icons/graph/720/scale200_173.png deleted file mode 100644 index b16342c0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_173.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_174.png b/weather.openmeteo/resources/icons/graph/720/scale200_174.png deleted file mode 100644 index fbd43e4e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_174.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_175.png b/weather.openmeteo/resources/icons/graph/720/scale200_175.png deleted file mode 100644 index b9bcd5962..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_175.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_176.png b/weather.openmeteo/resources/icons/graph/720/scale200_176.png deleted file mode 100644 index b9bcd5962..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_176.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_177.png b/weather.openmeteo/resources/icons/graph/720/scale200_177.png deleted file mode 100644 index b9bcd5962..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_177.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_178.png b/weather.openmeteo/resources/icons/graph/720/scale200_178.png deleted file mode 100644 index ead315ad1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_178.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_179.png b/weather.openmeteo/resources/icons/graph/720/scale200_179.png deleted file mode 100644 index 3b3234d17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_179.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_18.png b/weather.openmeteo/resources/icons/graph/720/scale200_18.png deleted file mode 100644 index 44e871c8b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_180.png b/weather.openmeteo/resources/icons/graph/720/scale200_180.png deleted file mode 100644 index 3b3234d17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_180.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_181.png b/weather.openmeteo/resources/icons/graph/720/scale200_181.png deleted file mode 100644 index d0f1d13ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_181.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_182.png b/weather.openmeteo/resources/icons/graph/720/scale200_182.png deleted file mode 100644 index 08e5a9820..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_182.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_183.png b/weather.openmeteo/resources/icons/graph/720/scale200_183.png deleted file mode 100644 index 5ba17757c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_183.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_184.png b/weather.openmeteo/resources/icons/graph/720/scale200_184.png deleted file mode 100644 index af2a355d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_184.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_185.png b/weather.openmeteo/resources/icons/graph/720/scale200_185.png deleted file mode 100644 index af2a355d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_185.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_186.png b/weather.openmeteo/resources/icons/graph/720/scale200_186.png deleted file mode 100644 index bdfbc41ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_186.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_187.png b/weather.openmeteo/resources/icons/graph/720/scale200_187.png deleted file mode 100644 index 9f0b44195..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_187.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_188.png b/weather.openmeteo/resources/icons/graph/720/scale200_188.png deleted file mode 100644 index 9f0b44195..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_188.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_189.png b/weather.openmeteo/resources/icons/graph/720/scale200_189.png deleted file mode 100644 index 9f0b44195..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_189.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_19.png b/weather.openmeteo/resources/icons/graph/720/scale200_19.png deleted file mode 100644 index 91952b0fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_190.png b/weather.openmeteo/resources/icons/graph/720/scale200_190.png deleted file mode 100644 index fa426488b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_190.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_191.png b/weather.openmeteo/resources/icons/graph/720/scale200_191.png deleted file mode 100644 index 7bd379cfd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_191.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_192.png b/weather.openmeteo/resources/icons/graph/720/scale200_192.png deleted file mode 100644 index 7bd379cfd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_192.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_193.png b/weather.openmeteo/resources/icons/graph/720/scale200_193.png deleted file mode 100644 index 7bd379cfd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_193.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_194.png b/weather.openmeteo/resources/icons/graph/720/scale200_194.png deleted file mode 100644 index 8146e9c39..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_194.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_195.png b/weather.openmeteo/resources/icons/graph/720/scale200_195.png deleted file mode 100644 index 2af717046..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_195.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_196.png b/weather.openmeteo/resources/icons/graph/720/scale200_196.png deleted file mode 100644 index 2af717046..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_196.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_197.png b/weather.openmeteo/resources/icons/graph/720/scale200_197.png deleted file mode 100644 index d5bfada16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_197.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_198.png b/weather.openmeteo/resources/icons/graph/720/scale200_198.png deleted file mode 100644 index b615e719f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_198.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_199.png b/weather.openmeteo/resources/icons/graph/720/scale200_199.png deleted file mode 100644 index a1c5c2e66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_199.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_2.png b/weather.openmeteo/resources/icons/graph/720/scale200_2.png deleted file mode 100644 index bb40c2e9f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_20.png b/weather.openmeteo/resources/icons/graph/720/scale200_20.png deleted file mode 100644 index 91952b0fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_200.png b/weather.openmeteo/resources/icons/graph/720/scale200_200.png deleted file mode 100644 index 564427d6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_200.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_21.png b/weather.openmeteo/resources/icons/graph/720/scale200_21.png deleted file mode 100644 index 1ac9a1745..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_22.png b/weather.openmeteo/resources/icons/graph/720/scale200_22.png deleted file mode 100644 index 587c45179..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_23.png b/weather.openmeteo/resources/icons/graph/720/scale200_23.png deleted file mode 100644 index 983bd56f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_24.png b/weather.openmeteo/resources/icons/graph/720/scale200_24.png deleted file mode 100644 index bba2f703f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_25.png b/weather.openmeteo/resources/icons/graph/720/scale200_25.png deleted file mode 100644 index bba2f703f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_26.png b/weather.openmeteo/resources/icons/graph/720/scale200_26.png deleted file mode 100644 index 2f8802c3b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_27.png b/weather.openmeteo/resources/icons/graph/720/scale200_27.png deleted file mode 100644 index 394ea4f69..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_28.png b/weather.openmeteo/resources/icons/graph/720/scale200_28.png deleted file mode 100644 index 394ea4f69..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_29.png b/weather.openmeteo/resources/icons/graph/720/scale200_29.png deleted file mode 100644 index 394ea4f69..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_3.png b/weather.openmeteo/resources/icons/graph/720/scale200_3.png deleted file mode 100644 index 6c346b464..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_30.png b/weather.openmeteo/resources/icons/graph/720/scale200_30.png deleted file mode 100644 index ec02d0c94..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_31.png b/weather.openmeteo/resources/icons/graph/720/scale200_31.png deleted file mode 100644 index a185b784c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_32.png b/weather.openmeteo/resources/icons/graph/720/scale200_32.png deleted file mode 100644 index a185b784c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_33.png b/weather.openmeteo/resources/icons/graph/720/scale200_33.png deleted file mode 100644 index a185b784c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_34.png b/weather.openmeteo/resources/icons/graph/720/scale200_34.png deleted file mode 100644 index d69ae1022..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_35.png b/weather.openmeteo/resources/icons/graph/720/scale200_35.png deleted file mode 100644 index 15dcfe887..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_36.png b/weather.openmeteo/resources/icons/graph/720/scale200_36.png deleted file mode 100644 index 15dcfe887..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_37.png b/weather.openmeteo/resources/icons/graph/720/scale200_37.png deleted file mode 100644 index b4655b1f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_38.png b/weather.openmeteo/resources/icons/graph/720/scale200_38.png deleted file mode 100644 index 21371536a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_39.png b/weather.openmeteo/resources/icons/graph/720/scale200_39.png deleted file mode 100644 index 018204f2e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_4.png b/weather.openmeteo/resources/icons/graph/720/scale200_4.png deleted file mode 100644 index 6c346b464..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_40.png b/weather.openmeteo/resources/icons/graph/720/scale200_40.png deleted file mode 100644 index 92e4ee625..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_41.png b/weather.openmeteo/resources/icons/graph/720/scale200_41.png deleted file mode 100644 index 92e4ee625..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_42.png b/weather.openmeteo/resources/icons/graph/720/scale200_42.png deleted file mode 100644 index 81597c3ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_43.png b/weather.openmeteo/resources/icons/graph/720/scale200_43.png deleted file mode 100644 index 411da830a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_44.png b/weather.openmeteo/resources/icons/graph/720/scale200_44.png deleted file mode 100644 index 411da830a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_45.png b/weather.openmeteo/resources/icons/graph/720/scale200_45.png deleted file mode 100644 index 411da830a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_46.png b/weather.openmeteo/resources/icons/graph/720/scale200_46.png deleted file mode 100644 index c82afa3b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_47.png b/weather.openmeteo/resources/icons/graph/720/scale200_47.png deleted file mode 100644 index 04ec3e7b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_48.png b/weather.openmeteo/resources/icons/graph/720/scale200_48.png deleted file mode 100644 index 04ec3e7b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_49.png b/weather.openmeteo/resources/icons/graph/720/scale200_49.png deleted file mode 100644 index 04ec3e7b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_5.png b/weather.openmeteo/resources/icons/graph/720/scale200_5.png deleted file mode 100644 index f0ac3aa6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_50.png b/weather.openmeteo/resources/icons/graph/720/scale200_50.png deleted file mode 100644 index 6104164a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_51.png b/weather.openmeteo/resources/icons/graph/720/scale200_51.png deleted file mode 100644 index d654b5fb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_52.png b/weather.openmeteo/resources/icons/graph/720/scale200_52.png deleted file mode 100644 index d654b5fb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_53.png b/weather.openmeteo/resources/icons/graph/720/scale200_53.png deleted file mode 100644 index 296e6506b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_54.png b/weather.openmeteo/resources/icons/graph/720/scale200_54.png deleted file mode 100644 index 5d3007e71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_55.png b/weather.openmeteo/resources/icons/graph/720/scale200_55.png deleted file mode 100644 index c74cb0d9e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_56.png b/weather.openmeteo/resources/icons/graph/720/scale200_56.png deleted file mode 100644 index 3d6c4e309..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_57.png b/weather.openmeteo/resources/icons/graph/720/scale200_57.png deleted file mode 100644 index 3d6c4e309..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_58.png b/weather.openmeteo/resources/icons/graph/720/scale200_58.png deleted file mode 100644 index 19f568947..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_59.png b/weather.openmeteo/resources/icons/graph/720/scale200_59.png deleted file mode 100644 index 8d2644407..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_6.png b/weather.openmeteo/resources/icons/graph/720/scale200_6.png deleted file mode 100644 index 5d968bf13..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_60.png b/weather.openmeteo/resources/icons/graph/720/scale200_60.png deleted file mode 100644 index 8d2644407..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_61.png b/weather.openmeteo/resources/icons/graph/720/scale200_61.png deleted file mode 100644 index 8d2644407..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_62.png b/weather.openmeteo/resources/icons/graph/720/scale200_62.png deleted file mode 100644 index 6c382f9d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_63.png b/weather.openmeteo/resources/icons/graph/720/scale200_63.png deleted file mode 100644 index 1dfbe5767..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_64.png b/weather.openmeteo/resources/icons/graph/720/scale200_64.png deleted file mode 100644 index 1dfbe5767..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_65.png b/weather.openmeteo/resources/icons/graph/720/scale200_65.png deleted file mode 100644 index 1dfbe5767..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_66.png b/weather.openmeteo/resources/icons/graph/720/scale200_66.png deleted file mode 100644 index 2ea0ee851..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_67.png b/weather.openmeteo/resources/icons/graph/720/scale200_67.png deleted file mode 100644 index 45db9049d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_68.png b/weather.openmeteo/resources/icons/graph/720/scale200_68.png deleted file mode 100644 index 45db9049d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_69.png b/weather.openmeteo/resources/icons/graph/720/scale200_69.png deleted file mode 100644 index fd4125bbf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_7.png b/weather.openmeteo/resources/icons/graph/720/scale200_7.png deleted file mode 100644 index a0357ad59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_70.png b/weather.openmeteo/resources/icons/graph/720/scale200_70.png deleted file mode 100644 index 4633b369b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_71.png b/weather.openmeteo/resources/icons/graph/720/scale200_71.png deleted file mode 100644 index 55f75247f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_72.png b/weather.openmeteo/resources/icons/graph/720/scale200_72.png deleted file mode 100644 index 8f8b0e064..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_73.png b/weather.openmeteo/resources/icons/graph/720/scale200_73.png deleted file mode 100644 index 8f8b0e064..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_74.png b/weather.openmeteo/resources/icons/graph/720/scale200_74.png deleted file mode 100644 index 253d2ca02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_75.png b/weather.openmeteo/resources/icons/graph/720/scale200_75.png deleted file mode 100644 index 03298d92f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_76.png b/weather.openmeteo/resources/icons/graph/720/scale200_76.png deleted file mode 100644 index 03298d92f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_77.png b/weather.openmeteo/resources/icons/graph/720/scale200_77.png deleted file mode 100644 index 03298d92f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_78.png b/weather.openmeteo/resources/icons/graph/720/scale200_78.png deleted file mode 100644 index cdb161bf5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_79.png b/weather.openmeteo/resources/icons/graph/720/scale200_79.png deleted file mode 100644 index e7bcbf10f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_8.png b/weather.openmeteo/resources/icons/graph/720/scale200_8.png deleted file mode 100644 index f11825110..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_80.png b/weather.openmeteo/resources/icons/graph/720/scale200_80.png deleted file mode 100644 index e7bcbf10f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_81.png b/weather.openmeteo/resources/icons/graph/720/scale200_81.png deleted file mode 100644 index e7bcbf10f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_82.png b/weather.openmeteo/resources/icons/graph/720/scale200_82.png deleted file mode 100644 index ed4548690..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_83.png b/weather.openmeteo/resources/icons/graph/720/scale200_83.png deleted file mode 100644 index 3102582c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_84.png b/weather.openmeteo/resources/icons/graph/720/scale200_84.png deleted file mode 100644 index 3102582c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_85.png b/weather.openmeteo/resources/icons/graph/720/scale200_85.png deleted file mode 100644 index 8a106a958..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_86.png b/weather.openmeteo/resources/icons/graph/720/scale200_86.png deleted file mode 100644 index 49d075c94..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_87.png b/weather.openmeteo/resources/icons/graph/720/scale200_87.png deleted file mode 100644 index fa7928c43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_88.png b/weather.openmeteo/resources/icons/graph/720/scale200_88.png deleted file mode 100644 index 8b6914670..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_89.png b/weather.openmeteo/resources/icons/graph/720/scale200_89.png deleted file mode 100644 index 8b6914670..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_9.png b/weather.openmeteo/resources/icons/graph/720/scale200_9.png deleted file mode 100644 index f11825110..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_90.png b/weather.openmeteo/resources/icons/graph/720/scale200_90.png deleted file mode 100644 index 0da4183d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_91.png b/weather.openmeteo/resources/icons/graph/720/scale200_91.png deleted file mode 100644 index d0f275522..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_92.png b/weather.openmeteo/resources/icons/graph/720/scale200_92.png deleted file mode 100644 index d0f275522..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_93.png b/weather.openmeteo/resources/icons/graph/720/scale200_93.png deleted file mode 100644 index d0f275522..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_94.png b/weather.openmeteo/resources/icons/graph/720/scale200_94.png deleted file mode 100644 index c45bbe9ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_95.png b/weather.openmeteo/resources/icons/graph/720/scale200_95.png deleted file mode 100644 index 87e0e164f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_96.png b/weather.openmeteo/resources/icons/graph/720/scale200_96.png deleted file mode 100644 index 87e0e164f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_97.png b/weather.openmeteo/resources/icons/graph/720/scale200_97.png deleted file mode 100644 index 87e0e164f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_98.png b/weather.openmeteo/resources/icons/graph/720/scale200_98.png deleted file mode 100644 index 9bc283112..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale200_99.png b/weather.openmeteo/resources/icons/graph/720/scale200_99.png deleted file mode 100644 index afc3c6785..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale200_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_0.png b/weather.openmeteo/resources/icons/graph/720/scale20_0.png deleted file mode 100644 index 1e98776c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_1.png b/weather.openmeteo/resources/icons/graph/720/scale20_1.png deleted file mode 100644 index dec66cc34..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_10.png b/weather.openmeteo/resources/icons/graph/720/scale20_10.png deleted file mode 100644 index 4e0d4d92f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_11.png b/weather.openmeteo/resources/icons/graph/720/scale20_11.png deleted file mode 100644 index ecd61d49f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_12.png b/weather.openmeteo/resources/icons/graph/720/scale20_12.png deleted file mode 100644 index e2f0f019a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_13.png b/weather.openmeteo/resources/icons/graph/720/scale20_13.png deleted file mode 100644 index ac16738f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_14.png b/weather.openmeteo/resources/icons/graph/720/scale20_14.png deleted file mode 100644 index bf7e82b21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_15.png b/weather.openmeteo/resources/icons/graph/720/scale20_15.png deleted file mode 100644 index fbe5fd3d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_16.png b/weather.openmeteo/resources/icons/graph/720/scale20_16.png deleted file mode 100644 index f30c53598..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_17.png b/weather.openmeteo/resources/icons/graph/720/scale20_17.png deleted file mode 100644 index 5fd0e9071..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_18.png b/weather.openmeteo/resources/icons/graph/720/scale20_18.png deleted file mode 100644 index fbef23dfb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_19.png b/weather.openmeteo/resources/icons/graph/720/scale20_19.png deleted file mode 100644 index be2d5e41e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_2.png b/weather.openmeteo/resources/icons/graph/720/scale20_2.png deleted file mode 100644 index bdefa53da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_20.png b/weather.openmeteo/resources/icons/graph/720/scale20_20.png deleted file mode 100644 index 3991e9c7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_3.png b/weather.openmeteo/resources/icons/graph/720/scale20_3.png deleted file mode 100644 index 004d68352..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_4.png b/weather.openmeteo/resources/icons/graph/720/scale20_4.png deleted file mode 100644 index 5f8d1bb54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_5.png b/weather.openmeteo/resources/icons/graph/720/scale20_5.png deleted file mode 100644 index f8dab2a91..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_6.png b/weather.openmeteo/resources/icons/graph/720/scale20_6.png deleted file mode 100644 index 781022d20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_7.png b/weather.openmeteo/resources/icons/graph/720/scale20_7.png deleted file mode 100644 index 77a45738a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_8.png b/weather.openmeteo/resources/icons/graph/720/scale20_8.png deleted file mode 100644 index e98cd4602..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale20_9.png b/weather.openmeteo/resources/icons/graph/720/scale20_9.png deleted file mode 100644 index a1cc2d9fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_0.png b/weather.openmeteo/resources/icons/graph/720/scale30_0.png deleted file mode 100644 index 3eaba092e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_1.png b/weather.openmeteo/resources/icons/graph/720/scale30_1.png deleted file mode 100644 index 474ce8914..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_10.png b/weather.openmeteo/resources/icons/graph/720/scale30_10.png deleted file mode 100644 index 2d51c4e0d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_11.png b/weather.openmeteo/resources/icons/graph/720/scale30_11.png deleted file mode 100644 index c260f2031..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_12.png b/weather.openmeteo/resources/icons/graph/720/scale30_12.png deleted file mode 100644 index 90b97dcd0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_13.png b/weather.openmeteo/resources/icons/graph/720/scale30_13.png deleted file mode 100644 index 74d0477cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_14.png b/weather.openmeteo/resources/icons/graph/720/scale30_14.png deleted file mode 100644 index ca4c5ec21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_15.png b/weather.openmeteo/resources/icons/graph/720/scale30_15.png deleted file mode 100644 index 349bddff6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_16.png b/weather.openmeteo/resources/icons/graph/720/scale30_16.png deleted file mode 100644 index 894ba8da6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_17.png b/weather.openmeteo/resources/icons/graph/720/scale30_17.png deleted file mode 100644 index 5e5d22b2e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_18.png b/weather.openmeteo/resources/icons/graph/720/scale30_18.png deleted file mode 100644 index 9490f64f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_19.png b/weather.openmeteo/resources/icons/graph/720/scale30_19.png deleted file mode 100644 index eb92847e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_2.png b/weather.openmeteo/resources/icons/graph/720/scale30_2.png deleted file mode 100644 index b3fc4b968..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_20.png b/weather.openmeteo/resources/icons/graph/720/scale30_20.png deleted file mode 100644 index bf122baba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_21.png b/weather.openmeteo/resources/icons/graph/720/scale30_21.png deleted file mode 100644 index ddb06b001..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_22.png b/weather.openmeteo/resources/icons/graph/720/scale30_22.png deleted file mode 100644 index 9edbaf8ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_23.png b/weather.openmeteo/resources/icons/graph/720/scale30_23.png deleted file mode 100644 index 51f27aa87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_24.png b/weather.openmeteo/resources/icons/graph/720/scale30_24.png deleted file mode 100644 index d548d5861..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_25.png b/weather.openmeteo/resources/icons/graph/720/scale30_25.png deleted file mode 100644 index e6483f3a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_26.png b/weather.openmeteo/resources/icons/graph/720/scale30_26.png deleted file mode 100644 index 4ecd35595..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_27.png b/weather.openmeteo/resources/icons/graph/720/scale30_27.png deleted file mode 100644 index 791cbe7f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_28.png b/weather.openmeteo/resources/icons/graph/720/scale30_28.png deleted file mode 100644 index be348f99a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_29.png b/weather.openmeteo/resources/icons/graph/720/scale30_29.png deleted file mode 100644 index b5975653a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_3.png b/weather.openmeteo/resources/icons/graph/720/scale30_3.png deleted file mode 100644 index c9f64ce8d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_30.png b/weather.openmeteo/resources/icons/graph/720/scale30_30.png deleted file mode 100644 index 250b93a47..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_4.png b/weather.openmeteo/resources/icons/graph/720/scale30_4.png deleted file mode 100644 index 97ac22dcc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_5.png b/weather.openmeteo/resources/icons/graph/720/scale30_5.png deleted file mode 100644 index 8abb6ec3a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_6.png b/weather.openmeteo/resources/icons/graph/720/scale30_6.png deleted file mode 100644 index 8f75825c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_7.png b/weather.openmeteo/resources/icons/graph/720/scale30_7.png deleted file mode 100644 index 09af92e40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_8.png b/weather.openmeteo/resources/icons/graph/720/scale30_8.png deleted file mode 100644 index 639b0fc12..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale30_9.png b/weather.openmeteo/resources/icons/graph/720/scale30_9.png deleted file mode 100644 index 18ed315c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_0.png b/weather.openmeteo/resources/icons/graph/720/scale40_0.png deleted file mode 100644 index 0ba6bd7d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_1.png b/weather.openmeteo/resources/icons/graph/720/scale40_1.png deleted file mode 100644 index d1e60c0a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_10.png b/weather.openmeteo/resources/icons/graph/720/scale40_10.png deleted file mode 100644 index 84c811f33..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_11.png b/weather.openmeteo/resources/icons/graph/720/scale40_11.png deleted file mode 100644 index 55e7fad9c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_12.png b/weather.openmeteo/resources/icons/graph/720/scale40_12.png deleted file mode 100644 index 464c45a6a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_13.png b/weather.openmeteo/resources/icons/graph/720/scale40_13.png deleted file mode 100644 index 5e1a7b5de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_14.png b/weather.openmeteo/resources/icons/graph/720/scale40_14.png deleted file mode 100644 index 4aa24de2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_15.png b/weather.openmeteo/resources/icons/graph/720/scale40_15.png deleted file mode 100644 index 69369cf7d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_16.png b/weather.openmeteo/resources/icons/graph/720/scale40_16.png deleted file mode 100644 index 86bbf9562..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_17.png b/weather.openmeteo/resources/icons/graph/720/scale40_17.png deleted file mode 100644 index d42615fb3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_18.png b/weather.openmeteo/resources/icons/graph/720/scale40_18.png deleted file mode 100644 index 942e5058a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_19.png b/weather.openmeteo/resources/icons/graph/720/scale40_19.png deleted file mode 100644 index ecf460405..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_2.png b/weather.openmeteo/resources/icons/graph/720/scale40_2.png deleted file mode 100644 index 4a404071a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_20.png b/weather.openmeteo/resources/icons/graph/720/scale40_20.png deleted file mode 100644 index 29d23dc23..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_21.png b/weather.openmeteo/resources/icons/graph/720/scale40_21.png deleted file mode 100644 index 8dc1e5068..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_22.png b/weather.openmeteo/resources/icons/graph/720/scale40_22.png deleted file mode 100644 index 7749fc04d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_23.png b/weather.openmeteo/resources/icons/graph/720/scale40_23.png deleted file mode 100644 index 635e7279c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_24.png b/weather.openmeteo/resources/icons/graph/720/scale40_24.png deleted file mode 100644 index fbd16f6a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_25.png b/weather.openmeteo/resources/icons/graph/720/scale40_25.png deleted file mode 100644 index 1035aae6f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_26.png b/weather.openmeteo/resources/icons/graph/720/scale40_26.png deleted file mode 100644 index 9cefd583d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_27.png b/weather.openmeteo/resources/icons/graph/720/scale40_27.png deleted file mode 100644 index 604ad3e50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_28.png b/weather.openmeteo/resources/icons/graph/720/scale40_28.png deleted file mode 100644 index 047aea9d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_29.png b/weather.openmeteo/resources/icons/graph/720/scale40_29.png deleted file mode 100644 index b880fd2d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_3.png b/weather.openmeteo/resources/icons/graph/720/scale40_3.png deleted file mode 100644 index ec29c3974..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_30.png b/weather.openmeteo/resources/icons/graph/720/scale40_30.png deleted file mode 100644 index 3170f5dde..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_31.png b/weather.openmeteo/resources/icons/graph/720/scale40_31.png deleted file mode 100644 index 4abfc271d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_32.png b/weather.openmeteo/resources/icons/graph/720/scale40_32.png deleted file mode 100644 index cbe881f0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_33.png b/weather.openmeteo/resources/icons/graph/720/scale40_33.png deleted file mode 100644 index 9981cb2d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_34.png b/weather.openmeteo/resources/icons/graph/720/scale40_34.png deleted file mode 100644 index f79a4688f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_35.png b/weather.openmeteo/resources/icons/graph/720/scale40_35.png deleted file mode 100644 index 11a45aeb5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_36.png b/weather.openmeteo/resources/icons/graph/720/scale40_36.png deleted file mode 100644 index 0ac80bc97..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_37.png b/weather.openmeteo/resources/icons/graph/720/scale40_37.png deleted file mode 100644 index 64711bef3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_38.png b/weather.openmeteo/resources/icons/graph/720/scale40_38.png deleted file mode 100644 index 56ce9b52b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_39.png b/weather.openmeteo/resources/icons/graph/720/scale40_39.png deleted file mode 100644 index 6eb38b06a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_4.png b/weather.openmeteo/resources/icons/graph/720/scale40_4.png deleted file mode 100644 index 2f1de151b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_40.png b/weather.openmeteo/resources/icons/graph/720/scale40_40.png deleted file mode 100644 index 45d75907d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_5.png b/weather.openmeteo/resources/icons/graph/720/scale40_5.png deleted file mode 100644 index c9743f61e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_6.png b/weather.openmeteo/resources/icons/graph/720/scale40_6.png deleted file mode 100644 index 4da08533f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_7.png b/weather.openmeteo/resources/icons/graph/720/scale40_7.png deleted file mode 100644 index 1ec6715f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_8.png b/weather.openmeteo/resources/icons/graph/720/scale40_8.png deleted file mode 100644 index a852f093e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale40_9.png b/weather.openmeteo/resources/icons/graph/720/scale40_9.png deleted file mode 100644 index d07619f2e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_0.png b/weather.openmeteo/resources/icons/graph/720/scale50_0.png deleted file mode 100644 index 938b875d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_1.png b/weather.openmeteo/resources/icons/graph/720/scale50_1.png deleted file mode 100644 index 9beebb378..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_10.png b/weather.openmeteo/resources/icons/graph/720/scale50_10.png deleted file mode 100644 index f611541b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_11.png b/weather.openmeteo/resources/icons/graph/720/scale50_11.png deleted file mode 100644 index 16be91d75..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_12.png b/weather.openmeteo/resources/icons/graph/720/scale50_12.png deleted file mode 100644 index 213eebc90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_13.png b/weather.openmeteo/resources/icons/graph/720/scale50_13.png deleted file mode 100644 index 5e87b277d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_14.png b/weather.openmeteo/resources/icons/graph/720/scale50_14.png deleted file mode 100644 index 4977a26c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_15.png b/weather.openmeteo/resources/icons/graph/720/scale50_15.png deleted file mode 100644 index 966789127..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_16.png b/weather.openmeteo/resources/icons/graph/720/scale50_16.png deleted file mode 100644 index 7385b1a78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_17.png b/weather.openmeteo/resources/icons/graph/720/scale50_17.png deleted file mode 100644 index 772aaf7f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_18.png b/weather.openmeteo/resources/icons/graph/720/scale50_18.png deleted file mode 100644 index 58bfc9676..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_19.png b/weather.openmeteo/resources/icons/graph/720/scale50_19.png deleted file mode 100644 index d64c95369..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_2.png b/weather.openmeteo/resources/icons/graph/720/scale50_2.png deleted file mode 100644 index f50df4a7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_20.png b/weather.openmeteo/resources/icons/graph/720/scale50_20.png deleted file mode 100644 index ca3725109..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_21.png b/weather.openmeteo/resources/icons/graph/720/scale50_21.png deleted file mode 100644 index bc7c539d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_22.png b/weather.openmeteo/resources/icons/graph/720/scale50_22.png deleted file mode 100644 index 43bfb7ae0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_23.png b/weather.openmeteo/resources/icons/graph/720/scale50_23.png deleted file mode 100644 index 040df4efc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_24.png b/weather.openmeteo/resources/icons/graph/720/scale50_24.png deleted file mode 100644 index bbd2cd678..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_25.png b/weather.openmeteo/resources/icons/graph/720/scale50_25.png deleted file mode 100644 index 0e5778156..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_26.png b/weather.openmeteo/resources/icons/graph/720/scale50_26.png deleted file mode 100644 index eb6781f59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_27.png b/weather.openmeteo/resources/icons/graph/720/scale50_27.png deleted file mode 100644 index 0f74fd8a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_28.png b/weather.openmeteo/resources/icons/graph/720/scale50_28.png deleted file mode 100644 index d64365fd5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_29.png b/weather.openmeteo/resources/icons/graph/720/scale50_29.png deleted file mode 100644 index ce60db8aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_3.png b/weather.openmeteo/resources/icons/graph/720/scale50_3.png deleted file mode 100644 index bb02b792f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_30.png b/weather.openmeteo/resources/icons/graph/720/scale50_30.png deleted file mode 100644 index 8ac91ac6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_31.png b/weather.openmeteo/resources/icons/graph/720/scale50_31.png deleted file mode 100644 index 5f28fab98..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_32.png b/weather.openmeteo/resources/icons/graph/720/scale50_32.png deleted file mode 100644 index c83faa9d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_33.png b/weather.openmeteo/resources/icons/graph/720/scale50_33.png deleted file mode 100644 index 4c3775447..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_34.png b/weather.openmeteo/resources/icons/graph/720/scale50_34.png deleted file mode 100644 index 009914521..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_35.png b/weather.openmeteo/resources/icons/graph/720/scale50_35.png deleted file mode 100644 index 3e3100f20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_36.png b/weather.openmeteo/resources/icons/graph/720/scale50_36.png deleted file mode 100644 index bfd44078e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_37.png b/weather.openmeteo/resources/icons/graph/720/scale50_37.png deleted file mode 100644 index 82c37d542..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_38.png b/weather.openmeteo/resources/icons/graph/720/scale50_38.png deleted file mode 100644 index 5159db66c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_39.png b/weather.openmeteo/resources/icons/graph/720/scale50_39.png deleted file mode 100644 index 0d7ac5752..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_4.png b/weather.openmeteo/resources/icons/graph/720/scale50_4.png deleted file mode 100644 index cf937c84a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_40.png b/weather.openmeteo/resources/icons/graph/720/scale50_40.png deleted file mode 100644 index 8940750e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_41.png b/weather.openmeteo/resources/icons/graph/720/scale50_41.png deleted file mode 100644 index 5e0b7f08a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_42.png b/weather.openmeteo/resources/icons/graph/720/scale50_42.png deleted file mode 100644 index 896111f6a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_43.png b/weather.openmeteo/resources/icons/graph/720/scale50_43.png deleted file mode 100644 index c27e3819a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_44.png b/weather.openmeteo/resources/icons/graph/720/scale50_44.png deleted file mode 100644 index c217d9ae3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_45.png b/weather.openmeteo/resources/icons/graph/720/scale50_45.png deleted file mode 100644 index ffde28da7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_46.png b/weather.openmeteo/resources/icons/graph/720/scale50_46.png deleted file mode 100644 index 03a8d68ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_47.png b/weather.openmeteo/resources/icons/graph/720/scale50_47.png deleted file mode 100644 index 424172f8e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_48.png b/weather.openmeteo/resources/icons/graph/720/scale50_48.png deleted file mode 100644 index e326c3123..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_49.png b/weather.openmeteo/resources/icons/graph/720/scale50_49.png deleted file mode 100644 index a68fa5d94..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_5.png b/weather.openmeteo/resources/icons/graph/720/scale50_5.png deleted file mode 100644 index 17d950d0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_50.png b/weather.openmeteo/resources/icons/graph/720/scale50_50.png deleted file mode 100644 index 525d6e6a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_6.png b/weather.openmeteo/resources/icons/graph/720/scale50_6.png deleted file mode 100644 index 79c2321f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_7.png b/weather.openmeteo/resources/icons/graph/720/scale50_7.png deleted file mode 100644 index 1c7e145d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_8.png b/weather.openmeteo/resources/icons/graph/720/scale50_8.png deleted file mode 100644 index 95f007514..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale50_9.png b/weather.openmeteo/resources/icons/graph/720/scale50_9.png deleted file mode 100644 index 6f06d856d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_0.png b/weather.openmeteo/resources/icons/graph/720/scale60_0.png deleted file mode 100644 index 4ac641cc0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_1.png b/weather.openmeteo/resources/icons/graph/720/scale60_1.png deleted file mode 100644 index 047b072e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_10.png b/weather.openmeteo/resources/icons/graph/720/scale60_10.png deleted file mode 100644 index 4b37b8523..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_11.png b/weather.openmeteo/resources/icons/graph/720/scale60_11.png deleted file mode 100644 index 91d756ad8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_12.png b/weather.openmeteo/resources/icons/graph/720/scale60_12.png deleted file mode 100644 index f60c68866..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_13.png b/weather.openmeteo/resources/icons/graph/720/scale60_13.png deleted file mode 100644 index 525a3181b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_14.png b/weather.openmeteo/resources/icons/graph/720/scale60_14.png deleted file mode 100644 index a51946fee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_15.png b/weather.openmeteo/resources/icons/graph/720/scale60_15.png deleted file mode 100644 index 3e4729ee4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_16.png b/weather.openmeteo/resources/icons/graph/720/scale60_16.png deleted file mode 100644 index dbc9cfea3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_17.png b/weather.openmeteo/resources/icons/graph/720/scale60_17.png deleted file mode 100644 index 60ce33849..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_18.png b/weather.openmeteo/resources/icons/graph/720/scale60_18.png deleted file mode 100644 index 3edfabaec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_19.png b/weather.openmeteo/resources/icons/graph/720/scale60_19.png deleted file mode 100644 index af23238a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_2.png b/weather.openmeteo/resources/icons/graph/720/scale60_2.png deleted file mode 100644 index ec64df66d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_20.png b/weather.openmeteo/resources/icons/graph/720/scale60_20.png deleted file mode 100644 index a08600828..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_21.png b/weather.openmeteo/resources/icons/graph/720/scale60_21.png deleted file mode 100644 index 602346cd0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_22.png b/weather.openmeteo/resources/icons/graph/720/scale60_22.png deleted file mode 100644 index 4d8052d78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_23.png b/weather.openmeteo/resources/icons/graph/720/scale60_23.png deleted file mode 100644 index 5488d332b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_24.png b/weather.openmeteo/resources/icons/graph/720/scale60_24.png deleted file mode 100644 index 3f459364c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_25.png b/weather.openmeteo/resources/icons/graph/720/scale60_25.png deleted file mode 100644 index a78f07a6c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_26.png b/weather.openmeteo/resources/icons/graph/720/scale60_26.png deleted file mode 100644 index 148019261..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_27.png b/weather.openmeteo/resources/icons/graph/720/scale60_27.png deleted file mode 100644 index 44cc3bc72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_28.png b/weather.openmeteo/resources/icons/graph/720/scale60_28.png deleted file mode 100644 index d96377675..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_29.png b/weather.openmeteo/resources/icons/graph/720/scale60_29.png deleted file mode 100644 index 5a1cde5fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_3.png b/weather.openmeteo/resources/icons/graph/720/scale60_3.png deleted file mode 100644 index bb6401b53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_30.png b/weather.openmeteo/resources/icons/graph/720/scale60_30.png deleted file mode 100644 index 844746a96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_31.png b/weather.openmeteo/resources/icons/graph/720/scale60_31.png deleted file mode 100644 index e50b958b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_32.png b/weather.openmeteo/resources/icons/graph/720/scale60_32.png deleted file mode 100644 index 3faf7a37e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_33.png b/weather.openmeteo/resources/icons/graph/720/scale60_33.png deleted file mode 100644 index 238b09361..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_34.png b/weather.openmeteo/resources/icons/graph/720/scale60_34.png deleted file mode 100644 index a501eee81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_35.png b/weather.openmeteo/resources/icons/graph/720/scale60_35.png deleted file mode 100644 index 7d974374a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_36.png b/weather.openmeteo/resources/icons/graph/720/scale60_36.png deleted file mode 100644 index fb9d5580a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_37.png b/weather.openmeteo/resources/icons/graph/720/scale60_37.png deleted file mode 100644 index 7dde35c17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_38.png b/weather.openmeteo/resources/icons/graph/720/scale60_38.png deleted file mode 100644 index a06da5e0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_39.png b/weather.openmeteo/resources/icons/graph/720/scale60_39.png deleted file mode 100644 index 506fa16b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_4.png b/weather.openmeteo/resources/icons/graph/720/scale60_4.png deleted file mode 100644 index 95810be40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_40.png b/weather.openmeteo/resources/icons/graph/720/scale60_40.png deleted file mode 100644 index 6ca7b7db7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_41.png b/weather.openmeteo/resources/icons/graph/720/scale60_41.png deleted file mode 100644 index 0216e9488..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_42.png b/weather.openmeteo/resources/icons/graph/720/scale60_42.png deleted file mode 100644 index 7a00d1977..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_43.png b/weather.openmeteo/resources/icons/graph/720/scale60_43.png deleted file mode 100644 index 2d60c8681..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_44.png b/weather.openmeteo/resources/icons/graph/720/scale60_44.png deleted file mode 100644 index 56baf4dd2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_45.png b/weather.openmeteo/resources/icons/graph/720/scale60_45.png deleted file mode 100644 index 162962ab6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_46.png b/weather.openmeteo/resources/icons/graph/720/scale60_46.png deleted file mode 100644 index ef4ff6b09..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_47.png b/weather.openmeteo/resources/icons/graph/720/scale60_47.png deleted file mode 100644 index fd58172d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_48.png b/weather.openmeteo/resources/icons/graph/720/scale60_48.png deleted file mode 100644 index 99b3b13e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_49.png b/weather.openmeteo/resources/icons/graph/720/scale60_49.png deleted file mode 100644 index 499081732..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_5.png b/weather.openmeteo/resources/icons/graph/720/scale60_5.png deleted file mode 100644 index eb68edac6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_50.png b/weather.openmeteo/resources/icons/graph/720/scale60_50.png deleted file mode 100644 index b5787bff3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_51.png b/weather.openmeteo/resources/icons/graph/720/scale60_51.png deleted file mode 100644 index b5e5940b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_52.png b/weather.openmeteo/resources/icons/graph/720/scale60_52.png deleted file mode 100644 index 75afa73be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_53.png b/weather.openmeteo/resources/icons/graph/720/scale60_53.png deleted file mode 100644 index 3fb68165f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_54.png b/weather.openmeteo/resources/icons/graph/720/scale60_54.png deleted file mode 100644 index 046b94780..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_55.png b/weather.openmeteo/resources/icons/graph/720/scale60_55.png deleted file mode 100644 index 71289350b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_56.png b/weather.openmeteo/resources/icons/graph/720/scale60_56.png deleted file mode 100644 index 63b59e531..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_57.png b/weather.openmeteo/resources/icons/graph/720/scale60_57.png deleted file mode 100644 index e1b4841c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_58.png b/weather.openmeteo/resources/icons/graph/720/scale60_58.png deleted file mode 100644 index 5bf8957e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_59.png b/weather.openmeteo/resources/icons/graph/720/scale60_59.png deleted file mode 100644 index fccd7fdd3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_6.png b/weather.openmeteo/resources/icons/graph/720/scale60_6.png deleted file mode 100644 index e5c9cb9da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_60.png b/weather.openmeteo/resources/icons/graph/720/scale60_60.png deleted file mode 100644 index e81307b2e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_7.png b/weather.openmeteo/resources/icons/graph/720/scale60_7.png deleted file mode 100644 index f8bf09b96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_8.png b/weather.openmeteo/resources/icons/graph/720/scale60_8.png deleted file mode 100644 index 5cdb5f4e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale60_9.png b/weather.openmeteo/resources/icons/graph/720/scale60_9.png deleted file mode 100644 index 376c80c0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale60_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_0.png b/weather.openmeteo/resources/icons/graph/720/scale70_0.png deleted file mode 100644 index 0b0035925..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_1.png b/weather.openmeteo/resources/icons/graph/720/scale70_1.png deleted file mode 100644 index 0b0035925..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_10.png b/weather.openmeteo/resources/icons/graph/720/scale70_10.png deleted file mode 100644 index 6864c5dee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_11.png b/weather.openmeteo/resources/icons/graph/720/scale70_11.png deleted file mode 100644 index aba08c4f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_12.png b/weather.openmeteo/resources/icons/graph/720/scale70_12.png deleted file mode 100644 index 89e2e0181..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_13.png b/weather.openmeteo/resources/icons/graph/720/scale70_13.png deleted file mode 100644 index e9881ebbb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_14.png b/weather.openmeteo/resources/icons/graph/720/scale70_14.png deleted file mode 100644 index 1a44acbde..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_15.png b/weather.openmeteo/resources/icons/graph/720/scale70_15.png deleted file mode 100644 index a0018b486..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_16.png b/weather.openmeteo/resources/icons/graph/720/scale70_16.png deleted file mode 100644 index 512b5b6ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_17.png b/weather.openmeteo/resources/icons/graph/720/scale70_17.png deleted file mode 100644 index 2844734ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_18.png b/weather.openmeteo/resources/icons/graph/720/scale70_18.png deleted file mode 100644 index 5bf826972..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_19.png b/weather.openmeteo/resources/icons/graph/720/scale70_19.png deleted file mode 100644 index 0cc6f2f31..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_2.png b/weather.openmeteo/resources/icons/graph/720/scale70_2.png deleted file mode 100644 index 98bf613f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_20.png b/weather.openmeteo/resources/icons/graph/720/scale70_20.png deleted file mode 100644 index 20bb54803..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_21.png b/weather.openmeteo/resources/icons/graph/720/scale70_21.png deleted file mode 100644 index f03442cbc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_22.png b/weather.openmeteo/resources/icons/graph/720/scale70_22.png deleted file mode 100644 index 725429016..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_23.png b/weather.openmeteo/resources/icons/graph/720/scale70_23.png deleted file mode 100644 index cba5f5fd6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_24.png b/weather.openmeteo/resources/icons/graph/720/scale70_24.png deleted file mode 100644 index 00bb1f820..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_25.png b/weather.openmeteo/resources/icons/graph/720/scale70_25.png deleted file mode 100644 index 4b2e65e3a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_26.png b/weather.openmeteo/resources/icons/graph/720/scale70_26.png deleted file mode 100644 index 18a4c2c52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_27.png b/weather.openmeteo/resources/icons/graph/720/scale70_27.png deleted file mode 100644 index 81b444f70..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_28.png b/weather.openmeteo/resources/icons/graph/720/scale70_28.png deleted file mode 100644 index 58d0819a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_29.png b/weather.openmeteo/resources/icons/graph/720/scale70_29.png deleted file mode 100644 index b6bcd7bd6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_3.png b/weather.openmeteo/resources/icons/graph/720/scale70_3.png deleted file mode 100644 index d1c430258..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_30.png b/weather.openmeteo/resources/icons/graph/720/scale70_30.png deleted file mode 100644 index bee47703d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_31.png b/weather.openmeteo/resources/icons/graph/720/scale70_31.png deleted file mode 100644 index e9816c83e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_32.png b/weather.openmeteo/resources/icons/graph/720/scale70_32.png deleted file mode 100644 index 0eb9f317a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_33.png b/weather.openmeteo/resources/icons/graph/720/scale70_33.png deleted file mode 100644 index 6e0223bf2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_34.png b/weather.openmeteo/resources/icons/graph/720/scale70_34.png deleted file mode 100644 index 7eb3a6eee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_35.png b/weather.openmeteo/resources/icons/graph/720/scale70_35.png deleted file mode 100644 index 50b98dfc0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_36.png b/weather.openmeteo/resources/icons/graph/720/scale70_36.png deleted file mode 100644 index 40a238e28..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_37.png b/weather.openmeteo/resources/icons/graph/720/scale70_37.png deleted file mode 100644 index 87d53b446..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_38.png b/weather.openmeteo/resources/icons/graph/720/scale70_38.png deleted file mode 100644 index 2ce5c6b52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_39.png b/weather.openmeteo/resources/icons/graph/720/scale70_39.png deleted file mode 100644 index b5332603f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_4.png b/weather.openmeteo/resources/icons/graph/720/scale70_4.png deleted file mode 100644 index a78f06735..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_40.png b/weather.openmeteo/resources/icons/graph/720/scale70_40.png deleted file mode 100644 index c48e24c8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_41.png b/weather.openmeteo/resources/icons/graph/720/scale70_41.png deleted file mode 100644 index 87887b87c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_42.png b/weather.openmeteo/resources/icons/graph/720/scale70_42.png deleted file mode 100644 index bcfd5c95e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_43.png b/weather.openmeteo/resources/icons/graph/720/scale70_43.png deleted file mode 100644 index 238f2e4a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_44.png b/weather.openmeteo/resources/icons/graph/720/scale70_44.png deleted file mode 100644 index ec74e9284..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_45.png b/weather.openmeteo/resources/icons/graph/720/scale70_45.png deleted file mode 100644 index a057838bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_46.png b/weather.openmeteo/resources/icons/graph/720/scale70_46.png deleted file mode 100644 index c53208397..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_47.png b/weather.openmeteo/resources/icons/graph/720/scale70_47.png deleted file mode 100644 index 04d96f5fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_48.png b/weather.openmeteo/resources/icons/graph/720/scale70_48.png deleted file mode 100644 index 130aa56c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_49.png b/weather.openmeteo/resources/icons/graph/720/scale70_49.png deleted file mode 100644 index ba21de490..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_5.png b/weather.openmeteo/resources/icons/graph/720/scale70_5.png deleted file mode 100644 index b9ffd225f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_50.png b/weather.openmeteo/resources/icons/graph/720/scale70_50.png deleted file mode 100644 index c5251e6eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_51.png b/weather.openmeteo/resources/icons/graph/720/scale70_51.png deleted file mode 100644 index a69235443..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_52.png b/weather.openmeteo/resources/icons/graph/720/scale70_52.png deleted file mode 100644 index af0eb8a69..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_53.png b/weather.openmeteo/resources/icons/graph/720/scale70_53.png deleted file mode 100644 index cb3ca3844..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_54.png b/weather.openmeteo/resources/icons/graph/720/scale70_54.png deleted file mode 100644 index df7ed1b44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_55.png b/weather.openmeteo/resources/icons/graph/720/scale70_55.png deleted file mode 100644 index f1ad98e32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_56.png b/weather.openmeteo/resources/icons/graph/720/scale70_56.png deleted file mode 100644 index c193db673..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_57.png b/weather.openmeteo/resources/icons/graph/720/scale70_57.png deleted file mode 100644 index 683a1b5b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_58.png b/weather.openmeteo/resources/icons/graph/720/scale70_58.png deleted file mode 100644 index dbd06a8f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_59.png b/weather.openmeteo/resources/icons/graph/720/scale70_59.png deleted file mode 100644 index 58108d1e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_6.png b/weather.openmeteo/resources/icons/graph/720/scale70_6.png deleted file mode 100644 index 14d0a42f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_60.png b/weather.openmeteo/resources/icons/graph/720/scale70_60.png deleted file mode 100644 index af533131d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_61.png b/weather.openmeteo/resources/icons/graph/720/scale70_61.png deleted file mode 100644 index de6301b43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_62.png b/weather.openmeteo/resources/icons/graph/720/scale70_62.png deleted file mode 100644 index 506a22449..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_63.png b/weather.openmeteo/resources/icons/graph/720/scale70_63.png deleted file mode 100644 index a8db6eb36..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_64.png b/weather.openmeteo/resources/icons/graph/720/scale70_64.png deleted file mode 100644 index 4f888a0a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_65.png b/weather.openmeteo/resources/icons/graph/720/scale70_65.png deleted file mode 100644 index 620d851a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_66.png b/weather.openmeteo/resources/icons/graph/720/scale70_66.png deleted file mode 100644 index 3bf731495..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_67.png b/weather.openmeteo/resources/icons/graph/720/scale70_67.png deleted file mode 100644 index afbdec6b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_68.png b/weather.openmeteo/resources/icons/graph/720/scale70_68.png deleted file mode 100644 index 18e7b12ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_69.png b/weather.openmeteo/resources/icons/graph/720/scale70_69.png deleted file mode 100644 index ffae787c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_7.png b/weather.openmeteo/resources/icons/graph/720/scale70_7.png deleted file mode 100644 index 9b576d42e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_70.png b/weather.openmeteo/resources/icons/graph/720/scale70_70.png deleted file mode 100644 index e534f6d3d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_8.png b/weather.openmeteo/resources/icons/graph/720/scale70_8.png deleted file mode 100644 index 25fe65a8d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale70_9.png b/weather.openmeteo/resources/icons/graph/720/scale70_9.png deleted file mode 100644 index a8eb06df9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale70_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_0.png b/weather.openmeteo/resources/icons/graph/720/scale80_0.png deleted file mode 100644 index befbea534..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_1.png b/weather.openmeteo/resources/icons/graph/720/scale80_1.png deleted file mode 100644 index eb80b3671..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_10.png b/weather.openmeteo/resources/icons/graph/720/scale80_10.png deleted file mode 100644 index 773c4ba7f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_11.png b/weather.openmeteo/resources/icons/graph/720/scale80_11.png deleted file mode 100644 index 743840e19..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_12.png b/weather.openmeteo/resources/icons/graph/720/scale80_12.png deleted file mode 100644 index 9fc1c8989..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_13.png b/weather.openmeteo/resources/icons/graph/720/scale80_13.png deleted file mode 100644 index 407a84dd8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_14.png b/weather.openmeteo/resources/icons/graph/720/scale80_14.png deleted file mode 100644 index b2c6b4ded..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_15.png b/weather.openmeteo/resources/icons/graph/720/scale80_15.png deleted file mode 100644 index 75c2fee1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_16.png b/weather.openmeteo/resources/icons/graph/720/scale80_16.png deleted file mode 100644 index 739ee238e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_17.png b/weather.openmeteo/resources/icons/graph/720/scale80_17.png deleted file mode 100644 index b5ecad6f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_18.png b/weather.openmeteo/resources/icons/graph/720/scale80_18.png deleted file mode 100644 index 7573275e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_19.png b/weather.openmeteo/resources/icons/graph/720/scale80_19.png deleted file mode 100644 index e1ee9b713..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_2.png b/weather.openmeteo/resources/icons/graph/720/scale80_2.png deleted file mode 100644 index f6d55c3c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_20.png b/weather.openmeteo/resources/icons/graph/720/scale80_20.png deleted file mode 100644 index 886052273..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_21.png b/weather.openmeteo/resources/icons/graph/720/scale80_21.png deleted file mode 100644 index 14fd56a7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_22.png b/weather.openmeteo/resources/icons/graph/720/scale80_22.png deleted file mode 100644 index 833811f1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_23.png b/weather.openmeteo/resources/icons/graph/720/scale80_23.png deleted file mode 100644 index f600557a9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_24.png b/weather.openmeteo/resources/icons/graph/720/scale80_24.png deleted file mode 100644 index c3eb9f732..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_25.png b/weather.openmeteo/resources/icons/graph/720/scale80_25.png deleted file mode 100644 index ac7019fcd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_26.png b/weather.openmeteo/resources/icons/graph/720/scale80_26.png deleted file mode 100644 index e8a7e529b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_27.png b/weather.openmeteo/resources/icons/graph/720/scale80_27.png deleted file mode 100644 index 76e8ef7db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_28.png b/weather.openmeteo/resources/icons/graph/720/scale80_28.png deleted file mode 100644 index 57c2cd528..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_29.png b/weather.openmeteo/resources/icons/graph/720/scale80_29.png deleted file mode 100644 index 24c47deb8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_3.png b/weather.openmeteo/resources/icons/graph/720/scale80_3.png deleted file mode 100644 index c8fcbfa21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_30.png b/weather.openmeteo/resources/icons/graph/720/scale80_30.png deleted file mode 100644 index 06745c379..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_31.png b/weather.openmeteo/resources/icons/graph/720/scale80_31.png deleted file mode 100644 index 49de37e5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_32.png b/weather.openmeteo/resources/icons/graph/720/scale80_32.png deleted file mode 100644 index ae16d09c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_33.png b/weather.openmeteo/resources/icons/graph/720/scale80_33.png deleted file mode 100644 index 8f16e0996..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_34.png b/weather.openmeteo/resources/icons/graph/720/scale80_34.png deleted file mode 100644 index faf7459f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_35.png b/weather.openmeteo/resources/icons/graph/720/scale80_35.png deleted file mode 100644 index afaee550f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_36.png b/weather.openmeteo/resources/icons/graph/720/scale80_36.png deleted file mode 100644 index d8223bfd2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_37.png b/weather.openmeteo/resources/icons/graph/720/scale80_37.png deleted file mode 100644 index d71b845ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_38.png b/weather.openmeteo/resources/icons/graph/720/scale80_38.png deleted file mode 100644 index da9702b42..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_39.png b/weather.openmeteo/resources/icons/graph/720/scale80_39.png deleted file mode 100644 index e3a081ef3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_4.png b/weather.openmeteo/resources/icons/graph/720/scale80_4.png deleted file mode 100644 index c2286ad5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_40.png b/weather.openmeteo/resources/icons/graph/720/scale80_40.png deleted file mode 100644 index 1c72eb4b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_41.png b/weather.openmeteo/resources/icons/graph/720/scale80_41.png deleted file mode 100644 index c9f3a68d6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_42.png b/weather.openmeteo/resources/icons/graph/720/scale80_42.png deleted file mode 100644 index 9edd9e161..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_43.png b/weather.openmeteo/resources/icons/graph/720/scale80_43.png deleted file mode 100644 index ab5544623..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_44.png b/weather.openmeteo/resources/icons/graph/720/scale80_44.png deleted file mode 100644 index dd9b68dc4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_45.png b/weather.openmeteo/resources/icons/graph/720/scale80_45.png deleted file mode 100644 index 94d4d170f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_46.png b/weather.openmeteo/resources/icons/graph/720/scale80_46.png deleted file mode 100644 index d8637e889..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_47.png b/weather.openmeteo/resources/icons/graph/720/scale80_47.png deleted file mode 100644 index 6525f60ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_48.png b/weather.openmeteo/resources/icons/graph/720/scale80_48.png deleted file mode 100644 index 68c2e6525..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_49.png b/weather.openmeteo/resources/icons/graph/720/scale80_49.png deleted file mode 100644 index c2b9213c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_5.png b/weather.openmeteo/resources/icons/graph/720/scale80_5.png deleted file mode 100644 index 5194f13bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_50.png b/weather.openmeteo/resources/icons/graph/720/scale80_50.png deleted file mode 100644 index a870a29e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_51.png b/weather.openmeteo/resources/icons/graph/720/scale80_51.png deleted file mode 100644 index 284764cba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_52.png b/weather.openmeteo/resources/icons/graph/720/scale80_52.png deleted file mode 100644 index f3a0e37ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_53.png b/weather.openmeteo/resources/icons/graph/720/scale80_53.png deleted file mode 100644 index 49aa5c583..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_54.png b/weather.openmeteo/resources/icons/graph/720/scale80_54.png deleted file mode 100644 index 3bbe248f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_55.png b/weather.openmeteo/resources/icons/graph/720/scale80_55.png deleted file mode 100644 index 75b65a208..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_56.png b/weather.openmeteo/resources/icons/graph/720/scale80_56.png deleted file mode 100644 index a3f24e259..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_57.png b/weather.openmeteo/resources/icons/graph/720/scale80_57.png deleted file mode 100644 index aa8373187..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_58.png b/weather.openmeteo/resources/icons/graph/720/scale80_58.png deleted file mode 100644 index 9ab6e965e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_59.png b/weather.openmeteo/resources/icons/graph/720/scale80_59.png deleted file mode 100644 index d0c2a702f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_6.png b/weather.openmeteo/resources/icons/graph/720/scale80_6.png deleted file mode 100644 index b2d2c60ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_60.png b/weather.openmeteo/resources/icons/graph/720/scale80_60.png deleted file mode 100644 index 0b5daf079..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_61.png b/weather.openmeteo/resources/icons/graph/720/scale80_61.png deleted file mode 100644 index 8f03811e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_62.png b/weather.openmeteo/resources/icons/graph/720/scale80_62.png deleted file mode 100644 index 11fbdec53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_63.png b/weather.openmeteo/resources/icons/graph/720/scale80_63.png deleted file mode 100644 index 42986c1a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_64.png b/weather.openmeteo/resources/icons/graph/720/scale80_64.png deleted file mode 100644 index d8af29612..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_65.png b/weather.openmeteo/resources/icons/graph/720/scale80_65.png deleted file mode 100644 index dcd2938af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_66.png b/weather.openmeteo/resources/icons/graph/720/scale80_66.png deleted file mode 100644 index 430be4c9e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_67.png b/weather.openmeteo/resources/icons/graph/720/scale80_67.png deleted file mode 100644 index 07b0de493..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_68.png b/weather.openmeteo/resources/icons/graph/720/scale80_68.png deleted file mode 100644 index fb6080a3b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_69.png b/weather.openmeteo/resources/icons/graph/720/scale80_69.png deleted file mode 100644 index ff90c357c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_7.png b/weather.openmeteo/resources/icons/graph/720/scale80_7.png deleted file mode 100644 index 983c525da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_70.png b/weather.openmeteo/resources/icons/graph/720/scale80_70.png deleted file mode 100644 index 05b5b19af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_71.png b/weather.openmeteo/resources/icons/graph/720/scale80_71.png deleted file mode 100644 index 79ef960a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_72.png b/weather.openmeteo/resources/icons/graph/720/scale80_72.png deleted file mode 100644 index 410aaebea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_73.png b/weather.openmeteo/resources/icons/graph/720/scale80_73.png deleted file mode 100644 index 8649db755..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_74.png b/weather.openmeteo/resources/icons/graph/720/scale80_74.png deleted file mode 100644 index 77e3897a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_75.png b/weather.openmeteo/resources/icons/graph/720/scale80_75.png deleted file mode 100644 index de37451b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_76.png b/weather.openmeteo/resources/icons/graph/720/scale80_76.png deleted file mode 100644 index ac8bc8538..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_77.png b/weather.openmeteo/resources/icons/graph/720/scale80_77.png deleted file mode 100644 index e0162f4d6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_78.png b/weather.openmeteo/resources/icons/graph/720/scale80_78.png deleted file mode 100644 index c3a5a2f5b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_79.png b/weather.openmeteo/resources/icons/graph/720/scale80_79.png deleted file mode 100644 index d524b71c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_8.png b/weather.openmeteo/resources/icons/graph/720/scale80_8.png deleted file mode 100644 index 6e130d12a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_80.png b/weather.openmeteo/resources/icons/graph/720/scale80_80.png deleted file mode 100644 index 6486f6e21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale80_9.png b/weather.openmeteo/resources/icons/graph/720/scale80_9.png deleted file mode 100644 index 29e640c08..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale80_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_0.png b/weather.openmeteo/resources/icons/graph/720/scale90_0.png deleted file mode 100644 index d92b28a6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_1.png b/weather.openmeteo/resources/icons/graph/720/scale90_1.png deleted file mode 100644 index d92b28a6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_10.png b/weather.openmeteo/resources/icons/graph/720/scale90_10.png deleted file mode 100644 index 706bfe0a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_11.png b/weather.openmeteo/resources/icons/graph/720/scale90_11.png deleted file mode 100644 index a5b6b6972..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_12.png b/weather.openmeteo/resources/icons/graph/720/scale90_12.png deleted file mode 100644 index caecfaf05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_13.png b/weather.openmeteo/resources/icons/graph/720/scale90_13.png deleted file mode 100644 index bce218b26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_14.png b/weather.openmeteo/resources/icons/graph/720/scale90_14.png deleted file mode 100644 index 971f4924e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_15.png b/weather.openmeteo/resources/icons/graph/720/scale90_15.png deleted file mode 100644 index 68c3b2f44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_16.png b/weather.openmeteo/resources/icons/graph/720/scale90_16.png deleted file mode 100644 index 84a83e75f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_17.png b/weather.openmeteo/resources/icons/graph/720/scale90_17.png deleted file mode 100644 index 98d148d8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_18.png b/weather.openmeteo/resources/icons/graph/720/scale90_18.png deleted file mode 100644 index 723c679f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_19.png b/weather.openmeteo/resources/icons/graph/720/scale90_19.png deleted file mode 100644 index f9a333a8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_2.png b/weather.openmeteo/resources/icons/graph/720/scale90_2.png deleted file mode 100644 index 2e1becabb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_20.png b/weather.openmeteo/resources/icons/graph/720/scale90_20.png deleted file mode 100644 index 7196b10bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_21.png b/weather.openmeteo/resources/icons/graph/720/scale90_21.png deleted file mode 100644 index d2b01c5bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_22.png b/weather.openmeteo/resources/icons/graph/720/scale90_22.png deleted file mode 100644 index 2c56b05c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_23.png b/weather.openmeteo/resources/icons/graph/720/scale90_23.png deleted file mode 100644 index 07fefa256..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_24.png b/weather.openmeteo/resources/icons/graph/720/scale90_24.png deleted file mode 100644 index df7bd03f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_25.png b/weather.openmeteo/resources/icons/graph/720/scale90_25.png deleted file mode 100644 index 601889275..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_26.png b/weather.openmeteo/resources/icons/graph/720/scale90_26.png deleted file mode 100644 index 794472eaf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_27.png b/weather.openmeteo/resources/icons/graph/720/scale90_27.png deleted file mode 100644 index c8fffc40b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_28.png b/weather.openmeteo/resources/icons/graph/720/scale90_28.png deleted file mode 100644 index 35bfe2f4c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_29.png b/weather.openmeteo/resources/icons/graph/720/scale90_29.png deleted file mode 100644 index be736b2a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_3.png b/weather.openmeteo/resources/icons/graph/720/scale90_3.png deleted file mode 100644 index 06a00b901..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_30.png b/weather.openmeteo/resources/icons/graph/720/scale90_30.png deleted file mode 100644 index 3bab31bdf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_31.png b/weather.openmeteo/resources/icons/graph/720/scale90_31.png deleted file mode 100644 index 547924d07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_32.png b/weather.openmeteo/resources/icons/graph/720/scale90_32.png deleted file mode 100644 index b7e765161..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_33.png b/weather.openmeteo/resources/icons/graph/720/scale90_33.png deleted file mode 100644 index d9b6aef09..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_34.png b/weather.openmeteo/resources/icons/graph/720/scale90_34.png deleted file mode 100644 index 3e0e9b32b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_35.png b/weather.openmeteo/resources/icons/graph/720/scale90_35.png deleted file mode 100644 index ff3ac9cee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_36.png b/weather.openmeteo/resources/icons/graph/720/scale90_36.png deleted file mode 100644 index 37605dc6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_37.png b/weather.openmeteo/resources/icons/graph/720/scale90_37.png deleted file mode 100644 index b00ff1a5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_38.png b/weather.openmeteo/resources/icons/graph/720/scale90_38.png deleted file mode 100644 index bc17a1f52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_39.png b/weather.openmeteo/resources/icons/graph/720/scale90_39.png deleted file mode 100644 index 533fa8a4d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_4.png b/weather.openmeteo/resources/icons/graph/720/scale90_4.png deleted file mode 100644 index f37bfa2ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_40.png b/weather.openmeteo/resources/icons/graph/720/scale90_40.png deleted file mode 100644 index 5a380cb9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_41.png b/weather.openmeteo/resources/icons/graph/720/scale90_41.png deleted file mode 100644 index 76e5494d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_42.png b/weather.openmeteo/resources/icons/graph/720/scale90_42.png deleted file mode 100644 index 7e224fb42..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_43.png b/weather.openmeteo/resources/icons/graph/720/scale90_43.png deleted file mode 100644 index 9f449436d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_44.png b/weather.openmeteo/resources/icons/graph/720/scale90_44.png deleted file mode 100644 index 039f40709..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_45.png b/weather.openmeteo/resources/icons/graph/720/scale90_45.png deleted file mode 100644 index ada078cad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_46.png b/weather.openmeteo/resources/icons/graph/720/scale90_46.png deleted file mode 100644 index 8a509b1b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_47.png b/weather.openmeteo/resources/icons/graph/720/scale90_47.png deleted file mode 100644 index a4fbb623b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_48.png b/weather.openmeteo/resources/icons/graph/720/scale90_48.png deleted file mode 100644 index c7ec6ebf4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_49.png b/weather.openmeteo/resources/icons/graph/720/scale90_49.png deleted file mode 100644 index 3d9a0ff56..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_5.png b/weather.openmeteo/resources/icons/graph/720/scale90_5.png deleted file mode 100644 index ab710c355..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_50.png b/weather.openmeteo/resources/icons/graph/720/scale90_50.png deleted file mode 100644 index c9889e7a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_51.png b/weather.openmeteo/resources/icons/graph/720/scale90_51.png deleted file mode 100644 index b4d4eeb88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_52.png b/weather.openmeteo/resources/icons/graph/720/scale90_52.png deleted file mode 100644 index 442dd418b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_53.png b/weather.openmeteo/resources/icons/graph/720/scale90_53.png deleted file mode 100644 index 5fb967eef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_54.png b/weather.openmeteo/resources/icons/graph/720/scale90_54.png deleted file mode 100644 index d3bdf39cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_55.png b/weather.openmeteo/resources/icons/graph/720/scale90_55.png deleted file mode 100644 index 749f385b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_56.png b/weather.openmeteo/resources/icons/graph/720/scale90_56.png deleted file mode 100644 index 9fcf9d334..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_57.png b/weather.openmeteo/resources/icons/graph/720/scale90_57.png deleted file mode 100644 index 7ad96224d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_58.png b/weather.openmeteo/resources/icons/graph/720/scale90_58.png deleted file mode 100644 index 0ff9afd73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_59.png b/weather.openmeteo/resources/icons/graph/720/scale90_59.png deleted file mode 100644 index af8caa21d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_6.png b/weather.openmeteo/resources/icons/graph/720/scale90_6.png deleted file mode 100644 index 74b6ff2e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_60.png b/weather.openmeteo/resources/icons/graph/720/scale90_60.png deleted file mode 100644 index 215054612..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_61.png b/weather.openmeteo/resources/icons/graph/720/scale90_61.png deleted file mode 100644 index 9c53651f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_62.png b/weather.openmeteo/resources/icons/graph/720/scale90_62.png deleted file mode 100644 index 33bb0047b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_63.png b/weather.openmeteo/resources/icons/graph/720/scale90_63.png deleted file mode 100644 index 9a5187f11..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_64.png b/weather.openmeteo/resources/icons/graph/720/scale90_64.png deleted file mode 100644 index a98b52265..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_65.png b/weather.openmeteo/resources/icons/graph/720/scale90_65.png deleted file mode 100644 index 8cfb1d11a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_66.png b/weather.openmeteo/resources/icons/graph/720/scale90_66.png deleted file mode 100644 index 4c69b1370..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_67.png b/weather.openmeteo/resources/icons/graph/720/scale90_67.png deleted file mode 100644 index f96078d54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_68.png b/weather.openmeteo/resources/icons/graph/720/scale90_68.png deleted file mode 100644 index 5e98c8958..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_69.png b/weather.openmeteo/resources/icons/graph/720/scale90_69.png deleted file mode 100644 index eb6e3bac3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_7.png b/weather.openmeteo/resources/icons/graph/720/scale90_7.png deleted file mode 100644 index 9d1e504b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_70.png b/weather.openmeteo/resources/icons/graph/720/scale90_70.png deleted file mode 100644 index 9d6bb7229..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_71.png b/weather.openmeteo/resources/icons/graph/720/scale90_71.png deleted file mode 100644 index 1233cd9b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_72.png b/weather.openmeteo/resources/icons/graph/720/scale90_72.png deleted file mode 100644 index 24514f4e8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_73.png b/weather.openmeteo/resources/icons/graph/720/scale90_73.png deleted file mode 100644 index 8f3b0af65..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_74.png b/weather.openmeteo/resources/icons/graph/720/scale90_74.png deleted file mode 100644 index f52b2e828..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_75.png b/weather.openmeteo/resources/icons/graph/720/scale90_75.png deleted file mode 100644 index 691d0c2b7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_76.png b/weather.openmeteo/resources/icons/graph/720/scale90_76.png deleted file mode 100644 index b424232a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_77.png b/weather.openmeteo/resources/icons/graph/720/scale90_77.png deleted file mode 100644 index 0f9da3a60..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_78.png b/weather.openmeteo/resources/icons/graph/720/scale90_78.png deleted file mode 100644 index 690a73388..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_79.png b/weather.openmeteo/resources/icons/graph/720/scale90_79.png deleted file mode 100644 index c2064e5f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_8.png b/weather.openmeteo/resources/icons/graph/720/scale90_8.png deleted file mode 100644 index 6639660d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_80.png b/weather.openmeteo/resources/icons/graph/720/scale90_80.png deleted file mode 100644 index b13c41309..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_81.png b/weather.openmeteo/resources/icons/graph/720/scale90_81.png deleted file mode 100644 index 795d277c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_82.png b/weather.openmeteo/resources/icons/graph/720/scale90_82.png deleted file mode 100644 index 07348f759..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_83.png b/weather.openmeteo/resources/icons/graph/720/scale90_83.png deleted file mode 100644 index a45a2a138..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_84.png b/weather.openmeteo/resources/icons/graph/720/scale90_84.png deleted file mode 100644 index 56e421c6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_85.png b/weather.openmeteo/resources/icons/graph/720/scale90_85.png deleted file mode 100644 index 58fddeefe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_86.png b/weather.openmeteo/resources/icons/graph/720/scale90_86.png deleted file mode 100644 index 96f78ffbb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_87.png b/weather.openmeteo/resources/icons/graph/720/scale90_87.png deleted file mode 100644 index c9b7b8cda..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_88.png b/weather.openmeteo/resources/icons/graph/720/scale90_88.png deleted file mode 100644 index c42ce9d2c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_89.png b/weather.openmeteo/resources/icons/graph/720/scale90_89.png deleted file mode 100644 index 56cc12e73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_9.png b/weather.openmeteo/resources/icons/graph/720/scale90_9.png deleted file mode 100644 index be36a1dd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scale90_90.png b/weather.openmeteo/resources/icons/graph/720/scale90_90.png deleted file mode 100644 index a0d958c3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scale90_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-1.png deleted file mode 100644 index b5d32c2c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-10.png deleted file mode 100644 index 3fad91a55..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-2.png deleted file mode 100644 index c5539c628..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-3.png deleted file mode 100644 index 791d447a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-4.png deleted file mode 100644 index 08cf0dfce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-5.png deleted file mode 100644 index 5cf7e7f66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-6.png deleted file mode 100644 index 9f80f85c2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-7.png deleted file mode 100644 index c032a6a82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-8.png deleted file mode 100644 index d1f386e30..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_-9.png deleted file mode 100644 index cf2694fa1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_0.png deleted file mode 100644 index f63dc7164..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_1.png deleted file mode 100644 index 938cd626e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_10.png deleted file mode 100644 index 46cc7889c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_2.png deleted file mode 100644 index ef953f796..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_3.png deleted file mode 100644 index 840c50bac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_4.png deleted file mode 100644 index 157e7c73a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_5.png deleted file mode 100644 index 5ff03385b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_6.png deleted file mode 100644 index 549851635..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_7.png deleted file mode 100644 index f1bf8bfb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_8.png deleted file mode 100644 index 5c8c007dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg10_9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg10_9.png deleted file mode 100644 index be932ed24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.0.png deleted file mode 100644 index e0772a9ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.1.png deleted file mode 100644 index 9509441f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.2.png deleted file mode 100644 index 13fd15543..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.3.png deleted file mode 100644 index 3ae197bec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.4.png deleted file mode 100644 index 1d7d52543..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.5.png deleted file mode 100644 index 9c3300791..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.6.png deleted file mode 100644 index 9da8c1ea4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.7.png deleted file mode 100644 index 2b1892760..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.8.png deleted file mode 100644 index e86b58bba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.9.png deleted file mode 100644 index c69468560..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-1.0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_-1.0.png deleted file mode 100644 index 5b928e956..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_-1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.0.png deleted file mode 100644 index 0f220fdf4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.1.png deleted file mode 100644 index 29090ac90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.2.png deleted file mode 100644 index 85a1b041f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.3.png deleted file mode 100644 index e9b4de144..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.4.png deleted file mode 100644 index b54aa2b3d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.5.png deleted file mode 100644 index b111b502b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.6.png deleted file mode 100644 index 11525bf5d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.7.png deleted file mode 100644 index cd2c5deca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.8.png deleted file mode 100644 index 9208f395f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.9.png deleted file mode 100644 index 6bbcbf781..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg1_1.0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg1_1.0.png deleted file mode 100644 index 7718965a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-1.png deleted file mode 100644 index cba264e5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-10.png deleted file mode 100644 index c5ef36d3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-11.png deleted file mode 100644 index 05ff63b9d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-12.png deleted file mode 100644 index 842691cda..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-13.png deleted file mode 100644 index ac80fd5ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-14.png deleted file mode 100644 index b890a6417..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-15.png deleted file mode 100644 index 4e76c4b07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-16.png deleted file mode 100644 index 07fc29114..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-17.png deleted file mode 100644 index 7a9218c53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-18.png deleted file mode 100644 index dfb9261be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-19.png deleted file mode 100644 index 1aa8d91fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-2.png deleted file mode 100644 index f26c733d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-20.png deleted file mode 100644 index 02131a60f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-3.png deleted file mode 100644 index 1723c494c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-4.png deleted file mode 100644 index 46e15cb50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-5.png deleted file mode 100644 index ffd58745b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-6.png deleted file mode 100644 index 5ef728f87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-7.png deleted file mode 100644 index 40d1f827f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-8.png deleted file mode 100644 index 5a5a90e1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_-9.png deleted file mode 100644 index 735980e6a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_0.png deleted file mode 100644 index e5123c007..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_1.png deleted file mode 100644 index 5d5ff660d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_10.png deleted file mode 100644 index 34544b7e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_11.png deleted file mode 100644 index 23e230369..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_12.png deleted file mode 100644 index be576e655..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_13.png deleted file mode 100644 index d6b047a9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_14.png deleted file mode 100644 index fa8e2dda7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_15.png deleted file mode 100644 index 4529bb349..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_16.png deleted file mode 100644 index ac42eb53f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_17.png deleted file mode 100644 index 96c9eabbc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_18.png deleted file mode 100644 index 584d427c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_19.png deleted file mode 100644 index 0d15d00e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_2.png deleted file mode 100644 index 6443d291e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_20.png deleted file mode 100644 index c0a427b72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_3.png deleted file mode 100644 index c385c9273..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_4.png deleted file mode 100644 index c2b79634c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_5.png deleted file mode 100644 index 4dc956c9f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_6.png deleted file mode 100644 index 010cbaa0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_7.png deleted file mode 100644 index 7d987d017..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_8.png deleted file mode 100644 index d3d6f820f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg20_9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg20_9.png deleted file mode 100644 index af621c626..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-1.png deleted file mode 100644 index b6be6dd25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-10.png deleted file mode 100644 index 93d4cda1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-11.png deleted file mode 100644 index d686d0778..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-12.png deleted file mode 100644 index 7ff0cf0a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-13.png deleted file mode 100644 index 8f3e21428..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-14.png deleted file mode 100644 index ddaa3646e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-15.png deleted file mode 100644 index fc8c894b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-16.png deleted file mode 100644 index 5b6701769..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-17.png deleted file mode 100644 index 26e7b600d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-18.png deleted file mode 100644 index 5d33fe015..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-19.png deleted file mode 100644 index 821cc2233..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-2.png deleted file mode 100644 index 3f32f8d70..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-20.png deleted file mode 100644 index 41aaa520b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-21.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-21.png deleted file mode 100644 index 8737636ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-22.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-22.png deleted file mode 100644 index 1be413fe9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-23.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-23.png deleted file mode 100644 index 3bd66259b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-24.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-24.png deleted file mode 100644 index 9abcc742f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-25.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-25.png deleted file mode 100644 index 8634c9559..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-26.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-26.png deleted file mode 100644 index 24dc2f4ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-27.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-27.png deleted file mode 100644 index e34a219ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-28.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-28.png deleted file mode 100644 index 6bd55eee2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-29.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-29.png deleted file mode 100644 index 864344db1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-3.png deleted file mode 100644 index d1f005b27..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-30.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-30.png deleted file mode 100644 index ada234bf1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-4.png deleted file mode 100644 index 1653331fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-5.png deleted file mode 100644 index 90fb033e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-6.png deleted file mode 100644 index 1f0eff1c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-7.png deleted file mode 100644 index ae227d589..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-8.png deleted file mode 100644 index 2455cd19b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_-9.png deleted file mode 100644 index 2d1c164e5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_0.png deleted file mode 100644 index f3d677e8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_1.png deleted file mode 100644 index 115d308b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_10.png deleted file mode 100644 index 7ed15eefc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_11.png deleted file mode 100644 index adf4398f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_12.png deleted file mode 100644 index 4cd631db5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_13.png deleted file mode 100644 index 3b5295d8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_14.png deleted file mode 100644 index 443bea046..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_15.png deleted file mode 100644 index 8b993e617..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_16.png deleted file mode 100644 index 5889a714d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_17.png deleted file mode 100644 index 60ff9f655..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_18.png deleted file mode 100644 index c40c88708..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_19.png deleted file mode 100644 index bd152bfee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_2.png deleted file mode 100644 index 9bb47a1dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_20.png deleted file mode 100644 index a51bbefcc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_21.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_21.png deleted file mode 100644 index 7f4738a89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_22.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_22.png deleted file mode 100644 index f1c9442cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_23.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_23.png deleted file mode 100644 index d571700e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_24.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_24.png deleted file mode 100644 index 896ba8ff1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_25.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_25.png deleted file mode 100644 index 63a8c474b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_26.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_26.png deleted file mode 100644 index 8f67080b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_27.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_27.png deleted file mode 100644 index 6a932b17e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_28.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_28.png deleted file mode 100644 index 25f9ecd4a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_29.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_29.png deleted file mode 100644 index 976266e0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_3.png deleted file mode 100644 index a70b89b2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_30.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_30.png deleted file mode 100644 index 88d5b587c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_4.png deleted file mode 100644 index acf9bb6f3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_5.png deleted file mode 100644 index 31cd1538a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_6.png deleted file mode 100644 index 13ec90034..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_7.png deleted file mode 100644 index 298af10e8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_8.png deleted file mode 100644 index 015186b85..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg30_9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg30_9.png deleted file mode 100644 index 22731646d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-1.png deleted file mode 100644 index e0772a9ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-10.png deleted file mode 100644 index f8a508b53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-11.png deleted file mode 100644 index 054572eb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-12.png deleted file mode 100644 index be0d05775..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-13.png deleted file mode 100644 index 7ed573d86..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-14.png deleted file mode 100644 index 0ffbe1571..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-15.png deleted file mode 100644 index cdc198e5d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-16.png deleted file mode 100644 index ff0f5e17b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-17.png deleted file mode 100644 index cb7511229..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-18.png deleted file mode 100644 index 7b96b4406..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-19.png deleted file mode 100644 index c02696564..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-2.png deleted file mode 100644 index eab2f01ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-20.png deleted file mode 100644 index 3bc1e1ed6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-21.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-21.png deleted file mode 100644 index d38ce9db5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-22.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-22.png deleted file mode 100644 index 1b6fd7d5d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-23.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-23.png deleted file mode 100644 index fc6a07936..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-24.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-24.png deleted file mode 100644 index 4f7e7bafc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-25.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-25.png deleted file mode 100644 index 3a8492a06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-26.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-26.png deleted file mode 100644 index ec5a3c692..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-27.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-27.png deleted file mode 100644 index 4c35e0375..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-28.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-28.png deleted file mode 100644 index 973dd4a4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-29.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-29.png deleted file mode 100644 index ee1178c96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-3.png deleted file mode 100644 index 922b44254..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-30.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-30.png deleted file mode 100644 index 69f202ca1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-31.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-31.png deleted file mode 100644 index 086c96a5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-32.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-32.png deleted file mode 100644 index c3290713a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-33.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-33.png deleted file mode 100644 index 5a1884641..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-34.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-34.png deleted file mode 100644 index b77c88bea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-35.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-35.png deleted file mode 100644 index 23d739c25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-36.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-36.png deleted file mode 100644 index bbf312ce2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-37.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-37.png deleted file mode 100644 index 93c371caf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-38.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-38.png deleted file mode 100644 index d59ceef9c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-39.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-39.png deleted file mode 100644 index 4e4c38fc2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-4.png deleted file mode 100644 index a9858c0a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-40.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-40.png deleted file mode 100644 index 70f62c402..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-5.png deleted file mode 100644 index 6a7562ea4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-6.png deleted file mode 100644 index 062e7dac8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-7.png deleted file mode 100644 index 004a70914..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-8.png deleted file mode 100644 index 91df47d90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_-9.png deleted file mode 100644 index 4ffe06ddc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_0.png deleted file mode 100644 index 93580943a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_1.png deleted file mode 100644 index 93580943a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_10.png deleted file mode 100644 index adca82b23..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_11.png deleted file mode 100644 index d475d01ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_12.png deleted file mode 100644 index e8e00370f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_13.png deleted file mode 100644 index 14906d0c0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_14.png deleted file mode 100644 index 798a55267..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_15.png deleted file mode 100644 index bcecf27cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_16.png deleted file mode 100644 index f56482976..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_17.png deleted file mode 100644 index 0763723cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_18.png deleted file mode 100644 index 9fe462834..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_19.png deleted file mode 100644 index 286177b96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_2.png deleted file mode 100644 index 56707e8d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_20.png deleted file mode 100644 index 5e168737f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_21.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_21.png deleted file mode 100644 index 50f07a46f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_22.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_22.png deleted file mode 100644 index 8719b0e4f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_23.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_23.png deleted file mode 100644 index 8c52d40ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_24.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_24.png deleted file mode 100644 index e74e7faa5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_25.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_25.png deleted file mode 100644 index a57625e10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_26.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_26.png deleted file mode 100644 index 3eee0f580..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_27.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_27.png deleted file mode 100644 index d92a0dd6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_28.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_28.png deleted file mode 100644 index 60b4d4362..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_29.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_29.png deleted file mode 100644 index 317a039d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_3.png deleted file mode 100644 index 060817720..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_30.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_30.png deleted file mode 100644 index 5b74c627f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_31.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_31.png deleted file mode 100644 index eb84d1ad3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_32.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_32.png deleted file mode 100644 index 2bad612e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_33.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_33.png deleted file mode 100644 index fae94967a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_34.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_34.png deleted file mode 100644 index 2bafdb5e8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_35.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_35.png deleted file mode 100644 index c1565bb2f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_36.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_36.png deleted file mode 100644 index d1d9aee2c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_37.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_37.png deleted file mode 100644 index 544862aba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_38.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_38.png deleted file mode 100644 index e840c5d4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_39.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_39.png deleted file mode 100644 index 2ecbb9e29..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_4.png deleted file mode 100644 index dcb5f2f0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_40.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_40.png deleted file mode 100644 index 020b23699..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_5.png deleted file mode 100644 index 108b1099a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_6.png deleted file mode 100644 index 48d73aeb4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_7.png deleted file mode 100644 index 61e4c05f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_8.png deleted file mode 100644 index 7b98daa9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg40_9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg40_9.png deleted file mode 100644 index 60b800b71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-1.png deleted file mode 100644 index e0772a9ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-10.png deleted file mode 100644 index a7bf0b218..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-11.png deleted file mode 100644 index 437fcf54d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-12.png deleted file mode 100644 index dee019733..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-13.png deleted file mode 100644 index c5621388b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-14.png deleted file mode 100644 index 5e282a7a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-15.png deleted file mode 100644 index f87187d9c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-16.png deleted file mode 100644 index d903d96f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-17.png deleted file mode 100644 index 409220885..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-18.png deleted file mode 100644 index 41cd724d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-19.png deleted file mode 100644 index 121ad56af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-2.png deleted file mode 100644 index 5baefafd1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-20.png deleted file mode 100644 index 33fd18a92..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-21.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-21.png deleted file mode 100644 index afec0c3c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-22.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-22.png deleted file mode 100644 index 136ce5b05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-23.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-23.png deleted file mode 100644 index 44f5ebfb8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-24.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-24.png deleted file mode 100644 index 03434ba26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-25.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-25.png deleted file mode 100644 index b752a5068..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-26.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-26.png deleted file mode 100644 index e4a576550..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-27.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-27.png deleted file mode 100644 index ac038f4b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-28.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-28.png deleted file mode 100644 index ef4c57a40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-29.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-29.png deleted file mode 100644 index ff9060af3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-3.png deleted file mode 100644 index b6f0b00e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-30.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-30.png deleted file mode 100644 index 17969859a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-31.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-31.png deleted file mode 100644 index bc0738f06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-32.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-32.png deleted file mode 100644 index 71daffd22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-33.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-33.png deleted file mode 100644 index d904db214..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-34.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-34.png deleted file mode 100644 index d9b406d33..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-35.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-35.png deleted file mode 100644 index 9c6f9e905..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-36.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-36.png deleted file mode 100644 index d10c14c2d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-37.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-37.png deleted file mode 100644 index 01f6afb19..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-38.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-38.png deleted file mode 100644 index d67861f5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-39.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-39.png deleted file mode 100644 index 1b46775b6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-4.png deleted file mode 100644 index 0bbe9d1fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-40.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-40.png deleted file mode 100644 index 6e1ccf1fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-41.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-41.png deleted file mode 100644 index b0a6730d1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-42.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-42.png deleted file mode 100644 index e808f3b60..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-43.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-43.png deleted file mode 100644 index c97763162..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-44.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-44.png deleted file mode 100644 index 0d2817454..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-45.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-45.png deleted file mode 100644 index 100d6bb2b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-46.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-46.png deleted file mode 100644 index b41f8e674..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-47.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-47.png deleted file mode 100644 index 99f6c2e0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-48.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-48.png deleted file mode 100644 index bbba913a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-49.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-49.png deleted file mode 100644 index 34db777b7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-5.png deleted file mode 100644 index fca8bbe79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-50.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-50.png deleted file mode 100644 index 984510d0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-6.png deleted file mode 100644 index da4acf1a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-7.png deleted file mode 100644 index 8fd4bf3d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-8.png deleted file mode 100644 index aa5963511..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_-9.png deleted file mode 100644 index 8afea81d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_0.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_0.png deleted file mode 100644 index 3f038fc6c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_1.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_1.png deleted file mode 100644 index 3f038fc6c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_10.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_10.png deleted file mode 100644 index 1f8fe326b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_11.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_11.png deleted file mode 100644 index 516916bb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_12.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_12.png deleted file mode 100644 index 93b51ef08..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_13.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_13.png deleted file mode 100644 index 604ef7dba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_14.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_14.png deleted file mode 100644 index c96801c45..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_15.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_15.png deleted file mode 100644 index 014eb88bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_16.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_16.png deleted file mode 100644 index 74d778af7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_17.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_17.png deleted file mode 100644 index d9e99e9bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_18.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_18.png deleted file mode 100644 index 5c13f40ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_19.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_19.png deleted file mode 100644 index 23939d215..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_2.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_2.png deleted file mode 100644 index ead30f99c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_20.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_20.png deleted file mode 100644 index 0663bd8ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_21.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_21.png deleted file mode 100644 index 193090228..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_22.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_22.png deleted file mode 100644 index 1764643cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_23.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_23.png deleted file mode 100644 index 41d947135..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_24.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_24.png deleted file mode 100644 index 537345cef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_25.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_25.png deleted file mode 100644 index 9b5119b5b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_26.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_26.png deleted file mode 100644 index 2d755acf0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_27.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_27.png deleted file mode 100644 index c82885e39..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_28.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_28.png deleted file mode 100644 index a36fc1568..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_29.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_29.png deleted file mode 100644 index 51041b17b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_3.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_3.png deleted file mode 100644 index c0930cb10..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_30.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_30.png deleted file mode 100644 index 9af376a6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_31.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_31.png deleted file mode 100644 index ef331dbce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_32.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_32.png deleted file mode 100644 index 2b97e8e93..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_33.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_33.png deleted file mode 100644 index 9209c6986..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_34.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_34.png deleted file mode 100644 index a38dcd860..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_35.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_35.png deleted file mode 100644 index 20d5ad8df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_36.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_36.png deleted file mode 100644 index 712df758e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_37.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_37.png deleted file mode 100644 index d12c0e6b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_38.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_38.png deleted file mode 100644 index c62ca29bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_39.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_39.png deleted file mode 100644 index 759a15fe6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_4.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_4.png deleted file mode 100644 index 5ae93d275..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_40.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_40.png deleted file mode 100644 index b0052ccaa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_41.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_41.png deleted file mode 100644 index 9b026a540..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_42.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_42.png deleted file mode 100644 index 4d3d57696..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_43.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_43.png deleted file mode 100644 index 940803146..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_44.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_44.png deleted file mode 100644 index de2f12927..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_45.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_45.png deleted file mode 100644 index c8af6c471..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_46.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_46.png deleted file mode 100644 index 3ad05eeb5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_47.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_47.png deleted file mode 100644 index a85d34b0b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_48.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_48.png deleted file mode 100644 index ede1e5dba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_49.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_49.png deleted file mode 100644 index 7181e8a1b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_5.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_5.png deleted file mode 100644 index 352d7374a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_50.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_50.png deleted file mode 100644 index 17ec8cfc7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_6.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_6.png deleted file mode 100644 index c316d5a0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_7.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_7.png deleted file mode 100644 index 32776bf6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_8.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_8.png deleted file mode 100644 index ed461fba5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/720/scaleneg50_9.png b/weather.openmeteo/resources/icons/graph/720/scaleneg50_9.png deleted file mode 100644 index 4fba266fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/720/scaleneg50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/language/resource.language.cs_cz/strings.po b/weather.openmeteo/resources/language/resource.language.cs_cz/strings.po new file mode 100644 index 000000000..782bd7b9d --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.cs_cz/strings.po @@ -0,0 +1,646 @@ +msgid "" +msgstr "" +"Project-Id-Version: English (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: 2025-01-24 14:55+0000\n" +"Last-Translator: Tomas \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" +"X-Generator: Weblate 5.10-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "Slunečno" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "Převážně slunečno" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "Částečně oblačno" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "Zataženo" + +msgctxt "#32204" +msgid "Foggy" +msgstr "Mlhavo" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "Námrazová mlha" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "Slabé mrholení" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "Mrholení" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "Silné mrholení" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "Slabé mrholení se sněhem" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "Mrholení se sněhem" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "Slabý déšť" + +msgctxt "#32212" +msgid "Rain" +msgstr "Déšť" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "Silný déšť" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "Slabý déšť se sněhem" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "Déšť se sněhem" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "Slabé sněžení" + +msgctxt "#32217" +msgid "Snow" +msgstr "Sněžení" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "Silné sněžení" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "Ledové krupky" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "Slabé přeháňky" + +msgctxt "#32221" +msgid "Showers" +msgstr "Přeháňky" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "Silné přeháňky" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "Slabé sněhové přeháňky" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "Sněhové přeháňky" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "Bouřka" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "Slabé bouřky s kroupami" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "Bouřka s kroupami" + +msgctxt "#32250" +msgid "Clear" +msgstr "Jasno" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "Převážně jasno" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "Východ měsíce" + +msgctxt "#32256" +msgid "Moonset" +msgstr "Západ měsíce" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "Fáze měsíce" + +msgctxt "#32260" +msgid "General" +msgstr "Obecné" + +msgctxt "#32261" +msgid "Locations" +msgstr "Místa" + +msgctxt "#32262" +msgid "Limits" +msgstr "Limity" + +msgctxt "#32263" +msgid "Notifications" +msgstr "Upozornění" + +msgctxt "#32264" +msgid "Advanced" +msgstr "Pokročilé" + +msgctxt "#32265" +msgid "Weather" +msgstr "Počasí" + +msgctxt "#32266" +msgid "Airquality" +msgstr "Kvalita ovzduší" + +msgctxt "#32267" +msgid "Pollen" +msgstr "Pyl" + +msgctxt "#32268" +msgid "Alerts" +msgstr "Výstrahy" + +msgctxt "#32269" +msgid "Select option" +msgstr "Vyberte možnost" + +msgctxt "#32270" +msgid "Graphs" +msgstr "Grafy" + +msgctxt "#32271" +msgid "Overview" +msgstr "Přehled" + +msgctxt "#32272" +msgid "History" +msgstr "Historie" + +msgctxt "#32280" +msgid "Units" +msgstr "Jednotky" + +msgctxt "#32281" +msgid "Maps" +msgstr "Mapy" + +msgctxt "#32282" +msgid "Logging" +msgstr "Protokolování" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "Experimentální (nutný restart)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "Přiblížení" + +msgctxt "#32286" +msgid "Debug" +msgstr "Ladění" + +msgctxt "#32287" +msgid "Duration" +msgstr "Trvání" + +msgctxt "#32288" +msgid "Hours" +msgstr "Hodiny" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "Desetinná místa" + +msgctxt "#32290" +msgid "Icons" +msgstr "Ikony" + +msgctxt "#32291" +msgid "Default" +msgstr "Výchozí" + +#, read-only +msgctxt "#32292" +msgid "Weathermap" +msgstr "" + +#, read-only +msgctxt "#32293" +msgid "Met.no" +msgstr "" + +#, read-only +msgctxt "#32294" +msgid "WMO" +msgstr "" + +msgctxt "#32296" +msgid "Background sync" +msgstr "Synchronizace na pozadí" + +msgctxt "#32300" +msgid "Distance" +msgstr "Vzdálenost" + +msgctxt "#32301" +msgid "Index" +msgstr "Index" + +msgctxt "#32302" +msgid "Percent" +msgstr "Procenta" + +msgctxt "#32303" +msgid "Unit" +msgstr "Jednotka" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "Oddělovač desetinných míst" + +msgctxt "#32306" +msgid "Particles" +msgstr "Částice" + +msgctxt "#32307" +msgid "Interval" +msgstr "Interval" + +msgctxt "#32308" +msgid "Verbose" +msgstr "Podrobný" + +msgctxt "#32310" +msgid "Location 1" +msgstr "Místo 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "Místo 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "Místo 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "Místo 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "Místo 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "Použít časové pásmo místa" + +msgctxt "#32320" +msgid "Temperature" +msgstr "Teplota" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "Srážky" + +msgctxt "#32322" +msgid "Condition" +msgstr "Podmínky" + +msgctxt "#32323" +msgid "Wind" +msgstr "Vítr" + +msgctxt "#32324" +msgid "Gust" +msgstr "Nárazy" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "AQI EU" + +msgctxt "#32326" +msgid "AQI US" +msgstr "AQI US" + +msgctxt "#32327" +msgid "PM25" +msgstr "PM25" + +msgctxt "#32328" +msgid "PM10" +msgstr "PM10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "UV Index" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "Oxid dusíku" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "Oxid siřičitý" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "Pocitová teplota" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "Rosný bod" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "Oblačnost" + +msgctxt "#32335" +msgid "Time" +msgstr "Čas" + +msgctxt "#32336" +msgid "Speed" +msgstr "Rychlost" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "Oxid uhelnatý" + +msgctxt "#32338" +msgid "Ozone" +msgstr "Ozon" + +msgctxt "#32339" +msgid "Dust" +msgstr "Prach" + +msgctxt "#32340" +msgid "Notice" +msgstr "Upozornění" + +msgctxt "#32341" +msgid "Caution" +msgstr "Opatrnost" + +msgctxt "#32342" +msgid "Danger" +msgstr "Nebezpečí" + +msgctxt "#32343" +msgid "Normal" +msgstr "Normální" + +msgctxt "#32344" +msgid "Negative" +msgstr "Negativní" + +msgctxt "#32345" +msgid "Colours" +msgstr "Barvy" + +msgctxt "#32346" +msgid "Humidity" +msgstr "Vlhkost" + +msgctxt "#32347" +msgid "Pressure" +msgstr "Tlak" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "Sluneční záření" + +msgctxt "#32349" +msgid "Visibility" +msgstr "Viditelnost" + +#, read-only +msgctxt "#32350" +msgid "°C" +msgstr "" + +#, read-only +msgctxt "#32351" +msgid "°F" +msgstr "" + +#, read-only +msgctxt "#32352" +msgid "K" +msgstr "" + +#, read-only +msgctxt "#32353" +msgid "°Ré" +msgstr "" + +#, read-only +msgctxt "#32354" +msgid "°Ra" +msgstr "" + +#, read-only +msgctxt "#32355" +msgid "°Rø" +msgstr "" + +#, read-only +msgctxt "#32356" +msgid "°D" +msgstr "" + +#, read-only +msgctxt "#32357" +msgid "°N" +msgstr "" + +msgctxt "#32360" +msgid "Application" +msgstr "Aplikace" + +msgctxt "#32361" +msgid "mph" +msgstr "mph" + +msgctxt "#32362" +msgid "km/h" +msgstr "km/h" + +msgctxt "#32363" +msgid "m/min" +msgstr "m/min" + +msgctxt "#32364" +msgid "m/s" +msgstr "m/s" + +msgctxt "#32365" +msgid "ft/h" +msgstr "ft/h" + +msgctxt "#32366" +msgid "ft/min" +msgstr "ft/min" + +msgctxt "#32367" +msgid "ft/s" +msgstr "ft/s" + +msgctxt "#32368" +msgid "kts" +msgstr "kts" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "Beaufort" + +msgctxt "#32370" +msgid "inch/s" +msgstr "inch/s" + +msgctxt "#32371" +msgid "yard/s" +msgstr "yard/s" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "Furlong/Fortnight" + +msgctxt "#32380" +msgid "mm" +msgstr "mm" + +msgctxt "#32381" +msgid "inches" +msgstr "inches" + +msgctxt "#32390" +msgid "12h" +msgstr "12h" + +msgctxt "#32391" +msgid "24h" +msgstr "24h" + +msgctxt "#32400" +msgid "Radar" +msgstr "Radar" + +msgctxt "#32401" +msgid "Satellite" +msgstr "Satelit" + +msgctxt "#32410" +msgid "m" +msgstr "m" + +msgctxt "#32411" +msgid "km" +msgstr "km" + +msgctxt "#32412" +msgid "mi" +msgstr "mi" + +#, read-only +msgctxt "#32430" +msgid "." +msgstr "" + +#, read-only +msgctxt "#32431" +msgid "," +msgstr "" + +msgctxt "#32440" +msgid "New Moon" +msgstr "Nový měsíc" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "Dorůstající srpek" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "První čtvrtina" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "Dorůstající měsíc" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "Úplněk" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "Couvající měsíc" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "Poslední čtvrtina" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "Couvající srpek" + +msgctxt "#32450" +msgid "Alder" +msgstr "Olše" + +msgctxt "#32451" +msgid "Birch" +msgstr "Bříza" + +msgctxt "#32452" +msgid "Grass" +msgstr "Tráva" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "Pelyněk" + +msgctxt "#32454" +msgid "Olive" +msgstr "Olivovník" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "Ambrózia" + +msgctxt "#32456" +msgid "grains" +msgstr "Obilniny" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "Predpoveď počasia z Open-Meteo" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "" +"Počasie, mapy, kvalita vzduchu a pyľové údaje z open-meteo.com, " +"rainviewer.com, weather.gc.ca a met.no" diff --git a/weather.openmeteo/resources/language/resource.language.en_gb/strings.po b/weather.openmeteo/resources/language/resource.language.en_gb/strings.po index 9ef19f480..ced7a6ed2 100644 --- a/weather.openmeteo/resources/language/resource.language.en_gb/strings.po +++ b/weather.openmeteo/resources/language/resource.language.en_gb/strings.po @@ -526,6 +526,26 @@ msgctxt "#32381" msgid "inches" msgstr "inches" +msgctxt "#32382" +msgid "hPa" +msgstr "hPa" + +msgctxt "#32383" +msgid "kPa" +msgstr "kPa" + +msgctxt "#32384" +msgid "mm Hg" +msgstr "mm Hg" + +msgctxt "#32385" +msgid "in Hg" +msgstr "in Hg" + +msgctxt "#32386" +msgid "psi" +msgstr "psi" + msgctxt "#32390" msgid "12h" msgstr "12h" diff --git a/weather.openmeteo/resources/language/resource.language.hu_hu/strings.po b/weather.openmeteo/resources/language/resource.language.hu_hu/strings.po new file mode 100644 index 000000000..07d8efe92 --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.hu_hu/strings.po @@ -0,0 +1,646 @@ +msgid "" +msgstr "" +"Project-Id-Version: English (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: 2025-05-13 13:31+0000\n" +"Last-Translator: Frodo19 \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "Napos" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "Többnyire napos" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "Részben felhős" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "Felhős" + +msgctxt "#32204" +msgid "Foggy" +msgstr "Ködös" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "Zúzmara/köd" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "Gyenge szitálás" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "Szitálás" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "Erős szitálás" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "Könnyű, fagyos szitálás" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "Fagyos szitálás" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "Gyenge eső" + +msgctxt "#32212" +msgid "Rain" +msgstr "Eső" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "Erős eső" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "Gyenge fagyos eső" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "Ónoseső" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "Hószitálás" + +msgctxt "#32217" +msgid "Snow" +msgstr "Havazás" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "Erős havazás" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "Hódara" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "Könnyű zápor" + +msgctxt "#32221" +msgid "Showers" +msgstr "Zápor" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "Heves zápor" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "Gyenge hózápor" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "Hózápor" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "Vihar" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "Gyenge vihar jégesővel" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "Vihar jégesővel" + +msgctxt "#32250" +msgid "Clear" +msgstr "Tiszta" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "Többnyire tiszta" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "Holdkelte" + +msgctxt "#32256" +msgid "Moonset" +msgstr "Holdnyugta" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "Holdfázis" + +msgctxt "#32260" +msgid "General" +msgstr "Általános" + +msgctxt "#32261" +msgid "Locations" +msgstr "Helyzet" + +msgctxt "#32262" +msgid "Limits" +msgstr "Határ" + +msgctxt "#32263" +msgid "Notifications" +msgstr "Értesítések" + +msgctxt "#32264" +msgid "Advanced" +msgstr "Haladó" + +msgctxt "#32265" +msgid "Weather" +msgstr "Időjárás" + +msgctxt "#32266" +msgid "Airquality" +msgstr "Levegő minőség" + +msgctxt "#32267" +msgid "Pollen" +msgstr "Pollen" + +msgctxt "#32268" +msgid "Alerts" +msgstr "Risztás" + +msgctxt "#32269" +msgid "Select option" +msgstr "Beállítás kiválasztása" + +msgctxt "#32270" +msgid "Graphs" +msgstr "Grafikonok" + +msgctxt "#32271" +msgid "Overview" +msgstr "Áttekintés" + +msgctxt "#32272" +msgid "History" +msgstr "Előzmények" + +msgctxt "#32280" +msgid "Units" +msgstr "Egységek" + +msgctxt "#32281" +msgid "Maps" +msgstr "Térképek" + +msgctxt "#32282" +msgid "Logging" +msgstr "Naplózás" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "Kísérleti (Újraindítás szükséges)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "Nagyítás" + +msgctxt "#32286" +msgid "Debug" +msgstr "Debug" + +msgctxt "#32287" +msgid "Duration" +msgstr "Időtartam" + +msgctxt "#32288" +msgid "Hours" +msgstr "Órák" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "Tizedesjegyek" + +msgctxt "#32290" +msgid "Icons" +msgstr "Ikonok" + +msgctxt "#32291" +msgid "Default" +msgstr "Alapértelmezett" + +#, read-only +msgctxt "#32292" +msgid "Weathermap" +msgstr "" + +#, read-only +msgctxt "#32293" +msgid "Met.no" +msgstr "" + +#, read-only +msgctxt "#32294" +msgid "WMO" +msgstr "" + +msgctxt "#32296" +msgid "Background sync" +msgstr "Háttérben szinkronizálás" + +msgctxt "#32300" +msgid "Distance" +msgstr "Távolság" + +msgctxt "#32301" +msgid "Index" +msgstr "Index" + +msgctxt "#32302" +msgid "Percent" +msgstr "Százalék" + +msgctxt "#32303" +msgid "Unit" +msgstr "Egység" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "Tizedesjel elválasztó" + +msgctxt "#32306" +msgid "Particles" +msgstr "Részecskék" + +msgctxt "#32307" +msgid "Interval" +msgstr "Intervallum" + +msgctxt "#32308" +msgid "Verbose" +msgstr "Részletes" + +msgctxt "#32310" +msgid "Location 1" +msgstr "Helyszín 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "Helyszín 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "Helyszín 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "Helyszín 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "Helyszín 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "Helyszín szerinti időzóna használata" + +msgctxt "#32320" +msgid "Temperature" +msgstr "Hőmérséklet" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "Csapadék" + +msgctxt "#32322" +msgid "Condition" +msgstr "Feltétel" + +msgctxt "#32323" +msgid "Wind" +msgstr "Szél" + +msgctxt "#32324" +msgid "Gust" +msgstr "Széllökés" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "EU Légszennyezettségi index" + +msgctxt "#32326" +msgid "AQI US" +msgstr "US Légszennyezettségi index" + +msgctxt "#32327" +msgid "PM25" +msgstr "PM 25" + +msgctxt "#32328" +msgid "PM10" +msgstr "PM 10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "UV index" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "Nitrogén dioxid" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "Kén dioxid" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "Hőérzet" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "Harmatpont" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "Felhősség" + +msgctxt "#32335" +msgid "Time" +msgstr "Idő" + +msgctxt "#32336" +msgid "Speed" +msgstr "Sebesség" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "Szén monoxid" + +msgctxt "#32338" +msgid "Ozone" +msgstr "Ózon" + +msgctxt "#32339" +msgid "Dust" +msgstr "Por" + +msgctxt "#32340" +msgid "Notice" +msgstr "Értesítés" + +msgctxt "#32341" +msgid "Caution" +msgstr "Figyelem" + +msgctxt "#32342" +msgid "Danger" +msgstr "Veszély" + +msgctxt "#32343" +msgid "Normal" +msgstr "Normális" + +msgctxt "#32344" +msgid "Negative" +msgstr "Negatív" + +msgctxt "#32345" +msgid "Colours" +msgstr "Színek" + +msgctxt "#32346" +msgid "Humidity" +msgstr "Légnedvesség" + +msgctxt "#32347" +msgid "Pressure" +msgstr "Légnyomás" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "Napsugárzás" + +msgctxt "#32349" +msgid "Visibility" +msgstr "Látótáv" + +#, read-only +msgctxt "#32350" +msgid "°C" +msgstr "" + +#, read-only +msgctxt "#32351" +msgid "°F" +msgstr "" + +#, read-only +msgctxt "#32352" +msgid "K" +msgstr "" + +#, read-only +msgctxt "#32353" +msgid "°Ré" +msgstr "" + +#, read-only +msgctxt "#32354" +msgid "°Ra" +msgstr "" + +#, read-only +msgctxt "#32355" +msgid "°Rø" +msgstr "" + +#, read-only +msgctxt "#32356" +msgid "°D" +msgstr "" + +#, read-only +msgctxt "#32357" +msgid "°N" +msgstr "" + +msgctxt "#32360" +msgid "Application" +msgstr "Alkalmazás" + +msgctxt "#32361" +msgid "mph" +msgstr "mph" + +msgctxt "#32362" +msgid "km/h" +msgstr "km/h" + +msgctxt "#32363" +msgid "m/min" +msgstr "m/min" + +msgctxt "#32364" +msgid "m/s" +msgstr "m/s" + +msgctxt "#32365" +msgid "ft/h" +msgstr "ft/h" + +msgctxt "#32366" +msgid "ft/min" +msgstr "ft/min" + +msgctxt "#32367" +msgid "ft/s" +msgstr "ft/s" + +msgctxt "#32368" +msgid "kts" +msgstr "kts" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "Beaufort" + +msgctxt "#32370" +msgid "inch/s" +msgstr "inch/s" + +msgctxt "#32371" +msgid "yard/s" +msgstr "yard/s" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "Furlong/Fortnight" + +msgctxt "#32380" +msgid "mm" +msgstr "mm" + +msgctxt "#32381" +msgid "inches" +msgstr "inches" + +msgctxt "#32390" +msgid "12h" +msgstr "12 órás" + +msgctxt "#32391" +msgid "24h" +msgstr "24 órás" + +msgctxt "#32400" +msgid "Radar" +msgstr "Radar" + +msgctxt "#32401" +msgid "Satellite" +msgstr "Műhold" + +msgctxt "#32410" +msgid "m" +msgstr "m" + +msgctxt "#32411" +msgid "km" +msgstr "km" + +msgctxt "#32412" +msgid "mi" +msgstr "mi" + +#, read-only +msgctxt "#32430" +msgid "." +msgstr "" + +#, read-only +msgctxt "#32431" +msgid "," +msgstr "" + +msgctxt "#32440" +msgid "New Moon" +msgstr "Újhold" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "Növekvő Félhold" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "Első negyed" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "Növekvő hold" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "Telihold" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "Csökkenő hold" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "Utolsó negyed" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "Fogyó félhold" + +msgctxt "#32450" +msgid "Alder" +msgstr "Égerfa" + +msgctxt "#32451" +msgid "Birch" +msgstr "Nyírfa" + +msgctxt "#32452" +msgid "Grass" +msgstr "Fű" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "Fekete üröm" + +msgctxt "#32454" +msgid "Olive" +msgstr "Olíva" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "Parlagfű" + +msgctxt "#32456" +msgid "grains" +msgstr "szemcsék" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "Időjárás-előrejelzés az Open-Meteo-ból" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "" +"Időjárás, térképek, levegőminőség és pollenelőrejelzés az open-meteo.com, a " +"rainviewer.com, a weather.gc.ca és a met.no oldalakról" diff --git a/weather.openmeteo/resources/language/resource.language.id_id/strings.po b/weather.openmeteo/resources/language/resource.language.id_id/strings.po new file mode 100644 index 000000000..efa4e9727 --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.id_id/strings.po @@ -0,0 +1,646 @@ +msgid "" +msgstr "" +"Project-Id-Version: English (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: 2025-03-23 13:21+0000\n" +"Last-Translator: Nao3Line Prez \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.11-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "Cerah" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "Sebagian Besar Cerah" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "Sebagian Berawan" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "Berawan" + +msgctxt "#32204" +msgid "Foggy" +msgstr "Berkabut" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "Kabut Beku" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "Gerimis Ringan" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "Gerimis" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "Gerimis Deras" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "Gerimis Beku Ringan" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "Gerimis Beku" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "Hujan Ringan" + +msgctxt "#32212" +msgid "Rain" +msgstr "Hujan" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "Hujan Deras" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "Hujan Beku Ringan" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "Hujan Beku" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "Salju Ringan" + +msgctxt "#32217" +msgid "Snow" +msgstr "Salju" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "Salju Lebat" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "Butir Salju" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "Hujan Ringan" + +msgctxt "#32221" +msgid "Showers" +msgstr "Hujan" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "Hujan Lebat" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "Hujan Salju Ringan" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "Hujan Salju" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "Badai Petir" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "Badai Petir Ringan Disertai Hujan Es" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "Badai Petir Disertai Hujan Es" + +msgctxt "#32250" +msgid "Clear" +msgstr "Cerah" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "Sebagian Besar Cerah" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "Bulan Terbit" + +msgctxt "#32256" +msgid "Moonset" +msgstr "Bulan Tenggelam" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "Fase Bulan" + +msgctxt "#32260" +msgid "General" +msgstr "Umum" + +msgctxt "#32261" +msgid "Locations" +msgstr "Lokasi" + +msgctxt "#32262" +msgid "Limits" +msgstr "Batas" + +msgctxt "#32263" +msgid "Notifications" +msgstr "Notifikasi" + +msgctxt "#32264" +msgid "Advanced" +msgstr "Lanjutan" + +msgctxt "#32265" +msgid "Weather" +msgstr "Cuaca" + +msgctxt "#32266" +msgid "Airquality" +msgstr "Kualitas Udara" + +msgctxt "#32267" +msgid "Pollen" +msgstr "Serbuk Sari" + +msgctxt "#32268" +msgid "Alerts" +msgstr "Peringatan" + +msgctxt "#32269" +msgid "Select option" +msgstr "Pilih Opsi" + +msgctxt "#32270" +msgid "Graphs" +msgstr "Grafik" + +msgctxt "#32271" +msgid "Overview" +msgstr "Ringkasan" + +msgctxt "#32272" +msgid "History" +msgstr "Riwayat" + +msgctxt "#32280" +msgid "Units" +msgstr "Satuan" + +msgctxt "#32281" +msgid "Maps" +msgstr "Peta" + +msgctxt "#32282" +msgid "Logging" +msgstr "Catatan" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "Eksperimental (Butuh mulai ulang)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "Perbesar" + +msgctxt "#32286" +msgid "Debug" +msgstr "Debug" + +msgctxt "#32287" +msgid "Duration" +msgstr "Durasi" + +msgctxt "#32288" +msgid "Hours" +msgstr "Jam" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "Tempat desimal" + +msgctxt "#32290" +msgid "Icons" +msgstr "Ikon" + +msgctxt "#32291" +msgid "Default" +msgstr "Bawaan" + +#, read-only +msgctxt "#32292" +msgid "Weathermap" +msgstr "" + +#, read-only +msgctxt "#32293" +msgid "Met.no" +msgstr "" + +#, read-only +msgctxt "#32294" +msgid "WMO" +msgstr "" + +msgctxt "#32296" +msgid "Background sync" +msgstr "Sinkron latarbelakang" + +msgctxt "#32300" +msgid "Distance" +msgstr "Jarak" + +msgctxt "#32301" +msgid "Index" +msgstr "Indeks" + +msgctxt "#32302" +msgid "Percent" +msgstr "Persen" + +msgctxt "#32303" +msgid "Unit" +msgstr "Satuan" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "Pemisah desimal" + +msgctxt "#32306" +msgid "Particles" +msgstr "Partikel" + +msgctxt "#32307" +msgid "Interval" +msgstr "Selang" + +msgctxt "#32308" +msgid "Verbose" +msgstr "Banyak kata" + +msgctxt "#32310" +msgid "Location 1" +msgstr "Lokasi 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "Lokasi 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "Lokasi 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "Lokasi 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "Lokasi 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "Gunakan zona waktu lokasi" + +msgctxt "#32320" +msgid "Temperature" +msgstr "Suhu" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "Pengendapan" + +msgctxt "#32322" +msgid "Condition" +msgstr "Kondisi" + +msgctxt "#32323" +msgid "Wind" +msgstr "Angin" + +msgctxt "#32324" +msgid "Gust" +msgstr "Tiupan" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "IKU UE" + +msgctxt "#32326" +msgid "AQI US" +msgstr "IKU AS" + +msgctxt "#32327" +msgid "PM25" +msgstr "PM25" + +msgctxt "#32328" +msgid "PM10" +msgstr "PM10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "Indeks UV" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "Nitrogen Dioksida" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "Sulfur Dioksida" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "Terasa seperti" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "Titik embun" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "Keadaan mendung" + +msgctxt "#32335" +msgid "Time" +msgstr "Waktu" + +msgctxt "#32336" +msgid "Speed" +msgstr "Kecepatan" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "Karbon monoksida" + +msgctxt "#32338" +msgid "Ozone" +msgstr "Ozon" + +msgctxt "#32339" +msgid "Dust" +msgstr "Debu" + +msgctxt "#32340" +msgid "Notice" +msgstr "Melihat" + +msgctxt "#32341" +msgid "Caution" +msgstr "Peringatan" + +msgctxt "#32342" +msgid "Danger" +msgstr "Bahaya" + +msgctxt "#32343" +msgid "Normal" +msgstr "Normal" + +msgctxt "#32344" +msgid "Negative" +msgstr "Negatif" + +msgctxt "#32345" +msgid "Colours" +msgstr "Warna" + +msgctxt "#32346" +msgid "Humidity" +msgstr "Kelembapan" + +msgctxt "#32347" +msgid "Pressure" +msgstr "Tekanan" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "Radiasi matahari" + +msgctxt "#32349" +msgid "Visibility" +msgstr "Visibilitas" + +#, read-only +msgctxt "#32350" +msgid "°C" +msgstr "" + +#, read-only +msgctxt "#32351" +msgid "°F" +msgstr "" + +#, read-only +msgctxt "#32352" +msgid "K" +msgstr "" + +#, read-only +msgctxt "#32353" +msgid "°Ré" +msgstr "" + +#, read-only +msgctxt "#32354" +msgid "°Ra" +msgstr "" + +#, read-only +msgctxt "#32355" +msgid "°Rø" +msgstr "" + +#, read-only +msgctxt "#32356" +msgid "°D" +msgstr "" + +#, read-only +msgctxt "#32357" +msgid "°N" +msgstr "" + +msgctxt "#32360" +msgid "Application" +msgstr "Aplikasi" + +msgctxt "#32361" +msgid "mph" +msgstr "mpj" + +msgctxt "#32362" +msgid "km/h" +msgstr "km/j" + +msgctxt "#32363" +msgid "m/min" +msgstr "m/min" + +msgctxt "#32364" +msgid "m/s" +msgstr "m/d" + +msgctxt "#32365" +msgid "ft/h" +msgstr "kk/j" + +msgctxt "#32366" +msgid "ft/min" +msgstr "kk/min" + +msgctxt "#32367" +msgid "ft/s" +msgstr "kk/d" + +msgctxt "#32368" +msgid "kts" +msgstr "knt" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "Beaufort" + +msgctxt "#32370" +msgid "inch/s" +msgstr "inci/d" + +msgctxt "#32371" +msgid "yard/s" +msgstr "yard/d" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "Furlong/Fortnight" + +msgctxt "#32380" +msgid "mm" +msgstr "mm" + +msgctxt "#32381" +msgid "inches" +msgstr "inci" + +msgctxt "#32390" +msgid "12h" +msgstr "12j" + +msgctxt "#32391" +msgid "24h" +msgstr "24j" + +msgctxt "#32400" +msgid "Radar" +msgstr "Radar" + +msgctxt "#32401" +msgid "Satellite" +msgstr "Satelit" + +msgctxt "#32410" +msgid "m" +msgstr "m" + +msgctxt "#32411" +msgid "km" +msgstr "km" + +msgctxt "#32412" +msgid "mi" +msgstr "mi" + +#, read-only +msgctxt "#32430" +msgid "." +msgstr "" + +#, read-only +msgctxt "#32431" +msgid "," +msgstr "" + +msgctxt "#32440" +msgid "New Moon" +msgstr "Bulan Baru" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "Bulan Sabit Muda" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "Kuartal Pertama" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "Bulan Cembung Awal" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "Bulan Purnama" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "Bulan Cembung Akhir" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "Kuartal Akhir" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "Bulan Sabit Tua" + +msgctxt "#32450" +msgid "Alder" +msgstr "Usia" + +msgctxt "#32451" +msgid "Birch" +msgstr "Lahir" + +msgctxt "#32452" +msgid "Grass" +msgstr "Rumput" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "Baru cina" + +msgctxt "#32454" +msgid "Olive" +msgstr "Zaitun" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "Rumput liar" + +msgctxt "#32456" +msgid "grains" +msgstr "biji-bijian" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "Prakiraan cuaca oleh Open-Meteo" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "" +"Ramalan cuaca, peta, kualitas udara, dan serbuk sari dari open-meteo.com, " +"rainviewer.com, weather.gc.ca dan met.no" diff --git a/weather.openmeteo/resources/language/resource.language.sk_sk/strings.po b/weather.openmeteo/resources/language/resource.language.sk_sk/strings.po new file mode 100644 index 000000000..b0257b4d1 --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.sk_sk/strings.po @@ -0,0 +1,646 @@ +msgid "" +msgstr "" +"Project-Id-Version: English (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: 2025-01-19 14:00+0000\n" +"Last-Translator: frederik877 \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" +"X-Generator: Weblate 5.10-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "Slnečno" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "Väčšinou slnečno" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "Čiastočne oblačno" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "Zamračené" + +msgctxt "#32204" +msgid "Foggy" +msgstr "Hmlisto" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "Mrznúca hmla" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "Mierne Mrholenie" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "Mrholenie" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "Silné mrholenie" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "Mierne mrznúce mrholenie" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "Mrznúce mrholenie" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "Slabý Dážď" + +msgctxt "#32212" +msgid "Rain" +msgstr "Dážď" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "Silný Dážď" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "Mierne mrznúci dážď" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "Mrznúci dážď" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "Mierne sneženie" + +msgctxt "#32217" +msgid "Snow" +msgstr "Sneženie" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "Silné sneženie" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "Husté sneženie" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "Mierne prehánky" + +msgctxt "#32221" +msgid "Showers" +msgstr "Prehánky" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "Silné prehánky" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "Ľahké Snehové Prehánky" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "Snehové Prehánky" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "Búrky" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "Mierna Búrka s Krupobitím" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "Búrka s Krupobitím" + +msgctxt "#32250" +msgid "Clear" +msgstr "Jasno" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "Väčšinou Jasno" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "Východ mesiaca" + +msgctxt "#32256" +msgid "Moonset" +msgstr "Západ mesiaca" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "Fáza Mesiaca" + +msgctxt "#32260" +msgid "General" +msgstr "Všeobecne" + +msgctxt "#32261" +msgid "Locations" +msgstr "Lokality" + +msgctxt "#32262" +msgid "Limits" +msgstr "Limity" + +msgctxt "#32263" +msgid "Notifications" +msgstr "Upozornenia" + +msgctxt "#32264" +msgid "Advanced" +msgstr "Pokročilé" + +msgctxt "#32265" +msgid "Weather" +msgstr "Počasie" + +msgctxt "#32266" +msgid "Airquality" +msgstr "Kvalita ovzdušia" + +msgctxt "#32267" +msgid "Pollen" +msgstr "Peľ" + +msgctxt "#32268" +msgid "Alerts" +msgstr "Varovania" + +msgctxt "#32269" +msgid "Select option" +msgstr "Vyberte možnosť" + +msgctxt "#32270" +msgid "Graphs" +msgstr "Grafy" + +msgctxt "#32271" +msgid "Overview" +msgstr "Prehľad" + +msgctxt "#32272" +msgid "History" +msgstr "História" + +msgctxt "#32280" +msgid "Units" +msgstr "Jednotky" + +msgctxt "#32281" +msgid "Maps" +msgstr "Mapa" + +msgctxt "#32282" +msgid "Logging" +msgstr "Logovanie" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "Experimentálne (vyžaduje sa reštart)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "Zoom" + +msgctxt "#32286" +msgid "Debug" +msgstr "Debug" + +msgctxt "#32287" +msgid "Duration" +msgstr "Trvanie" + +msgctxt "#32288" +msgid "Hours" +msgstr "Hodiny" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "Desatinné miesta" + +msgctxt "#32290" +msgid "Icons" +msgstr "Ikony" + +msgctxt "#32291" +msgid "Default" +msgstr "Predvolené" + +#, read-only +msgctxt "#32292" +msgid "Weathermap" +msgstr "" + +#, read-only +msgctxt "#32293" +msgid "Met.no" +msgstr "" + +#, read-only +msgctxt "#32294" +msgid "WMO" +msgstr "" + +msgctxt "#32296" +msgid "Background sync" +msgstr "Synchronizácia na pozadí" + +msgctxt "#32300" +msgid "Distance" +msgstr "Vzdialenosť" + +msgctxt "#32301" +msgid "Index" +msgstr "Index" + +msgctxt "#32302" +msgid "Percent" +msgstr "Percentá" + +msgctxt "#32303" +msgid "Unit" +msgstr "Jednotky" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "Oddeľovač desatinných miest" + +msgctxt "#32306" +msgid "Particles" +msgstr "Častice" + +msgctxt "#32307" +msgid "Interval" +msgstr "Interval" + +msgctxt "#32308" +msgid "Verbose" +msgstr "Úplné" + +msgctxt "#32310" +msgid "Location 1" +msgstr "Poloha 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "Poloha 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "Poloha 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "Poloha 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "Poloha 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "Použiť časové pásmo polohy" + +msgctxt "#32320" +msgid "Temperature" +msgstr "Teplota" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "Zrážky" + +msgctxt "#32322" +msgid "Condition" +msgstr "Podmienky" + +msgctxt "#32323" +msgid "Wind" +msgstr "Vietor" + +msgctxt "#32324" +msgid "Gust" +msgstr "Poryvy" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "AQI EU" + +msgctxt "#32326" +msgid "AQI US" +msgstr "AQI US" + +msgctxt "#32327" +msgid "PM25" +msgstr "PM25" + +msgctxt "#32328" +msgid "PM10" +msgstr "PM10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "UV Index" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "Oxid dusičitý" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "Oxid siričitý" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "Pocitová" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "Rosný bod" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "Oblačnosť" + +msgctxt "#32335" +msgid "Time" +msgstr "Čas" + +msgctxt "#32336" +msgid "Speed" +msgstr "Rýchlosť" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "Oxid uhoľnatý" + +msgctxt "#32338" +msgid "Ozone" +msgstr "Ozón" + +msgctxt "#32339" +msgid "Dust" +msgstr "Prach" + +msgctxt "#32340" +msgid "Notice" +msgstr "Všimnite si" + +msgctxt "#32341" +msgid "Caution" +msgstr "Pozor" + +msgctxt "#32342" +msgid "Danger" +msgstr "Nebezpečenstvo" + +msgctxt "#32343" +msgid "Normal" +msgstr "Normálne" + +msgctxt "#32344" +msgid "Negative" +msgstr "Negatívne" + +msgctxt "#32345" +msgid "Colours" +msgstr "Farby" + +msgctxt "#32346" +msgid "Humidity" +msgstr "Vlhkosť" + +msgctxt "#32347" +msgid "Pressure" +msgstr "Tlak" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "Slnečné žiarenie" + +msgctxt "#32349" +msgid "Visibility" +msgstr "Viditeľnosť" + +#, read-only +msgctxt "#32350" +msgid "°C" +msgstr "" + +#, read-only +msgctxt "#32351" +msgid "°F" +msgstr "" + +#, read-only +msgctxt "#32352" +msgid "K" +msgstr "" + +#, read-only +msgctxt "#32353" +msgid "°Ré" +msgstr "" + +#, read-only +msgctxt "#32354" +msgid "°Ra" +msgstr "" + +#, read-only +msgctxt "#32355" +msgid "°Rø" +msgstr "" + +#, read-only +msgctxt "#32356" +msgid "°D" +msgstr "" + +#, read-only +msgctxt "#32357" +msgid "°N" +msgstr "" + +msgctxt "#32360" +msgid "Application" +msgstr "Aplikácia" + +msgctxt "#32361" +msgid "mph" +msgstr "mph" + +msgctxt "#32362" +msgid "km/h" +msgstr "km/h" + +msgctxt "#32363" +msgid "m/min" +msgstr "m/min" + +msgctxt "#32364" +msgid "m/s" +msgstr "m/s" + +msgctxt "#32365" +msgid "ft/h" +msgstr "ft/h" + +msgctxt "#32366" +msgid "ft/min" +msgstr "ft/min" + +msgctxt "#32367" +msgid "ft/s" +msgstr "ft/s" + +msgctxt "#32368" +msgid "kts" +msgstr "kts" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "Beaufort" + +msgctxt "#32370" +msgid "inch/s" +msgstr "inch/s" + +msgctxt "#32371" +msgid "yard/s" +msgstr "yard/s" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "Furlong/Fortnight" + +msgctxt "#32380" +msgid "mm" +msgstr "mm" + +msgctxt "#32381" +msgid "inches" +msgstr "inches" + +msgctxt "#32390" +msgid "12h" +msgstr "12h" + +msgctxt "#32391" +msgid "24h" +msgstr "24h" + +msgctxt "#32400" +msgid "Radar" +msgstr "Radar" + +msgctxt "#32401" +msgid "Satellite" +msgstr "Satelit" + +msgctxt "#32410" +msgid "m" +msgstr "m" + +msgctxt "#32411" +msgid "km" +msgstr "km" + +msgctxt "#32412" +msgid "mi" +msgstr "mi" + +#, read-only +msgctxt "#32430" +msgid "." +msgstr "" + +#, read-only +msgctxt "#32431" +msgid "," +msgstr "" + +msgctxt "#32440" +msgid "New Moon" +msgstr "Nový Mesiac" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "Rastúci polmesiac" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "Prvý štvrťrok" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "Rastúci mesiac" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "Spln mesiaca" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "Ubúdajúci mesiac" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "Posledný štvrťrok" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "Ubúdajúci polmesiac" + +msgctxt "#32450" +msgid "Alder" +msgstr "Jelša" + +msgctxt "#32451" +msgid "Birch" +msgstr "Breza" + +msgctxt "#32452" +msgid "Grass" +msgstr "Tráva" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "Estragón" + +msgctxt "#32454" +msgid "Olive" +msgstr "Oliva" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "Ambrózia" + +msgctxt "#32456" +msgid "grains" +msgstr "Obilniny" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "Predpoveď počasia z Open-Meteo" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "" +"Počasie, mapy, kvalita vzduchu a peľové údaje z open-meteo.com, " +"rainviewer.com, weather.gc.ca a met.no" diff --git a/weather.openmeteo/resources/language/resource.language.ta_in/strings.po b/weather.openmeteo/resources/language/resource.language.ta_in/strings.po new file mode 100644 index 000000000..036087b67 --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.ta_in/strings.po @@ -0,0 +1,646 @@ +msgid "" +msgstr "" +"Project-Id-Version: English (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: 2025-01-23 15:44+0000\n" +"Last-Translator: தமிழ்நேரம் \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.10-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "சன்னி" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "முக்கியமாக வெயில்" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "ஓரளவு மேகமூட்டம்" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "மேகமூட்டமான" + +msgctxt "#32204" +msgid "Foggy" +msgstr "மூடுபனி" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "ரைம் மூடுபனி" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "ஒளி தூறல்" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "தூறல்" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "கனமான தூறல்" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "ஒளி உறைபனி தூறல்" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "உறைபனி தூறல்" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "லேசான மழை" + +msgctxt "#32212" +msgid "Rain" +msgstr "மழை" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "கனமான மழை" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "ஒளி உறைபனி மழை" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "உறைபனி மழை" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "ஒளி பனி" + +msgctxt "#32217" +msgid "Snow" +msgstr "பனி" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "Heavy பனி" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "பனி Grains" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "ஒளி மழை" + +msgctxt "#32221" +msgid "Showers" +msgstr "மழை" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "கனமான மழை" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "Light பனி Showers" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "பனி Showers" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "இடியுடன் கூடிய மழை" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "ஆலங்கட்டி மழை இடியுடன் கூடிய மழை" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "ஆலங்கட்டி மழை" + +msgctxt "#32250" +msgid "Clear" +msgstr "தெளிவான" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "முக்கியமாக தெளிவாக" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "மூன்ரைச்" + +msgctxt "#32256" +msgid "Moonset" +msgstr "மூன்செட்" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "மூன்ஃபேச்" + +msgctxt "#32260" +msgid "General" +msgstr "பொது" + +msgctxt "#32261" +msgid "Locations" +msgstr "இருப்பிடங்கள்" + +msgctxt "#32262" +msgid "Limits" +msgstr "வரம்புகள்" + +msgctxt "#32263" +msgid "Notifications" +msgstr "அறிவிப்புகள்" + +msgctxt "#32264" +msgid "Advanced" +msgstr "மேம்பட்ட" + +msgctxt "#32265" +msgid "Weather" +msgstr "வானிலை" + +msgctxt "#32266" +msgid "Airquality" +msgstr "காற்று" + +msgctxt "#32267" +msgid "Pollen" +msgstr "மகரந்தப் பை" + +msgctxt "#32268" +msgid "Alerts" +msgstr "விழிப்பூட்டல்கள்" + +msgctxt "#32269" +msgid "Select option" +msgstr "தேர்ந்தெடு சூதம்" + +msgctxt "#32270" +msgid "Graphs" +msgstr "வரைபடங்கள்" + +msgctxt "#32271" +msgid "Overview" +msgstr "கண்ணோட்டம்" + +msgctxt "#32272" +msgid "History" +msgstr "வரலாறு" + +msgctxt "#32280" +msgid "Units" +msgstr "அலகுகள்" + +msgctxt "#32281" +msgid "Maps" +msgstr "வரைபடங்கள்" + +msgctxt "#32282" +msgid "Logging" +msgstr "பதிவு" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "சோதனை (மறுதொடக்கம் தேவை)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "பெரிதாக்கு" + +msgctxt "#32286" +msgid "Debug" +msgstr "பிழைத்திருத்தம்" + +msgctxt "#32287" +msgid "Duration" +msgstr "காலம்" + +msgctxt "#32288" +msgid "Hours" +msgstr "மணி" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "தசம இடங்கள்" + +msgctxt "#32290" +msgid "Icons" +msgstr "சின்னங்கள்" + +msgctxt "#32291" +msgid "Default" +msgstr "இயல்புநிலை" + +#, read-only +msgctxt "#32292" +msgid "Weathermap" +msgstr "" + +#, read-only +msgctxt "#32293" +msgid "Met.no" +msgstr "" + +#, read-only +msgctxt "#32294" +msgid "WMO" +msgstr "" + +msgctxt "#32296" +msgid "Background sync" +msgstr "பின்னணி ஒத்திசைவு" + +msgctxt "#32300" +msgid "Distance" +msgstr "தூரம்" + +msgctxt "#32301" +msgid "Index" +msgstr "குறியெண்" + +msgctxt "#32302" +msgid "Percent" +msgstr "விழுக்காடு" + +msgctxt "#32303" +msgid "Unit" +msgstr "அலகு" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "தசம பிரிப்பான்" + +msgctxt "#32306" +msgid "Particles" +msgstr "துகள்கள்" + +msgctxt "#32307" +msgid "Interval" +msgstr "இடைவேளை" + +msgctxt "#32308" +msgid "Verbose" +msgstr "வாய்மொழி" + +msgctxt "#32310" +msgid "Location 1" +msgstr "இடம் 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "இடம் 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "இடம் 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "இடம் 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "இடம் 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "இருப்பிட நேர மண்டலத்தைப் பயன்படுத்தவும்" + +msgctxt "#32320" +msgid "Temperature" +msgstr "வெப்பநிலை" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "மழைப்பொழிவு" + +msgctxt "#32322" +msgid "Condition" +msgstr "நிபந்தனை" + +msgctxt "#32323" +msgid "Wind" +msgstr "காற்று" + +msgctxt "#32324" +msgid "Gust" +msgstr "Vust" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "AQI இருந்தது" + +msgctxt "#32326" +msgid "AQI US" +msgstr "AQI எங்களுக்கு" + +msgctxt "#32327" +msgid "PM25" +msgstr "PM25" + +msgctxt "#32328" +msgid "PM10" +msgstr "PM10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "புற ஊதா அட்டவணை" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "நைட்ரசன் டை ஆக்சைடு" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "சல்பர் டை ஆக்சைடு" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "உணர்கிறது" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "டிவாயிண்ட்" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "மேகமூட்டம்" + +msgctxt "#32335" +msgid "Time" +msgstr "நேரம்" + +msgctxt "#32336" +msgid "Speed" +msgstr "வேகம்" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "கார்பன் மோனாக்சைடு" + +msgctxt "#32338" +msgid "Ozone" +msgstr "சாரலியம்/மிகுவுயிரகம்" + +msgctxt "#32339" +msgid "Dust" +msgstr "தூசு" + +msgctxt "#32340" +msgid "Notice" +msgstr "அறிவிப்பு" + +msgctxt "#32341" +msgid "Caution" +msgstr "எச்சரிக்கை" + +msgctxt "#32342" +msgid "Danger" +msgstr "இடர்" + +msgctxt "#32343" +msgid "Normal" +msgstr "சாதாரண" + +msgctxt "#32344" +msgid "Negative" +msgstr "எதிர்மம்" + +msgctxt "#32345" +msgid "Colours" +msgstr "நிறங்கள்" + +msgctxt "#32346" +msgid "Humidity" +msgstr "ஈரப்பதம்" + +msgctxt "#32347" +msgid "Pressure" +msgstr "அழுத்தம்" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "சூரிய கதிர்வீச்சு" + +msgctxt "#32349" +msgid "Visibility" +msgstr "விழிமை" + +#, read-only +msgctxt "#32350" +msgid "°C" +msgstr "" + +#, read-only +msgctxt "#32351" +msgid "°F" +msgstr "" + +#, read-only +msgctxt "#32352" +msgid "K" +msgstr "" + +#, read-only +msgctxt "#32353" +msgid "°Ré" +msgstr "" + +#, read-only +msgctxt "#32354" +msgid "°Ra" +msgstr "" + +#, read-only +msgctxt "#32355" +msgid "°Rø" +msgstr "" + +#, read-only +msgctxt "#32356" +msgid "°D" +msgstr "" + +#, read-only +msgctxt "#32357" +msgid "°N" +msgstr "" + +msgctxt "#32360" +msgid "Application" +msgstr "பயன்பாடு" + +msgctxt "#32361" +msgid "mph" +msgstr "எம்.பி.எச்" + +msgctxt "#32362" +msgid "km/h" +msgstr "கிமீ/மணி" + +msgctxt "#32363" +msgid "m/min" +msgstr "எம்/என்" + +msgctxt "#32364" +msgid "m/s" +msgstr "எம்/கள்" + +msgctxt "#32365" +msgid "ft/h" +msgstr "ft/h" + +msgctxt "#32366" +msgid "ft/min" +msgstr "ft/min" + +msgctxt "#32367" +msgid "ft/s" +msgstr "ft/s" + +msgctxt "#32368" +msgid "kts" +msgstr "கே.டி.எச்" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "பீஃபோர்ட்" + +msgctxt "#32370" +msgid "inch/s" +msgstr "அங்குல/கள்" + +msgctxt "#32371" +msgid "yard/s" +msgstr "முற்றத்தில்/கள்" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "ஃபர்லாங்/பதினைந்து" + +msgctxt "#32380" +msgid "mm" +msgstr "மிமீ" + +msgctxt "#32381" +msgid "inches" +msgstr "அங்குலங்கள்" + +msgctxt "#32390" +msgid "12h" +msgstr "12 ம" + +msgctxt "#32391" +msgid "24h" +msgstr "24 எச்" + +msgctxt "#32400" +msgid "Radar" +msgstr "கதிரலைக் கும்பா" + +msgctxt "#32401" +msgid "Satellite" +msgstr "செயற்கைக் கோள்" + +msgctxt "#32410" +msgid "m" +msgstr "மீ" + +msgctxt "#32411" +msgid "km" +msgstr "கி.மீ." + +msgctxt "#32412" +msgid "mi" +msgstr "மி" + +#, read-only +msgctxt "#32430" +msgid "." +msgstr "" + +#, read-only +msgctxt "#32431" +msgid "," +msgstr "" + +msgctxt "#32440" +msgid "New Moon" +msgstr "இல்மதி" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "மெழுகு பிறை" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "முதல் காலாண்டு" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "மெழுகு கிப்பச்" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "முழு நிலவு" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "கிப்பச் குறைந்து" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "கடந்த காலாண்டு" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "பிறை குறைதல்" + +msgctxt "#32450" +msgid "Alder" +msgstr "ஆல்டர்" + +msgctxt "#32451" +msgid "Birch" +msgstr "பிர்ச்" + +msgctxt "#32452" +msgid "Grass" +msgstr "புல்" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "முக்வார்ட்" + +msgctxt "#32454" +msgid "Olive" +msgstr "ஆலிவ்" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "ராக்வீட்" + +msgctxt "#32456" +msgid "grains" +msgstr "தானியங்கள்" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "திறந்த-மெட்டியோவிலிருந்து வானிலை முன்னறிவிப்பு" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "" +"திறந்த-மெட்டியோ.காம், ரெயின்வியூவர்.காம், வானிலை. GC.CA மற்றும் MET.NO இலிருந்து " +"வானிலை, வரைபடங்கள், காற்றோட்டம் மற்றும் மகரந்த முன்னறிவிப்பு" diff --git a/weather.openmeteo/resources/language/resource.language.zh_cn/strings.po b/weather.openmeteo/resources/language/resource.language.zh_cn/strings.po new file mode 100644 index 000000000..69f6b5626 --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.zh_cn/strings.po @@ -0,0 +1,632 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Chinese (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: OpenHT \n" +"Language-Team: Chinese \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.9-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "晴朗" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "以晴为主" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "局部多云" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "多云" + +msgctxt "#32204" +msgid "Foggy" +msgstr "有雾" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "雾凇" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "轻微细雨" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "细雨" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "大雨滴" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "轻微冻雨" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "冻雨" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "小雨" + +msgctxt "#32212" +msgid "Rain" +msgstr "下雨" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "大雨" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "轻微冰雨" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "冰雨" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "小雪" + +msgctxt "#32217" +msgid "Snow" +msgstr "下雪" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "大雪" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "米雪" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "小阵雨" + +msgctxt "#32221" +msgid "Showers" +msgstr "阵雨" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "大阵雨" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "小阵雪" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "阵雪" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "雷暴" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "轻微冰雹雷暴" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "冰雹雷暴" + +msgctxt "#32250" +msgid "Clear" +msgstr "晴朗" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "基本晴朗" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "月出" + +msgctxt "#32256" +msgid "Moonset" +msgstr "月落" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "月相" + +msgctxt "#32260" +msgid "General" +msgstr "常规" + +msgctxt "#32261" +msgid "Locations" +msgstr "位置" + +msgctxt "#32262" +msgid "Limits" +msgstr "限制" + +msgctxt "#32263" +msgid "Notifications" +msgstr "通知" + +msgctxt "#32264" +msgid "Advanced" +msgstr "高级" + +msgctxt "#32265" +msgid "Weather" +msgstr "天气" + +msgctxt "#32266" +msgid "Airquality" +msgstr "空气质量" + +msgctxt "#32267" +msgid "Pollen" +msgstr "花粉" + +msgctxt "#32268" +msgid "Alerts" +msgstr "警报" + +msgctxt "#32269" +msgid "Select option" +msgstr "选择选项" + +msgctxt "#32270" +msgid "Graphs" +msgstr "图表" + +msgctxt "#32271" +msgid "Overview" +msgstr "概览" + +msgctxt "#32272" +msgid "History" +msgstr "历史" + +msgctxt "#32280" +msgid "Units" +msgstr "单位" + +msgctxt "#32281" +msgid "Maps" +msgstr "地图" + +msgctxt "#32282" +msgid "Logging" +msgstr "日志" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "实验性(需重启)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "缩放" + +msgctxt "#32286" +msgid "Debug" +msgstr "调试" + +msgctxt "#32287" +msgid "Duration" +msgstr "持续时间" + +msgctxt "#32288" +msgid "Hours" +msgstr "小时" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "小数位数" + +msgctxt "#32290" +msgid "Icons" +msgstr "图标" + +msgctxt "#32291" +msgid "Default" +msgstr "默认" + +msgctxt "#32292" +msgid "Weathermap" +msgstr "天气图" + +msgctxt "#32293" +msgid "Met.no" +msgstr "挪威气象研究所" + +msgctxt "#32294" +msgid "WMO" +msgstr "世界气象组织" + +msgctxt "#32296" +msgid "Background sync" +msgstr "后台同步" + +msgctxt "#32300" +msgid "Distance" +msgstr "距离" + +msgctxt "#32301" +msgid "Index" +msgstr "指数" + +msgctxt "#32302" +msgid "Percent" +msgstr "百分比" + +msgctxt "#32303" +msgid "Unit" +msgstr "单位" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "小数点分隔符" + +msgctxt "#32306" +msgid "Particles" +msgstr "颗粒物" + +msgctxt "#32307" +msgid "Interval" +msgstr "间隔" + +msgctxt "#32308" +msgid "Verbose" +msgstr "详细" + +msgctxt "#32310" +msgid "Location 1" +msgstr "位置 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "位置 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "位置 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "位置 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "位置 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "使用位置时区" + +msgctxt "#32320" +msgid "Temperature" +msgstr "温度" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "降水量" + +msgctxt "#32322" +msgid "Condition" +msgstr "状况" + +msgctxt "#32323" +msgid "Wind" +msgstr "风" + +msgctxt "#32324" +msgid "Gust" +msgstr "阵风" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "欧盟空气质量指数" + +msgctxt "#32326" +msgid "AQI US" +msgstr "美国空气质量指数" + +msgctxt "#32327" +msgid "PM25" +msgstr "细颗粒物 2.5" + +msgctxt "#32328" +msgid "PM10" +msgstr "可吸入颗粒物 10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "紫外线指数" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "二氧化氮" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "二氧化硫" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "体感" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "露点" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "云量" + +msgctxt "#32335" +msgid "Time" +msgstr "时间" + +msgctxt "#32336" +msgid "Speed" +msgstr "速度" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "一氧化碳" + +msgctxt "#32338" +msgid "Ozone" +msgstr "臭氧" + +msgctxt "#32339" +msgid "Dust" +msgstr "灰尘" + +msgctxt "#32340" +msgid "Notice" +msgstr "通知" + +msgctxt "#32341" +msgid "Caution" +msgstr "警告" + +msgctxt "#32342" +msgid "Danger" +msgstr "危险" + +msgctxt "#32343" +msgid "Normal" +msgstr "正常" + +msgctxt "#32344" +msgid "Negative" +msgstr "无" + +msgctxt "#32345" +msgid "Colours" +msgstr "颜色" + +msgctxt "#32346" +msgid "Humidity" +msgstr "湿度" + +msgctxt "#32347" +msgid "Pressure" +msgstr "气压" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "太阳辐射" + +msgctxt "#32349" +msgid "Visibility" +msgstr "能见度" + +msgctxt "#32350" +msgid "°C" +msgstr "摄氏度" + +msgctxt "#32351" +msgid "°F" +msgstr "华氏度" + +msgctxt "#32352" +msgid "K" +msgstr "开尔文" + +msgctxt "#32353" +msgid "°Ré" +msgstr "列氏度" + +msgctxt "#32354" +msgid "°Ra" +msgstr "兰金度" + +msgctxt "#32355" +msgid "°Rø" +msgstr "罗默度" + +msgctxt "#32356" +msgid "°D" +msgstr "德利尔度" + +msgctxt "#32357" +msgid "°N" +msgstr "牛顿度" + +msgctxt "#32360" +msgid "Application" +msgstr "应用" + +msgctxt "#32361" +msgid "mph" +msgstr "英里/小时" + +msgctxt "#32362" +msgid "km/h" +msgstr "千米/小时" + +msgctxt "#32363" +msgid "m/min" +msgstr "米/分钟" + +msgctxt "#32364" +msgid "m/s" +msgstr "米/秒" + +msgctxt "#32365" +msgid "ft/h" +msgstr "英尺/小时" + +msgctxt "#32366" +msgid "ft/min" +msgstr "英尺/分钟" + +msgctxt "#32367" +msgid "ft/s" +msgstr "英尺/秒" + +msgctxt "#32368" +msgid "kts" +msgstr "节" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "蒲福" + +msgctxt "#32370" +msgid "inch/s" +msgstr "英寸/秒" + +msgctxt "#32371" +msgid "yard/s" +msgstr "码/秒" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "弗隆/双周" + +msgctxt "#32380" +msgid "mm" +msgstr "毫米" + +msgctxt "#32381" +msgid "inches" +msgstr "英寸" + +msgctxt "#32390" +msgid "12h" +msgstr "12 小时制" + +msgctxt "#32391" +msgid "24h" +msgstr "24 小时制" + +msgctxt "#32400" +msgid "Radar" +msgstr "雷达" + +msgctxt "#32401" +msgid "Satellite" +msgstr "卫星" + +msgctxt "#32410" +msgid "m" +msgstr "米" + +msgctxt "#32411" +msgid "km" +msgstr "千米" + +msgctxt "#32412" +msgid "mi" +msgstr "英里" + +msgctxt "#32430" +msgid "." +msgstr "." + +msgctxt "#32431" +msgid "," +msgstr "," + +msgctxt "#32440" +msgid "New Moon" +msgstr "新月" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "娥眉月" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "上弦月" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "盈凸月" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "满月" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "亏凸月" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "下弦月" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "残月" + +msgctxt "#32450" +msgid "Alder" +msgstr "桤木" + +msgctxt "#32451" +msgid "Birch" +msgstr "桦树" + +msgctxt "#32452" +msgid "Grass" +msgstr "草" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "艾蒿" + +msgctxt "#32454" +msgid "Olive" +msgstr "橄榄" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "豚草" + +msgctxt "#32456" +msgid "grains" +msgstr "颗粒" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "Open-Meteo 提供的天气预报" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "天气、地图、空气质量和花粉预报来自 open-meteo.com、rainviewer.com、weather.gc.ca 和 met.no" diff --git a/weather.openmeteo/resources/settings.xml b/weather.openmeteo/resources/settings.xml index 5b5cb5d22..d1a51400f 100644 --- a/weather.openmeteo/resources/settings.xml +++ b/weather.openmeteo/resources/settings.xml @@ -7,6 +7,7 @@ 0trueRunScript(weather.openmeteo,loc1) + true 0true 0false 0falsetrueRunScript(weather.openmeteo,loc1) @@ -15,6 +16,7 @@ 0trueRunScript(weather.openmeteo,loc2) + true 0true 0false 0falsetrueRunScript(weather.openmeteo,loc1) @@ -23,6 +25,7 @@ 0trueRunScript(weather.openmeteo,loc3) + true 0true 0false 0falsetrueRunScript(weather.openmeteo,loc1) @@ -30,17 +33,19 @@ 0false - 0truetrueRunScript(weather.openmeteo,loc4) - 0truetrue - 0falsetrue - 0falsetrueRunScript(weather.openmeteo,loc1) + 0truetruetrueRunScript(weather.openmeteo,loc4) + truetruetrue + 0truetruetrue + 0falsetruetrue + 0falsetrueRunScript(weather.openmeteo,loc1) 0false 0false - 0truetrueRunScript(weather.openmeteo,loc5) - 0truetrue - 0falsetrue + 0truetruetrueRunScript(weather.openmeteo,loc5) + truetruetrue + 0truetruetrue + 0falsetruetrue 0falsetrueRunScript(weather.openmeteo,loc1) 0false 0false @@ -92,6 +97,7 @@ + 0hPa32269 00013false @@ -436,19 +442,28 @@ truefalse truefalse - truefalse + truefalse + truefalse + truefalse truefalse - truefalse + truefalse + truefalse + truefalse truefalse - truefalse + truefalse + truefalse + truefalse truefalse - truefalse + truefalse + truefalse + truefalse truefalse - truefalse + truefalse + truefalse diff --git a/weather.openmeteo/resources/template/strings.po b/weather.openmeteo/resources/template/strings.po index ad3eede25..31141d701 100644 --- a/weather.openmeteo/resources/template/strings.po +++ b/weather.openmeteo/resources/template/strings.po @@ -537,6 +537,26 @@ msgctxt "#32381" msgid "inches" msgstr "inches" +msgctxt "#32382" +msgid "hPa" +msgstr "hPa" + +msgctxt "#32383" +msgid "kPa" +msgstr "kPa" + +msgctxt "#32384" +msgid "mm Hg" +msgstr "mm Hg" + +msgctxt "#32385" +msgid "in Hg" +msgstr "in Hg" + +msgctxt "#32386" +msgid "psi" +msgstr "psi" + msgctxt "#32390" msgid "12h" msgstr "12h"