[games/unknown-horizons] Update to 2013.1 Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->beech I'll take it
Port has depend issues: http://www.akherb.com/tb/errors/9-FreeBSD/unknown-horizons-2013.1.log Please correct and resubmit a non compressed patch. Beech
first leter: 404. please sed log in atach. second leter: patch.txt and your diff is defferent? (except ^M) 2013/3/5 Beech Rintoul <beech@freebsd.org> > On Monday 04 March 2013 13:04:51 Beech Rintoul wrote: > > Port has depend issues: > > > > http://www.akherb.com/tb/errors/9-FreeBSD/unknown-horizons-2013.1.log > > > > Please correct and resubmit a non compressed patch. > > > > Beech > > Fixed, please approve. > > Beech >
Author: beech Date: Thu Mar 7 07:47:55 2013 New Revision: 313567 URL: http://svnweb.freebsd.org/changeset/ports/313567 Log: - Update to 2013.1 PR: ports/176644 Submitted by: Green Dog <fiziologus@gmail.com> (maintainer) Modified: head/games/unknown-horizons/Makefile (contents, props changed) head/games/unknown-horizons/distinfo (contents, props changed) head/games/unknown-horizons/files/patch-horizons-savegamemanager.py (contents, props changed) head/games/unknown-horizons/files/patch-horizons-util-yamlcache.py (contents, props changed) head/games/unknown-horizons/pkg-plist (contents, props changed) Modified: head/games/unknown-horizons/Makefile ============================================================================== --- head/games/unknown-horizons/Makefile Thu Mar 7 07:34:53 2013 (r313566) +++ head/games/unknown-horizons/Makefile Thu Mar 7 07:47:55 2013 (r313567) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= unknown-horizons -PORTVERSION= 2012.1 +PORTVERSION= 2013.1 CATEGORIES= games MASTER_SITES= SF/unknownhorizons/Unknown%20Horizons/${PORTVERSION}/ @@ -32,12 +32,14 @@ MAN6= unknown-horizons.6 .include <bsd.port.pre.mk> .if ${ARCH} == i386 +ENET_DIR= x86 PLIST_SUB+= X86_ONLY="" .else PLIST_SUB+= X86_ONLY="@comment " .endif .if ${ARCH} == amd64 +ENET_DIR= x64 PLIST_SUB+= X64_ONLY="" .else PLIST_SUB+= X64_ONLY="@comment " @@ -47,4 +49,11 @@ post-patch: ${REINPLACE_CMD} -e "s|http://docbook.sourceforge.net/release/xsl/current|${LOCALBASE}/share/xsl/docbook|" \ -e "s|share/man/man6|man/man6|" ${WRKSRC}/setup.py +# Install multiplayer lib (enet+pyenet) +post-install: + ${MKDIR} ${PYTHON_SITELIBDIR}/horizons/network/libs + ${MKDIR} ${PYTHON_SITELIBDIR}/horizons/network/libs/freebsd-${ENET_DIR} + ${INSTALL} ${WRKSRC}/horizons/network/libs/freebsd-${ENET_DIR}/enet.so \ + ${PYTHON_SITELIBDIR}/horizons/network/libs/freebsd-${ENET_DIR}/enet.so + .include <bsd.port.post.mk> Modified: head/games/unknown-horizons/distinfo ============================================================================== --- head/games/unknown-horizons/distinfo Thu Mar 7 07:34:53 2013 (r313566) +++ head/games/unknown-horizons/distinfo Thu Mar 7 07:47:55 2013 (r313567) @@ -1,2 +1,2 @@ -SHA256 (unknown-horizons-2012.1.tar.xz) = 109fd61026491c7c259cc552dd2c1ac90214bde42eab7cbc736009396abb870a -SIZE (unknown-horizons-2012.1.tar.xz) = 96318876 +SHA256 (unknown-horizons-2013.1.tar.xz) = 1d6bc4d7f0779c858a670cc2756f4e534163179774a18d73f505e75840a00dc7 +SIZE (unknown-horizons-2013.1.tar.xz) = 106874644 Modified: head/games/unknown-horizons/files/patch-horizons-savegamemanager.py ============================================================================== --- head/games/unknown-horizons/files/patch-horizons-savegamemanager.py Thu Mar 7 07:34:53 2013 (r313566) +++ head/games/unknown-horizons/files/patch-horizons-savegamemanager.py Thu Mar 7 07:47:55 2013 (r313567) @@ -1,11 +0,0 @@ ---- horizons/savegamemanager.py.orig 2012-05-26 22:01:19.000000000 +0400 -+++ horizons/savegamemanager.py 2012-05-26 22:02:27.000000000 +0400 -@@ -370,7 +370,7 @@ - def get_campaign_status(cls): - """Read the campaign status from the saved YAML file""" - if os.path.exists(cls.campaign_status_file): -- return YamlCache.get_yaml_file(cls.campaign_status_file) -+ return YamlCache.get_file(cls.campaign_status_file) - return {} - - @classmethod Modified: head/games/unknown-horizons/files/patch-horizons-util-yamlcache.py ============================================================================== --- head/games/unknown-horizons/files/patch-horizons-util-yamlcache.py Thu Mar 7 07:34:53 2013 (r313566) +++ head/games/unknown-horizons/files/patch-horizons-util-yamlcache.py Thu Mar 7 07:47:55 2013 (r313567) @@ -1,47 +0,0 @@ ---- horizons/util/yamlcache.py.orig 2012-05-26 21:52:18.000000000 +0400 -+++ horizons/util/yamlcache.py 2012-05-26 21:57:18.000000000 +0400 -@@ -82,11 +82,6 @@ - - @classmethod - def get_file(cls, filename, game_data=False): -- data = cls.get_yaml_file(filename, game_data=game_data) -- return data -- -- @classmethod -- def get_yaml_file(cls, filename, game_data=False): - # calc the hash - f = open(filename, 'r') - h = hash(f.read()) -@@ -98,7 +93,7 @@ - if isinstance(filename, unicode): - filename = filename.encode('utf8') # shelve needs str keys - -- def handle_get_yaml_file_error(e, release): -+ def handle_get_file_error(e, release): - # when something unexpected happens, shelve does not guarantee anything. - # since crashing on any access is part of the specified behaviour, we need to handle it. - # cf. http://bugs.python.org/issue14041 -@@ -108,12 +103,12 @@ - cls.cache = None - if release: - cls.lock.release() -- return cls.get_yaml_file(filename, game_data=game_data) -+ return cls.get_file(filename, game_data=game_data) - - try: - yaml_file_in_cache = (filename in cls.cache and cls.cache[filename][0] == h) - except Exception as e: -- return handle_get_yaml_file_error(e, release=False) -+ return handle_get_file_error(e, release=False) - - if not yaml_file_in_cache: - data = yaml.load( f, Loader = SafeLoader ) -@@ -131,7 +126,7 @@ - try: - cls.cache[filename] = (h, data) - except Exception as e: -- return handle_get_yaml_file_error(e, release=True) -+ return handle_get_file_error(e, release=True) - - if not cls.sync_scheduled: - cls.sync_scheduled = True Modified: head/games/unknown-horizons/pkg-plist ============================================================================== --- head/games/unknown-horizons/pkg-plist Thu Mar 7 07:34:53 2013 (r313566) +++ head/games/unknown-horizons/pkg-plist Thu Mar 7 07:47:55 2013 (r313567) @@ -1,5 +1,6 @@ %%DATADIR%%/content/actionsets.json %%DATADIR%%/content/atlas.sql +%%DATADIR%%/content/audio/music/battle.ogg %%DATADIR%%/content/audio/music/beware_the_ships_kobold.ogg %%DATADIR%%/content/audio/music/goldenvalley.ogg %%DATADIR%%/content/audio/music/menu/main_theme.ogg @@ -12,18 +13,20 @@ %%DATADIR%%/content/audio/music/uh_gameplay3.ogg %%DATADIR%%/content/audio/music/uh_gameplay4.ogg %%DATADIR%%/content/audio/music/waves.ogg +%%DATADIR%%/content/audio/sounds/INFO %%DATADIR%%/content/audio/sounds/build.ogg %%DATADIR%%/content/audio/sounds/chapel.ogg +%%DATADIR%%/content/audio/sounds/click.ogg %%DATADIR%%/content/audio/sounds/events/new_era.ogg %%DATADIR%%/content/audio/sounds/events/new_settlement.ogg -%%DATADIR%%/content/audio/sounds/events/scenario/loose.ogg +%%DATADIR%%/content/audio/sounds/events/scenario/lose.ogg %%DATADIR%%/content/audio/sounds/events/scenario/win.ogg %%DATADIR%%/content/audio/sounds/flippage.ogg -%%DATADIR%%/content/audio/sounds/INFO %%DATADIR%%/content/audio/sounds/invalid.ogg %%DATADIR%%/content/audio/sounds/lumberjack.ogg %%DATADIR%%/content/audio/sounds/lumberjack_long.ogg %%DATADIR%%/content/audio/sounds/main_square.ogg +%%DATADIR%%/content/audio/sounds/refresh.ogg %%DATADIR%%/content/audio/sounds/sheepfield.ogg %%DATADIR%%/content/audio/sounds/ships_bell.ogg %%DATADIR%%/content/audio/sounds/success.ogg @@ -42,9 +45,7 @@ %%DATADIR%%/content/audio/voice/fr/0/new_world/3.ogg %%DATADIR%%/content/audio/voice/fr/0/new_world/4.ogg %%DATADIR%%/content/balance.sql -%%DATADIR%%/content/campaign/test.yaml %%DATADIR%%/content/fonts/GPL_fontexception -%%DATADIR%%/content/fonts/libertine.fontdef %%DATADIR%%/content/fonts/LinLibertine.ttf %%DATADIR%%/content/fonts/LinLibertineB.ttf %%DATADIR%%/content/fonts/LinLibertineBI.ttf @@ -53,52 +54,121 @@ %%DATADIR%%/content/fonts/OFL %%DATADIR%%/content/fonts/README_LIBERTINE %%DATADIR%%/content/fonts/README_UMING -%%DATADIR%%/content/fonts/uming.fontdef -%%DATADIR%%/content/fonts/UMing.ttc +%%DATADIR%%/content/fonts/Unifont.ttf +%%DATADIR%%/content/fonts/libertine.fontdef +%%DATADIR%%/content/fonts/unifont.fontdef %%DATADIR%%/content/game.sql %%DATADIR%%/content/gfx/atlas/.keepme -%%DATADIR%%/content/gfx/atlas/animals.png -%%DATADIR%%/content/gfx/atlas/army.png -%%DATADIR%%/content/gfx/atlas/base_resources_trees.png -%%DATADIR%%/content/gfx/atlas/buildings_citizen_1.png -%%DATADIR%%/content/gfx/atlas/buildings_citizen_2.png -%%DATADIR%%/content/gfx/atlas/buildings_pioneers_1.png -%%DATADIR%%/content/gfx/atlas/buildings_pioneers_2.png -%%DATADIR%%/content/gfx/atlas/buildings_pioneers_3.png -%%DATADIR%%/content/gfx/atlas/buildings_pioneers_4.png -%%DATADIR%%/content/gfx/atlas/buildings_sailors.png -%%DATADIR%%/content/gfx/atlas/buildings_settlers_1.png -%%DATADIR%%/content/gfx/atlas/buildings_settlers_2.png -%%DATADIR%%/content/gfx/atlas/frigate0.png -%%DATADIR%%/content/gfx/atlas/frigate1.png -%%DATADIR%%/content/gfx/atlas/frigate10.png -%%DATADIR%%/content/gfx/atlas/frigate11.png -%%DATADIR%%/content/gfx/atlas/frigate12.png -%%DATADIR%%/content/gfx/atlas/frigate13.png -%%DATADIR%%/content/gfx/atlas/frigate14.png -%%DATADIR%%/content/gfx/atlas/frigate15.png -%%DATADIR%%/content/gfx/atlas/frigate16.png -%%DATADIR%%/content/gfx/atlas/frigate2.png -%%DATADIR%%/content/gfx/atlas/frigate3.png -%%DATADIR%%/content/gfx/atlas/frigate4.png -%%DATADIR%%/content/gfx/atlas/frigate5.png -%%DATADIR%%/content/gfx/atlas/frigate6.png -%%DATADIR%%/content/gfx/atlas/frigate7.png -%%DATADIR%%/content/gfx/atlas/frigate8.png -%%DATADIR%%/content/gfx/atlas/frigate9.png -%%DATADIR%%/content/gfx/atlas/mine-idle.png -%%DATADIR%%/content/gfx/atlas/mine-work-315__mountain_mine-preview_dummies_misc_buildings-preview.png -%%DATADIR%%/content/gfx/atlas/mine_work_45_225_315.png -%%DATADIR%%/content/gfx/atlas/pirate1_1.png -%%DATADIR%%/content/gfx/atlas/pirate1_2.png -%%DATADIR%%/content/gfx/atlas/ships.png -%%DATADIR%%/content/gfx/atlas/ships1.png -%%DATADIR%%/content/gfx/atlas/units0.png -%%DATADIR%%/content/gfx/atlas/units1.png +%%DATADIR%%/content/gfx/atlas/000.png +%%DATADIR%%/content/gfx/atlas/001.png +%%DATADIR%%/content/gfx/atlas/002.png +%%DATADIR%%/content/gfx/atlas/003.png +%%DATADIR%%/content/gfx/atlas/004.png +%%DATADIR%%/content/gfx/atlas/005.png +%%DATADIR%%/content/gfx/atlas/006.png +%%DATADIR%%/content/gfx/atlas/007.png +%%DATADIR%%/content/gfx/atlas/008.png +%%DATADIR%%/content/gfx/atlas/009.png +%%DATADIR%%/content/gfx/atlas/010.png +%%DATADIR%%/content/gfx/atlas/011.png +%%DATADIR%%/content/gfx/atlas/012.png +%%DATADIR%%/content/gfx/atlas/013.png +%%DATADIR%%/content/gfx/atlas/014.png +%%DATADIR%%/content/gfx/atlas/015.png +%%DATADIR%%/content/gfx/atlas/016.png +%%DATADIR%%/content/gfx/atlas/017.png +%%DATADIR%%/content/gfx/atlas/018.png +%%DATADIR%%/content/gfx/atlas/019.png +%%DATADIR%%/content/gfx/atlas/020.png +%%DATADIR%%/content/gfx/atlas/021.png +%%DATADIR%%/content/gfx/atlas/022.png +%%DATADIR%%/content/gfx/atlas/023.png +%%DATADIR%%/content/gfx/atlas/024.png +%%DATADIR%%/content/gfx/atlas/025.png +%%DATADIR%%/content/gfx/atlas/026.png +%%DATADIR%%/content/gfx/atlas/027.png +%%DATADIR%%/content/gfx/atlas/028.png +%%DATADIR%%/content/gfx/atlas/029.png +%%DATADIR%%/content/gfx/atlas/030.png +%%DATADIR%%/content/gfx/atlas/031.png +%%DATADIR%%/content/gfx/atlas/032.png +%%DATADIR%%/content/gfx/atlas/033.png +%%DATADIR%%/content/gfx/atlas/034.png +%%DATADIR%%/content/gfx/atlas/035.png +%%DATADIR%%/content/gfx/atlas/036.png +%%DATADIR%%/content/gfx/atlas/037.png +%%DATADIR%%/content/gfx/atlas/038.png +%%DATADIR%%/content/gfx/atlas/039.png +%%DATADIR%%/content/gfx/atlas/040.png +%%DATADIR%%/content/gfx/atlas/041.png +%%DATADIR%%/content/gfx/atlas/042.png +%%DATADIR%%/content/gfx/atlas/043.png +%%DATADIR%%/content/gfx/atlas/044.png +%%DATADIR%%/content/gfx/atlas/045.png +%%DATADIR%%/content/gfx/atlas/046.png +%%DATADIR%%/content/gfx/atlas/047.png +%%DATADIR%%/content/gfx/atlas/048.png +%%DATADIR%%/content/gfx/atlas/049.png +%%DATADIR%%/content/gfx/atlas/050.png +%%DATADIR%%/content/gfx/atlas/051.png +%%DATADIR%%/content/gfx/atlas/052.png +%%DATADIR%%/content/gfx/atlas/053.png +%%DATADIR%%/content/gfx/atlas/054.png +%%DATADIR%%/content/gfx/atlas/055.png +%%DATADIR%%/content/gfx/atlas/056.png +%%DATADIR%%/content/gfx/atlas/057.png +%%DATADIR%%/content/gfx/atlas/058.png +%%DATADIR%%/content/gfx/atlas/059.png +%%DATADIR%%/content/gfx/atlas/060.png +%%DATADIR%%/content/gfx/atlas/061.png +%%DATADIR%%/content/gfx/atlas/062.png +%%DATADIR%%/content/gfx/atlas/063.png +%%DATADIR%%/content/gfx/atlas/064.png +%%DATADIR%%/content/gfx/atlas/065.png +%%DATADIR%%/content/gfx/atlas/066.png +%%DATADIR%%/content/gfx/atlas/067.png +%%DATADIR%%/content/gfx/atlas/068.png +%%DATADIR%%/content/gfx/atlas/069.png +%%DATADIR%%/content/gfx/atlas/070.png +%%DATADIR%%/content/gfx/atlas/071.png +%%DATADIR%%/content/gfx/atlas/072.png +%%DATADIR%%/content/gfx/atlas/073.png +%%DATADIR%%/content/gfx/atlas/074.png +%%DATADIR%%/content/gfx/atlas/075.png +%%DATADIR%%/content/gfx/atlas/076.png +%%DATADIR%%/content/gfx/atlas/077.png +%%DATADIR%%/content/gfx/atlas/078.png +%%DATADIR%%/content/gfx/atlas/079.png +%%DATADIR%%/content/gfx/atlas/080.png +%%DATADIR%%/content/gfx/atlas/081.png +%%DATADIR%%/content/gfx/atlas/082.png +%%DATADIR%%/content/gfx/atlas/083.png +%%DATADIR%%/content/gfx/atlas/084.png +%%DATADIR%%/content/gfx/atlas/085.png +%%DATADIR%%/content/gfx/atlas/086.png +%%DATADIR%%/content/gfx/atlas/087.png +%%DATADIR%%/content/gfx/atlas/088.png +%%DATADIR%%/content/gfx/atlas/089.png +%%DATADIR%%/content/gfx/atlas/090.png +%%DATADIR%%/content/gfx/atlas/091.png +%%DATADIR%%/content/gfx/atlas/092.png +%%DATADIR%%/content/gfx/atlas/093.png +%%DATADIR%%/content/gfx/atlas/094.png +%%DATADIR%%/content/gfx/atlas/095.png +%%DATADIR%%/content/gfx/atlas/096.png +%%DATADIR%%/content/gfx/atlas/097.png +%%DATADIR%%/content/gfx/atlas/098.png +%%DATADIR%%/content/gfx/atlas/099.png +%%DATADIR%%/content/gfx/atlas/100.png +%%DATADIR%%/content/gfx/atlas/101.png +%%DATADIR%%/content/gfx/atlas/102.png +%%DATADIR%%/content/gfx/atlas/103.png +%%DATADIR%%/content/gfx/atlas/104.png +%%DATADIR%%/content/gfx/atlas/105.png +%%DATADIR%%/content/gfx/atlas/106.png +%%DATADIR%%/content/gfx/atlas/107.png +%%DATADIR%%/content/gfx/atlas/108.png %%DATADIR%%/content/gfx/banner.bmp -%%DATADIR%%/content/gfx/dummies/square_120.png -%%DATADIR%%/content/gfx/dummies/square_80.png -%%DATADIR%%/content/gfx/dummies/transparent.png %%DATADIR%%/content/gfx/fake_water.png %%DATADIR%%/content/gfx/header.bmp %%DATADIR%%/content/gfx/inst_splash.bmp @@ -111,282 +181,222 @@ %%DATADIR%%/content/gfx/misc/buoys/as_buoy0/idle/45/0.png %%DATADIR%%/content/gfx/misc/buoys/as_buoy0/idle/90/0.png %%DATADIR%%/content/gfx/misc/cannonballs/cannonball.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20001.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20002.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20003.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20004.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20005.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20006.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20007.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20008.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20009.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20010.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20011.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20012.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20013.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20014.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20015.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20016.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20017.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20018.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20019.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20020.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20021.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20022.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20023.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20024.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20025.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20026.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20027.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20028.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20029.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20030.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20031.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20032.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20033.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20034.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20035.png -%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/exclamation mark20036.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/009.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/010.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/011.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/012.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/013.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/014.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/015.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/016.png +%%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/45/017.png %%DATADIR%%/content/gfx/misc/status_icons/as_attention_please/idle/tm_1500 -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20101.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20102.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20103.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20104.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20105.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20106.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20107.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20108.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20109.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20110.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20111.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20112.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20113.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20114.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20115.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20116.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20117.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/book20118.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/45/009.png %%DATADIR%%/content/gfx/misc/status_icons/as_book_close/idle/tm_3000 -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20119.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20120.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20121.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20122.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20123.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20124.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20125.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20126.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20127.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20128.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20129.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20130.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20131.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20132.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20133.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20134.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20135.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/book20136.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/45/009.png %%DATADIR%%/content/gfx/misc/status_icons/as_book_flip/idle/tm_3000 -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20101.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20102.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20103.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20104.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20105.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20106.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20107.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20108.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20109.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20110.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20111.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20112.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20113.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20114.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20115.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20116.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20117.png -%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/book20118.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/45/009.png %%DATADIR%%/content/gfx/misc/status_icons/as_book_open/idle/tm_3000 -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10001.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10002.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10003.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10004.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10005.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10006.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10007.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10008.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10009.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10010.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10011.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10012.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10013.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10014.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10015.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10016.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10017.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10018.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10019.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10020.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10021.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10022.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10023.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10024.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10025.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10026.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10027.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10028.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10029.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10030.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10031.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10032.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10033.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10034.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10035.png -%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/zzz10036.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/009.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/010.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/011.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/012.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/013.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/014.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/015.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/016.png +%%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/45/017.png %%DATADIR%%/content/gfx/misc/status_icons/as_decommissioned/idle/tm_1500 -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40001.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40003.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40005.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40007.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40009.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40011.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40013.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40015.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40017.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40019.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40021.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40023.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40025.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40027.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40029.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40031.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40033.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40035.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40037.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40039.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40041.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40043.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40045.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40047.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40049.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40051.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40053.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40055.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40057.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40059.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40061.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40063.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40065.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40067.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40069.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40071.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40073.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40075.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40077.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40079.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40081.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40083.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40085.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40087.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40089.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40091.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40093.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40095.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40097.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40099.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40101.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40103.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40105.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40107.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40109.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40111.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40113.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40115.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40117.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40119.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40121.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40123.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40125.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40127.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40129.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40131.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40133.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40135.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40137.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40139.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40141.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/boxandbarrel40143.png -%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/tm_5958 -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20001.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20003.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20005.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20007.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20009.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20011.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20013.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20015.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20017.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20019.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20021.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20023.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20025.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20027.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20029.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20031.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20033.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20035.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20037.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20039.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20041.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20043.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20045.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20047.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20049.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20051.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20053.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20055.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20057.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20059.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20061.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20063.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20065.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20067.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20069.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20071.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20073.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20075.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20077.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20079.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20081.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20083.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20085.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20087.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20089.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20091.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20093.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20095.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20097.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20099.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20101.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20103.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20105.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20107.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20109.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20111.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20113.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20115.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20117.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20119.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20121.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20123.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20125.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20127.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20129.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20131.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20133.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20135.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20137.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20139.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20141.png -%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/minecart20143.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/009.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/010.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/011.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/012.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/013.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/014.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/015.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/016.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/017.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/018.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/019.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/020.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/021.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/022.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/023.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/024.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/025.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/026.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/027.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/028.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/029.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/030.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/031.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/032.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/033.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/034.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/035.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/036.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/037.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/038.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/039.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/040.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/041.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/042.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/043.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/044.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/045.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/046.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/047.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/048.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/049.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/050.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/051.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/052.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/053.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/054.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/055.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/056.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/057.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/058.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/059.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/060.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/061.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/062.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/063.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/064.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/065.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/066.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/067.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/068.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/069.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/070.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/45/071.png +%%DATADIR%%/content/gfx/misc/status_icons/as_inventory_full/idle/tm_6000 +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/009.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/010.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/011.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/012.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/013.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/014.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/015.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/016.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/017.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/018.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/019.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/020.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/021.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/022.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/023.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/024.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/025.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/026.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/027.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/028.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/029.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/030.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/031.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/032.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/033.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/034.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/035.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/036.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/037.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/038.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/039.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/040.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/041.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/042.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/043.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/044.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/045.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/046.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/047.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/048.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/049.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/050.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/051.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/052.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/053.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/054.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/055.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/056.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/057.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/058.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/059.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/060.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/061.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/062.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/063.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/064.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/065.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/066.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/067.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/068.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/069.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/070.png +%%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/45/071.png %%DATADIR%%/content/gfx/misc/status_icons/as_mine_gold/idle/tm_9000 %%DATADIR%%/content/gfx/misc/status_icons/as_on_fire/idle/45/fire status icon0010.png %%DATADIR%%/content/gfx/misc/status_icons/as_on_fire/idle/45/fire status icon0011.png @@ -397,155 +407,157 @@ %%DATADIR%%/content/gfx/misc/status_icons/as_on_fire/idle/45/fire status icon0016.png %%DATADIR%%/content/gfx/misc/status_icons/as_on_fire/idle/45/fire status icon0017.png %%DATADIR%%/content/gfx/misc/status_icons/as_on_fire/idle/tm_3000 -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0001.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0002.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0003.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0004.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0005.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0006.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0007.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0008.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0009.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0010.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0011.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0012.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0013.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0014.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0015.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0016.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0017.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0018.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0019.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0020.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0021.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0022.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0023.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0024.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0025.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0026.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0027.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0028.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0029.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0030.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0031.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0032.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0033.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0034.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0035.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0036.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0037.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0038.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0039.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0040.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0041.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0042.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0043.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0044.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0045.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0046.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0047.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0048.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0049.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0050.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0051.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0052.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0053.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0054.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0055.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0056.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0057.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0058.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0059.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0060.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0061.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0062.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0063.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0064.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0065.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0066.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0067.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0068.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0069.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0070.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0071.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0072.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0073.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0074.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0075.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0076.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0077.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0078.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0079.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0080.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0081.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0082.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0083.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0084.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0085.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0086.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0087.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0088.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0089.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0090.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0091.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0092.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0093.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0094.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0095.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0096.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0097.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0098.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0099.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0100.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0101.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0102.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0103.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0104.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0105.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0106.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0107.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0108.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0109.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0110.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0111.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0112.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0113.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0114.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0115.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0116.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0117.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0118.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0119.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0120.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0121.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0122.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0123.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0124.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0125.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0126.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0127.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0128.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0129.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0130.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0131.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0132.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0133.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0134.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0135.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0136.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0137.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0138.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0139.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0140.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0141.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0142.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0143.png -%%DATADIR%%/content/gfx/misc/status_icons/as_question_mark/idle/45/question mark0144.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/000.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/001.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/002.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/003.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/004.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/005.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/006.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/007.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/008.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/009.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/010.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/011.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/012.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/013.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/014.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/015.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/016.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/017.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/018.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/019.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/020.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/021.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/022.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/023.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/024.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/025.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/026.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/027.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/028.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/029.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/030.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/031.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/032.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/033.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/034.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/035.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/036.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/037.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/038.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/039.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/040.png +%%DATADIR%%/content/gfx/misc/status_icons/as_pestilence/idle/45/041.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, Thanks!