Page MenuHomeSolus

D3782.id.diff
No OneTemporary

D3782.id.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/Makefile b/Makefile
new file mode 100644
--- /dev/null
+++ b/Makefile
@@ -0,0 +1 @@
+include ../Makefile.common
diff --git a/abi_used_libs b/abi_used_libs
new file mode 100644
--- /dev/null
+++ b/abi_used_libs
@@ -0,0 +1,5 @@
+libSDL-1.2.so.0
+libSDL_mixer-1.2.so.0
+libc.so.6
+libglib-2.0.so.0
+libpthread.so.0
diff --git a/files/0001-Fix-buffer-size-when-formatting-current-date.patch b/files/0001-Fix-buffer-size-when-formatting-current-date.patch
new file mode 100644
--- /dev/null
+++ b/files/0001-Fix-buffer-size-when-formatting-current-date.patch
@@ -0,0 +1,69 @@
+From aa2ce32185b4477e659ed7c70d09c440610ef67b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
+Date: Fri, 2 Feb 2018 12:44:15 +0100
+Subject: [PATCH] Fix buffer size when formatting current date
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+gcc-8 and glibc-2.26.9000 reports this error:
+
+server/log.c:64:54: error: '%03d' directive output may be truncated writing between 3 and 11 bytes into a region of size between 0 and 49 [-Werror=format-truncation=]
+ snprintf(current_date, sizeof(current_date), "%s.%03d", buf, (int)(1000 * (time-seconds)));
+ ^~~~
+
+This patch fixes two mistakes in the get_current_date() function:
+
+First strftime() can fail and then buf content is undefined. The patch
+makes sure the buf content is properly null-termited.
+
+Second if strftime() uses up the the whole buf array, no space will be
+left for appending miliseconds to current_date value in the subsequent
+snprintf() call. The patch increases current_data size so that things
+will always fit.
+
+In reality, all this should not matter because sane strftime() will
+return fixed-lenght string. But for all the cases and for sake of the
+compiler check this patch should be applied.
+
+Signed-off-by: Petr Písař <ppisar@redhat.com>
+---
+ server/log.c | 6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/server/log.c b/server/log.c
+index 2fe7b7c..f696752 100644
+--- a/server/log.c
++++ b/server/log.c
+@@ -52,15 +52,17 @@ double get_current_time_exact(void)
+ return (double) now.tv_sec + now.tv_usec / 1e6; // bad bad idea to use float as precision is not down to the seconds then
+ }
+
+-char current_date[50];
++char current_date[70];
+ char* get_current_date(void)
+ {
+ struct tm * lt;
+ char buf[50];
+ double time = get_current_time_exact();
+ time_t seconds = (time_t)time;
++ size_t length;
+ lt = localtime(&seconds);
+- strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", lt);
++ length = strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", lt);
++ buf[length] = '\0';
+ snprintf(current_date, sizeof(current_date), "%s.%03d", buf, (int)(1000 * (time-seconds)));
+ return current_date;
+ }
+diff -up frozen-bubble-2.2.1-beta1/server/log.h~ frozen-bubble-2.2.1-beta1/server/log.h
+--- frozen-bubble-2.2.1-beta1/server/log.h~ 2010-08-07 15:36:27.000000000 +0200
++++ frozen-bubble-2.2.1-beta1/server/log.h 2018-02-08 14:09:52.472451694 +0100
+@@ -23,7 +23,7 @@
+ time_t get_current_time(void);
+ double get_current_time_exact(void);
+
+-extern char current_date[50];
++extern char current_date[70];
+ char* get_current_date(void);
+
+ enum output_types { OUTPUT_TYPE_DEBUG, OUTPUT_TYPE_CONNECT, OUTPUT_TYPE_INFO, OUTPUT_TYPE_ERROR };
diff --git a/files/frozen-bubble.desktop b/files/frozen-bubble.desktop
new file mode 100644
--- /dev/null
+++ b/files/frozen-bubble.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Frozen Bubble
+Comment=Frozen Bubble arcade game
+Exec=frozen-bubble
+Icon=frozen-bubble
+Terminal=false
+Type=Application
+Categories=Game;ArcadeGame;
diff --git a/package.yml b/package.yml
new file mode 100644
--- /dev/null
+++ b/package.yml
@@ -0,0 +1,41 @@
+name : frozen-bubble
+version : 2.2.1_1
+release : 1
+source :
+ - http://www.frozen-bubble.org/data/frozen-bubble-2.2.1-beta1.tar.bz2 : c5be403ccb71543dab1aeb7d5ae311e18693f79937fb9159469cdad0abf18ac4
+license : GPL-2.0-or-later
+component : games.arcade
+summary : A game in which you throw colorful bubbles and build groups to destroy the bubbles
+description: |
+ Colorful 3D rendered penguin animations, 100 levels of 1p game, hours and hours of 2p game, nights and nights of 2p/3p/4p/5p game over LAN or Internet, a level-editor, 3 professional quality digital soundtracks, 15 stereo sound effects, 8 unique graphical transition effects, 8 unique logo eye-candies.
+builddeps :
+ - pkgconfig(SDL_image)
+ - pkgconfig(SDL_mixer)
+ - pkgconfig(SDL_Pango)
+ - perl-alien-sdl
+ - perl-file-slurp
+ - perl-ipc-system-simple
+ - perl-locale-maketext-lexicon
+ - perl-module-build
+ - perl-sdl
+rundeps :
+ - perl-alien-sdl
+ - perl-compress-bzip2
+ - perl-file-which
+ - perl-tie-simple
+ - perl-sdl
+setup : |
+ %patch -p1 < $pkgfiles/0001-Fix-buffer-size-when-formatting-current-date.patch
+
+ %perl_setup
+build : |
+ %perl_build
+install : |
+ %perl_install
+
+ for i in 16x16 32x32 48x48 64x64; do
+ install -Dm00644 share/icons/frozen-bubble-icon-${i}.png $installdir/%PREFIX%/share/icons/hicolor/${i}/apps/frozen-bubble.png
+ done
+ install -Dm00644 $pkgfiles/frozen-bubble.desktop $installdir/%PREFIX%/share/applications/frozen-bubble.desktop
+check : |
+ perl Build test
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
new file mode 100644
--- /dev/null
+++ b/pspec_x86_64.xml
@@ -0,0 +1,3313 @@
+<PISI>
+ <Source>
+ <Name>frozen-bubble</Name>
+ <Packager>
+ <Name>Pierre-Yves</Name>
+ <Email>pyu@riseup.net</Email>
+ </Packager>
+ <License>GPL-2.0-or-later</License>
+ <PartOf>games.arcade</PartOf>
+ <Summary xml:lang="en">A game in which you throw colorful bubbles and build groups to destroy the bubbles</Summary>
+ <Description xml:lang="en">Colorful 3D rendered penguin animations, 100 levels of 1p game, hours and hours of 2p game, nights and nights of 2p/3p/4p/5p game over LAN or Internet, a level-editor, 3 professional quality digital soundtracks, 15 stereo sound effects, 8 unique graphical transition effects, 8 unique logo eye-candies.
+</Description>
+ <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://solus-project.com/sources/README.Solus</Archive>
+ </Source>
+ <Package>
+ <Name>frozen-bubble</Name>
+ <Summary xml:lang="en">A game in which you throw colorful bubbles and build groups to destroy the bubbles</Summary>
+ <Description xml:lang="en">Colorful 3D rendered penguin animations, 100 levels of 1p game, hours and hours of 2p game, nights and nights of 2p/3p/4p/5p game over LAN or Internet, a level-editor, 3 professional quality digital soundtracks, 15 stereo sound effects, 8 unique graphical transition effects, 8 unique logo eye-candies.
+</Description>
+ <PartOf>games.arcade</PartOf>
+ <Files>
+ <Path fileType="executable">/usr/bin/fb-server</Path>
+ <Path fileType="executable">/usr/bin/frozen-bubble</Path>
+ <Path fileType="executable">/usr/bin/frozen-bubble-editor</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/CStuff.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/Config.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/LevelEditor.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/MDKCommon.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/Net.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/NetDiscover.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/Stuff.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/Games/FrozenBubble/Symbols.pm</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/Games/FrozenBubble/CStuff/CStuff.bs</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/Games/FrozenBubble/CStuff/CStuff.so</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/data/demo1.bz2</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/data/demo2.bz2</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/data/demo3.bz2</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/data/demo4.bz2</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/data/levels</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/data/plasma.raw</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attack_rp1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attack_rp2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attack_rp3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attack_rp4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attackme_rp1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attackme_rp2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attackme_rp3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/attackme_rp4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/back_hiscores.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/back_multiplayer.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/back_netgame.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/back_one_player.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/back_paused.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/backgrnd.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-1-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-1.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-2-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-2.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-3-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-3.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-4-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-4.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-5-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-5.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-6-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-6.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-7-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-7.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-8-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-8.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-1-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-1.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-2-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-2.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-3-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-3.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-4-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-4.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-5-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-5.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-6-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-6.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-7-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-7.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-8-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble-colourblind-8.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble_lose-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble_lose.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble_prelight-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/bubble_prelight.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_0-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_0.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_1-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_2-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_3-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_4-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_5-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_5.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_6-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_6.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/balls/stick_effect_7.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/banane-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/banane.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/compressor_ext.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/compressor_main.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/dot_green.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/dot_red.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/file_list_background.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-af.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ar.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-az.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-bg.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-br.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-bs.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ca.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-cs.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-cy.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-da.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-de.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-el.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-en.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-eo.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-es.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-eu.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-fi.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-fr.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ga.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-gl.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-hr.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-hu.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-id.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ir.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-is.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-it.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ja.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ko.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-lt.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-lv.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-mk.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ms.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ne.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-nl.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-no.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-pl.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-pt.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-pt_BR.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ro.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-ru.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-sk.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-sl.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-sq.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-sv.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-tg.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-tr.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-uk.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-uz.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-vi.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-wa.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-zh_CN.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/flags/flag-zh_TW.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/font-hi.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/font.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/font2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/gen</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hiscore-levelset.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hiscore-mptraining.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hiscore_frame.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hover.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hurry_p1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hurry_p2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hurry_rp1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hurry_rp2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hurry_rp3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/hurry_rp4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/intro/back_intro.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/key_shortcuts.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/left-rp1-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/left-rp1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/left-rp2-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/left-rp3-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/left-rp4-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/level_editor.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/list_arrow_down.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/list_arrow_down_more.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/list_arrow_up.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/list_arrow_up_more.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/loading.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/loading_step.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/loading_step_initial.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/loadingpreviews.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/lose_panel.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/1p_panel.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/1pgame_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/editor_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/gfx-l3_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/highscore_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/keys_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/langame_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/netgame_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/anims/p1p2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/back_start.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/backgrnd-closedeye-left-green.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/backgrnd-closedeye-left-purple.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/backgrnd-closedeye-right-green.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/backgrnd-closedeye-right-purple.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/banner_artwork.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/banner_cpucontrol.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/banner_leveleditor.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/banner_soundtrack.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/blink.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/fblogo-mask.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/fblogo.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/highlight-server.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/ping-high.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/ping-low.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/ping-mid.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/please_wait.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/small_ping.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/stamp.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_1pgame_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_1pgame_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_2pgame_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_2pgame_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_editor_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_editor_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_graphics_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_graphics_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_highscores_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_highscores_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_keys_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_keys_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_langame_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_langame_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_menu_1p_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_menu_1p_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_multiplayer_training_outlined_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_multiplayer_training_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_netgame_off.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_netgame_over.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_pick_start_level_outlined_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_pick_start_level_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_play_all_levels_outlined_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_play_all_levels_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_play_random_levels_outlined_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/txt_play_random_levels_text.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/void_chat.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/void_chat_small.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/menu/void_panel.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/net_lose_p1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/net_lose_rp1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/net_lose_rp2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/net_lose_rp3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/net_lose_rp4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-insamegame.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-playing.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-5.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-6.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-7.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-8.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-9.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-A.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-B.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-C.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot-self-D.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/netspot.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/on_top_next-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/on_top_next.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pause_10.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p1_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_p2_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp1_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp2_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp3_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/anime-shooter_rp4_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0098.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0099.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0100.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0101.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0102.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0103.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0104.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0105.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0106.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0107.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0108.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0109.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0110.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0111.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0112.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0113.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0114.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0115.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0116.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0117.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0118.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0119.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0120.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0121.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0122.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0123.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0124.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0125.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0126.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0127.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0128.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0129.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0130.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0131.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0132.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0133.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0134.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0135.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0136.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0137.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0138.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0139.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0140.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0141.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0142.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0143.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0144.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0145.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0146.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0147.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0148.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0149.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0150.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0151.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0152.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0153.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0154.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0155.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0156.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0157.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p1_0158.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0098.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0099.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0100.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0101.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0102.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0103.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0104.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0105.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0106.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0107.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0108.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0109.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0110.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0111.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0112.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0113.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0114.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0115.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0116.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0117.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0118.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0119.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0120.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0121.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0122.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0123.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0124.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0125.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0126.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0127.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0128.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0129.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0130.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0131.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0132.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0133.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0134.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0135.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0136.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0137.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0138.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0139.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0140.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0141.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0142.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0143.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0144.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0145.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0146.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0147.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0148.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0149.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0150.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0151.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0152.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0153.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0154.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0155.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0156.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0157.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_p2_0158.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0098.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0099.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0100.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0101.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0102.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0103.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0104.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0105.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0106.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0107.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0108.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0109.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0110.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0111.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0112.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0113.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0114.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0115.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0116.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0117.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0118.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0119.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0120.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0121.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0122.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0123.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0124.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0125.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0126.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0127.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0128.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0129.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0130.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0131.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0132.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0133.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0134.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0135.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0136.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0137.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0138.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0139.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0140.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0141.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0142.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0143.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0144.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0145.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0146.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0147.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0148.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0149.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0150.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0151.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0152.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0153.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0154.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0155.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0156.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0157.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp1_0158.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0098.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0099.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0100.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0101.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0102.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0103.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0104.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0105.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0106.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0107.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0108.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0109.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0110.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0111.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0112.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0113.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0114.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0115.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0116.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0117.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0118.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0119.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0120.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0121.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0122.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0123.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0124.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0125.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0126.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0127.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0128.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0129.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0130.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0131.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0132.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0133.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0134.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0135.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0136.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0137.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0138.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0139.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0140.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0141.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0142.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0143.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0144.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0145.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0146.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0147.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0148.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0149.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0150.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0151.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0152.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0153.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0154.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0155.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0156.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0157.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp2_0158.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0098.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0099.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0100.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0101.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0102.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0103.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0104.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0105.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0106.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0107.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0108.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0109.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0110.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0111.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0112.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0113.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0114.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0115.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0116.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0117.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0118.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0119.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0120.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0121.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0122.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0123.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0124.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0125.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0126.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0127.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0128.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0129.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0130.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0131.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0132.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0133.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0134.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0135.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0136.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0137.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0138.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0139.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0140.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0141.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0142.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0143.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0144.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0145.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0146.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0147.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0148.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0149.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0150.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0151.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0152.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0153.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0154.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0155.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0156.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0157.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp3_0158.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0098.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0099.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0100.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0101.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0102.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0103.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0104.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0105.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0106.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0107.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0108.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0109.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0110.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0111.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0112.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0113.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0114.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0115.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0116.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0117.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0118.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0119.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0120.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0121.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0122.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0123.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0124.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0125.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0126.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0127.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0128.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0129.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0130.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0131.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0132.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0133.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0134.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0135.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0136.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0137.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0138.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0139.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0140.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0141.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0142.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0143.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0144.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0145.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0146.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0147.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0148.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0149.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0150.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0151.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0152.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0153.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0154.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0155.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0156.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0157.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/loose_rp4_0158.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/sleep_p1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/sleep_p2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/sleep_rp1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/sleep_rp2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/sleep_rp3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/sleep_rp4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p1_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_p2_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp1_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp2_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp3_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0069.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0070.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0071.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0072.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0073.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0074.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0075.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0076.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0077.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0078.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0079.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0080.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0081.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0082.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0083.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0084.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0085.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0086.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0087.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0088.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0089.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0090.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0091.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0092.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0093.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0094.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0095.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0096.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/wait_rp4_0097.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_p2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp1_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp2_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp3_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0001.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0002.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0003.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0004.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0005.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0006.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0007.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0008.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0009.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0010.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0011.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0012.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0013.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0014.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0015.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0016.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0017.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0018.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0019.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0020.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0021.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0022.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0023.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0024.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0025.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0026.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0027.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0028.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0029.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0030.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0031.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0032.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0033.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0034.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0035.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0036.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0037.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0038.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0039.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0040.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0041.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0042.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0043.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0044.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0045.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0046.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0047.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0048.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0049.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0050.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0051.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0052.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0053.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0054.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0055.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0056.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0057.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0058.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0059.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0060.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0061.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0062.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0063.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0064.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0065.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0066.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0067.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/win_rp4_0068.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/pinguins/window_icon_penguin.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/purple_hover.gif</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/scroll_list_background.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/select_level_background.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/shooter-lowgfx.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/shooter-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/shooter.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/tomate-mini.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/tomate.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/void_chat.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/void_chat_small_p2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/void_chat_small_rp1_rp3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/void_chat_small_rp2_rp4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/void_mp_training.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_1player.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_p1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_p1_net.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_p2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_rp1.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_rp2.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_rp3.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/gfx/win_panel_rp4.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/icons/frozen-bubble-icon-16x16.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/icons/frozen-bubble-icon-32x32.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/icons/frozen-bubble-icon-48x48.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/icons/frozen-bubble-icon-64x64.png</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/af.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/bg.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/br.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/ca.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/cs.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/da.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/de.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/el.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/eo.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/es.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/fa.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/fi.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/fr.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/frozen-bubble.pot</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/gl.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/it.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/ja.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/lt.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/nb.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/ne.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/nl.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/nn.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/pl.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/pt.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/pt_BR.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/ro.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/ru.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/sk.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/sl.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/sv.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/tr.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/locale/zh_CN.po</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/applause.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/cancel.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/chatted.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/destroy_group.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/frozen-mainzik-1p.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/frozen-mainzik-2p.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/hurry.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/introzik.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/launch.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/lose.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/malus.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/menu_change.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/menu_selected.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/newroot.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/newroot_solo.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/noh.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/pause.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/rebound.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/snore.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/stick.ogg</Path>
+ <Path fileType="library">/usr/lib64/perl5/vendor_perl/5.26/x86_64-linux-thread-multi/auto/share/dist/Games-FrozenBubble/snd/typewriter.ogg</Path>
+ <Path fileType="data">/usr/share/applications/frozen-bubble.desktop</Path>
+ <Path fileType="data">/usr/share/icons/hicolor/16x16/apps/frozen-bubble.png</Path>
+ <Path fileType="data">/usr/share/icons/hicolor/32x32/apps/frozen-bubble.png</Path>
+ <Path fileType="data">/usr/share/icons/hicolor/48x48/apps/frozen-bubble.png</Path>
+ <Path fileType="data">/usr/share/icons/hicolor/64x64/apps/frozen-bubble.png</Path>
+ <Path fileType="man">/usr/share/man/man1/frozen-bubble-editor.1</Path>
+ <Path fileType="man">/usr/share/man/man1/frozen-bubble.1</Path>
+ <Path fileType="man">/usr/share/man/man3/Games::FrozenBubble.3</Path>
+ <Path fileType="man">/usr/share/man/man3/Games::FrozenBubble::LevelEditor.3</Path>
+ <Path fileType="man">/usr/share/man/man3/Games::FrozenBubble::MDKCommon.3</Path>
+ <Path fileType="man">/usr/share/man/man3/Games::FrozenBubble::Net.3</Path>
+ <Path fileType="man">/usr/share/man/man3/Games::FrozenBubble::NetDiscover.3</Path>
+ <Path fileType="man">/usr/share/man/man3/Games::FrozenBubble::Stuff.3</Path>
+ </Files>
+ </Package>
+ <History>
+ <Update release="1">
+ <Date>2018-09-02</Date>
+ <Version>2.2.1_1</Version>
+ <Comment>Packaging update</Comment>
+ <Name>Pierre-Yves</Name>
+ <Email>pyu@riseup.net</Email>
+ </Update>
+ </History>
+</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Thu, Aug 10, 7:08 PM (1 d, 3 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5838537
Default Alt Text
D3782.id.diff (554 KB)

Event Timeline